/* =========================================================================
   ONUR HÜSEYİN KOÇAK — Bangkok-based AI & UGC Creator
   Premium editorial design system. Light, warm paper, gold accent.
   Static. No framework. main.css (legacy subpages keep style.css).
   ========================================================================= */

:root {
  --bg:        #F5F3EE;   /* warm paper */
  --bg-2:      #EFEAE1;   /* slightly deeper panel */
  --ink:       #111111;
  --ink-2:     #666666;
  --ink-3:     #8d8a83;
  --gold:      #C6A972;
  --gold-deep: #a98c52;
  --line:      rgba(17, 17, 17, 0.12);
  --line-soft: rgba(17, 17, 17, 0.07);
  --white:     #ffffff;

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

  --container: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --section: clamp(80px, 12vw, 168px);
  --radius: 16px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
.display { font-family: var(--font-display); font-weight: 400; }
em, .italic { font-style: italic; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.kicker.center { justify-content: center; }
.kicker.solo::before { display: none; }

.lede { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: 58ch; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .kicker { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(32px, 5.2vw, 60px); }
.section-head p { margin-top: 22px; font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 56ch; }
.divider { height: 1px; background: var(--line-soft); border: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.01em; padding: 16px 30px; border-radius: 100px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-lg { padding: 19px 38px; font-size: 15px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color .3s var(--ease), gap .3s var(--ease); }
.link-arrow:hover { border-color: var(--gold); gap: 13px; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(245, 243, 238, 0.82); backdrop-filter: saturate(1.4) blur(16px); -webkit-backdrop-filter: saturate(1.4) blur(16px); border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--font-display); font-size: 19px; letter-spacing: -0.01em; font-weight: 500; display: flex; align-items: baseline; gap: 9px; }
.brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; transform: translateY(-2px); }
.brand small { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .3s var(--ease); position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.lang-toggle button { font-size: 12px; font-weight: 600; padding: 7px 13px; color: var(--ink-3); letter-spacing: 0.04em; transition: background .3s var(--ease), color .3s var(--ease); }
.lang-toggle button.active { background: var(--ink); color: var(--bg); }
.nav-cta { font-size: 14px; }
.mobile-menu { display: none; }
.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { padding-top: 132px; padding-bottom: clamp(56px, 9vw, 120px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero-kicker { margin-bottom: 30px; }
.hero h1 { font-size: clamp(42px, 7vw, 92px); letter-spacing: -0.035em; line-height: 0.99; }
.hero h1 em { color: var(--gold-deep); font-style: italic; }
.hero .lede { margin-top: 30px; font-size: clamp(17px, 1.9vw, 20px); }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--ink-2); padding: 8px 15px; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,0.4); }
.chip svg { width: 14px; height: 14px; color: var(--gold-deep); }

.hero-figure { position: relative; }
.hero-portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 40px 80px -40px rgba(17,17,17,0.4); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18); border-radius: inherit; pointer-events: none; }
.hero-frame { position: absolute; inset: -14px; border: 1px solid var(--gold); border-radius: calc(var(--radius-lg) + 14px); z-index: -1; opacity: 0.5; }
.hero-caption { position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; align-items: center; justify-content: space-between; color: var(--white); font-size: 12px; letter-spacing: 0.06em; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-caption .loc { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.hero-badge {
  position: absolute; top: -18px; left: -22px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; box-shadow: 0 20px 40px -24px rgba(17,17,17,0.45);
}
.hero-badge .n { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.hero-badge .l { font-size: 11px; color: var(--ink-2); letter-spacing: 0.05em; margin-top: 5px; }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: clamp(20px, 3vw, 34px); color: var(--ink); padding: 0 34px; white-space: nowrap; }
.marquee-item::after { content: "✦"; color: var(--gold); font-size: 0.5em; margin-left: 34px; transform: translateY(-0.3em); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 56px); }
.stat { }
.stat .n { font-family: var(--font-display); font-size: clamp(40px, 6vw, 68px); line-height: 1; letter-spacing: -0.03em; }
.stat .n span { color: var(--gold-deep); }
.stat .l { margin-top: 14px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.stats-note { margin-top: 30px; font-size: 12.5px; color: var(--ink-3); letter-spacing: 0.02em; }

/* =========================================================================
   WORK / SHORT-FORM VIDEO GRID
   ========================================================================= */
.work-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 56px); }
.lang-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px; }
.lang-pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.vcard { position: relative; }
.vframe {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-2); cursor: pointer; box-shadow: 0 18px 40px -28px rgba(17,17,17,0.5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.vcard:hover .vframe { transform: translateY(-6px); box-shadow: 0 36px 60px -30px rgba(17,17,17,0.55); }
.vframe video, .vframe img.poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vframe img.poster { transition: transform .7s var(--ease), opacity .4s var(--ease); }
.vcard:hover .vframe img.poster { transform: scale(1.04); }
.vframe::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%); z-index: 2; pointer-events: none; transition: opacity .4s var(--ease); }
.vframe.playing::before { opacity: 0; }
.vplay {
  position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center; transition: transform .35s var(--ease), opacity .3s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.vcard:hover .vplay { transform: translate(-50%, -50%) scale(1.08); }
.vplay svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.vframe.playing .vplay { opacity: 0; pointer-events: none; }
.vtag { position: absolute; z-index: 3; top: 13px; left: 13px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: rgba(17,17,17,0.5); backdrop-filter: blur(6px); padding: 6px 11px; border-radius: 100px; }
.vmetric { position: absolute; z-index: 3; bottom: 13px; left: 13px; right: 13px; display: flex; gap: 14px; color: var(--white); font-size: 13px; font-weight: 600; transition: opacity .3s var(--ease); }
.vframe.playing .vmetric { opacity: 0; }
.vmetric span { display: inline-flex; align-items: center; gap: 6px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.vmetric svg { width: 15px; height: 15px; opacity: 0.95; }
.vmeta { margin-top: 15px; }
.vmeta .vt { font-family: var(--font-display); font-size: 19px; line-height: 1.2; }
.vmeta .vd { margin-top: 6px; font-size: 13.5px; color: var(--ink-2); }
.viral { color: var(--gold-deep); font-weight: 600; }

/* =========================================================================
   TIKTOK FEATURE
   ========================================================================= */
.tiktok { background: var(--ink); color: var(--bg); border-radius: clamp(20px, 4vw, 36px); padding: clamp(40px, 7vw, 88px); position: relative; overflow: hidden; }
.tiktok .kicker { color: var(--gold); }
.tiktok-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.tiktok h2 { color: var(--bg); font-size: clamp(34px, 5vw, 62px); }
.tiktok h2 em { color: var(--gold); }
.tiktok p { margin-top: 22px; color: rgba(245,243,238,0.7); font-size: clamp(16px, 1.9vw, 19px); max-width: 46ch; }
.tiktok-handle { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: var(--bg); }
.tiktok-handle svg { width: 26px; height: 26px; color: var(--gold); }
.tiktok-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.tiktok-actions .btn-primary { background: var(--gold); color: var(--ink); }
.tiktok-actions .btn-primary:hover { background: var(--bg); }
.tiktok-actions .btn-ghost { color: var(--bg); border-color: rgba(245,243,238,0.3); }
.tiktok-actions .btn-ghost:hover { border-color: var(--bg); }
.tiktok-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tiktok-stack .vcard:nth-child(1) { transform: translateY(-18px); }
.tiktok-stack .vcard:nth-child(2) { transform: translateY(18px); }
@media (max-width: 860px) { .tiktok-stack .vcard { transform: none !important; } }
.tiktok-embed-wrap { display: flex; justify-content: center; align-items: center; min-height: 580px; }
.tiktok-embed-wrap .tiktok-embed { border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px -34px rgba(0,0,0,0.6); }
@media (max-width: 860px) { .tiktok-embed-wrap { min-height: 0; margin-top: 16px; } }

/* =========================================================================
   CASE STUDIES
   ========================================================================= */
.cases { display: grid; gap: clamp(28px, 4vw, 44px); }
.case {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
  padding: clamp(26px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
}
.case:nth-child(even) { grid-template-columns: 1fr 320px; }
.case:nth-child(even) .case-media { order: 2; }
.case-media { position: relative; }
.case-media .vframe { aspect-ratio: 9 / 16; max-width: 320px; margin: 0 auto; }
.case-num { font-family: var(--font-display); font-size: 14px; color: var(--gold-deep); letter-spacing: 0.1em; }
.case-body h3 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 10px; }
.case-rows { margin-top: 26px; display: grid; gap: 18px; }
.case-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.case-row:first-child { border-top: 0; padding-top: 0; }
.case-row .k { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.case-row .v { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.case-outcome { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 28px; }
.case-outcome .o .n { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); line-height: 1; }
.case-outcome .o .n span { color: var(--gold-deep); }
.case-outcome .o .l { font-size: 13px; color: var(--ink-2); margin-top: 7px; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about-figure .sig { margin-top: 20px; font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ink); }
.about-figure .sig small { display: block; font-family: var(--font-body); font-style: normal; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.about-body h2 { font-size: clamp(30px, 4.4vw, 52px); }
.about-body .big { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 27px); line-height: 1.4; color: var(--ink); margin-top: 24px; }
.about-body p { margin-top: 20px; color: var(--ink-2); font-size: 16.5px; max-width: 60ch; }
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-list { margin-top: 30px; display: grid; gap: 0; }
.about-list li { list-style: none; display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-soft); font-size: 15.5px; color: var(--ink); }
.about-list li svg { width: 19px; height: 19px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

/* =========================================================================
   SERVICES
   ========================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.svc {
  background: var(--bg); padding: clamp(28px, 3.4vw, 44px); position: relative;
  transition: background .4s var(--ease);
}
.svc:hover { background: var(--white); }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-num { font-family: var(--font-display); font-size: 14px; color: var(--gold-deep); letter-spacing: 0.08em; }
.svc-ico { width: 26px; height: 26px; color: var(--ink); transition: color .4s var(--ease), transform .4s var(--ease); }
.svc:hover .svc-ico { color: var(--gold-deep); transform: translateY(-2px); }
.svc h3 { font-size: clamp(21px, 2.4vw, 27px); margin-top: 26px; }
.svc p { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 42ch; }

/* =========================================================================
   PACKAGES
   ========================================================================= */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.pkg-card { background: var(--bg); padding: clamp(26px, 3vw, 40px); transition: background .4s var(--ease); display: block; }
.pkg-card:hover { background: var(--white); }
.pkg-top { display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--gold-deep); text-transform: uppercase; }
.pkg-card h3 { font-size: clamp(20px, 2.3vw, 25px); margin-top: 22px; }
.pkg-card p { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.pkg-cta { background: var(--ink); }
.pkg-cta h3, .pkg-cta .svc-num { color: var(--bg); }
.pkg-cta p { color: rgba(245,243,238,0.65); }
.pkg-cta:hover { background: var(--ink); }
@media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   RESULTS / WHY WORK WITH ME
   ========================================================================= */
.why { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.why-card { background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.why-card .q { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.32; }
.why-card .q span { color: var(--gold-deep); }
.why-card p { margin-top: 16px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.pullquote { text-align: center; max-width: 900px; margin: 0 auto; }
.pullquote .mark { font-family: var(--font-display); font-size: 80px; color: var(--gold); line-height: 0.5; height: 40px; display: block; }
.pullquote blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(24px, 3.6vw, 40px); line-height: 1.3; color: var(--ink); margin-top: 24px; }
.pullquote cite { display: block; margin-top: 26px; font-style: normal; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* =========================================================================
   LANDING PAGES (SEO intent pages)
   ========================================================================= */
.lp-hero { padding-top: 132px; padding-bottom: clamp(40px, 6vw, 72px); }
.lp-hero .kicker { margin-bottom: 26px; }
.lp-hero h1 { font-size: clamp(38px, 6vw, 76px); letter-spacing: -0.03em; line-height: 1.02; max-width: 16ch; }
.lp-hero h1 em { color: var(--gold-deep); font-style: italic; }
.lp-hero .lede { margin-top: 28px; max-width: 60ch; }
.lp-hero .hero-actions { margin-top: 36px; }
.crumbs { padding-top: 110px; font-size: 13px; color: var(--ink-3); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-2); border-bottom: 1px solid transparent; }
.crumbs a:hover { border-bottom-color: var(--gold); }
.prose p { color: var(--ink-2); font-size: 17px; line-height: 1.7; max-width: 65ch; margin-bottom: 18px; }
.prose p strong { color: var(--ink); }
.lp-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; margin-top: 8px; }
.lp-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); padding: 10px 0; border-top: 1px solid var(--line-soft); }
.lp-list li svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 720px) { .lp-list { grid-template-columns: 1fr; } }
.cta-band { background: var(--ink); color: var(--bg); border-radius: clamp(20px, 4vw, 32px); padding: clamp(40px, 7vw, 80px); text-align: center; }
.cta-band h2 { color: var(--bg); font-size: clamp(28px, 4.5vw, 50px); max-width: 18ch; margin: 0 auto; }
.cta-band p { color: rgba(245,243,238,0.7); margin: 18px auto 0; max-width: 50ch; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }
.cta-band .btn-primary { background: var(--gold); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--bg); }
.cta-band .btn-ghost { color: var(--bg); border-color: rgba(245,243,238,0.3); }
.cta-band .btn-ghost:hover { border-color: var(--bg); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-grid { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 3vw, 32px) 0; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25; color: var(--ink); transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-sign { flex-shrink: 0; width: 26px; height: 26px; position: relative; margin-top: 6px; }
.faq-sign::before, .faq-sign::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-sign::before { top: 12px; left: 3px; right: 3px; height: 1.5px; }
.faq-sign::after { left: 12px; top: 3px; bottom: 3px; width: 1.5px; }
.faq-item[open] .faq-sign::after { transform: scaleY(0); opacity: 0; }
.faq-answer { padding: 0 56px clamp(24px, 3vw, 34px) 0; font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 70ch; }
.faq-answer a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.faq-item[open] summary { color: var(--ink); }

/* =========================================================================
   NETWORK
   ========================================================================= */
.net-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.net-card {
  display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.net-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -36px rgba(17,17,17,0.5); border-color: var(--gold); }
.net-tag { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.net-card h3 { font-size: clamp(24px, 3vw, 34px); margin-top: 16px; }
.net-card p { margin-top: 14px; font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 44ch; }
.net-card .link-arrow { margin-top: 24px; }
.net-soon { display:inline-block; margin-top: 24px; font-size: 12.5px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color: var(--ink-3); border:1px solid var(--line); padding:6px 13px; border-radius:100px; }
@media (max-width: 720px) { .net-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.contact-left h2 { font-size: clamp(34px, 5vw, 62px); }
.contact-left .lede { margin-top: 22px; }
.contact-channels { margin-top: 38px; display: grid; gap: 2px; }
.cc { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-soft); transition: padding .3s var(--ease); }
.cc:hover { padding-left: 6px; }
.cc:last-child { border-bottom: 1px solid var(--line-soft); }
.cc-ico { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.cc:hover .cc-ico { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cc-ico svg { width: 18px; height: 18px; }
.cc .l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.cc .v { font-size: 16px; font-weight: 500; color: var(--ink); margin-top: 2px; }
.cc .arrow { margin-left: auto; color: var(--ink-3); transition: transform .3s var(--ease), color .3s var(--ease); }
/* Let the channel row shrink + the long email wrap on narrow phones (≤320px)
   instead of forcing the whole contact column wider than the viewport. */
.cc > span { min-width: 0; }
.cc .v { overflow-wrap: anywhere; }
.cc:hover .arrow { transform: translateX(4px); color: var(--ink); }
.response { margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.response .pulse { width: 9px; height: 9px; border-radius: 50%; background: #3fae6e; position: relative; }
.response .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid #3fae6e; animation: pulse 2s ease-out infinite; }
@keyframes pulse { to { transform: scale(2.2); opacity: 0; } }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form button[type=submit] { width: 100%; margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 13.5px; min-height: 18px; }
.form-status.ok { color: #2c8b58; }
.form-status.err { color: #c0492b; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 84px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr; gap: 40px; }
.footer-brand .b { font-family: var(--font-display); font-size: 26px; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; color: var(--ink-2); max-width: 38ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 15px; color: var(--ink-2); padding: 6px 0; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: clamp(48px, 6vw, 72px); padding-top: 28px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-figure { max-width: 440px; }
  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .tiktok-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-figure { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case, .case:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .case:nth-child(even) .case-media { order: 0; }
  .case-media .vframe { max-width: 260px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  /* Keep the brand + burger above the full-screen menu overlay (the menu is a
     sibling inside .nav with z-index 98) so the close button stays tappable. */
  .nav-inner { position: relative; z-index: 99; }
  /* Full-screen opaque overlay. inset:0 (not 76px) so it covers the whole
     viewport — the old 76px-top menu let scrolled page content (e.g. the
     dark portrait) bleed through and the links became unreadable. z-index 98
     keeps it BELOW the nav (z-100) so the burger/close button stays tappable
     on top, while top padding clears the nav bar. */
  .mobile-menu {
    position: fixed; inset: 0; background: var(--bg); z-index: 98;
    padding: calc(env(safe-area-inset-top, 0px) + 92px) var(--pad) calc(env(safe-area-inset-bottom, 0px) + 36px);
    display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a:not(.btn) { font-family: var(--font-display); font-size: clamp(24px, 8vw, 32px); padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-top: 22px; font-size: 15px; width: 100%; }
  /* When the menu is open the body gets .no-scroll — give the nav a solid
     paper background so the brand/burger strip is never see-through.
     CRITICAL: also drop backdrop-filter. A backdrop-filter on .nav.scrolled
     makes .nav the containing block for its position:fixed children, which
     traps the .mobile-menu inside the 76px nav bar instead of covering the
     viewport (the real cause of the "transparent menu" on scrolled/subpages). */
  body.no-scroll .nav { background: var(--bg); border-bottom-color: var(--line-soft); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; gap: 6px; }
  .case-row .k { padding-top: 0; }
  .hero-badge { display: none; }
}
@media (max-width: 460px) {
  .work-grid { grid-template-columns: 1fr; }
  .tiktok-stack { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; }
}
.no-scroll { overflow: hidden; }
