:root {
  --bg-deep: #0c0a0f;
  --bg-surface: #141118;
  --bg-elevated: #1c1822;
  --fg-primary: #f2ece6;
  --fg-secondary: #a89e94;
  --fg-muted: #6b6165;
  --accent: #c4956a;
  --accent-light: #e0b992;
  --accent-glow: rgba(196, 149, 106, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --max-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 149, 106, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(196, 149, 106, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(162, 100, 140, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196, 149, 106, 0.04) 0%, transparent 50%);
  z-index: 1;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-label,
.features-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.philosophy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
}

/* ---- FEATURES ---- */
.features {
  padding: 8rem 2rem;
  background: var(--bg-deep);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196, 149, 106, 0.08);
  border: 1px solid rgba(196, 149, 106, 0.08);
}

.feature-card {
  background: var(--bg-surface);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-elevated);
}

.feature-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ---- CLOSING ---- */
.closing {
  padding: 10rem 2rem;
  background: var(--bg-surface);
  text-align: center;
  border-top: 1px solid rgba(196, 149, 106, 0.08);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.closing-tagline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90vh;
    padding: 2rem 1.5rem;
  }

  .philosophy,
  .features,
  .closing {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .features-grid {
    gap: 1px;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}
/* ======================================================
   NAVIGATION
   ====================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(12, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196, 149, 106, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg-primary);
}

.nav-link.nav-cta {
  color: var(--accent);
  border: 1px solid rgba(196, 149, 106, 0.35);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  background: rgba(196, 149, 106, 0.12);
  border-color: var(--accent);
  color: var(--accent-light);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg-secondary);
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(196, 149, 106, 0.1);
    padding: 1rem 2rem 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 0.75rem 0; border-radius: 0; }
  .nav-link.nav-cta { border: none; padding: 0.75rem 0; }
}

/* ======================================================
   SHARED PAGE HERO (product / story / contact)
   ====================================================== */
.page-hero,
.contact-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.page-hero-inner,
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero h1,
.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--fg-primary);
  margin-bottom: 1.25rem;
}

.page-hero h1 em,
.contact-hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--accent);
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  background: transparent;
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(196, 149, 106, 0.3);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  color: var(--fg-primary);
  border-color: rgba(196, 149, 106, 0.6);
}

/* ======================================================
   PRODUCT PAGE
   ====================================================== */
.product-intro {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.product-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.product-intro-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.product-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.product-intro p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
}

/* Specs */
.product-specs {
  padding: 7rem 2rem;
  background: var(--bg-deep);
}

.product-specs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.specs-header {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.specs-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196, 149, 106, 0.08);
  border: 1px solid rgba(196, 149, 106, 0.08);
}

.spec-item {
  background: var(--bg-surface);
  padding: 2rem 1.75rem;
  transition: background 0.25s ease;
}

.spec-item:hover { background: var(--bg-elevated); }

.spec-title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.spec-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.6rem;
}

.spec-detail {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* Use cases */
.product-use {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.product-use-inner {
  max-width: 700px;
  margin: 0 auto;
}

.product-use-col h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 3rem;
}

.use-cases {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.use-case {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.use-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 0.25rem;
  flex-shrink: 0;
}

.use-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.use-body p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* Product CTA */
.product-cta {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.product-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.product-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 1rem;
}

.product-cta p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ======================================================
   STORY PAGE
   ====================================================== */
.story-section {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.story-problem { background: var(--bg-surface); }
.story-mission { background: var(--bg-deep); }

.story-inner {
  max-width: 700px;
  margin: 0 auto;
}

.story-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.story-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.story-section p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.story-section p:last-child { margin-bottom: 0; }

/* Values grid */
.story-values {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.story-values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.story-values h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 3.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(196, 149, 106, 0.08);
  border: 1px solid rgba(196, 149, 106, 0.08);
}

.value-card {
  background: var(--bg-elevated);
  padding: 2.5rem 2rem;
  transition: background 0.25s ease;
}

.value-card:hover { background: var(--bg-surface); }

.value-icon {
  font-size: 0.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.93rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

/* Story vision */
.story-vision {
  padding: 7rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

/* Story CTA */
.story-cta {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.story-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}

.story-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 2.5rem;
}

.story-cta-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-body {
  padding: 5rem 2rem 8rem;
  background: var(--bg-surface);
  border-top: 1px solid rgba(196, 149, 106, 0.08);
}

.contact-body-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-types {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-type-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.contact-type p {
  font-size: 0.93rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row-2 { flex-direction: row; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-secondary);
}

.req { color: var(--accent); }

input,
select,
textarea {
  background: var(--bg-elevated);
  border: 1px solid rgba(196, 149, 106, 0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--fg-primary);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: var(--fg-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196, 149, 106, 0.45);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6165' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: var(--bg-elevated); }

textarea { resize: vertical; min-height: 140px; }

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn-submit {
  font-size: 0.82rem;
}

.form-error {
  font-size: 0.88rem;
  color: #e07b6a;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(196, 149, 106, 0.2);
  border-radius: 8px;
}

.form-success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
}

/* ======================================================
   UPDATED FOOTER
   ====================================================== */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--fg-secondary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(196, 149, 106, 0.06);
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ======================================================
   RESPONSIVE — new pages
   ====================================================== */
@media (max-width: 900px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-body-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
  .form-row-2 { flex-direction: column; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .page-hero, .contact-hero { padding: 7rem 1.5rem 4rem; }
  .story-cta-links { flex-direction: column; align-items: center; }
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Closing CTA spacing */
.closing .btn-primary {
  margin-bottom: 2.5rem;
}
