:root {
  --btn: #F4C430;
  --btn-hover: #DBA918;
  --text: #1a1a1a;
  --ink: #1a1a1a;
  --ink-2: #333333;
  --navy: #1a1a1a;
  --blue: #F4C430;
  --blue-spark: #F6CD4A;
  --blue-heading: #1a1a1a;
  --blue-muted: #DBA918;
  --blue-tint: #FCF2CF;
  --blue-tint-2: #FAE39A;
  --brand: #B8930C;
  --brand-mid: #F4C430;
  --brand-bright: #F6CD4A;
  --brand-700: #DBA918;
  --brand-deep: #8C6608;
  --grad-brand: #F4C430;
  --grad-brand-hover: #DBA918;
  --grad-brand-vertical: linear-gradient(180deg, #8C6608 0%, #DBA918 42%, #F4C430 100%);
  --top-bar-h: 36px;
  --nav-h: 78px;
  --scroll-offset: calc(var(--top-bar-h) + var(--nav-h));
  --grad-footer: #FFFFFF;
  --grad-accent: #000000;
  --grad-brand-text: #000000;
  --grad-brand-soft: rgba(244, 196, 48, 0.06);
  --grad-brand-line: linear-gradient(90deg, var(--gold-mid) 0%, var(--btn) 42%, var(--gold-mid) 100%);

  --gold: #F7D35C;
  --gold-2: #F7D35C;
  --gold-hi: #F9DE82;
  --gold-mid: #C29B25;
  --gold-deep: #856220;
  --star-gold: #F7D35C;

  --cream: #FFFFFF;
  --cream-2: #FFFFFF;
  --paper: #FFFFFF;
  --white: #FFFFFF;

  --sun: #F4C430;
  --sun-2: #F7D35C;
  --sun-deep: #DBA918;
  --success: #2A9B62;

  --grad-gold: linear-gradient(135deg, #b8923a 0%, #F7D35C 42%, #f2e2ad 56%, #d4af52 100%);
  --grad-light-blue: #FFFFFF;
  --grad-solar-hero: #FFFFFF;

  --t-dark: #1a1a1a;
  --t-dark-soft: #444444;
  --t-light: #EAF1F8;
  --t-light-soft: #9DB4C8;

  --line-gold: rgba(194, 155, 37, 0.34);
  --line-gold-soft: rgba(194, 155, 37, 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(244, 196, 48, 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(244, 196, 48, 0.18), 0 6px 18px rgba(244, 196, 48, 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(244, 196, 48, 0.24), 0 10px 24px rgba(244, 196, 48, 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(244, 196, 48, 0.18), 0 6px 18px rgba(244, 196, 48, 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; }
}

/* --- Cookie consent banner --- */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-gold);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--blue-tint);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 1px solid var(--line-gold);
  box-shadow: 0 -8px 28px rgba(20, 16, 4, 0.12);
  transform: translateY(110%);
  transition: transform var(--dur-base, 0.3s) var(--ease, ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 320px; min-width: 0; }
.cookie-banner__text strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; color: var(--ink); }
.cookie-banner__text p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--ink-2); }
.cookie-banner__text a { color: var(--brand-700); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 0.7rem;
  flex: 0 0 auto;
}
.cookie-banner__btn { padding: 0.8em 1.5em; font-size: 0.86rem; }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 0.9rem; }
  .cookie-banner__text { flex: none; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}

/* --- Contact form privacy consent --- */
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.2rem 0 0.9rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-2);
  cursor: pointer;
}
.field-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  accent-color: var(--btn);
  cursor: pointer;
}
.field-consent a { color: var(--brand-700); text-decoration: underline; }

/* --- Cookiebot banner: compact on mobile --- */
@media (max-width: 767px) {
  #CybotCookiebotDialog {
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 55vh !important;
    overflow-y: auto !important;
    border-radius: 12px 12px 0 0 !important;
    transform: none !important;
    margin: 0 !important;
  }
  #CybotCookiebotDialogBody {
    padding: 0.9rem 1rem !important;
  }
  #CybotCookiebotDialogBodyContentTitle {
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem !important;
  }
  #CybotCookiebotDialogBodyContentText {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    max-height: 4.5rem !important;
    overflow: hidden !important;
  }
  #CybotCookiebotDialogBodyLevelButtonsSelectPane {
    display: none !important;
  }
  #CybotCookiebotDialogFooter {
    padding: 0.6rem 1rem 0.8rem !important;
  }
  .CybotCookiebotDialogBodyButton {
    padding: 0.55em 1em !important;
    font-size: 0.82rem !important;
  }
}
