/* ============================================================================
   UGC BY ASHLYNN
   Three themes (editorial / noir / aura) x two modes (dark / light)
   All visual tokens live in CSS variables, swapped by [data-theme][data-mode].
   ========================================================================== */

/* ----------------------------- RESET ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ============================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: .22s var(--ease);
  --t: .42s var(--ease);
  --t-slow: .8s var(--ease);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Lora', Georgia, serif;
  --display-spacing: -0.01em;
  --display-weight: 600;
  --grain-opacity: 0.05;
}

/* ---------- GOLDEN HOUR (the site theme) ---------- */
[data-theme="editorial"] {
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --display-spacing: -0.01em;
  --display-weight: 600;
  --grain-opacity: 0.06;
  --btn-radius: 100px;
}
[data-theme="editorial"][data-mode="dark"] {
  --bg: #15100b;
  --bg-2: #1d160f;
  --surface: #241a12;
  --surface-2: #2c2018;
  --text: #f4e9d9;
  --text-dim: #b9a48f;
  --accent: #c98a5f;
  --accent-2: #e2b88f;
  --accent-ink: #1a120a;
  --check: #5fc98a;
  --line: rgba(244, 233, 217, 0.12);
  --glow: rgba(201, 138, 95, 0.20);
  --blob-1: rgba(201, 138, 95, 0.30);
  --blob-2: rgba(226, 184, 143, 0.20);
  --blob-3: rgba(150, 96, 66, 0.28);
}
[data-theme="editorial"][data-mode="light"] {
  --bg: #f7efe3;
  --bg-2: #fbf5ec;
  --surface: #fffaf2;
  --surface-2: #f3e7d6;
  --text: #41382f;
  --text-dim: #7a6857;
  --accent: #a8745b;
  --accent-2: #c4977a;
  --accent-ink: #fffaf2;
  --check: #3a9c64;
  --line: rgba(42, 31, 21, 0.13);
  --glow: rgba(168, 116, 91, 0.16);
  --blob-1: rgba(168, 116, 91, 0.30);
  --blob-2: rgba(196, 151, 122, 0.34);
  --blob-3: rgba(150, 100, 75, 0.26);
}

/* ============================================================================
   BASE
   ========================================================================== */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(15px, 1.05vw, 17px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background var(--t), color var(--t);
}
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ----------------------------- TYPOGRAPHY ----------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-spacing); line-height: 1.06; text-wrap: balance; }
/* avoid single hanging words (orphans) */
p, .hero-sub, .section-lead, .hero-title { text-wrap: pretty; }
.hero-title, .section-title, .contact-title { text-wrap: balance; }

.eyebrow, .section-kicker {
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; font-family: var(--font-body);
}
.section-kicker { display: inline-block; margin-bottom: 18px; opacity: .95; }

.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.section-lead { color: var(--text-dim); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 56ch; margin-top: 16px; }

/* ----------------------------- BUTTONS ----------------------------- */
.btn {
  --btn-r: var(--btn-radius, 100px);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: var(--btn-r);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  will-change: transform; position: relative; white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.12rem; }

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 30px -10px var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px var(--glow); }

.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

/* quiet secondary: a text link with an arrow, so the primary clearly wins */
.btn-text { background: transparent; color: var(--text); padding: 14px 10px; gap: .45em; font-weight: 600; }
.btn-text::after { content: "\2192"; transition: transform var(--t-fast); }
.btn-text:hover { color: var(--accent); }
.btn-text:hover::after { transform: translateX(5px); }

/* ============================================================================
   BACKGROUND LAYERS
   ========================================================================== */
.bg-aura { position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .9; transition: background var(--t-slow); }
.blob-1 { width: 46vw; height: 46vw; background: var(--blob-1); top: -12vw; left: -8vw; animation: drift1 22s ease-in-out infinite; }
.blob-2 { width: 40vw; height: 40vw; background: var(--blob-2); top: 28vh; right: -10vw; animation: drift2 26s ease-in-out infinite; }
.blob-3 { width: 38vw; height: 38vw; background: var(--blob-3); bottom: -10vw; left: 26vw; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6vw,4vh) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,6vh) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,-5vh) scale(1.15)} }

.bg-grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: var(--grain-opacity);
  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");
  mix-blend-mode: overlay;
}
[data-mode="dark"] .bg-grain { mix-blend-mode: soft-light; opacity: calc(var(--grain-opacity) * 1.6); }

/* spotlight follows the cursor (desktop) */
.spotlight {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 30%), var(--glow), transparent 60%);
  transition: opacity .6s ease;
}
@media (hover: hover) and (pointer: fine) { .spotlight { opacity: 1; } }

/* ============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t), backdrop-filter var(--t), border-color var(--t), padding var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 20px; }
.site-header.scrolled .header-inner { padding-block: 13px; }

.wordmark { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 1.22rem; letter-spacing: -0.01em; }

.nav { display: flex; gap: 30px; }
.nav a { font-size: .95rem; color: var(--text-dim); position: relative; transition: color var(--t-fast); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--accent); transition: width var(--t); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.mode-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color var(--t-fast), transform var(--t-fast); }
.mode-toggle:hover { border-color: var(--accent); transform: rotate(15deg); }
.mode-toggle svg { width: 19px; height: 19px; fill: none; stroke: var(--text); stroke-width: 1.7; stroke-linecap: round; }
.mode-toggle .icon-moon { display: none; }
[data-mode="light"] .mode-toggle .icon-sun { display: none; }
[data-mode="light"] .mode-toggle .icon-moon { display: block; }

.menu-btn { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg-2);
  display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 2rem; }
.mobile-menu nav a.btn { font-family: var(--font-body); font-size: 1rem; margin-top: 12px; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 124px; padding-bottom: 132px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero .eyebrow { margin-bottom: 24px; }

.hero-title { font-size: clamp(2.5rem, 5.6vw, 4.6rem); max-width: 15ch; }
.hero-title .accent { color: var(--accent); }

.hero-sub { color: var(--text-dim); font-size: clamp(1.05rem, 1.5vw, 1.24rem); max-width: 46ch; margin-top: 24px; }

.hero-cta { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }

/* hero portrait (her face, immediately) */
.hero-media { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-portrait { position: relative; width: min(400px, 100%); aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, var(--surface), var(--surface-2)); box-shadow: 0 50px 90px -40px var(--glow); }
.hero-portrait::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent); pointer-events: none; }
.hero-portrait img, .hero-portrait .hero-vid { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.hero-portrait .hero-vid { display: none; }
.hero-portrait.has-vid .hero-vid { display: block; }
.hero-portrait.has-vid img { display: none; }
.hero-portrait.has-img .hero-portrait-fallback, .hero-portrait.has-vid .hero-portrait-fallback { display: none; }
.hero-portrait-fallback { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }
.hero-portrait-fallback span { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 10rem); color: var(--accent); opacity: .5; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 100px; background: color-mix(in srgb, var(--bg) 60%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--line); font-size: .85rem; font-weight: 500; }
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--check); box-shadow: 0 0 0 0 color-mix(in srgb, var(--check) 50%, transparent); animation: pulse 2.2s infinite; }

.hero-meta { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; color: var(--text-dim); font-size: .95rem; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); opacity: .5; }
.hero-loc { display: inline-flex; align-items: center; gap: 8px; }
.hero-loc::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* hero marquee */
.marquee { display: flex; overflow: hidden; user-select: none; gap: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-hero { position: absolute; bottom: 56px; left: 0; right: 0; }
.marquee-track { display: flex; flex-shrink: 0; gap: 0; animation: scroll-x 60s linear infinite; }
.marquee-track .m-item { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--text-dim); opacity: .35; padding-inline: 28px; white-space: nowrap; }
.marquee-track .m-item::after { content: "\2726"; margin-left: 56px; color: var(--accent); font-size: .8em; opacity: .8; }
@keyframes scroll-x { to { transform: translateX(-100%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

.scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 20px; display: grid; place-items: start center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent); animation: cue 1.8s ease infinite; }
@keyframes cue { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(12px)} }

/* ============================================================================
   VALUE STRIP
   ========================================================================== */
.value-strip { border-block: 1px solid var(--line); }
.value-inner { display: grid; grid-template-columns: repeat(2, auto); justify-content: center; gap: 18px 60px; padding-block: 32px; }
.value-item { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-size: 1rem; font-weight: 500; }
.value-item .check { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 18%, transparent); flex-shrink: 0; }
.value-item svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================================
   SECTIONS (shared)
   ========================================================================== */
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }

/* ============================================================================
   WORK / PHONE GRID
   ========================================================================== */
.phone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px); }

.phone-card { position: relative; }
.phone {
  position: relative; aspect-ratio: 9 / 19.5; border-radius: 30px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.5);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  transform-style: preserve-3d; will-change: transform;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 9px; border-radius: 10px; background: rgba(0,0,0,.45); z-index: 3;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-card:hover .phone { transform: translateY(-8px); box-shadow: 0 44px 80px -30px var(--glow); border-color: var(--accent); }

/* gradient fill for cards without a thumbnail */
.phone.is-placeholder, .phone.no-poster { display: grid; place-items: center; background: linear-gradient(150deg, var(--surface), var(--surface-2)); }
/* shimmer only on true "coming soon" placeholders */
.phone.is-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, var(--glow) 50%, transparent 70%);
  background-size: 240% 100%; animation: shimmer 3.4s linear infinite; opacity: .7;
}
@keyframes shimmer { to { background-position: -240% 0; } }
.ph-inner { position: relative; z-index: 2; text-align: center; padding: 24px; }
.ph-play { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; margin: 0 auto 16px; background: color-mix(in srgb, var(--bg) 40%, transparent); backdrop-filter: blur(6px); }
.ph-play svg { width: 20px; height: 20px; fill: var(--accent); margin-left: 3px; }
.ph-label { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.ph-sub { font-size: .82rem; color: var(--text-dim); margin-top: 6px; }

/* real video overlay */
.phone .v-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 55%); opacity: 0; transition: opacity var(--t); }
.phone-card:hover .v-overlay { opacity: 1; }
.phone .v-overlay .v-metric { color: #fff; font-weight: 600; font-size: .9rem; }
.phone .v-tag { position: absolute; top: 16px; left: 14px; z-index: 4; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; background: color-mix(in srgb, var(--bg) 55%, transparent); backdrop-filter: blur(6px); color: var(--text); border: 1px solid var(--line); }
.phone .v-play { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; }
.phone .v-play svg { width: 52px; height: 52px; fill: #fff; opacity: .92; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); transition: transform var(--t-fast); }
.phone-card:hover .v-play svg { transform: scale(1.12); }
/* placeholder play glyph uses the accent so it reads in light and dark */
.phone.is-placeholder .v-play svg { fill: var(--accent); opacity: .9; filter: none; }

/* real clip: video fills the frame, tag/play fade out on hover while it plays */
.phone.has-clip { display: block; }
.v-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.phone.has-clip .v-tag, .phone.has-clip .v-play { transition: opacity var(--t); }
.phone.has-clip:hover .v-tag, .phone.has-clip:hover .v-play { opacity: 0; }

/* ------------------------ TIKTOK / INSTAGRAM EMBEDS -------------------
   Real posts, played by TikTok's and Instagram's own players. Columns
   never go below the 325px the embeds need, so the grid drops to 2 then
   1 on its own. */
.tt-grid {
  display: grid; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(325px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}
.tt-card {
  display: flex; flex-direction: column; margin: 0; overflow: hidden;
  padding: 14px 14px 4px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.tt-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 44px 80px -44px var(--glow); }
.tt-frame { border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
/* keep the player inside the card on every screen size */
.tt-frame > * { max-width: 100%; min-width: 0; margin: 0; }
.tt-frame iframe { display: block; border: 0; }

/* TikTok's player endpoint returns the bare video, so it just needs a
   vertical window to sit in */
.embed-9x16 { position: relative; aspect-ratio: 9 / 16; }
.embed-9x16 iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Instagram has no bare-player endpoint. Its embed page ships an account bar
   on top, then the reel in a 4:5 box (so a 9:16 reel sits pillarboxed between
   black bars), then "view more", the like / comment / share row, the like
   count, and a comment box. Only the reel itself should survive.

   Two moves get there. The iframe is widened past its window so the reel's
   own 9:16 area - not the 4:5 box around it - spans the full width, which
   pushes the black bars outside the frame. That widening also makes the 4:5
   box exactly as tall as the 9:16 window, so everything below it falls past
   the bottom edge. Then the whole iframe is pulled up by the height of the
   account bar. overflow: hidden clips the rest.

   Two numbers to nudge if Instagram changes that layout:
     --ig-head  height of the account bar, cropped off the top
     --ig-zoom  how far to widen the iframe. Its 4:5 box is 16/9 * 4/5 wide
                relative to the reel inside it. A black bar down each side
                means raise it; losing the edges of the video means lower it. */
.ig-crop {
  --ig-head: 58px;
  --ig-zoom: 1.4222;
  position: relative; overflow: hidden; aspect-ratio: 9 / 16;
}
.ig-crop iframe {
  position: absolute; left: 50%; top: calc(var(--ig-head) * -1);
  transform: translateX(-50%);
  width: calc(100% * var(--ig-zoom));
  /* room below the crop for the chrome to render out of sight */
  height: calc(100% + var(--ig-head) + 340px);
}

.tt-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 6px 16px; }
.tt-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
}
.tt-title { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.25; margin-top: 4px; }
.tt-note { color: var(--text-dim); font-size: .85rem; }
.tt-link { margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--accent); }
.tt-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-fast); }
.tt-card:hover .tt-link svg { transform: translate(2px, -2px); }

.phone-title { margin-top: 16px; font-family: var(--font-display); font-size: 1.05rem; }
.phone-meta { color: var(--text-dim); font-size: .85rem; margin-top: 2px; }

.work-cta { margin-top: 56px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: clamp(32px, 5vw, 60px); border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line)); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--accent) 9%, var(--surface)); box-shadow: 0 36px 70px -44px var(--glow); }
.work-cta h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.work-cta p { color: var(--text-dim); max-width: 48ch; }

/* quality signal chips */
.spec-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.spec-chip { font-size: .78rem; font-weight: 600; letter-spacing: .02em; padding: 7px 14px; border-radius: 100px; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); }
.section-lead-sm { font-size: clamp(.95rem, 1.15vw, 1.05rem); }

/* ============================================================================
   STATS
   ========================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.stat-card { padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform var(--t), border-color var(--t); }
.stat-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.stat-value { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--accent); }
.stat-label { color: var(--text-dim); margin-top: 12px; font-size: .96rem; }

/* ============================================================================
   BRANDS
   ========================================================================== */
.brands-area { margin-top: 8px; }
.brand-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.brand-logo { display: grid; place-items: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); transition: border-color var(--t-fast), transform var(--t-fast); font-family: var(--font-display); font-size: 1.15rem; }
.brand-logo:hover { border-color: var(--accent); transform: translateY(-4px); }
.brand-logo img { max-height: 40px; width: auto; object-fit: contain; }

/* ============================================================================
   ABOUT
   ========================================================================== */
.about-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-media { position: relative; display: flex; flex-direction: column; align-items: center; }

/* "at a glance" facts card (shown when there is no second About photo) */
.about-card { width: 100%; padding: clamp(26px, 3.4vw, 40px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: 0 44px 80px -50px var(--glow); }
.about-card-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.about-facts { margin: 22px 0 26px; display: flex; flex-direction: column; }
.about-facts li { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-top: 1px solid var(--line); }
.about-facts li:first-child { border-top: none; padding-top: 0; }
.about-facts li:last-child { padding-bottom: 0; }
.fact-label { font-size: .8rem; color: var(--text-dim); }
.fact-value { font-family: var(--font-display); font-size: 1.15rem; }
.about-card .btn { width: 100%; }
.about-photo { position: relative; width: min(360px, 80%); aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, var(--surface), var(--surface-2)); box-shadow: 0 40px 80px -40px var(--glow); }
/* soft golden ring around the portrait */
.about-photo::after { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); pointer-events: none; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.about-photo-fallback { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }
.about-photo-fallback span { font-family: var(--font-display); font-size: clamp(5rem, 14vw, 11rem); color: var(--accent); opacity: .5; }
.about-photo.has-img .about-photo-fallback { display: none; }
.about-badge { position: relative; margin-top: 24px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 100px; background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--line); font-size: .86rem; font-weight: 500; white-space: nowrap; z-index: 3; }
.about-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #45d483; box-shadow: 0 0 0 0 rgba(69,212,131,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(69,212,131,.5)} 70%{box-shadow:0 0 0 9px rgba(69,212,131,0)} 100%{box-shadow:0 0 0 0 rgba(69,212,131,0)} }

.about-text { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.about-text p { color: var(--text-dim); font-size: clamp(1rem, 1.3vw, 1.12rem); }
.about-text p:first-child { color: var(--text); font-size: clamp(1.1rem, 1.5vw, 1.28rem); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-tag { padding: 8px 16px; border-radius: 100px; border: 1px solid var(--line); font-size: .86rem; color: var(--text-dim); transition: color var(--t-fast), border-color var(--t-fast); }
.about-tag:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================================
   SERVICES
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.service-card { padding: clamp(26px, 3vw, 40px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform var(--t), border-color var(--t), background var(--t); position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px circle at var(--cx,50%) var(--cy,0%), var(--glow), transparent 70%); opacity: 0; transition: opacity var(--t); pointer-events: none; }
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.service-card:hover::after { opacity: 1; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 14%, transparent); margin-bottom: 22px; }
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: .98rem; }

/* ============================================================================
   PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.process-card { position: relative; padding-top: 30px; border-top: 2px solid var(--line); transition: border-color var(--t); }
.process-card:hover { border-color: var(--accent); }
.process-step { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--accent); line-height: 1; opacity: .9; }
.process-card h3 { font-size: 1.4rem; margin: 16px 0 10px; }
.process-card p { color: var(--text-dim); }

/* ============================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.testi-card { padding: clamp(26px, 3vw, 38px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.testi-quote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; }
.testi-quote::before { content: "\201C"; color: var(--accent); font-size: 1.4em; line-height: 0; }
.testi-author { margin-top: 22px; color: var(--text-dim); font-size: .92rem; font-weight: 500; }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; max-width: 820px; margin-inline: auto; }
.contact-title { font-size: clamp(2.2rem, 6vw, 4.4rem); max-width: 18ch; margin: 8px 0 22px; }
.contact-text { color: var(--text-dim); max-width: 52ch; font-size: clamp(1.02rem, 1.4vw, 1.18rem); }
.contact .btn-xl { margin-top: 38px; }
.contact-email { margin-top: 24px; color: var(--text-dim); font-size: .98rem; border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color var(--t-fast), border-color var(--t-fast); }
.contact-email:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding-block: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-mark { font-family: var(--font-display); font-size: 1.1rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dim); font-size: .92rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-dim); font-size: .85rem; }

/* ============================================================================
   SOCIAL ICONS
   ========================================================================== */
.social-row { display: inline-flex; align-items: center; gap: 12px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--text) 22%, transparent); display: grid; place-items: center; color: var(--text); transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), background var(--t-fast); }
.social-link:hover { color: var(--accent); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

/* hero inline social: handle once, then platform icon buttons */
.hero-socials { display: inline-flex; align-items: center; gap: 13px; }
.hero-handle { font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.hero-social-links { display: inline-flex; align-items: center; gap: 9px; }
.hero-socials .social-link { width: 36px; height: 36px; }
.hero-socials .social-link svg { width: 17px; height: 17px; }
.hero-socials .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); opacity: .5; }

/* mobile-only mode toggle inside the menu */
.menu-mode { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border: 1px solid var(--line); border-radius: 100px; font-family: var(--font-body); font-size: 1rem; color: var(--text); margin-top: 6px; }
.menu-mode svg { width: 19px; height: 19px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; }
.menu-mode .icon-moon { display: none; }
[data-mode="light"] .menu-mode .icon-sun { display: none; }
[data-mode="light"] .menu-mode .icon-moon { display: block; }

/* ============================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1){transition-delay:.04s}
.reveal-stagger.in > *:nth-child(2){transition-delay:.1s}
.reveal-stagger.in > *:nth-child(3){transition-delay:.16s}
.reveal-stagger.in > *:nth-child(4){transition-delay:.22s}
.reveal-stagger.in > *:nth-child(5){transition-delay:.28s}
.reveal-stagger.in > *:nth-child(6){transition-delay:.34s}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-actions { display: none; }
  .menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { order: -1; align-items: flex-start; }
  .hero-portrait { width: min(240px, 60%); aspect-ratio: 1 / 1; border-radius: 50%; }
  .phone-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 8px; }
  .process-card { padding-block: 24px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .phone-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .value-inner { grid-template-columns: 1fr; justify-content: start; gap: 14px; }
  .hero { padding-top: 104px; min-height: auto; padding-bottom: 80px; }
  .hero-portrait { width: min(200px, 54%); }
  .marquee-hero { position: static; margin-top: 48px; }
  .scroll-cue { display: none; }
  .hero-cta { width: 100%; }
}
@media (max-width: 380px) {
  .phone-grid { grid-template-columns: 1fr; }
}
