/*
Theme Name: Chokuta
Theme URI: https://chokuta.studio/
Author: Chokuta Studio
Author URI: https://chokuta.studio/
Description: Chokuta Studio — operating-partner agency theme. Black + gold on cream, with an Instrument Serif / Inter type system. Built pixel-perfect from the Claude Design handoff. Includes custom page templates for Home, About, Niches, Case Studies, Contact, and Get Started.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chokuta
Tags: agency, business, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   Chokuta Studio — shared stylesheet
   Black + gold/yellow on cream
   ======================================== */

/* Google Fonts are loaded via wp_enqueue_style in functions.php — no @import needed. */

:root {
  /* color */
  --gold:        #F5C518;
  --gold-deep:   #E0B015;
  --gold-soft:   #FFE066;
  --gold-tint:   #FBF2C7;
  --black:       #000000;
  --ink:         #000000;
  --ink-2:       #0A0A0A;
  --cream:       #F4EFE2;
  --cream-2:     #EFE9D9;
  --paper:       #FBF7EB;
  --line:        #E2D9C2;
  --line-2:      #D8CDB1;
  --muted:       #6B6557;
  --muted-2:     #8F8772;
  --on-dark:     #F4EFE2;
  --on-dark-mut: #A39A82;

  /* type */
  --font-ui: 'Inter', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--ink); }
.eyebrow-sm { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--black);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-gold .arrow { background: var(--black); color: var(--gold); }
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: #222; }
.btn-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--black); }

/* ---- Navigation ---- */
.nav-wrap {
  position: sticky; top: 16px; z-index: 50;
  padding: 0 var(--gutter);
  margin-top: 16px;
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  background: rgba(251, 247, 235, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav__logo img { display: block; }
.brand-lockup {
  height: 38px;
  width: auto;
  display: block;
}
.brand-lockup--lg { height: 56px; }
.footer__brand-row {
  display: flex; align-items: center;
  margin-bottom: 6px;
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink);
  transition: background .15s ease;
}
.nav__links a:hover { background: var(--cream-2); }
.nav__links a.is-active { background: var(--black); color: var(--gold); }

.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { padding: 10px 18px 10px 14px; font-size: 14.5px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  align-items: center; justify-content: center;
  position: relative;
}
.nav__burger span {
  position: absolute;
  width: 18px; height: 2px; background: var(--gold);
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---- Fullscreen mobile menu ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black);
  color: var(--cream);
  z-index: 49;
  padding: 100px var(--gutter) 40px;
  display: flex; flex-direction: column;
  transform: translateY(-101%);
  transition: transform .5s cubic-bezier(.7,.0,.2,1);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
body.menu-open { overflow: hidden; }

.mobile-menu__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid #1a1a1a;
}
.mobile-menu__links li { border-bottom: 1px solid #1a1a1a; }
.mobile-menu__links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(38px, 9vw, 56px);
  line-height: 1;
  color: var(--cream);
  transition: color .2s ease, padding .25s ease;
}
.mobile-menu__links a:hover, .mobile-menu__links a.is-active {
  color: var(--gold);
  padding-left: 12px;
}
.mobile-menu__links a .num {
  font-family: var(--font-ui); font-style: normal;
  font-size: 14px; color: var(--on-dark-mut);
  letter-spacing: 0.1em;
}
.mobile-menu__foot {
  margin-top: auto; padding-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid #1a1a1a; margin-top: 32px;
}
.mobile-menu__foot p { color: var(--on-dark-mut); margin: 0; font-size: 14px; }
.mobile-menu__foot a.email { color: var(--gold); font-size: 18px; }
.mobile-menu__foot .btn { align-self: flex-start; }

/* ---- Hero (dark card) ---- */
.hero {
  padding: 36px var(--gutter) 0;
}
.hero__card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--ink);
  background-image:
    radial-gradient(1200px 600px at 20% 0%, rgba(245,197,24,.18), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(245,197,24,.08), transparent 60%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--gold);
}
.hero__sub {
  font-size: 17px; color: var(--on-dark-mut);
  margin: 0 0 28px; max-width: 460px;
  line-height: 1.5;
}
.hero__form {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  max-width: 460px;
  margin-bottom: 22px;
}
.hero__form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--cream); padding: 12px 8px;
  font-size: 14.5px;
}
.hero__form input::placeholder { color: var(--on-dark-mut); }
.hero__form .btn { padding: 10px 18px 10px 14px; font-size: 14px; }
.hero__feats {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  color: var(--on-dark-mut); font-size: 14.5px;
}
.hero__feats span { display: inline-flex; align-items: center; gap: 8px; }
.hero__feats svg { color: var(--gold); flex-shrink: 0; }

.hero__visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }

/* ---- Hero photo (Unsplash-backed) ---- */
.hero__photo {
  position: relative; width: 100%; height: 100%; min-height: 460px;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}
.hero__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.5) 100%),
    radial-gradient(circle at 80% 20%, rgba(245,197,24,0.18), transparent 55%);
}
.dash {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: #FBF7EB;
  color: var(--ink);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    0 4px 14px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.dash__chrome {
  background: #000000;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid #1a1a1a;
}
.dash__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dash__url {
  margin-left: 12px;
  color: var(--on-dark-mut);
  font-size: 11.5px; font-family: ui-monospace, SF Mono, Menlo, monospace;
  letter-spacing: 0.02em;
}
.dash__body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.dash__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.dash__eyebrow {
  font-family: var(--font-serif); font-style: italic;
  font-size: 13px; color: var(--muted);
}
.dash__title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 2px; }
.dash__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--black);
  padding: 5px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
}
.dash__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.kpi__lbl { font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.kpi__val { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-top: 4px; }
.kpi__delta {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  width: fit-content;
  padding: 2px 6px; border-radius: 999px;
}
.kpi__delta--up { background: rgba(46, 204, 113, 0.14); color: #1f8a4f; }
.kpi__delta--up::before { content: "▲"; font-size: 8px; }
.kpi__delta--down { background: rgba(46, 204, 113, 0.14); color: #1f8a4f; }
.kpi__delta--down::before { content: "▼"; font-size: 8px; }

.dash__chart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.dash__chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.dash__legend { display: inline-flex; align-items: center; gap: 6px; }
.dash__legend i { width: 8px; height: 8px; border-radius: 2px; background: var(--gold-deep); display: inline-block; }
.dash__bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.dash__bars i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 3px 3px 1px 1px;
  display: block;
}
.dash__bars i:last-child {
  background: linear-gradient(180deg, var(--ink) 0%, var(--black) 100%);
}

.dash__feed { display: flex; flex-direction: column; gap: 8px; }
.feed-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 12px;
  font-size: 12.5px;
}
.feed-dot { width: 6px; height: 6px; border-radius: 50%; }
.feed-dot--g { background: #2ECC71; }
.feed-name { flex: 1; color: var(--ink); font-weight: 500; }
.feed-val { color: var(--muted); font-weight: 600; }

/* ---- Founder portrait (About page) ---- */
.founder-portrait {
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.founder-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}

.hero__badge {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  background: var(--gold); color: var(--black);
  border-radius: 999px; padding: 8px 16px;
  font-weight: 600; font-size: 12.5px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black); }

.hero__float {
  position: absolute;
  background: var(--paper); color: var(--black);
  border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px;
  z-index: 2;
}
.hero__float--left { left: -10px; bottom: -20px; }
.hero__float--right { right: -10px; top: -10px; min-width: 140px; }
.hero__float strong { font-size: 18px; }
.hero__float .avatars { display: flex; }
.hero__float .avatars span {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--paper);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  margin-left: -8px;
}
.hero__float .avatars span:first-child { margin-left: 0; }
.hero__float .chart {
  display: flex; align-items: flex-end; gap: 4px; height: 32px;
}
.hero__float .chart i {
  width: 8px; border-radius: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: block;
}

/* ---- Trust strip ---- */
.trust {
  padding: 72px var(--gutter) 24px;
  text-align: center;
}
.trust p { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
.trust__logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
  gap: 36px 48px;
  max-width: 1000px; margin: 0 auto;
  opacity: 0.7;
}
.trust__logo {
  display: flex; align-items: center; justify-content: center;
  height: 44px;
  opacity: 0.65;
  transition: opacity .2s ease;
}
.trust__logo:hover { opacity: 0.95; }
.trust__logo img {
  max-height: 100%;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---- Big statement ---- */
.statement {
  padding: 72px var(--gutter);
  text-align: center;
}
.statement h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 auto;
  max-width: 1100px;
  text-wrap: balance;
}
.statement h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.statement h2 .emoji {
  display: inline-block; vertical-align: -2px;
  margin: 0 6px;
}

/* ---- Stats split ---- */
.stats {
  padding: 64px var(--gutter);
}
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
  align-items: center;
}
.stats__left h3 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1; font-weight: 500;
  letter-spacing: -0.02em; margin: 0 0 28px;
  text-wrap: balance;
}
.stats__left h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.stats__right {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stat .num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat .num em { color: var(--gold-deep); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.stat .lbl {
  margin-top: 10px; font-size: 13.5px;
  color: var(--muted); line-height: 1.4;
}

/* ---- 3-card row (services overview) ---- */
.tri {
  padding: 32px var(--gutter) 64px;
}
.tri__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tri__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tri__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.06); }
.tri__card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.tri__card h4 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.tri__card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.tri__card .link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.tri__card .link::after { content: "→"; transition: transform .2s ease; }
.tri__card:hover .link::after { transform: translateX(4px); }

/* ---- Section header ---- */
.section-head {
  padding: 64px var(--gutter) 32px;
  text-align: center;
  max-width: var(--maxw); margin: 0 auto;
}
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 880px;
  text-wrap: balance;
}
.section-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.section-head p {
  margin: 18px auto 0; max-width: 640px;
  color: var(--muted); font-size: 17px;
}

/* ---- 6-card service grid ---- */
.six {
  padding: 24px var(--gutter) 80px;
}
.six__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.six__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease, border-color .2s ease;
}
.six__card:hover { background: #fff; border-color: var(--gold); }
.six__card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.six__card h4 { margin: 6px 0 0; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.six__card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---- Partnership models (dark pricing) ---- */
.plans {
  padding: 64px var(--gutter);
}
.plans__inner {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--ink);
  background-image: radial-gradient(900px 500px at 100% 0%, rgba(245,197,24,0.10), transparent 60%);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 64px);
  color: var(--cream);
}
.plans__head {
  text-align: center; margin-bottom: 40px;
}
.plans__head .eyebrow { color: var(--on-dark-mut); }
.plans__head h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500; letter-spacing: -0.025em;
  margin: 12px 0 0; line-height: 1.1;
}
.plans__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.plans__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.plan {
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid #1a1a1a;
  background: #000000;
}
.plan--gold {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}
.plan__top { display: flex; align-items: center; justify-content: space-between; }
.plan__name { font-size: 16px; font-weight: 600; }
.plan__tag {
  font-size: 12px; padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245,197,24,0.15); color: var(--gold);
  font-weight: 500;
}
.plan--gold .plan__tag { background: rgba(0,0,0,0.15); color: var(--black); }
.plan__price {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1;
}
.plan__price em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 0.6em; opacity: 0.7; }
.plan__sub { color: var(--on-dark-mut); font-size: 14.5px; margin: -10px 0 0; }
.plan--gold .plan__sub { color: rgba(0,0,0,0.65); }
.plan__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--on-dark-mut);
}
.plan__feats li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.2L5 8.5L9.5 3.5' stroke='%230A0A0A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
  margin-top: 2px;
}
.plan--gold .plan__feats li { color: var(--ink); }
.plan--gold .plan__feats li::before {
  background-color: var(--black);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.2L5 8.5L9.5 3.5' stroke='%23F5C518' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.plan .btn { align-self: stretch; justify-content: center; }
.plan--gold .btn { background: var(--black); color: var(--gold); }
.plan--gold .btn .arrow { background: var(--gold); color: var(--black); }

/* ---- Testimonials ---- */
.testimonials {
  padding: 32px var(--gutter) 72px;
}
.testimonials__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.testimonials__grid--3 { grid-template-columns: repeat(3, 1fr); }
.tcard__brand {
  height: 36px; width: auto; max-width: 80px;
  object-fit: contain;
  margin-right: 4px;
}
.tcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}
.tcard__stars { color: var(--gold-deep); margin-bottom: 16px; letter-spacing: 2px; font-size: 14px; }
.tcard__quote {
  font-size: 20px; line-height: 1.4;
  letter-spacing: -0.01em; margin: 0 0 24px;
  font-weight: 400;
}
.tcard__quote em { font-family: var(--font-serif); font-style: italic; }
.tcard__who { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 700; font-size: 16px;
}
.tcard__name { font-weight: 600; font-size: 14.5px; }
.tcard__role { font-size: 13px; color: var(--muted); }

/* ---- Final CTA card ---- */
.cta {
  padding: 32px var(--gutter) 64px;
}
.cta__card {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(255,255,255,0.4), transparent 60%);
  pointer-events: none;
}
.cta__card > * { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 24px;
  text-wrap: balance;
}
.cta__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cta__sub { font-size: 17px; max-width: 480px; margin: 0 0 28px; color: rgba(0,0,0,0.7); }
/* CTA / generic photo slots: when an <img> is inside, it fills the slot */
.cta__photo {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-family: var(--font-serif); font-style: italic; font-size: 18px;
  border: 1px dashed rgba(0,0,0,0.25);
  position: relative;
}
.cta__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Case-study photo */
.cs-photo {
  border: 0 !important;
  background: var(--cream-2) !important;
}

/* ---- Footer ---- */
.footer { background: #000; color: var(--cream); padding: 72px var(--gutter) 36px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer__brand img { height: 36px; filter: brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(0deg); }
.footer__brand p { color: var(--on-dark-mut); font-size: 14.5px; max-width: 320px; margin: 18px 0 24px; line-height: 1.55; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #000000;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: background .2s ease, color .2s ease;
}
.footer__social a:hover { background: var(--gold); color: var(--black); }
.footer__col h5 {
  font-size: 12.5px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
  margin: 6px 0 18px; font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; color: var(--cream); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  color: var(--on-dark-mut); font-size: 13.5px;
}
.footer__bottom em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

/* ---- Page hero (sub-pages) ---- */
.page-hero {
  padding: 80px var(--gutter) 56px;
  text-align: center;
  max-width: var(--maxw); margin: 0 auto;
}
.page-hero .eyebrow { display: block; margin-bottom: 14px; color: var(--gold-deep); }
.page-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.02; margin: 0;
  text-wrap: balance;
}
.page-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-deep); }
.page-hero p {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px; line-height: 1.55;
}

/* ---- Generic content sections ---- */
.section { padding: 56px var(--gutter); }
.section--cream { background: var(--cream-2); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

/* Cards grid - generic */
.cards-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}
.info-card h3 { font-size: 22px; margin: 0 0 12px; font-weight: 600; letter-spacing: -0.01em; }
.info-card p { color: var(--muted); margin: 0; line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step__num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 44px; line-height: 1;
  color: var(--gold-deep);
}
.step h4 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* Niche detail row */
.niche-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.niche-row:last-child { border-bottom: 1px solid var(--line); }
.niche-row__left {
  position: sticky; top: 120px;
}
.niche-row__num { font-family: var(--font-serif); font-style: italic; color: var(--gold-deep); font-size: 22px; margin-bottom: 12px; }
.niche-row__left h3 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 14px; }
.niche-row__left h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-deep); }
.niche-row__left p { color: var(--muted); margin: 0; line-height: 1.6; }
.niche-row__right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.niche-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.niche-tile h5 { margin: 0 0 6px; font-size: 15.5px; font-weight: 600; }
.niche-tile p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Case study row */
.cs-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.cs-card__left h3 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500; letter-spacing: -0.025em;
  margin: 16px 0 18px; line-height: 1.1;
}
.cs-card__left h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.cs-card__url {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream-2);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.cs-card__url::before { content: "●"; color: #2ECC71; font-size: 10px; }
.cs-card__body p { color: var(--muted); line-height: 1.65; margin: 0 0 16px; font-size: 15.5px; }
.cs-card__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cs-card__metric {
  background: var(--cream-2);
  border-radius: 16px; padding: 18px;
}
.cs-card__metric .v {
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
}
.cs-card__metric .v em { font-family: var(--font-serif); font-style: italic; color: var(--gold-deep); font-weight: 400; }
.cs-card__metric .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.cs-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.cs-card__tags span {
  background: var(--cream-2); color: var(--ink);
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}

/* Form */
.form {
  display: grid; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-deep); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 12.5px; color: var(--muted-2); }

.form-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
}
.form-section__head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px;
}
.form-section__num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 28px; color: var(--gold-deep); line-height: 1;
}
.form-section__head h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.form-section__head p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

/* Contact split */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px;
  max-width: var(--maxw); margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item h5 {
  font-size: 12.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500; margin: 0 0 6px;
}
.contact-info__item p { margin: 0; font-size: 17px; line-height: 1.5; }
.contact-info__item a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-info__item a:hover { color: var(--gold-deep); }

/* Qualification list */
.qual-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.qual-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 20px;
  font-size: 15px; line-height: 1.4;
}
.qual-list li::before {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2.5 6.2L5 8.5L9.5 3.5' stroke='%230A0A0A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/16px no-repeat;
  margin-top: 1px;
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  :root { --radius-lg: 24px; }
  .nav__links, .nav__cta .btn span { display: none; }
  .nav__cta .btn { padding: 10px 14px; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .hero__card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .hero__visual { min-height: 420px; }
  .hero__float--left { left: 0; bottom: 0; }
  .hero__float--right { right: 0; top: 0; }

  .stats__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats__right { grid-template-columns: 1fr 1fr 1fr; }
  .tri__grid { grid-template-columns: 1fr; }
  .six__grid { grid-template-columns: 1fr 1fr; }
  .plans__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid--3 { grid-template-columns: 1fr; }
  .cta__card { grid-template-columns: 1fr; }
  .cta__photo { max-width: 360px; margin: 0 auto; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .niche-row { grid-template-columns: 1fr; gap: 24px; }
  .niche-row__left { position: static; }
  .cs-card { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .brand-lockup { height: 32px; }
  .hero { padding-top: 24px; }
  .hero__card { padding: 24px; border-radius: 24px; }
  .hero__visual, .hero__photo { min-height: 320px; }
  .hero__float { font-size: 11.5px; padding: 10px 12px; }
  .hero__float--left { bottom: -10px; }
  .hero__float--right { top: -10px; }
  .hero__title { font-size: 38px; }
  .hero__form { flex-direction: column; padding: 8px; gap: 8px; align-items: stretch; }
  .hero__form input { padding: 12px 14px; }
  .hero__form .btn { justify-content: center; }
  .six__grid { grid-template-columns: 1fr; }
  .stats__right { grid-template-columns: 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .niche-row__right { grid-template-columns: 1fr; }
  .cs-card__metrics { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .trust__logos { gap: 24px 32px; }
}

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
