/*
Theme Name: Young Boss Digital
Theme URI: https://youngboss.com/
Author: Young Boss Digital
Description: Bespoke theme for Young Boss Digital — marketing, custom software and AI automation. Gold-on-dark brand system built from the approved Claude Design direction.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: youngboss
Tags: one-column, custom-menu, full-width-template, translation-ready
*/

/* ==========================================================================
   Young Boss Digital — site stylesheet
   Design system carried over 1:1 from the approved Claude Design prototypes:
   colors, clamps, radii, shadows and motion timings are unchanged.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ink: #0d0b08;
  --ink-deep: #090704;
  --ink-panel: #0a0805;
  --ink-field: #0f0c07;
  --card-top: #17130c;
  --card-bottom: #110e09;
  --cream: #f3eee3;
  --cream-card: #fbf8f0;

  /* Gold ramp */
  --gold-100: #f6e8bc;
  --gold-200: #e6c887;
  --gold-300: #cbb27f;
  --gold-500: #b98a3e;
  --gold-700: #6e4d1c;
  --gold-ink: #221806;
  --gold-light-1: #c49a4a;
  --gold-light-2: #8a6524;
  --gold-light-3: #8a6f3a;

  /* Type colors — dark sections */
  --text: #e9e1d2;
  --heading: #f2ebdc;
  --heading-alt: #f0e8d8;
  --body: #b0a591;
  --body-soft: #a89d89;
  --body-quiet: #9c8f76;
  --body-faint: #877c68;
  --stat-label: #948a74;
  --chip-text: #cfc4ae;

  /* Type colors — light sections */
  --ink-text: #191510;
  --ink-body: #6f6455;
  --ink-chip: #4b4237;
  --ink-stat-label: #8a7d66;

  /* Gradients */
  --grad-gold: linear-gradient(115deg, #f6e8bc, #e6c887 45%, #b98a3e);
  --grad-gold-dark: linear-gradient(115deg, #c49a4a, #8a6524);
  --grad-card: linear-gradient(165deg, #17130c, #110e09);
  --grad-orb: radial-gradient(circle at 32% 28%, #f6e8bc, #c99a4e 55%, #6e4d1c);
  --grad-dot: radial-gradient(circle at 35% 30%, #f6e8bc, #b98a3e);

  /* Hairlines */
  --line: rgba(230, 200, 135, .14);
  --line-strong: rgba(230, 200, 135, .45);
  --line-soft: rgba(230, 200, 135, .12);
  --line-light: rgba(25, 21, 16, .1);

  /* Layout */
  --shell: 1220px;
  --gutter: clamp(20px, 4vw, 32px);
  --header-h: 74px;

  /* Motion */
  --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
  overflow-x: clip; /* mobile browsers ignore `hidden` for page panning */
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: var(--gold-200); text-decoration: none; }
a:hover { color: var(--gold-100); }
img { max-width: 100%; }
::selection { background: var(--gold-200); color: var(--gold-ink); }

input, textarea, select, button { font-family: inherit; }

/* Visible focus for keyboard users without disturbing mouse interaction. */
:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 200;
  background: var(--grad-gold);
  color: var(--gold-ink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: var(--gold-ink); }

/* --------------------------------------------------------------------------
   3. Keyframes
   -------------------------------------------------------------------------- */
@keyframes ybCoin {
  0%, 100% { transform: rotateY(-24deg) rotateX(6deg); }
  50%      { transform: rotateY(24deg) rotateX(-6deg); }
}
@keyframes ybOrbit {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}
@keyframes ybOrbitR {
  from { transform: rotateX(64deg) rotateY(-16deg) rotateZ(360deg); }
  to   { transform: rotateX(64deg) rotateY(-16deg) rotateZ(0deg); }
}
@keyframes ybFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes ybMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes ybSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ybPing {
  0%   { box-shadow: 0 0 0 0 rgba(230, 200, 135, .4); }
  70%  { box-shadow: 0 0 0 16px rgba(230, 200, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 200, 135, 0); }
}
@keyframes ybTravel {
  0%   { left: 0%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--faq     { max-width: 900px; }
.wrap--legal   { max-width: 820px; }
.wrap--article { max-width: 800px; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section--sm { padding: clamp(56px, 7vw, 90px) 0; }
.section--md { padding: clamp(56px, 7vw, 100px) 0; }
.section--intro { padding: clamp(48px, 6vw, 72px) 0 0; }
.section--band  { padding: clamp(36px, 5vw, 56px) 0; }
.section--strip { padding: 22px 0; }
.section--flush-top    { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--pt-sm        { padding-top: clamp(48px, 6vw, 80px); }
.section--end          { padding-bottom: clamp(80px, 10vw, 140px); }
.section--light { background: var(--cream); }
.section--rule {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(230, 200, 135, .02);
}

.grid {
  display: grid;
  gap: var(--grid-gap, 22px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 300px)), 1fr));
}
.grid--cards   { --min: 280px; }
.grid--steps   { --min: 170px; --grid-gap: 20px; }
.grid--steps-sm{ --min: 170px; --grid-gap: 18px; }
.grid--teaser  { --min: 290px; }
.grid--values  { --min: 250px; }
.grid--process { --min: 250px; --grid-gap: 26px; }
.grid--reasons { --min: 280px; }
.grid--media   { --min: 290px; --grid-gap: 24px; }
.grid--work    { --min: 300px; --grid-gap: 24px; }
.grid--stats   { --min: 220px; --grid-gap: 28px; }
.grid--split {
  --min: 340px;
  --grid-gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.grid--split-tight { --min: 280px; }
.grid--split-top { align-items: start; }
.grid--split-start { align-items: stretch; }
.grid--contact { --min: 320px; --grid-gap: clamp(24px, 4vw, 48px); }
.contact-main { min-width: 0; }
.rule-stack { display: flex; flex-direction: column; gap: 18px; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head--tight { margin-bottom: 40px; }
.stack { margin-bottom: 48px; }
.stack--sm { margin-bottom: 36px; }
.stack--xs { margin-bottom: 32px; }
.stack--md { margin-bottom: 44px; }
.stack--lg { margin-bottom: 52px; }
.stack--limited { max-width: 640px; }

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 500;
  color: var(--gold-300);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #e6c887, transparent);
}
.eyebrow--light { color: var(--gold-light-3); }
.eyebrow--light::before { background: linear-gradient(90deg, #a87a2e, transparent); }

.kicker {
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 500;
  color: var(--gold-300);
}
.label {
  display: block;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--gold-300);
}
.label--light { color: var(--gold-light-3); }
.label--listing { margin-bottom: 24px; }
.label--production { margin: 44px 0 8px; }
.stack--engagement { margin-bottom: 16px; }

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad--dark {
  background: var(--grad-gold-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Gold serif italic accent inside headings */
.accent {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent--dark {
  background: var(--grad-gold-dark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h1 {
  margin: 22px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--heading);
  text-wrap: pretty;
}
.h1--page    { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.08; }
.h1--m760 { max-width: 760px; }
.h1--m800 { max-width: 800px; }
.h1--m820 { max-width: 820px; }
.h1--m840 { max-width: 840px; }
.h1--m860 { max-width: 860px; }
.h1--contact { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; }
.h1--legal   { margin-top: 20px; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; }
.h1--post    { margin-top: 24px; font-size: clamp(30px, 4vw, 46px); line-height: 1.14; }

.h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--heading);
  text-wrap: pretty;
}
.h2--md { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -.018em; }
.h2--sm { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.18; letter-spacing: -.018em; }
.h2--xs { font-size: clamp(28px, 3vw, 38px); line-height: 1.18; letter-spacing: -.018em; }
.h2--founder { font-size: clamp(26px, 3vw, 36px); line-height: 1.2; letter-spacing: -.018em; }
.h2--light { color: var(--ink-text); }
.h2--m720 { max-width: 720px; }

.h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--heading-alt);
}
.h3--lg { font-size: 22px; }
.h3--sm { font-size: 17px; }
.h3--clamped { max-width: 80%; }
.h3--xs { font-size: 16px; }

.lede {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: clamp(15.5px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}
.lede--page { max-width: 620px; font-size: 16.5px; line-height: 1.7; }
.lede--wide { max-width: 640px; }
.lede--follow { margin-top: 18px; font-size: 16px; }
.lede--contact { margin-top: 22px; max-width: 600px; font-size: 16px; line-height: 1.7; }

.prose {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  text-wrap: pretty;
}
.prose--light { color: var(--ink-body); }
.prose--155 { font-size: 15.5px; }
.prose--15 { font-size: 15px; }
.prose--mt { margin-top: 20px; }
.prose--mt-sm { margin-top: 18px; }
.note--offset { margin: 36px 0 0; }
.note--wide { margin: 32px 0 0; font-size: 14.5px; max-width: 560px; text-wrap: pretty; }
.note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body-faint);
  max-width: 640px;
}
.microcopy {
  margin: 26px 0 0;
  font-size: 13.5px;
  letter-spacing: .06em;
  color: var(--body-faint);
}

.card-copy {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-soft);
  text-wrap: pretty;
}
.card-copy--lg { font-size: 15px; }
.card-copy--sm { font-size: 14px; }

/* --------------------------------------------------------------------------
   6. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.btn--primary {
  background: var(--grad-gold);
  color: var(--gold-ink);
  box-shadow: 0 12px 32px rgba(212, 175, 106, .22);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212, 175, 106, .32);
  color: var(--gold-ink);
}
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--gold-200);
  font-weight: 500;
  padding: 15px 28px;
}
.btn--ghost:hover {
  border-color: var(--gold-200);
  background: rgba(230, 200, 135, .07);
  color: var(--gold-100);
}
.btn--sm { font-size: 14.5px; padding: 14px 26px; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn-row--center { justify-content: center; }
.btn-row--cta { margin-top: 32px; justify-content: center; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
}
.link--push { margin-top: auto; padding-top: 16px; }
.link--offset { margin-top: 20px; }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: var(--line-strong); }
.card--stack { display: flex; flex-direction: column; gap: 12px; }
.card--tilt { will-change: transform; }

.card--pillar {
  overflow: hidden;
  border-radius: 22px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card--media { border-radius: 22px; padding: 14px; }
.card--post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 22px;
  padding: 30px 28px;
  color: inherit;
}
.card--teaser {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  color: inherit;
}
.card--teaser:hover, .card--post:hover { border-color: rgba(230, 200, 135, .5); }
.card--panel { border-radius: 24px; padding: 30px; }

.card-light {
  background: var(--cream-card);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 26px 22px;
}
.card-light--lg { border-radius: 20px; padding: 30px 28px; }
.card-light--sm { padding: 24px 20px; }

.card-eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold-300);
}
.tag {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold-300);
}

/* Decorative corner marks on the pillar cards */
.card__orb {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-orb);
  animation: ybFloat 7s ease-in-out infinite;
}
.card__ping {
  position: absolute;
  top: 44px;
  right: 44px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-dot);
  animation: ybPing 2.6s ease-out infinite;
}
.card-title {
  font-size: 19px;
  font-weight: 600;
  color: var(--heading-alt);
}
.card-title--post {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.3;
  text-wrap: pretty;
}
.card-title--teaser { font-size: 18px; line-height: 1.35; text-wrap: pretty; }
.card-meta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-200);
}
.card-meta--post { padding-top: 6px; }
.arrow { color: var(--gold-200); }
.cross-intro { margin: 0 0 28px; max-width: 620px; }

/* Feature list inside pillar cards */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body-quiet);
}
.feature-list, .plain-list { list-style: none; margin: 0; padding: 0; }
.diamond {
  flex: none;
  width: 5px;
  height: 5px;
  background: var(--gold-200);
  transform: rotate(45deg);
}

/* Bordered “rule” items (Why Young Boss, control & safety) */
.rule-item {
  border-top: 1px solid rgba(230, 200, 135, .18);
  padding-top: 20px;
}
.rule-item--sm { padding-top: 16px; }
.rule-item p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--body-soft); }
.rule-item--sm p { margin-top: 6px; }
.rule-item-light {
  border-top: 1px solid rgba(25, 21, 16, .15);
  padding-top: 22px;
}

/* --------------------------------------------------------------------------
   8. Chips & pills
   -------------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-row--tight { gap: 10px; }
.chip-row--offset { margin-top: 22px; }
.chip-row--center { align-content: center; }
.chip-row--topics { margin-top: 30px; }

.chip {
  font-size: 14px;
  color: var(--chip-text);
  border: 1px solid rgba(230, 200, 135, .25);
  border-radius: 999px;
  padding: 13px 24px;
}
.chip--sm { padding: 12px 22px; }
.chip--tag {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--body-quiet);
  border-color: rgba(230, 200, 135, .2);
  padding: 8px 16px;
}
.chip--tag-lg { padding: 9px 18px; }
.chip--solid {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--gold-ink);
  background: var(--grad-gold);
  border-color: transparent;
  padding: 9px 16px;
}
.chip--light {
  font-size: 13.5px;
  color: var(--ink-chip);
  background: var(--cream-card);
  border: 1px solid rgba(25, 21, 16, .18);
  border-radius: 999px;
  padding: 11px 20px;
}
.chip--badge {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold-300);
  border: 1px solid rgba(230, 200, 135, .25);
  border-radius: 999px;
  padding: 6px 12px;
}
.chip--badge-lg { font-size: 12px; letter-spacing: .2em; padding: 7px 14px; }

.date {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--body-faint);
}
.date--post { font-size: 12.5px; letter-spacing: .12em; }

/* --------------------------------------------------------------------------
   9. Stats
   -------------------------------------------------------------------------- */
.stat { border-top: 1px solid rgba(230, 200, 135, .22); padding-top: 18px; }
.stat__num {
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.stat__serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 3.2vw, 38px);
  line-height: 1.15;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--stat-label);
}
.stat--light { border-top-color: rgba(25, 21, 16, .15); }
.stat--light .stat__num { font-size: clamp(34px, 3.6vw, 44px); }
.stat--light .stat__serif { font-size: clamp(28px, 3vw, 36px); }
.stat--light .stat__label { color: var(--ink-stat-label); }

/* --------------------------------------------------------------------------
   10. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 11, 8, .84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand__mark { height: 38px; width: auto; display: block; }
.brand__word { height: 11px; width: auto; display: block; margin-top: 3px; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  color: var(--chip-text);
  font-size: 14px;
  letter-spacing: .04em;
  transition: color .25s ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-100); }

.nav__group { position: relative; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--chip-text);
  font-size: 14px;
  letter-spacing: .04em;
  transition: color .25s ease;
}
.nav__toggle:hover, .nav__group:hover .nav__toggle { color: var(--gold-100); }
.nav__caret { font-size: 9px; color: var(--gold-300); }

.nav__menu {
  position: absolute;
  top: 100%;
  left: -18px;
  padding-top: 8px;
  min-width: 310px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu,
.nav__menu[data-open="true"] { opacity: 1; visibility: visible; }
.nav__menu-inner {
  background: #14100a;
  border: 1px solid rgba(230, 200, 135, .2);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
}
.nav__menu-inner a {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.nav__menu-inner a:hover {
  background: rgba(230, 200, 135, .07);
  color: var(--gold-100);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  background: var(--grad-gold);
  color: var(--gold-ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(212, 175, 106, .2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 175, 106, .3);
  color: var(--gold-ink);
}

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(230, 200, 135, .35);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-200);
  border-radius: 2px;
}
.burger span:last-child { width: 12px; align-self: center; }

/* Mobile panel — rendered outside the blurred bar so it is never clipped */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 99;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--ink-panel);
  padding: 26px clamp(20px, 5vw, 32px) 64px;
  display: none;
  flex-direction: column;
  overflow: auto;
  box-sizing: border-box;
}
.mobile-nav[data-open="true"] { display: flex; }
.mobile-nav__label {
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold-300);
  padding: 10px 0;
}
.mobile-nav__label + .mobile-nav__label,
.mobile-nav a + .mobile-nav__label { padding-top: 24px; }
.mobile-nav__link {
  padding: 15px 0;
  font-size: 20px;
  color: var(--heading-alt);
  border-bottom: 1px solid rgba(230, 200, 135, .1);
}
.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  background: var(--grad-gold);
  color: var(--gold-ink);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 999px;
}
.mobile-nav__cta:hover { color: var(--gold-ink); }
.mobile-nav__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid var(--line-strong);
  color: var(--gold-200);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 999px;
}

@media (max-width: 919px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}

/* --------------------------------------------------------------------------
   11. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  clip-path: inset(0); /* hard-clips the orbit rings on mobile browsers */
  padding: clamp(130px, 16vw, 175px) 0 0;
}
.hero--page   { padding: clamp(130px, 16vw, 180px) 0 clamp(56px, 7vw, 90px); }
.hero--listing{ padding: clamp(130px, 16vw, 180px) 0 clamp(48px, 6vw, 80px); }
.hero--contact{ padding: clamp(130px, 16vw, 175px) 0 clamp(40px, 5vw, 64px); }

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 620px at 74% 32%, rgba(212, 175, 106, .09), transparent 62%);
}
.hero__glow--page {
  background: radial-gradient(1000px 560px at 80% 20%, rgba(212, 175, 106, .1), transparent 62%);
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

/* 3D medallion scene */
.scene {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 1;
  perspective: 1100px;
}
.scene__glow {
  position: absolute;
  inset: -4%;
  background: radial-gradient(circle, rgba(212, 175, 106, .17), transparent 63%);
}
.scene__ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 88%;
  aspect-ratio: 1;
  margin: -44% 0 0 -44%;
  border: 1px solid rgba(230, 200, 135, .28);
  border-radius: 50%;
  animation: ybOrbit 22s linear infinite;
}
.scene__ring--outer {
  width: 108%;
  margin: -54% 0 0 -54%;
  border-color: rgba(230, 200, 135, .14);
  animation: ybOrbitR 34s linear infinite;
}
.scene__ring-dot {
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--grad-dot);
}
.scene__ring--outer .scene__ring-dot {
  top: -4px;
  width: 8px; height: 8px;
  margin-left: -4px;
  background: var(--gold-200);
}
.scene__coin {
  position: absolute;
  top: 50%; left: 50%;
  width: 60%;
  aspect-ratio: 1;
  margin: -30% 0 0 -30%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 28%, #2a2113, #0f0c07 72%);
  border: 1px solid rgba(230, 200, 135, .4);
  box-shadow: 0 50px 90px rgba(0, 0, 0, .55),
              inset 0 0 70px rgba(212, 175, 106, .14),
              inset 0 2px 0 rgba(246, 232, 188, .3);
  animation: ybCoin 11s ease-in-out infinite;
}
.scene__coin img { width: 58%; height: auto; }

.orb {
  border-radius: 50%;
  background: var(--grad-orb);
  animation: ybFloat 7s ease-in-out infinite;
}
.orb--lg {
  width: 17%;
  aspect-ratio: 1;
  min-width: 56px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}
.orb--md {
  width: 10%;
  aspect-ratio: 1;
  min-width: 38px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
  animation-duration: 9s;
  animation-delay: -3s;
}
.orb--sm {
  width: 24px;
  height: 24px;
  animation-duration: 6s;
  animation-delay: -1.5s;
}
.orb-slot--a { position: absolute; top: 5%; right: 4%; }
.orb-slot--b { position: absolute; bottom: 8%; left: 0; }
.orb-slot--c { position: absolute; top: 20%; left: 9%; }

/* Free-floating decorative orbs on inner-page heroes */
.deco-slot { position: absolute; }
.deco-slot--tr      { top: 130px; right: 7%; }
.deco-slot--tr-wide { top: 130px; right: 8%; }
.deco-slot--tr-high { top: 120px; right: 6%; }
.deco-slot--tr-far  { top: 150px; right: 9%; }
.deco-slot--br      { bottom: 60px; right: 22%; }
.deco-slot--br-in   { bottom: 70px; right: 24%; }
.deco-slot--br-out  { bottom: 70px; right: 20%; }

.deco-orb {
  border-radius: 50%;
  background: var(--grad-orb);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
  animation: ybFloat 7s ease-in-out infinite;
  opacity: .85;
}
.deco-orb--84 { width: 84px; height: 84px; }
.deco-orb--72 { width: 72px; height: 72px; }
.deco-orb--64 { width: 64px; height: 64px; animation-duration: 8s; }
.deco-orb--30 {
  width: 30px;
  height: 30px;
  animation-duration: 9s;
  animation-delay: -3s;
}
.deco-orb--plain { box-shadow: none; opacity: .8; }
.deco-orb--plain.deco-orb--30 { animation-duration: 8s; animation-delay: -2s; }

/* Inner-page hero decorations are ornamental — hide where they would crowd
   the copy rather than letting them overlap it. */
@media (max-width: 900px) {
  .deco-slot { display: none; }
}

/* Rotating square glyph (Development hero / pillar 02 card) */
.glyph { position: absolute; }
.glyph span {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(230, 200, 135, .45);
}
.glyph span:nth-child(2) {
  border-color: rgba(230, 200, 135, .28);
  animation: ybSpin 18s linear infinite;
}
.glyph span:nth-child(3) {
  border-color: rgba(230, 200, 135, .16);
  animation: ybSpin 18s linear -9s infinite reverse;
}
.glyph--hero { width: 120px; height: 120px; }
.glyph--card { top: 24px; right: 24px; width: 56px; height: 56px; }
.glyph--card span { inset: 8px; border-color: rgba(230, 200, 135, .5); }
.glyph--card span:nth-child(2) { border-color: rgba(230, 200, 135, .3); animation-duration: 16s; }
.glyph--card span:nth-child(3) { border-color: rgba(230, 200, 135, .18); animation: ybSpin 16s linear -8s infinite reverse; }

.ping-dot {
  border-radius: 50%;
  background: var(--grad-dot);
  animation: ybPing 2.6s ease-out infinite;
}
.deco-ping { width: 16px; height: 16px; }

/* Marquee */
.marquee {
  margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(230, 200, 135, .02);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: ybMarquee 36s linear infinite;
}
.marquee__item {
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--body-quiet);
  white-space: nowrap;
}
.marquee__sep {
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--grad-gold);
  transform: rotate(45deg);
}

/* Journey / breadcrumb strip */
.journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.journey span {
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--body-quiet);
}
.journey span.is-last { color: var(--gold-200); }
.journey i { color: var(--gold-500); font-size: 12px; font-style: normal; }

/* Travelling dot rail */
.rail {
  position: relative;
  height: 1px;
  background: rgba(230, 200, 135, .16);
  margin-top: 34px;
}
.rail::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-dot);
  animation: ybTravel 4.5s ease-in-out infinite;
}

/* Pull quote band */
.quote-band {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(21px, 2.8vw, 30px);
  line-height: 1.4;
  max-width: 820px;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   12. Numbered step cards
   -------------------------------------------------------------------------- */
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(168, 122, 46, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light-2);
  animation: ybPing 3s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
.step-num--sm { width: 46px; height: 46px; font-size: 17px; }
.card-light h3 {
  margin: 16px 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-text);
}
.card-light--sm h3 { margin: 14px 0 6px; font-size: 15.5px; }
.card-light p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-body);
}
.card-light--sm p { font-size: 13px; }
.card-light--lg h3 { margin: 14px 0 8px; font-size: 18px; }
.card-light--lg p { font-size: 14px; line-height: 1.6; }

.process-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 40px;
  line-height: 1;
}
.process-num--sm { font-size: 36px; }
.rule-item-light h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-text);
}
.rule-item-light p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-body);
}

/* --------------------------------------------------------------------------
   13. Media / work cards
   -------------------------------------------------------------------------- */
.work-img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
}
.work-img--tall { height: 250px; }
.work-body { padding: 18px 10px 10px; }
.work-body h2, .work-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-alt);
}
.work-body h2 { font-size: 18px; }
.work-cat {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--body-quiet);
}
.work-cat--gold { font-size: 12.5px; color: var(--gold-300); }
.work-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-soft);
}

/* Founder portrait */
.portrait-wrap { display: flex; justify-content: center; }
.portrait {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  position: relative;
}
.portrait--lg { width: min(280px, 72vw); }
.portrait__ring {
  position: absolute;
  inset: -11%;
  border: 1px solid rgba(230, 200, 135, .25);
  border-radius: 50%;
  animation: ybSpin 26s linear infinite;
}
.portrait--lg .portrait__ring { inset: -10%; }
.portrait__ring span {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--grad-dot);
}
.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(230, 200, 135, .35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}
.byline {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-200);
}

/* --------------------------------------------------------------------------
   14. CTA banner
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(230, 200, 135, .22);
  background: linear-gradient(180deg, #151009, #0d0b08);
  padding: clamp(64px, 9vw, 100px) clamp(24px, 4vw, 40px);
  text-align: center;
}
.cta--page { padding: clamp(56px, 8vw, 90px) clamp(24px, 4vw, 40px); }
.cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 106, .12), transparent 60%);
}
.cta--page .cta__glow { width: 800px; height: 800px; }
.cta__ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(230, 200, 135, .55) 12%, transparent 30%);
  -webkit-mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
  mask: radial-gradient(farthest-side, transparent 65%, #000 66%);
  animation: ybSpin 14s linear infinite;
}
.cta--page .cta__ring {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
}
.cta__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta__title {
  margin: 18px 0 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--heading);
  max-width: 760px;
  text-wrap: pretty;
}
.cta--page .cta__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  max-width: 700px;
}
.cta--page .cta__title--wide { max-width: 720px; }
.cta__copy {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   15. Articles (blog + legal)
   -------------------------------------------------------------------------- */
.article {
  margin: 0 auto;
  padding: clamp(130px, 16vw, 180px) var(--gutter) clamp(64px, 8vw, 100px);
}
.article--legal { padding-bottom: clamp(80px, 10vw, 120px); }
.page-head { margin-bottom: 40px; }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.post-lede {
  margin: 22px 0 0;
  font-size: 17.5px;
  line-height: 1.7;
  color: #c4b8a2;
  text-wrap: pretty;
}
.post-rule {
  height: 1px;
  background: rgba(230, 200, 135, .15);
  margin: 40px 0;
}
.post-body { display: flex; flex-direction: column; gap: 16px; }
.post-body h2 {
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-alt);
}
.post-body h2:first-child { margin-top: 12px; }
.post-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--body);
}
.post-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}
.post-list .diamond { margin-top: 9px; }
.post-list strong { color: var(--text); font-weight: 600; }
.pull {
  border-left: 2px solid var(--gold-500);
  padding: 6px 0 6px 22px;
  margin: 12px 0;
}
.pull p {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
}

.keep-reading {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.keep-reading .label { margin-bottom: 12px; }
.keep-reading a {
  border-top: 1px solid var(--line-soft);
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color .25s ease;
}
.keep-reading a:last-child { border-bottom: 1px solid var(--line-soft); }
.keep-reading a:hover { color: var(--gold-100); }

.post-cta {
  margin-top: 44px;
  background: var(--grad-card);
  border: 1px solid rgba(230, 200, 135, .2);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.post-cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-alt);
  max-width: 400px;
  text-wrap: pretty;
}

.legal-date {
  margin: 16px 0 0;
  font-size: 13.5px;
  letter-spacing: .08em;
  color: var(--body-faint);
}
.legal-body { margin-top: 44px; }
.legal-body > * { margin: 0; }
.legal-body > * + * { margin-top: 28px; }
.legal-body > h2 + p,
.legal-body > h2 + ul,
.legal-body > h2 + ol { margin-top: 10px; }
.legal-body h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-alt);
}
.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
}
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li + li { margin-top: 8px; }

/* --------------------------------------------------------------------------
   16. Insights listing
   -------------------------------------------------------------------------- */
.upcoming-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: baseline;
  border-top: 1px solid var(--line-soft);
  padding: 22px 8px;
}
.upcoming-row:last-child { border-bottom: 1px solid var(--line-soft); }
.upcoming-row__title {
  flex: 1 1 320px;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  color: var(--text);
  text-wrap: pretty;
}
.upcoming-row__tag {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   17. Contact form
   -------------------------------------------------------------------------- */
.form {
  background: linear-gradient(165deg, #16120b, #100d08);
  border: 1px solid rgba(230, 200, 135, .16);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form__legend {
  display: block;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--gold-300);
  margin-bottom: 12px;
  padding: 0;
}
.form__fieldset { border: none; margin: 0; padding: 0; min-width: 0; }
.form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field > span {
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--gold-300);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  box-sizing: border-box;
  background: var(--ink-field);
  border: 1px solid rgba(230, 200, 135, .22);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--heading-alt);
  outline: none;
  transition: border-color .25s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--gold-200); }
.field input:user-invalid,
.field textarea:user-invalid { border-color: rgba(232, 160, 138, .55); }

.type-chip {
  font-size: 13.5px;
  color: var(--chip-text);
  background: transparent;
  border: 1px solid rgba(230, 200, 135, .28);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: all .25s ease;
}
.type-chip[aria-pressed="true"] {
  color: var(--gold-ink);
  background: var(--grad-gold);
  border-color: transparent;
  font-weight: 600;
}

.form__error {
  margin: 0;
  font-size: 14px;
  color: #e8a08a;
  border: 1px solid rgba(232, 160, 138, .35);
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(232, 160, 138, .06);
}
.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.form__foot span { font-size: 13px; color: var(--body-faint); }

.form-success {
  background: linear-gradient(165deg, #16120b, #100d08);
  border: 1px solid rgba(230, 200, 135, .25);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}
.form-success__tick {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(230, 200, 135, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-200);
  font-size: 22px;
  animation: ybPing 2.6s ease-out infinite;
}
.form-success h2 {
  margin: 22px 0 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--heading);
}
.form-success p {
  margin: 16px auto 0;
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.contact-list__phone {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-alt);
}
.contact-list__phone:hover { color: var(--gold-100); }
.contact-list a { font-size: 15px; }
.contact-list span { font-size: 14px; color: #8f8470; }
.next-step {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-soft);
}
.next-step i {
  color: var(--gold-200);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
}

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--cream-card);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 20px 24px;
}
.faq summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-text);
  cursor: pointer;
}
.faq p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-body);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-deep);
  border-top: 1px solid rgba(230, 200, 135, .1);
  padding: 80px 0 0;
}
.site-footer__top {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 44px;
}
.site-footer__logo { width: 132px; height: auto; display: block; }
.site-footer__blurb {
  margin: 20px 0 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.65;
  color: #8f8470;
  text-wrap: pretty;
}
.site-footer nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .label { margin-bottom: 6px; }
.site-footer nav a,
.site-footer__contact a {
  color: #a99d86;
  font-size: 14px;
  padding: 2px 0;
  transition: color .25s ease;
}
.site-footer nav a:hover,
.site-footer__contact a:hover { color: var(--gold-100); }
.site-footer__contact > span { color: #8f8470; font-size: 14px; }

.site-footer__tagline {
  margin-top: 60px;
  border-top: 1px solid rgba(230, 200, 135, .08);
  padding: 34px var(--gutter);
  text-align: center;
}
.site-footer__tagline span {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
}
.site-footer__legal { border-top: 1px solid rgba(230, 200, 135, .08); }
.site-footer__legal-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.site-footer__legal span { font-size: 13px; color: #6f6553; }
.site-footer__legal a {
  font-size: 13px;
  color: #6f6553;
  transition: color .25s ease;
}
.site-footer__legal a:hover { color: var(--gold-200); }
.site-footer__legal-links { display: flex; gap: 20px; }

/* --------------------------------------------------------------------------
   19. Motion utilities driven by site.js
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease-out-quint), transform .9s var(--ease-out-quint);
  transition-delay: var(--reveal-delay, 0ms);
}
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. WordPress chrome
   -------------------------------------------------------------------------- */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* Generic page/post content — WooCommerce shortcode pages, Privacy Policy,
   anything not hand-built. Keeps un-templated content on-brand and legible. */
.entry-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}
.entry-content > * + * { margin-top: 20px; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--heading-alt);
  font-weight: 600;
  line-height: 1.25;
  margin-top: 40px;
}
.entry-content h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; }
.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 20px; }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content li + li { margin-top: 8px; }
.entry-content img { height: auto; border-radius: 14px; }
.entry-content blockquote {
  margin: 0;
  border-left: 2px solid var(--gold-500);
  padding: 6px 0 6px 22px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--gold-200);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.entry-content th, .entry-content td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
}
.entry-content th { color: var(--heading-alt); }

/* --------------------------------------------------------------------------
   21. Forms — WPForms, styled into the brand system
   -------------------------------------------------------------------------- */
.form-shell {
  background: linear-gradient(165deg, #16120b, #100d08);
  border: 1px solid rgba(230, 200, 135, .16);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
}
.form-shell .wpforms-container,
.form-shell .wpforms-container-full { margin: 0; }
.form-shell .wpforms-form { display: flex; flex-direction: column; gap: 4px; }

.form-shell .wpforms-field {
  padding: 0 0 18px;
  max-width: none !important;
}
.form-shell .wpforms-field-label,
.form-shell .wpforms-field-label-inline {
  display: block;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300) !important;
  margin-bottom: 8px;
}
.form-shell .wpforms-required-label { color: var(--gold-300); }
.form-shell .wpforms-field-description {
  font-size: 13px;
  color: var(--body-faint);
  margin-top: 8px;
}

.form-shell input[type="text"],
.form-shell input[type="email"],
.form-shell input[type="tel"],
.form-shell input[type="url"],
.form-shell input[type="number"],
.form-shell select,
.form-shell textarea {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  background: var(--ink-field) !important;
  border: 1px solid rgba(230, 200, 135, .22) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-family: inherit;
  font-size: 15px !important;
  color: var(--heading-alt) !important;
  outline: none;
  box-shadow: none !important;
  transition: border-color .25s ease;
}
.form-shell textarea { resize: vertical; min-height: 120px; }
.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus { border-color: var(--gold-200) !important; }
.form-shell ::placeholder { color: #6f6553; opacity: 1; }
.form-shell select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-300) 50%),
                    linear-gradient(135deg, var(--gold-300) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px !important;
}

/* Project-type radios rendered as brand chips */
.form-shell .wpforms-field-radio ul,
.form-shell .wpforms-field-checkbox ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-shell .wpforms-field-radio li,
.form-shell .wpforms-field-checkbox li { margin: 0 !important; }
.form-shell .wpforms-field-radio input[type="radio"],
.form-shell .wpforms-field-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-shell .wpforms-field-radio label,
.form-shell .wpforms-field-checkbox label {
  display: inline-block;
  margin: 0 !important;
  font-size: 13.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--chip-text) !important;
  background: transparent;
  border: 1px solid rgba(230, 200, 135, .28);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  transition: all .25s ease;
}
.form-shell .wpforms-field-radio input:checked + label,
.form-shell .wpforms-field-checkbox input:checked + label {
  color: var(--gold-ink) !important;
  background: var(--grad-gold);
  border-color: transparent;
  font-weight: 600;
}
.form-shell .wpforms-field-radio input:focus-visible + label,
.form-shell .wpforms-field-checkbox input:focus-visible + label {
  outline: 2px solid var(--gold-200);
  outline-offset: 3px;
}

.form-shell .wpforms-submit-container { padding-top: 4px; }
.form-shell button[type="submit"],
.form-shell .wpforms-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold) !important;
  color: var(--gold-ink) !important;
  font-family: inherit;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(212, 175, 106, .22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.form-shell button[type="submit"]:hover,
.form-shell .wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212, 175, 106, .32);
}

.form-shell label.wpforms-error,
.form-shell em.wpforms-error {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  font-style: normal;
  color: #e8a08a !important;
  letter-spacing: 0;
  text-transform: none;
}
.form-shell input.wpforms-error,
.form-shell textarea.wpforms-error,
.form-shell select.wpforms-error { border-color: rgba(232, 160, 138, .55) !important; }

.form-shell .wpforms-confirmation-container-full,
div.form-shell .wpforms-confirmation-container-full {
  background: transparent !important;
  border: none !important;
  color: var(--body) !important;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}
.form-shell .wpforms-confirmation-container-full p { margin: 0 0 12px; }

.form-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--body-faint);
}

/* --------------------------------------------------------------------------
   22. WooCommerce — inherits the brand shell, keeps stock behaviour
   -------------------------------------------------------------------------- */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--grad-gold) !important;
  color: var(--gold-ink) !important;
  font-weight: 600;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  border: none;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { color: var(--gold-ink) !important; opacity: .92; }
.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: var(--line) !important;
  color: var(--body);
}
.woocommerce .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3 { color: var(--heading-alt); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text {
  background: var(--ink-field);
  border: 1px solid rgba(230, 200, 135, .22);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--heading-alt);
}
.woocommerce-info, .woocommerce-message, .woocommerce-error {
  background: rgba(230, 200, 135, .06);
  border-top-color: var(--gold-200);
  color: var(--body);
}
.woocommerce-info::before, .woocommerce-message::before { color: var(--gold-200); }

/* --------------------------------------------------------------------------
   23. Blog listing + 404
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(230, 200, 135, .25);
  border-radius: 999px;
  color: var(--chip-text);
  font-size: 14px;
}
.pagination .page-numbers.current {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--gold-ink);
  font-weight: 600;
}
