:root {
  --btn: #E6A50A;
  --btn-hover: #CC9108;
  --text: #1a1a1a;
  --ink: #1a1a1a;
  --ink-2: #333333;
  --navy: #1a1a1a;
  --blue: #E6A50A;
  --blue-spark: #F2BE2E;
  --blue-heading: #1a1a1a;
  --blue-muted: #CC9108;
  --blue-tint: #FDF7E6;
  --blue-tint-2: #FBEFCB;
  --brand: #B07D08;
  --brand-mid: #E6A50A;
  --brand-bright: #F2BE2E;
  --brand-700: #CC9108;
  --brand-deep: #8C6608;
  --grad-brand: #E6A50A;
  --grad-brand-hover: #CC9108;
  --grad-brand-vertical: linear-gradient(180deg, #8C6608 0%, #CC9108 42%, #E6A50A 100%);
  --top-bar-h: 36px;
  --nav-h: 78px;
  --scroll-offset: calc(var(--top-bar-h) + var(--nav-h));
  --grad-footer: linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%);
  --grad-accent: #000000;
  --grad-brand-text: #000000;
  --grad-brand-soft: rgba(230, 165, 10, 0.06);
  --grad-brand-line: linear-gradient(90deg, var(--gold-mid) 0%, var(--btn) 42%, var(--gold-mid) 100%);

  --gold: #e3c46b;
  --gold-2: #e3c46b;
  --gold-hi: #F4E6A8;
  --gold-mid: #C9A24B;
  --gold-deep: #856220;
  --star-gold: #E3C46B;

  --cream: #FFFFFF;
  --cream-2: #F5F7FA;
  --paper: #FFFFFF;
  --white: #FFFFFF;

  --sun: #E6A50A;
  --sun-2: #e3c46b;
  --sun-deep: #CC9108;
  --success: #2A9B62;

  --grad-gold: linear-gradient(135deg, #b8923a 0%, #e3c46b 42%, #f2e2ad 56%, #d4af52 100%);
  --grad-light-blue: linear-gradient(165deg, #FFFFFF 0%, #FFFFFF 52%, #FDF8EC 100%);
  --grad-solar-hero: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 42%, #FDF8EC 100%);

  --t-dark: #1a1a1a;
  --t-dark-soft: #444444;
  --t-light: #EAF1F8;
  --t-light-soft: #9DB4C8;

  --line-gold: rgba(201, 162, 75, 0.34);
  --line-gold-soft: rgba(201, 162, 75, 0.16);
  --line-blue: rgba(0, 0, 0, 0.12);
  --line-blue-soft: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(0, 0, 0, 0.1);

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 14px 40px rgba(230, 165, 10, 0.22);

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --section-pad: clamp(2.36rem, 5.25vw, 4.73rem);
  --section-pad-mobile: clamp(1.58rem, 4.2vw, 2.25rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 460ms;

  --container: 1240px;
  --hero-inline-pad: clamp(1.5rem, 4vw, 4rem);
  --text-xs: 0.6875rem;
  --z-nav: 100;
  --z-overlay: 200;
  --z-grain: 9000;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--t-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
}

p { max-width: 65ch; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Temporarily hidden — keep in markup for future launch */
.is-launch-hidden { display: none !important; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section { padding-block: var(--section-pad); position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--sky { background: var(--grad-light-blue); }

.rule-gold { border-top: 1px solid var(--line-gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: "Inter", sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--btn);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-mid);
}

.accent-text {
  color: inherit;
  font-style: italic;
  font-weight: 700;
}

.brand-text {
  color: inherit;
}

.gold-text {
  color: var(--text);
}

.display {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.22;
}
.h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.7;
  color: var(--t-dark-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.02em 1.9em;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--btn);
  color: #241B00;
  border: none;
  box-shadow: 0 2px 6px rgba(230, 165, 10, 0.18), 0 6px 18px rgba(230, 165, 10, 0.16);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease), background-color var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn span { position: relative; z-index: 1; color: #241B00; }
.btn:active { transform: translateY(1px); }
.btn:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 165, 10, 0.24), 0 10px 24px rgba(230, 165, 10, 0.2);
}

.btn-blue {
  background: var(--btn);
  color: #241B00;
}
.btn-blue span { color: #241B00; }
.btn-blue::before,
.btn-blue::after { display: none; }
.btn-blue:hover {
  background: var(--btn-hover);
  color: #241B00;
}

.btn-outline {
  background: var(--btn);
  color: #241B00;
  border: none;
  box-shadow: 0 2px 6px rgba(230, 165, 10, 0.18), 0 6px 18px rgba(230, 165, 10, 0.16);
}
.btn-outline:hover {
  background: var(--btn-hover);
  color: #241B00;
  transform: translateY(-2px);
}

.link-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
  transition: gap var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.link-edit:hover { gap: 0.9em; border-color: var(--btn); }

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn, .link-edit { transition: none; }
  .mobile-menu,
  .mobile-menu__inner,
  .mobile-menu__link,
  .mobile-menu__group,
  .mobile-menu__foot,
  .mobile-menu__sub,
  .mobile-menu__sub-inner,
  .mobile-menu__sub-inner a {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .mobile-menu__sub { max-height: none !important; }
  .mobile-menu { visibility: hidden; }
  .mobile-menu.is-open { visibility: visible; }
}
