/* ==========================================================================
   Carvemazic — coming-soon landing page
   Light, warm, editorial. Design tokens live in :root — change them there.

   Layout principle: only IMAGES get a frame. Text sections are typographic
   (rules, spacing, scale) rather than boxed, so the page doesn't read as a
   wall of identical cards.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:          #faf8f4;   /* warm ivory */
  --bg-alt:      #f3efe7;   /* slightly deeper band */
  --paper:       #ffffff;

  /* Ink */
  --ink:         #1c1a17;
  --ink-soft:    #45413a;
  --muted:       #6f695f;
  --muted-dim:   #948d82;

  /* Gold — primary accent (contrast-checked against --bg) */
  --gold:        #8a6229;   /* text-safe gold — 5.9:1 on ivory */
  --gold-mid:    #b0813c;
  --gold-lite:   #d9b877;   /* decorative only */

  /* Silver — secondary accent */
  --silver:      #6b7178;   /* text-safe silver — 5.4:1 on ivory */
  --silver-mid:  #8f959c;
  --silver-lite: #c8ccd1;   /* decorative only */

  /* Lines */
  --line:        rgba(28, 26, 23, 0.10);
  --line-warm:   rgba(138, 98, 41, 0.22);
  --line-cool:   rgba(107, 113, 120, 0.24);

  /* Effects */
  --shadow-sm:   0 1px 2px rgba(28, 26, 23, 0.05);
  --shadow-md:   0 16px 34px -20px rgba(28, 26, 23, 0.28);
  --shadow-lg:   0 34px 70px -34px rgba(28, 26, 23, 0.34);

  --radius:      14px;
  --radius-lg:   22px;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --shell:       1180px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { width: 20px; height: 20px; flex: none; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn--lg { padding: 15px 30px; font-size: 0.95rem; }
.btn svg { width: 18px; height: 18px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #fffdf9;
  box-shadow: 0 10px 24px -14px rgba(138, 98, 41, 0.9);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -16px rgba(138, 98, 41, 0.95);
}

/* Secondary button — silver, to sit beside the gold without competing */
.btn--silver {
  border-color: var(--line-cool);
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, #eceef0);
  box-shadow: var(--shadow-sm);
}
.btn--silver:hover {
  border-color: var(--silver);
  color: var(--silver);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-row--center { justify-content: center; }

/* ---------- Announcement bar ---------- */
.topbar {
  position: relative;
  z-index: 61;
  background: linear-gradient(90deg, #1c1a17, #2c2a26 45%, #1c1a17);
  color: #efe9dd;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 9px 24px;
}
.topbar strong {
  font-weight: 600;
  background: linear-gradient(90deg, var(--gold-lite), var(--silver-lite));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.topbar a {
  color: var(--gold-lite);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}
.topbar a:hover { color: #fff; }

/* ---------- Coming Soon block ---------- */
.coming {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.coming__word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(100deg, var(--gold-mid), var(--silver-mid) 55%, var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.coming__rule {
  flex: 1;
  height: 1px;
  max-width: 180px;
  background: linear-gradient(90deg, var(--line-warm), var(--line-cool), transparent);
}
.coming__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
  box-shadow: 0 0 0 0 rgba(176, 129, 60, 0.55);
  animation: pulse 2.4s ease-out infinite;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 248, 244, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(250, 248, 244, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px -8px rgba(28, 26, 23, 0.18);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--gold);
  border: 1px solid var(--line-warm);
  background: linear-gradient(160deg, rgba(217, 184, 119, 0.28), transparent);
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.logo__text span { color: var(--gold); }

/* ---------- Section chrome ---------- */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 640px;
  margin: 0 auto clamp(44px, 5vw, 68px);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__title { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section__sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
}

/* ---------- Image frame — the ONLY boxed element on the page ---------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s var(--ease);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.frame figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(48px, 6vw, 84px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -260px;
  right: -200px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 119, 0.30), transparent 62%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(60px, 7vw, 92px);
}

@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(176, 129, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(176, 129, 60, 0); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  letter-spacing: -0.028em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__lede {
  max-width: 50ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}
.hero__soon {
  max-width: 48ch;
  margin-top: 20px;
  padding-left: 18px;
  border-left: 2px solid var(--line-warm);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--muted);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--gold); }

/* Hero image composition */
.hero__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.frame--card   { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.frame--bottle { aspect-ratio: 4 / 5; }
.frame--plate  { aspect-ratio: 4 / 3; align-self: start; }
.frame--stone  { grid-column: 2; aspect-ratio: 4 / 3; }
.hero__visual .frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-warm);
}

/* Gentle drift */
[data-float] { animation: drift 9s ease-in-out infinite; }
[data-float="2"] { animation-delay: -2.2s; }
[data-float="3"] { animation-delay: -4.4s; }
[data-float="4"] { animation-delay: -6.6s; }
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
[data-float]:hover { animation-play-state: paused; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--muted-dim);
  white-space: nowrap;
}
.marquee__track i { color: var(--silver-lite); font-style: normal; font-size: 0.6rem; }
.marquee__track i:nth-of-type(odd) { color: var(--gold-lite); }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Services (image + text, no card) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
.service .frame { aspect-ratio: 4 / 3; margin-bottom: 20px; }
.service h3 { font-size: 1.2rem; }
.service p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.service:hover .frame {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-warm);
}
.service:hover .frame img { transform: scale(1.06); }

/* ---------- What we make (typographic list) ---------- */
.make {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.make__head { position: sticky; top: 110px; }
.make__head .section__title,
.make__head .section__sub { text-align: left; }

.make__list {
  columns: 2;
  column-gap: 40px;
}
.make__list li {
  break-inside: avoid;
  padding: 15px 0 15px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.06rem;
  position: relative;
  transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.make__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-lite);
  transform: translateY(-50%);
  transition: background 0.3s var(--ease), transform 0.35s var(--ease);
}
.make__list li:hover {
  color: var(--gold);
  padding-left: 32px;
}
.make__list li:hover::before {
  background: var(--gold);
  transform: translateY(-50%) scale(1.3);
}

/* ---------- Process (rail + numbers, no boxes) ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-warm) 15%, var(--line-cool) 50%, var(--line-warm) 85%, transparent);
}
.step { position: relative; padding-top: 0; }
.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-warm);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.step:hover .step__num {
  background: var(--gold);
  color: #fffdf9;
  transform: translateY(-3px);
}
.step h3 { font-size: 1.18rem; }
.step p { margin-top: 9px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Materials (inline pills) ---------- */
.materials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}
.materials li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.materials li:hover {
  transform: translateY(-3px);
  border-color: var(--line-cool);
  box-shadow: var(--shadow-md);
}
/* Silver here, gold on the service/benefit icons — keeps the two metals apart */
.materials__icon { display: inline-flex; color: var(--silver); }
.materials li:hover .materials__icon { color: var(--gold); }
.materials__icon svg { width: 19px; height: 19px; }
.materials strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 760px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
.note svg { width: 18px; height: 18px; margin-top: 3px; color: var(--gold); }

/* ---------- Corporate ---------- */
.corporate {
  padding: clamp(72px, 9vw, 130px) 0;
  background:
    radial-gradient(680px 420px at 88% 16%, rgba(217, 184, 119, 0.22), transparent 66%),
    linear-gradient(180deg, #f7f2e9, #f1ece2);
  border-block: 1px solid var(--line);
}
.corporate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.corporate__copy .section__title,
.corporate__copy .section__sub { text-align: left; }
.corporate__copy .section__sub { max-width: 46ch; }

.corporate__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 30px;
}
.corporate__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}
.corporate__list svg { width: 16px; height: 16px; color: var(--gold); }

.corporate__visual { aspect-ratio: 4 / 3; }
.corporate__visual:hover img { transform: scale(1.04); }

/* ---------- Gallery ---------- */
.masonry { column-count: 3; column-gap: 22px; }
.shot {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.shot img { width: 100%; transition: transform 0.9s var(--ease); }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 26, 23, 0.62));
  opacity: 0.85;
  transition: opacity 0.4s var(--ease);
}
.shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: #fdfaf5;
  transform: translateY(4px);
  transition: transform 0.45s var(--ease);
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shot:hover img { transform: scale(1.06); }
.shot:hover::after { opacity: 1; }
.shot:hover figcaption { transform: translateY(0); }

/* ---------- Why (icon + text rows, hairline separated) ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 44px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.benefit__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--gold);
  border: 1px solid var(--line-warm);
  background: rgba(217, 184, 119, 0.14);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.benefit__icon svg { width: 21px; height: 21px; }
.benefit:hover .benefit__icon { background: var(--gold); color: #fffdf9; }
.benefit h3 { font-size: 1.1rem; }
.benefit p { margin-top: 6px; color: var(--muted); font-size: 0.89rem; }

/* ---------- Final CTA ---------- */
.cta { padding: clamp(76px, 9vw, 130px) 0; }
.cta__inner {
  position: relative;
  max-width: 900px;
  padding: clamp(48px, 6vw, 78px) clamp(28px, 5vw, 64px);
  border-radius: 28px;
  border: 1px solid var(--line-warm);
  background:
    radial-gradient(560px 300px at 50% -10%, rgba(217, 184, 119, 0.26), transparent 70%),
    var(--paper);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}
.cta__spark {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 55%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}
.cta__title { font-size: clamp(2rem, 4.2vw, 3rem); }
.cta__text {
  max-width: 54ch;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: clamp(60px, 7vw, 82px) 0 30px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
}
.footer__brand p {
  margin-top: 18px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__contact h2 {
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__contact ul { display: grid; gap: 13px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__contact svg { width: 17px; height: 17px; margin-top: 3px; color: var(--gold); }
.footer__contact a { transition: color 0.25s var(--ease); }
.footer__contact a:hover { color: var(--gold); }

.footer__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
}
.footer__note svg { width: 17px; height: 17px; color: var(--gold); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-dim);
  font-size: 0.82rem;
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, #45c85f, #1f9d43);
  box-shadow: 0 14px 30px -12px rgba(31, 157, 67, 0.7);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.fab svg { width: 27px; height: 27px; }
.fab:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 600px; }

  .make { grid-template-columns: 1fr; }
  .make__head { position: static; }

  .corporate__grid { grid-template-columns: 1fr; }
  .corporate__visual { order: -1; }

  .services { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
  .steps::before { display: none; }

  .masonry { column-count: 2; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 78px; }
  .header__inner { height: 64px; }
  .header__cta { padding: 10px 16px; font-size: 0.84rem; }

  .section { padding: 66px 0; }
  .section__head { margin-bottom: 38px; }

  .cta-row .btn { flex: 1 1 100%; }

  .hero__visual { gap: 12px; }
  .frame--card { aspect-ratio: 16 / 11; }

  .services { grid-template-columns: 1fr; gap: 34px; }
  .make__list { columns: 1; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .benefits { grid-template-columns: 1fr; gap: 0; }
  .corporate__list { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bar { flex-direction: column; align-items: flex-start; }

  .fab { right: 16px; bottom: 16px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
