/* ============================================================
   PoshPixels — Luxury Event Stationery, Signage & Print
   Warm editorial system · consolidated
   Type: Cormorant Garamond (display) · Jost (body/UI)
   ============================================================ */

:root {
  --studio-white: #F5F3ED;
  --linen:        #EAE1D4;
  --limestone:    #D6CDBD;
  --stone:        #857D6C;
  --black:        #14110C;
  --espresso:     #1A150F;
  --espresso-2:   #241F17;
  --ink:          #221D15;
  --text:         #463F33;
  --muted:        #6E6658;
  --gold:         #AE8B4C;
  --gold-soft:    #DAC393;
  --gold-deep:    #876A33;
  --blush:        #E3D2C6;

  --line:         rgba(133,125,108,0.30);
  --line-gold:    rgba(174,139,76,0.45);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sub:     "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1300px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--studio-white);
  font-size: clamp(1rem, 1.04vw, 1.06rem);
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { font-weight: 400; }
::selection { background: var(--gold); color: var(--studio-white); }

/* ---------- Paper-grain texture ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body); font-size: 0.7rem;
  letter-spacing: 0.4em; text-transform: uppercase; font-weight: 500;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after { content:""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before, .eyebrow.on-dark::after { background: var(--gold-soft); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.07; color: var(--ink); letter-spacing: 0.005em; }
h1 { font-size: clamp(2.9rem, 6.3vw, 5.6rem); }
h2 { font-size: clamp(2.3rem, 4.7vw, 3.9rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 1.95rem); }
em.script { font-family: var(--font-sub); font-style: italic; font-weight: 600; }

.lead {
  font-family: var(--font-sub); font-weight: 500;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  line-height: 1.55; color: var(--text);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 880px; }
.section { padding: clamp(80px, 12vw, 170px) 0; }
.center { text-align: center; }

.dropcap::first-letter {
  font-family: var(--font-display); font-size: 3.8em; line-height: 0.78;
  float: left; padding: 8px 16px 0 0; color: var(--gold-deep); font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-block; font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  padding: 17px 42px; border: 1px solid var(--gold); color: var(--ink);
  background: transparent; cursor: pointer; overflow: hidden; z-index: 0;
  transition: color 0.5s var(--ease);
}
.btn::after { content:""; position: absolute; inset: 0; z-index: -1; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.btn:hover { color: var(--studio-white); }
.btn:hover::after { transform: scaleX(1); }
.btn-gold { background: var(--gold); color: var(--studio-white); border-color: var(--gold); }
.btn-gold::after { background: var(--espresso); }
.btn-solid { background: var(--espresso); color: var(--studio-white); border-color: var(--espresso); }
.btn-solid::after { background: var(--gold); }
.btn-light { border-color: var(--gold-soft); color: var(--studio-white); }
.btn-light::after { background: var(--gold); }
.btn-light:hover { color: var(--studio-white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,243,237,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease), border-color 0.4s;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 92px; transition: height 0.4s var(--ease); }
.site-header.shrink .nav { height: 72px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand .crest { width: 42px; height: 42px; flex: none; }
.brand .crest .ring { fill: none; stroke: var(--gold); stroke-width: 1; }
.brand .crest .pp { font-family: var(--font-display); font-size: 20px; fill: var(--ink); font-weight: 600; }
.brand .wm { display: flex; flex-direction: column; line-height: 1; }
.brand .mark { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.brand .mark b { color: var(--gold-deep); font-weight: 600; }
.brand .tag { font-family: var(--font-body); font-size: 0.52rem; letter-spacing: 0.44em; text-transform: uppercase; color: var(--stone); margin-top: 6px; font-weight: 400; }
.brand .logo-img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; position: relative; padding: 4px 0; color: var(--ink); font-weight: 400; }
.nav-links a:not(.btn)::after { content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: 0.3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: radial-gradient(120% 130% at 50% 0%, var(--linen) 0%, var(--limestone) 60%, #b9af9d 120%);
  color: var(--ink); overflow: hidden; text-align: center; padding: 90px 0;
}
.hero::after { content:""; position: absolute; inset:0; pointer-events:none; background: radial-gradient(80% 60% at 50% 110%, rgba(31,28,23,0.16), transparent 70%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,243,237,0.42) 0%, rgba(240,232,219,0.46) 55%, rgba(232,224,209,0.55) 100%); }
.hero .botanical { position: absolute; top: 0; bottom: 0; width: 30%; opacity: 0.5; z-index: 1; }
.hero .botanical.left { left: 0; }
.hero .botanical.right { right: 0; transform: scaleX(-1); }
.hero .botanical svg { height: 100%; width: 100%; }
.hero-frame { position: absolute; inset: 28px; border: 1px solid var(--line-gold); pointer-events: none; z-index: 2; }
.hero-frame::before, .hero-frame::after { content:""; position: absolute; width: 14px; height: 14px; border: 1px solid var(--gold); }
.hero-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.hero .container { position: relative; z-index: 3; }
.hero .h-mark { width: 66px; height: 66px; margin: 0 auto 26px; }
.hero .h-mark .ring { fill: none; stroke: var(--gold); stroke-width: 1; }
.hero .h-mark .pp { font-family: var(--font-display); font-size: 31px; fill: var(--ink); font-weight: 600; }
.hero .display {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 9.8rem); letter-spacing: 0.05em;
  line-height: 0.98; text-transform: uppercase; color: var(--ink); margin: 16px 0 8px;
}
.hero .display .amp { font-family: var(--font-sub); font-style: italic; text-transform: none; color: var(--gold-deep); font-weight: 600; }
.hero .sub { font-family: var(--font-sub); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--gold-deep); margin-bottom: 28px; }
.hero .lead { max-width: 600px; margin: 0 auto; }
.hero .actions { margin-top: 42px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* ---------- Video / dark hero variant ---------- */
.hero--video { background: var(--black); color: var(--studio-white); }
.hero--video::after { display: none; }
.hero--video .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,15,11,0.55) 0%, rgba(18,15,11,0.62) 55%, rgba(18,15,11,0.80) 100%); }
.hero--video .container { position: relative; z-index: 3; }
.hero--video .display, .hero--video h1 { color: var(--studio-white); }
.hero--video .sub { color: var(--gold-soft); }
.hero--video .lead { color: rgba(245,243,237,0.86); }
.hero--video .eyebrow { color: var(--gold-soft); }
.hero--video .eyebrow::before, .hero--video .eyebrow::after { background: var(--gold-soft); }
.hero--video .h-mark .ring { stroke: var(--gold-soft); }
.hero--video .h-mark .pp { fill: var(--studio-white); }
.hero--video .hero-frame { border-color: rgba(218,193,141,0.45); }
.hero--video .hero-frame::before, .hero--video .hero-frame::after { border-color: var(--gold-soft); }

/* ---------- Headline reveal (line-mask) ---------- */
.hl-mask { overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hl-inner { display: block; transform: none; opacity: 1; transition: transform 1.1s var(--ease), opacity 1.1s var(--ease); }
.hl-mask.in .hl-inner { transform: translateY(0); opacity: 1; }

/* ---------- Fade-up ---------- */
.anim-fade { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.anim-fade.in { opacity: 1; transform: none; }

/* ---------- Section intro ---------- */
.intro { max-width: 800px; margin: 0 auto 70px; }
.intro h2 { margin: 20px 0 22px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); padding: 26px 0; background: var(--studio-white); }
.marquee .track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scroll 34s linear infinite; }
.marquee span { font-family: var(--font-sub); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--ink); display: inline-flex; align-items: center; gap: 60px; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.6em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--studio-white); border: 1px solid var(--linen); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -34px rgba(31,28,23,0.5); }
.card .thumb { aspect-ratio: 4/3; position: relative; overflow: hidden; display:flex; align-items:center; justify-content:center; }
.card .thumb .ph-label { position:absolute; bottom: 16px; left:0; right:0; text-align:center; font-family: var(--font-sub); font-style: italic; font-weight: 500; font-size: 1.15rem; color: rgba(245,243,237,0.95); z-index:2; }
.card:hover .thumb .art { transform: scale(1.06); }
.card .body { padding: 32px 32px 38px; }
.card .body h3 { margin-bottom: 12px; }
.card .body p { color: var(--text); font-size: 0.98rem; }
.card .more { display: inline-block; margin-top: 18px; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); border-bottom: 1px solid var(--line-gold); padding-bottom: 3px; transition: 0.4s; }
.card:hover .more { letter-spacing: 0.3em; }

/* ---------- Image / placeholder blocks ---------- */
.ph { position: relative; overflow: hidden; background: var(--limestone); }
.ph .art { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s var(--ease); }
.ph img.art { width: 100%; height: 100%; object-fit: cover; }
.ph::after { content:""; position: absolute; inset: 14px; border: 1px solid rgba(245,243,237,0.32); z-index: 1; pointer-events: none; }
.ph.light::after { border-color: rgba(174,139,76,0.42); }
.art-stone  { background: linear-gradient(145deg, #98907f, #6f6757); }
.art-gold   { background: linear-gradient(145deg, #c8ad77, #8c6e36); }
.art-linen  { background: linear-gradient(145deg, var(--linen), var(--limestone)); }
.art-blush  { background: linear-gradient(145deg, var(--blush), #cdb6a6); }
.art-esp    { background: linear-gradient(145deg, #2a241b, #181410); }
.art-black  { background: linear-gradient(145deg, #221c15, #110e09); }
.ph .glyph { position: absolute; inset: 0; display:flex; align-items:center; justify-content:center; z-index: 1; pointer-events:none; }
.ph .glyph svg { width: 38%; max-width: 130px; opacity: 0.55; }
.ph .glyph .ln { fill:none; stroke: rgba(245,243,237,0.72); stroke-width: 1.1; }
.ph.light .glyph .ln { stroke: rgba(174,139,76,0.7); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split .media { aspect-ratio: 4/5; position: relative; }
.split h2 { margin: 18px 0 24px; }
.split p { color: var(--text); margin-bottom: 16px; }
.split.flip .media { order: 2; }

/* ---------- Collage ---------- */
.collage { position: relative; min-height: 560px; }
.collage .c-img { position: absolute; }
.collage .c1 { width: 58%; aspect-ratio: 4/5; top: 0; left: 0; z-index: 1; }
.collage .c2 { width: 46%; aspect-ratio: 1/1; bottom: 0; right: 0; z-index: 2; box-shadow: -26px -26px 0 0 var(--studio-white); }
.collage .c3 { width: 26%; aspect-ratio: 3/4; bottom: 12%; left: 6%; z-index: 3; box-shadow: -16px -16px 0 0 var(--studio-white); }
.collage-text { padding-left: 24px; }
.collage-text .lead { margin-bottom: 22px; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }
.stat { text-align: center; padding: 46px 18px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 4.2vw, 3.9rem); color: var(--gold-deep); line-height: 1; }
.stat .l { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 14px; font-weight: 500; }

/* ---------- Dark band / quote ---------- */
.band { position: relative; background: linear-gradient(155deg, var(--espresso), var(--espresso-2)); color: var(--studio-white); text-align: center; overflow: hidden; }
.band::before { content:"\201C"; position:absolute; top: -16px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 18rem; color: rgba(174,139,76,0.16); line-height: 1; }
.band h2 { color: var(--studio-white); }
.band .eyebrow { color: var(--gold-soft); }
.band blockquote { position: relative; font-family: var(--font-sub); font-style: italic; font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 3rem); line-height: 1.4; max-width: 920px; margin: 24px auto 26px; color: var(--studio-white); }
.band cite { font-family: var(--font-body); font-style: normal; font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; }
.band-stone { background: linear-gradient(155deg, var(--stone), #6f6757); }
.band-stone::before { color: rgba(245,243,237,0.16); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step { text-align: center; position: relative; }
.step:not(:last-child)::after { content:""; position:absolute; top: 30px; right: -18px; width: 36px; height:1px; background: var(--line-gold); }
.step .num { font-family: var(--font-display); font-weight: 600; font-size: 3.2rem; color: var(--gold); display: block; margin-bottom: 14px; line-height: 1; }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { font-size: 0.96rem; color: var(--text); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .tile { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.gallery .tile.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery .tile:hover .art { transform: scale(1.07); }
.gallery .tile .label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--studio-white); background: rgba(31,28,23,0.22); opacity: 0; transition: opacity 0.6s var(--ease); padding: 20px; z-index: 2; }
.gallery .tile:hover .label { opacity: 1; background: rgba(31,28,23,0.58); }
.gallery .tile .label .k { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; transform: translateY(8px); transition: transform 0.6s var(--ease); }
.gallery .tile:hover .label .k { transform: none; }
.gallery .tile .label .s { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-soft); margin-top: 10px; font-weight: 500; }

/* ---------- Filter pills ---------- */
.filters { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.pill { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 10px 24px; border: 1px solid var(--line); color: var(--text); background: transparent; cursor: pointer; transition: 0.4s var(--ease); font-weight: 500; }
.pill:hover, .pill.active { background: var(--espresso); color: var(--studio-white); border-color: var(--espresso); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.value { text-align: center; }
.value .ico { color: var(--gold); display:inline-block; }
.value .ico svg { width: 48px; height: 48px; }
.value .ico .ln { fill:none; stroke: var(--gold); stroke-width:1.1; }
.value h3 { font-size: 1.3rem; margin: 16px 0 10px; }
.value p { color: var(--text); font-size: 0.96rem; }

/* ---------- Contact / form ---------- */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 15px 16px; border: 1px solid var(--limestone); background: var(--studio-white); font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); transition: border-color 0.3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-info p { margin-bottom: 20px; color: var(--text); }
.contact-info .k { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 5px; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(245,243,237,0.74); padding: 80px 0 38px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
.site-footer .brand .crest .ring { stroke: var(--gold-soft); }
.site-footer .brand .crest .pp { fill: var(--studio-white); }
.site-footer .brand .mark { color: var(--studio-white); }
.site-footer .brand .mark b { color: var(--gold-soft); }
.site-footer .brand .tag { color: rgba(245,243,237,0.5); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-size: 0.92rem; padding: 5px 0; color: rgba(245,243,237,0.74); transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-soft); padding-left: 6px; }
.footer-bottom { margin-top: 58px; padding-top: 28px; border-top: 1px solid rgba(174,139,76,0.22); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(245,243,237,0.55); }

/* ---------- Interior page hero ---------- */
.page-hero { position: relative; background: radial-gradient(120% 130% at 50% 0%, var(--linen), var(--limestone)); color: var(--ink); text-align: center; padding: clamp(96px, 13vw, 168px) 0 clamp(74px, 10vw, 124px); overflow: hidden; }
.page-hero .hero-frame { inset: 22px; }
.page-hero .container { position: relative; z-index: 3; }
.page-hero h1 { margin: 16px 0 18px; }
.page-hero h1 em { font-family: var(--font-sub); font-style: italic; color: var(--gold-deep); }
.page-hero p { color: var(--text); max-width: 660px; margin: 0 auto; font-family: var(--font-sub); font-weight: 500; font-size: 1.5rem; }

/* ---------- Generic reveal ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .steps, .values, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-wrap { grid-template-columns: 1fr; gap: 46px; }
  .split.flip .media { order: 0; }
  .split .media { aspect-ratio: 16/12; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .step:not(:last-child)::after { display:none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero .botanical { width: 22%; opacity: 0.3; }
  .collage { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .collage .c-img { position: relative; width: auto; }
  .collage .c1 { grid-column: span 2; aspect-ratio: 16/9; }
  .collage .c2, .collage .c3 { box-shadow: none; aspect-ratio: 4/5; }
  .collage-text { padding-left: 0; }
}
@media (max-width: 640px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--studio-white); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
  .nav-links.open { max-height: 420px; }
  .nav-links a { padding: 16px 40px; width: 100%; border-top: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .steps, .values, .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery .tile.wide { grid-column: span 1; aspect-ratio: 3/4; }
  .hero { min-height: 88vh; } .hero .botanical { display:none; }
  .hero .actions { flex-direction: column; } .hero .actions .btn { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .anim-fade { opacity: 1; transform: none; }
  .hl-inner { transform: none; opacity: 1; }
}
