/* SUNSAM TOWELS — 2025 design system */

:root {
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --royal: #1e6fad;
  --gold: #d4a72c;
  --gold-hover: #e8bc42;
  --warm: #f8f9fb;
  --surface: #ffffff;
  --ink: #1a2332;
  --muted: #5c6b7f;
  --border: rgba(15, 39, 68, 0.08);
  --shadow-sm: 0 1px 2px rgba(15, 39, 68, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 39, 68, 0.06), 0 12px 40px rgba(15, 39, 68, 0.05);
  --shadow-lg: 0 8px 32px rgba(15, 39, 68, 0.1);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--warm);
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: -0.025em;
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Site header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(15, 39, 68, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(15, 39, 68, 0.96);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding: 0 2rem;
  }
}

.site-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: opacity 0.2s ease;
}

.site-logo:hover {
  opacity: 0.9;
}

.site-logo span {
  color: var(--gold);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}

.site-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.text-gold,
.site-nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(212, 167, 44, 0.1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(212, 167, 44, 0.35);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 16px rgba(212, 167, 44, 0.4);
}

.btn-secondary {
  background: var(--navy);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--navy-light);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(15, 39, 68, 0.15);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 167, 44, 0.06);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  min-height: 2.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  min-height: 3.125rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 6.5rem 0;
  }
}

.section-alt {
  background: var(--surface);
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .section-inner {
    padding: 0 2rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal);
}

.eyebrow.text-gold,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero .eyebrow::before {
  background: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.section-lead {
  margin-top: 0.875rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

/* —— Cards —— */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 39, 68, 0.12);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.375rem 1.5rem 1.5rem;
}

.card-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
}

.card-title {
  margin-top: 0.375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.card-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--royal);
  transition: color 0.2s ease, gap 0.2s ease;
}

.card-link:hover {
  color: var(--gold);
  gap: 0.5rem;
}

.card--horizontal {
  display: flex;
  flex-direction: column;
}

.card--horizontal .card-media {
  aspect-ratio: auto;
  width: 100%;
  height: 14rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .card--horizontal {
    flex-direction: row;
  }

  .card--horizontal .card-media {
    width: 12rem;
    height: auto;
    min-height: 100%;
  }
}

@media (min-width: 1024px) {
  .card--horizontal .card-media {
    width: 14rem;
  }
}

.card--horizontal .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature cards */
.feature-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: rgba(30, 111, 173, 0.1);
  color: var(--royal);
  font-size: 1.125rem;
  font-weight: 700;
}

.feature-card__title {
  margin-top: 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

.feature-card__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* —— Page hero (inner pages) —— */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.page-hero__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem 5.5rem;
}

@media (min-width: 1024px) {
  .page-hero__inner {
    padding: 6rem 2rem 6.5rem;
  }
}

.page-hero__title {
  max-width: 40rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
}

.page-hero__lead {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.95) 0%, rgba(15, 39, 68, 0.85) 100%);
}

.cta-band__inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

@media (min-width: 1024px) {
  .cta-band__inner {
    padding: 6rem 2rem;
  }
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Hero overlays (shared) —— */
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(15, 39, 68, 0.92) 0%,
    rgba(15, 39, 68, 0.72) 45%,
    rgba(15, 39, 68, 0.35) 100%
  );
}

.hero-overlay-center {
  background: linear-gradient(
    180deg,
    rgba(15, 39, 68, 0.7) 0%,
    rgba(15, 39, 68, 0.5) 50%,
    rgba(15, 39, 68, 0.82) 100%
  );
}

/* —— Homepage hero —— */
.hero-stage {
  min-height: 100svh;
}

.hero-inner {
  min-height: 100svh;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 1rem);
  padding-bottom: 6.25rem;
  gap: 1.75rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay-pro {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(15, 39, 68, 0.4) 0%,
    rgba(15, 39, 68, 0.3) 36%,
    rgba(15, 39, 68, 0.75) 70%,
    rgba(15, 39, 68, 0.92) 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 70% 40%, transparent 0%, rgba(15, 39, 68, 0.3) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-copy {
  width: 100%;
  animation: heroCopyIn 1s var(--ease) 0.12s both;
}

.hero-copy-body {
  max-width: 34rem;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  animation: heroFadeUp 0.8s var(--ease) 0.2s both;
}

.hero-eyebrow-mark {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
  animation: heroLineGrow 0.9s var(--ease) 0.35s both;
}

@keyframes heroLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.4em;
  line-height: 1;
  animation: heroFadeUp 0.95s var(--ease) 0.28s both;
}

.hero-brand,
.hero-brand-accent {
  font-size: clamp(2.25rem, 9.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-brand { color: #fff; }
.hero-brand-accent { color: var(--gold); }

.hero-headline {
  margin-top: 1.125rem;
  font-size: clamp(1.0625rem, 3vw, 1.3125rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  max-width: 28ch;
  animation: heroFadeUp 0.9s var(--ease) 0.42s both;
}

.hero-support {
  margin-top: 0.625rem;
  max-width: 30rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  animation: heroFadeUp 0.9s var(--ease) 0.52s both;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  animation: heroFadeUp 0.9s var(--ease) 0.62s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease);
}

.hero-btn:hover { transform: translateY(-1px); }

.hero-btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(212, 167, 44, 0.35);
}

.hero-btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(212, 167, 44, 0.45);
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 167, 44, 0.08);
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  animation: heroFadeUp 0.9s var(--ease) 0.75s both;
}

.hero-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  max-width: 16rem;
}

.hero-progress-track {
  height: 2px;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.05s linear;
}

.hero-progress-bar.is-running {
  width: 100%;
  transition: width 6.5s linear;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.35s ease, width 0.35s ease;
}

.hero-dot.is-active {
  width: 1.25rem;
  background: var(--gold);
}

.hero-scroll {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.hero-scroll:hover { color: var(--gold); }

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: heroScrollPulse 1.8s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (min-width: 640px) {
  .hero-inner {
    padding-bottom: 2.75rem;
    justify-content: space-between;
  }

  .hero-copy {
    margin-top: auto;
    margin-bottom: auto;
  }

  .hero-title { flex-wrap: nowrap; }

  .hero-brand,
  .hero-brand-accent {
    font-size: clamp(2.75rem, 5.5vw, 4rem);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }

  .hero-btn { min-width: 10.5rem; }
  .hero-support { font-size: 1rem; }
  .hero-scroll { display: flex; }
  .hero-progress { max-width: 18rem; }
}

@media (min-width: 1024px) {
  .hero-stage { min-height: 100vh; }
  .hero-inner {
    min-height: 100vh;
    padding-bottom: 2.75rem;
  }

  .hero-overlay-pro {
    background: linear-gradient(
      105deg,
      rgba(15, 39, 68, 0.9) 0%,
      rgba(15, 39, 68, 0.75) 34%,
      rgba(15, 39, 68, 0.35) 62%,
      rgba(15, 39, 68, 0.15) 100%
    );
  }

  .hero-brand,
  .hero-brand-accent {
    font-size: clamp(3.5rem, 5vw, 4.75rem);
  }

  .hero-headline {
    margin-top: 1.375rem;
    max-width: 30ch;
    font-size: 1.375rem;
  }

  .hero-actions {
    margin-top: 1.875rem;
    gap: 0.75rem;
  }
}

/* —— FAQ —— */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s ease;
}

.faq-item button:hover {
  background: rgba(15, 39, 68, 0.02);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 20rem;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

/* —— Forms —— */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(30, 111, 173, 0.12);
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

/* —— Mobile drawer —— */
.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  background: var(--navy);
  backdrop-filter: blur(20px);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}

.drawer-nav a:hover,
.drawer-nav a.text-gold {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

/* —— Bottom bar —— */
.bottom-bar {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 40;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15, 39, 68, 0.08);
}

.bottom-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  max-width: 28rem;
  margin: 0 auto;
}

.bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}

.bottom-bar__item:hover {
  color: var(--royal);
  background: rgba(30, 111, 173, 0.06);
}

.bottom-bar__item--primary {
  color: var(--navy);
  background: var(--gold);
}

.bottom-bar__item--primary:hover {
  background: var(--gold-hover);
  color: var(--navy);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: #fff;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

/* —— Utility —— */
.has-bottom-bar {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
}

@media (min-width: 1024px) {
  .has-bottom-bar {
    padding-bottom: 0;
  }
}

.text-link {
  font-weight: 600;
  color: var(--royal);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--gold);
}

/* Form success */
.form-success { display: none; }
.form-success.is-visible { display: block; }
.enquiry-form.is-hidden { display: none; }

/* Focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: scale(1); }
  .hero-copy, .hero-eyebrow, .hero-title, .hero-headline,
  .hero-support, .hero-actions, .hero-footer, .hero-eyebrow-mark { animation: none; }
  .hero-progress-bar.is-running { transition: none; }
  .hero-scroll-line { animation: none; }
  .hero-btn:hover, .btn:hover, .card:hover, .feature-card:hover { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
