/* Clouddataintegration — premium dark / gold theme */
:root {
  --bg: #0c0b09;
  --bg-elevated: #141210;
  --bg-soft: #1a1814;
  --bg-panel: #1f1c17;
  --gold: #c9a84c;
  --gold-bright: #e0c36a;
  --gold-soft: #e8d5a3;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --gold-line: rgba(201, 168, 76, 0.28);
  --text: #f5f0e8;
  --text-muted: #a89f90;
  --text-dim: #7a7266;
  --danger: #d4786a;
  --success: #7cb89a;
  --radius: 2px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Outfit", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 168, 76, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 168, 76, 0.05), transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold-bright);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
}

.header-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover { color: var(--gold-soft); }

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 3px var(--bg), 0 0 0 1px var(--gold-dim);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--gold);
  color: var(--gold-soft) !important;
  background: transparent;
}

.nav-cta:hover {
  background: var(--gold-dim);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: #141210;
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: #0c0b09;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
}

.btn-ghost:hover {
  background: var(--gold-dim);
  color: var(--gold-bright);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
  border: 0;
}

.gold-rule.center {
  margin-inline: auto;
}

/* Hero — asymmetric brand-led composition */
.hero-asymmetric {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-brand-block .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-asymmetric h1 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
}

.hero-asymmetric .lede {
  max-width: 32ch;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  border: 1px solid var(--gold-line);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 11, 9, 0.55));
  pointer-events: none;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-asymmetric .brand-hero {
  animation: fadeRise 0.9s var(--ease) both;
}

.hero-asymmetric h1 {
  animation: fadeRise 1s var(--ease) 0.1s both;
}

.hero-asymmetric .lede,
.hero-asymmetric .btn-group {
  animation: fadeRise 1s var(--ease) 0.22s both;
}

.hero-visual {
  animation: fadeRise 1.15s var(--ease) 0.18s both;
}

/* Quote strip (home social proof early) */
.quote-strip {
  border-block: 1px solid var(--gold-line);
  background: var(--bg-elevated);
  padding: 2.75rem 0;
}

.quote-strip blockquote {
  margin: 0;
  max-width: 46rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.35;
}

.quote-strip cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Featured courses */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.course-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.course-tile:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.course-tile img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.8);
}

.course-tile .tile-body {
  padding: 1.35rem 0.15rem 0.5rem;
}

.course-tile h3 {
  color: var(--text);
  margin-bottom: 0.4rem;
}

.course-tile p {
  font-size: 0.98rem;
  margin: 0;
}

.course-meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

/* Benefits / pillars — no cards */
.pillar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--gold-line);
  padding-top: 2.5rem;
}

.pillar-list h3 {
  color: var(--gold-soft);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--gold-line);
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-row span {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem 3rem;
}

.testimonial {
  padding: 0;
  border: 0;
  background: none;
}

.testimonial p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.testimonial.featured p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
}

.testimonial footer {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.rating {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 50%),
    var(--bg-elevated);
  border-block: 1px solid var(--gold-line);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta-band h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 36ch;
  margin-inline: auto;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--gold-line);
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .lede {
  max-width: 40rem;
  font-size: 1.12rem;
}

.page-hero-media {
  margin-top: 2.5rem;
}

.page-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  filter: saturate(0.82);
}

/* Content prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose ul, .prose ol {
  color: var(--text-muted);
  padding-left: 1.25rem;
}

.prose li { margin-bottom: 0.45rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  filter: saturate(0.8);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-tier {
  padding: 2rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
}

.price-tier.featured {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.1), transparent 40%),
    var(--bg-soft);
}

.price-tier .tier-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.price-tier .tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--text);
  margin: 1rem 0 0.35rem;
}

.price-tier .tier-price span {
  font-size: 1rem;
  color: var(--text-dim);
}

.price-tier ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.price-tier li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--gold-dim);
  color: var(--text-muted);
  font-size: 0.98rem;
}

.price-note {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2rem;
  text-align: center;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
}

.contact-panel {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
}

.contact-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-panel p,
.contact-panel address {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--gold-line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.field-error {
  display: none;
  margin-top: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--danger);
}

.form-group.has-error .field-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: rgba(124, 184, 154, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-status.error {
  display: block;
  background: rgba(212, 120, 106, 0.12);
  border: 1px solid var(--danger);
  color: var(--danger);
}

.inline-error {
  display: none;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--danger);
  color: var(--danger);
  font-family: var(--font-ui);
  font-size: 0.88rem;
}

.inline-error.visible { display: block; }

/* FAQ */
.faq-list {
  max-width: 44rem;
}

.faq-item {
  border-top: 1px solid var(--gold-line);
  padding: 1.35rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--gold-line);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  filter: saturate(0.8);
  margin-bottom: 1.1rem;
}

.blog-card h3 {
  color: var(--text);
}

.blog-date {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.article-hero img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  margin: 2rem 0 2.5rem;
  filter: saturate(0.82);
}

.article-body {
  max-width: 42rem;
  margin-inline: auto;
}

.article-body h2 {
  margin-top: 2.25rem;
}

/* Modules / course detail */
.module-list {
  counter-reset: mod;
}

.module-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold-line);
}

.module-item::before {
  counter-increment: mod;
  content: counter(mod, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.instructor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.instructor img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  filter: saturate(0.75);
  border-radius: 50%;
}

/* Case studies */
.case-study {
  padding: 2.25rem 0;
  border-top: 1px solid var(--gold-line);
}

.case-study h3 {
  color: var(--gold-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-panel);
  border-top: 1px solid var(--gold);
  padding: 1.25rem 0;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}

.cookie-banner.visible {
  transform: none;
}

.cookie-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--gold-line);
  background: var(--bg-elevated);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.footer-tagline {
  margin-top: 1rem;
  max-width: 28ch;
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.4fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.footer-brand {
  grid-column: 1;
}

.footer-cols {
  grid-template-columns: repeat(4, 1fr);
}

.footer-inner {
  display: grid;
  gap: 0;
}

.footer-inner > .footer-brand {
  margin-bottom: 0.5rem;
}

.footer-col h3 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-dim);
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

/* Tables (cookies) */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--gold-line);
  color: var(--text-muted);
  vertical-align: top;
}

.cookie-table th {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Legal */
.legal-meta {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* Outcomes list */
.outcome-list {
  list-style: none;
  padding: 0;
}

.outcome-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-top: 1px solid var(--gold-dim);
  color: var(--text-muted);
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 0.5rem;
  height: 1px;
  background: var(--gold);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-asymmetric,
  .two-col,
  .split-media,
  .form-layout,
  .testimonial-grid,
  .course-grid,
  .pricing-grid,
  .pillar-list,
  .stat-row,
  .blog-grid,
  .instructor {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--gold-line);
    padding: 1rem 1.25rem 1.5rem;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gold-dim);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
