/* ============================================================
   LOYA MEDIA — DESIGN SYSTEM
   Editorial dark luxury · Inspired by 601.inc + Linear Change
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;1,400;1,500&family=Syne:wght@700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --bg:           #FBFAF7;
  --surface:      #FFFFFF;
  --navy:         #EEF1FE;
  --gold:         #B27F26;
  --gold-light:   #E8B554;
  --gold-dim:     rgba(183,132,40,0.07);
  --gold-border:  rgba(183,132,40,0.35);
  --accent:       #4F5FE8;
  --accent-light: #3D4BD1;
  --accent-dim:   rgba(79,95,232,0.07);
  --accent-border:rgba(79,95,232,0.28);
  --text:         #16181F;
  --muted:        #5F6474;
  --faint:        rgba(22,24,31,0.04);
  --border:       #E8E4D9;
  --border-mid:   #D8D3C5;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --ease-out:     cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg); }
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Ambient Background ─────────────────────── */
/* Soft aurora washes that drift slowly behind the whole site */
body::before {
  content: '';
  position: fixed;
  inset: -12%;
  background:
    radial-gradient(42% 36% at 10% 6%,  rgba(232,181,84,0.20), transparent 68%),
    radial-gradient(34% 30% at 90% 10%, rgba(79,95,232,0.12),  transparent 68%),
    radial-gradient(38% 34% at 85% 80%, rgba(226,142,90,0.12), transparent 68%),
    radial-gradient(30% 26% at 6% 88%,  rgba(79,95,232,0.08),  transparent 68%);
  pointer-events: none;
  z-index: -1;
  animation: aurora-drift 36s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to   { transform: translate3d(1.5%, 1.5%, 0) scale(1.05); }
}
/* Fine paper grain over everything — premium print texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2000;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(232,181,84,0.35); color: var(--text); }

/* ── Custom Cursor ──────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), opacity 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              transform 0.09s linear, border-color 0.2s;
  will-change: transform;
}
.cursor-dot.hover  { width: 10px; height: 10px; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(232,181,84,0.5); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }
/* Hide the native cursor ONLY once JS has installed the custom one, and only
   on precise-pointer devices. Without JS, the normal cursor always shows. */
@media (hover: hover) and (pointer: fine) {
  body.custom-cursor { cursor: none; }
}

/* ── Container ──────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Navigation ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 28px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
nav.scrolled {
  padding: 18px 0;
  background: rgba(251,250,247,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-logo em {
  font-style: normal;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 1px solid transparent;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--accent-light); box-shadow: 0 4px 16px rgba(79,95,232,0.30); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 64px;
  position: relative;
  overflow: hidden;
}
/* Giant ghosted quotation mark — the watermark of a words business */
.hero::before {
  content: '\201C';
  position: absolute;
  top: -6%;
  right: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22rem, 36vw, 44rem);
  line-height: 1;
  color: rgba(178,127,38,0.10);
  pointer-events: none;
  z-index: 0;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 56px;
}
.hero-heading em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-top: 0.18em;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-sub {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s, gap 0.25s,
              transform 0.25s var(--ease-out), box-shadow 0.25s;
  white-space: nowrap;
}
.cta-pill:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  gap: 16px;
  transform: translateY(-2px);
}
.cta-pill-dark {
  background: var(--text);
  color: #FBFAF7;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(22,24,31,0.14);
}
.cta-pill-dark:hover {
  background: #2A2D3A;
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(22,24,31,0.18);
}
.cta-pill-accent {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.cta-pill-accent:hover {
  background: var(--accent-light);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(79,95,232,0.30);
  color: #fff;
}

/* ── Marquee ────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 48px;
  white-space: nowrap;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Chapter Label ──────────────────────────── */
.chapter-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}
.chapter-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.chapter-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent-border), transparent);
}
.chapter-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* ── Section ────────────────────────────────── */
section { padding: 140px 0; }
section.tight { padding: 80px 0; }

/* ── Editorial 2-col ────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.editorial-heading {
  position: sticky;
  top: 120px;
}
.editorial-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.editorial-heading h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.editorial-body { padding-top: 8px; }
.editorial-statement {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 24px;
}
.editorial-body p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.editorial-body p:last-child { margin-bottom: 0; }

/* ── Statement Section (full-width big text) ── */
.statement-sec {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
/* Oversized ghosted brand sparkle floating behind the statement */
.statement-sec::after {
  content: '\2726';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(14deg);
  font-size: clamp(14rem, 24vw, 24rem);
  line-height: 1;
  color: rgba(79,95,232,0.07);
  pointer-events: none;
}
.statement-sec::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.statement-text {
  display: flex;
  flex-direction: column;
}
.statement-line {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  display: block;
  overflow: hidden;
}
.statement-line.gold  { color: var(--gold); }
.statement-line.accent { color: var(--accent-light); }
.statement-line.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: clamp(2rem, 5.5vw, 5rem);
}

/* ── Services Grid ──────────────────────────── */
.services-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-col {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--border);
}
.service-col:first-child { padding-left: 0; }
.service-col:last-child  { border-right: none; padding-right: 0; }
.service-col-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 32px;
  display: block;
}
.service-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-col p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.service-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.service-col li {
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 12px;
  position: relative;
}
.service-col:hover { border-right-color: var(--accent-border); }
.service-col li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Process Steps ──────────────────────────── */
.steps-editorial {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.step-col {
  padding: 56px 40px 56px 0;
  border-right: 1px solid var(--border);
  border-top: 2px solid var(--accent-border);
  transition: border-top-color 0.3s;
}
.step-col:hover { border-top-color: var(--accent); }
.step-col:last-child { border-right: none; padding-right: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(79,95,232,0.35);
  line-height: 1;
  margin-bottom: 32px;
}
.step-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-col p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Pricing ────────────────────────────────── */
.pricing-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 4px 32px rgba(22,24,31,0.06);
}
.price-col:hover { background: #FDFCFA; }
.price-col.popular:hover { background: var(--navy); }
.price-col {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.price-col:last-child { border-right: none; }
.price-col.popular {
  background: var(--navy);
  border-top: 2px solid var(--accent) !important;
  box-shadow: inset 0 0 60px rgba(79,95,232,0.05);
}
.pop-label {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: 1px solid transparent;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(79,95,232,0.30);
}
.price-tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.price-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-amount .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-amount .per {
  font-size: 0.82rem;
  color: var(--muted);
}
.price-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.price-feature .tick {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ── Founding-client offer ──────────────────── */
.launch-offer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid var(--gold-border);
  background: linear-gradient(90deg, rgba(232,181,84,0.14), rgba(232,181,84,0.04));
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 32px;
}
.launch-offer-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16181F;
  background: var(--gold-light);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.launch-offer p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.launch-offer p strong { font-weight: 700; }

/* ── One-time projects ──────────────────────── */
.projects-list {
  border-top: 1px solid var(--border);
}
.project-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s var(--ease-out);
}
.project-row:hover { padding-left: 8px; }
.project-row h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.project-row p {
  font-size: 0.78rem;
  color: var(--muted);
}
.project-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  padding-left: 24px;
}

/* ── CTA finale ─────────────────────────────── */
.finale {
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.finale-pre {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.finale-pre::before, .finale-pre::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-border);
}
.finale-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 860px;
  margin: 0 auto 48px;
}
.finale-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.finale-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 48px;
}
.finale-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.finale-note {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Footer ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Page hero (inner pages) ────────────────── */
.page-hero {
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.04em;
  color: var(--text);
}
.page-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.page-hero-right {
  padding-bottom: 8px;
}
.page-hero-right p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── About page ─────────────────────────────── */
.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.manifesto-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 100px;
  align-items: start;
}
.about-main p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-main p strong { color: var(--text); font-weight: 500; }
.about-pull {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 40px 0;
}
.about-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sidebar-stat {
  padding: 32px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.sidebar-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.value-item {
  background: var(--bg);
  padding: 36px 32px;
}
.value-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── Contact page ───────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
  padding-top: 80px;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.contact-left p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 48px; }
.contact-steps { display: flex; flex-direction: column; gap: 0; }
.contact-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-step:first-child { border-top: 1px solid var(--border); }
.contact-step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 2px;
  flex-shrink: 0;
  width: 24px;
}
.contact-step h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-step p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 4px 32px rgba(22,24,31,0.06);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold-border); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }
select option { background: var(--bg); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { text-align: center; font-size: 0.72rem; color: var(--muted); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success .big { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.form-success h3 { color: var(--text); margin-bottom: 8px; font-family: var(--font-display); }
.form-success p { font-size: 0.88rem; color: var(--muted); }

/* ── Scroll Reveal ──────────────────────────── */
/* Content is only hidden when JS is available to reveal it (html.js). With no
   JS, every .reveal element renders normally instead of staying invisible. */
.reveal {
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.visible  { opacity: 1; transform: none; }

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

/* ── Divider ────────────────────────────────── */
.divider { height: 1px; background: var(--border); }
.gold-bar { height: 2px; width: 40px; background: linear-gradient(to right, var(--accent), var(--gold)); margin-bottom: 24px; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-cols { grid-template-columns: repeat(2,1fr); }
  .service-col:nth-child(2) { padding-right: 0; border-right: none; padding-left: 32px; border-left: 1px solid var(--border); }
  .service-col:nth-child(3) { padding-left: 0; border-top: 1px solid var(--border); }
  .service-col:nth-child(4) { padding-left: 32px; border-left: 1px solid var(--border); border-top: 1px solid var(--border); border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; display: grid; grid-template-columns: repeat(3,1fr); }
  .sidebar-stat { border-right: 1px solid var(--border); border-bottom: none; }
  .sidebar-stat:last-child { border-right: none; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .hero-heading { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 499;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-cta.open {
    display: flex;
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
  }
  .menu-toggle { display: flex; z-index: 501; position: relative; }
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .editorial-heading { position: static; }
  .steps-editorial { grid-template-columns: 1fr; }
  .step-col { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 40px; }
  .step-col:last-child { border-bottom: none; }
  .pricing-cols { grid-template-columns: 1fr; border-radius: 12px; }
  .price-col { border-right: none; border-bottom: 1px solid var(--border); }
  .price-col:last-child { border-bottom: none; }
  .services-cols { grid-template-columns: 1fr; }
  .service-col { border-right: none !important; border-left: none !important; border-top: 1px solid var(--border); padding-left: 0 !important; padding-right: 0 !important; }
  .service-col:first-child { border-top: none; }
  .values-grid { grid-template-columns: 1fr; }
  .about-sidebar { grid-template-columns: 1fr; }
  .sidebar-stat { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .statement-line { font-size: clamp(2rem, 10vw, 4rem); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { gap: 20px; }
  .hero-top { padding-top: 120px; }
  .finale-heading { font-size: clamp(2rem, 8vw, 4rem); }
  .page-hero { padding: 140px 0 64px; }
  .page-hero h1 { font-size: clamp(2.4rem, 9vw, 4rem); }
}

/* ── Hero Glow ──────────────────────────────── */
.hero-glow {
  position: absolute;
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1000px;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(79,95,232,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 35% 65%, rgba(232,181,84,0.16) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* ── Urgency Dot ────────────────────────────── */
.urgency-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 14px;
}
.urgency-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(22,163,74,0.45);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(22,163,74,0.45); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px rgba(22,163,74,0.25); }
}

/* ── FAQ ────────────────────────────────────── */
.faq-header { margin-bottom: 56px; }
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.faq-header h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-light); }
.faq-item.open .faq-q { color: var(--accent-light); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 28px;
  max-width: 700px;
}

/* ── Footer Enhanced ────────────────────────── */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); margin-top: 10px; max-width: 260px; line-height: 1.6; }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── 06 — THE WORK (samples) ───────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 720px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.work-card:hover { background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--gold-border); }
.work-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 16px;
}
.work-excerpt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #43485C;
  margin: 0 0 20px;
}
.work-ba {
  display: grid; gap: 10px; margin: 0 0 20px;
}
.work-ba .ba-row {
  font-size: 0.92rem; line-height: 1.5; padding: 12px 14px; border-radius: 3px;
}
.work-ba .ba-before { background: rgba(22,24,31,0.03); color: var(--muted); border: 1px solid var(--border-mid); }
.work-ba .ba-after  { background: var(--accent-dim); color: #333C99; border: 1px solid var(--accent-border); }
.work-ba .ba-lbl { display:block; font-family:var(--font-body); font-size:0.6rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:6px; }
.work-ba .ba-before .ba-lbl { color:#A05B5B; }
.work-ba .ba-after  .ba-lbl { color: var(--accent-light); }
.work-why {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.work-why b { color: #33384C; font-weight: 600; }
