/* ============================================================
   Custom Walks — Design Tokens
   ============================================================ */

:root {
  /* ── Tier 1: Literal Color Tokens ── */
  --color-gold-100: #F5EFE3;
  --color-gold-200: #E8DCC8;
  --color-gold-300: #D4C49E;
  --color-gold-400: #C4A265;
  --color-gold-500: #B08D4F;
  --color-gold-600: #8C6F3A;

  --color-navy-100: #2E2E48;
  --color-navy-200: #1F1F38;
  --color-navy-300: #1A1A2E;
  --color-navy-400: #13132A;
  --color-navy-500: #0D0D1F;

  --color-neutral-50: #FAFAF8;
  --color-neutral-100: #F5F0EB;
  --color-neutral-200: #EDE6DC;
  --color-neutral-300: #D9D0C3;
  --color-neutral-400: #B3A898;
  --color-neutral-500: #8C8477;
  --color-neutral-600: #666058;
  --color-neutral-700: #4A453E;
  --color-neutral-800: #2E2A25;
  --color-neutral-900: #1A1815;

  --color-white: #FFFFFF;
  --color-black: #0A0A0A;

  --color-success: #2E7D32;
  --color-error: #C62828;
  --color-warning: #E65100;

  /* ── Figma Design Tokens ── */
  --navy:  #071B35;
  --gold:  #B28E54;
  --cream: #FDFAF5;
  --white: #FFFFFF;
  --dark:  #060F1E;

  /* ── Tier 2: Semantic Color Tokens ── */
  --color-accent: var(--gold);
  --color-accent-hover: #98753c;
  --color-accent-light: rgba(178, 142, 84, 0.1);

  --color-surface-primary: var(--white);
  --color-surface-secondary: var(--cream);
  --color-surface-cream: var(--color-neutral-100);
  --color-surface-cream-light: var(--cream);
  --color-surface-dark: var(--navy);
  --color-surface-darker: var(--dark);
  --color-brown-dark: #25221A;

  --color-text-primary: var(--navy);
  --color-text-secondary: rgba(7, 27, 53, 0.65);
  --color-text-tertiary: rgba(7, 27, 53, 0.4);
  --color-text-on-dark: var(--white);
  --color-text-on-dark-muted: rgba(255, 255, 255, 0.6);
  --color-text-accent: var(--color-gold-600);

  --color-border: rgba(7, 27, 53, 0.1);
  --color-border-light: rgba(7, 27, 53, 0.06);

  /* ── Typography ── */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent:  'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-display: clamp(3rem, 2rem + 5vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 1.5rem + 3.75vw, 4rem);
  --fs-h2: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  --fs-h3: clamp(1.375rem, 1rem + 1.875vw, 2rem);
  --fs-h4: clamp(1.125rem, 0.875rem + 1.25vw, 1.5rem);
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.875rem;
  --fs-caption: 0.75rem;
  --fs-overline: 0.8125rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* ── Spacing Scale ── */
  --space-2xs: 0.25rem;   /* 4px */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 6rem;      /* 96px */
  --space-5xl: 8rem;      /* 128px */

  --section-padding-block: clamp(4rem, 3rem + 5vw, 8rem);
  --container-max: 1200px;
  --container-wide: 1440px;
  --container-padding: clamp(1.25rem, 1rem + 2vw, 3rem);

  /* ── Border Radius ── */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 14px rgba(196, 162, 101, 0.3);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* ── Z-Index Scale ── */
  --z-base: 0;
  --z-above: 10;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}
/* ============================================================
   Custom Walks — Modern CSS Reset
   ============================================================ */

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

/* Remove default margins & paddings */
body, h1, h2, h3, h4, h5, h6, p,
figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
}

/* Set core body defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-block-size: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-inline-size: 100%;
}

img, video {
  block-size: auto;
}

/* Form element defaults */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* Anchor defaults */
a {
  color: inherit;
  text-decoration: none;
}

/* Table defaults */
table {
  border-collapse: collapse;
}

/* Remove list styles on ul, ol */
ul,
ol {
  list-style: none;
}

/* Ensure consistent line height */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* ============================================================
   Custom Walks — Base Typography & Global Styles
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text-primary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

.serif-accent,
.section-header__title-accent,
.banner__title-accent,
.hero__title-accent {
  font-family: var(--font-accent);
  font-weight: var(--fw-regular);
  font-style: normal;
  text-transform: none;
}

/* ── Body Text ── */
.text-lg { font-size: var(--fs-body-lg); }
.text-sm { font-size: var(--fs-body-sm); }
.text-caption { font-size: var(--fs-caption); }

.text-overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

/* ── Links ── */
a:not([class]) {
  color: var(--color-accent);
  text-decoration-skip-ink: auto;
  transition: color var(--duration-fast) var(--ease-out);
}

a:not([class]):hover {
  color: var(--color-accent-hover);
}

/* ── Selection ── */
::selection {
  background-color: var(--color-gold-400);
  color: var(--color-white);
}

/* ── Utilities ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  max-inline-size: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--wide {
  max-inline-size: var(--container-wide);
}

/* ── Section Spacing ── */
.section {
  padding-block: var(--section-padding-block);
}

/* ── Text Colors ── */
.text-accent { color: var(--color-text-accent); }
.text-muted { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-on-dark); }

/* ── Scrollbars ── */
@supports (scrollbar-color: auto) {
  html {
    scrollbar-color: var(--color-accent) var(--color-navy-400);
    scrollbar-width: thin;
  }
}

/* For older Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-navy-500);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

/* ── Reset list styles for homepage lists to remove bullets/dots ── */
.nav-links,
.nav-drawer,
.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-links li,
.nav-drawer li,
.footer-links li {
  list-style: none !important;
  list-style-type: none !important;
}

/* ============================================================
   Custom Walks — Component Styles
   ============================================================ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  min-block-size: 48px;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover:not(:disabled) {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn--secondary:hover:not(:disabled) {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--dark {
  background-color: var(--color-surface-dark);
  color: var(--color-white);
}

.btn--dark:hover:not(:disabled) {
  background-color: var(--color-navy-100);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-text-primary);
}

.btn--white:hover:not(:disabled) {
  background-color: var(--color-neutral-100);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--fs-caption);
  min-block-size: 36px;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-body);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn__icon {
  width: 1.25em;
  height: 1.25em;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover:not(:disabled) .btn__icon {
  transform: translateX(3px);
}

/* ── Navigation ── */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: var(--z-header);
  padding-block: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.header--scrolled {
  padding-block: var(--space-sm);
  background-color: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(11, 26, 48, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-inline-size: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #0b1a30;
  letter-spacing: var(--ls-wide);
  z-index: var(--z-overlay);
}

.header__logo-img {
  width: auto;
  height: 46px;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.header__nav-link {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: rgba(11, 26, 48, 0.7);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  padding-block: var(--space-2xs);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  inset-block-end: -2px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 2px;
  background-color: var(--color-accent);
  transition: inline-size var(--duration-normal) var(--ease-out);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #0b1a30;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  inline-size: 100%;
}

.header .btn--primary {
  background-color: #0b1a30;
  color: var(--color-white);
  border-radius: var(--radius-full);
}

.header .btn--primary:hover {
  background-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ── Mobile Menu ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: var(--z-overlay);
  min-block-size: 44px;
  min-inline-size: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0b1a30;
  transition: all var(--duration-normal) var(--ease-out);
  border-radius: var(--radius-full);
}

.mobile-toggle--active .mobile-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle--active .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background-color: var(--color-surface-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-out),
    visibility var(--duration-slow) var(--ease-out);
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-white);
  display: block;
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

/* ============================================================
   Homepage components (Figma-Aligned Design)
   ============================================================ */

/* ─── SHARED ─────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 16px;
}
.eyebrow-line { width: 64px; height: 1px; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.eyebrow-text { font-size: 11px; font-weight: 400; color: var(--color-text-accent); letter-spacing: 1.1px; text-transform: uppercase; line-height: 15px; white-space: nowrap; }
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 48px; background: var(--gold); border-radius: 24px;
  color: var(--white); font-size: 16px; font-weight: 600; white-space: nowrap;
  transition: opacity 0.2s; cursor: pointer; border: none;
}
.btn-gold:hover { opacity: 0.85; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border: 1px solid rgba(7,27,53,0.2); border-radius: 24px;
  color: var(--navy); font-size: 16px; font-weight: 500; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--color-text-accent); color: var(--color-text-accent); }
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border: 1px solid rgba(255,255,255,0.25); border-radius: 24px;
  color: var(--white); font-size: 16px; font-weight: 500; white-space: nowrap;
  transition: border-color 0.2s; cursor: pointer;
}
.btn-outline-light:hover { border-color: var(--color-text-accent); }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 80px; background: var(--white);
  box-shadow: 0 1px 0 rgba(7,27,53,0.06);
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a { font-size: 13px; font-weight: 400; color: var(--navy); letter-spacing: 0.325px; white-space: nowrap; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-text-accent); }
.nav-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; background: var(--white); border-radius: 24px;
  color: var(--white); font-size: 13px; font-weight: 500; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: default;
  pointer-events: none;
  user-select: none;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--white);
  box-shadow: none;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 32px 24px 40px;
  flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.3s ease;
  list-style: none;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer li { border-bottom: 1px solid rgba(7,27,53,0.06); }
.nav-drawer li a { display: block; padding: 18px 0 18px 24px; font-size: 16px; font-weight: 500; color: var(--navy); }
.nav-drawer .drawer-cta { display: none; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  position: relative; overflow: hidden;
  min-height: 864px; display: flex; flex-direction: column;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to left,
    rgba(178,142,84,0.95) 0%,
    rgba(178,142,84,0.65) 30%,
    rgba(178,142,84,0.2) 55%,
    rgba(255,255,255,0) 100%);
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: stretch;
  padding: 24px 80px 80px; gap: 32px;
}
/* Left text col */
.hero-text {
  flex: 0 0 500px; max-width: 500px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0; padding-right: 60px; padding-top: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 17px; background: rgba(178,142,84,0.1);
  border: 1px solid rgba(178,142,84,0.25); border-radius: 9999px; width: fit-content;
  margin-bottom: 14px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-badge span { font-size: 11px; color: var(--color-text-accent); letter-spacing: 1.1px; text-transform: uppercase; }
.hero-title { line-height: 1; }
.hero-title-custom { font-size: clamp(52px, 7vw, 96px); font-weight: 800; letter-spacing: -4px; color: var(--navy); display: block; line-height: 1; }
.hero-title-walks  { font-size: clamp(52px, 7vw, 96px); font-weight: 800; letter-spacing: -4px; color: var(--color-text-accent);  display: block; line-height: 1; }
.hero-desc { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; opacity: 0.6; }
.hero-desc p { font-size: 16px; line-height: 27px; }
.hero-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; margin-top: 16px;
  padding-top: 49px; border-top: 1px solid rgba(7,27,53,0.08);
}
.stat-val  { font-size: 28px; font-weight: 700; color: var(--color-text-accent); line-height: 42px; }
.stat-lbl  { font-size: 11px; color: var(--navy); opacity: 0.4; line-height: 15px; }

/* Center product image */
.hero-center {
  flex: 1; position: relative; min-height: 640px;
}
.hero-center-img {
  position: absolute; top: 80px; left: 24px; right: auto; bottom: 0;
  width: 100%; max-width: 480px;
  transform: translateY(0);
  border-radius: 24px; overflow: hidden;
  background: #e8dcc8;
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}

/* Custom-walks hero (order pages) */
.custom-walks-hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-block: 56px;
}

.hero-center-img img {
  width: 100%;
  max-width: 480px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0 auto;
}
.hero-frosted {
  position: absolute;
  left: calc(24px + 20px);
  bottom: 20px;
  width: calc(min(100%, 480px) - 40px);
  box-sizing: border-box;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(178,142,84,0.25);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  display: flex; align-items: center; gap: 16px;
  transform: translateY(0);
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.hero-frosted img { height: 56px; width: auto; flex-shrink: 0; }
.hero-frosted-divider { width: 1px; height: 40px; background: var(--gold); opacity: 0.3; flex-shrink: 0; }
.hero-frosted-info { text-align: right; flex: 1; }
.hero-frosted-name { display: block; font-size: 13px; font-weight: 700; color: var(--navy); opacity: 0.7; }
.hero-frosted-sub  { display: block; font-size: 11px; color: var(--color-text-accent); opacity: 0.6; }

/* Right sidebar */
.hero-sidebar {
  flex: 0 0 240px; display: flex; flex-direction: column; position: relative; padding-left: 16px;
}
.hero-watermark {
  position: absolute; top: 38px; left: 16px; right: 0; height: 280px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.07; pointer-events: none; overflow: hidden;
}
.hero-watermark span {
  font-size: 64px; font-weight: 700; color: #503101; letter-spacing: 4px;
  writing-mode: vertical-rl; transform: rotate(180deg); line-height: 1;
}
.hero-sidebar-img {
  position: absolute; left: 48px; right: 0; top: 354px; bottom: 120px;
  border-radius: 24px; overflow: hidden; background: #d4c5a9;
  transform: translateY(0);
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.hero-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-sidebar-badge {
  position: absolute; left: 48px; right: 0; bottom: 0;
  padding: 16px 17px; background: #F4F4F4;
  border: 1px solid rgba(178,142,84,0.2); border-radius: 24px; text-align: center;
  transform: translateY(0);
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}
.hero-sidebar-badge span { font-size: 11px; font-weight: 700; color: var(--color-text-accent); letter-spacing: 1.1px; text-transform: uppercase; }

/* ─── WHAT WE DO ─────────────────────────────────────────── */
.what-section { padding: 96px 80px; background: var(--cream); }
.what-inner   { display: flex; align-items: center; gap: 64px; max-width: 1280px; margin: 0 auto; }
.what-img-col { position: relative; flex: 0 0 480px; }
.what-img {
  width: 100%; height: 560px; border-radius: 24px; overflow: hidden;
  background: #d0c4b0;
}
.what-img img { width: 100%; height: 100%; object-fit: cover; }
.what-badge {
  position: absolute; right: -24px; bottom: -24px;
  background: var(--gold); border-radius: 24px; padding: 19px 28px;
  display: flex; flex-direction: column; gap: 2px;
}
.what-badge-num { font-size: 36px; font-weight: 700; color: var(--white); line-height: 43px; }
.what-badge-lbl { font-size: 11px; color: var(--white); opacity: 0.75; letter-spacing: 0.275px; }
.what-content   { flex: 1; display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.what-heading   { margin-top: 24px; font-size: clamp(42px, 6vw, 72px); font-weight: 800; color: var(--navy); letter-spacing: -3px; line-height: 1; }
.what-p         { font-size: 17px; font-weight: 300; color: var(--navy); line-height: 29px; opacity: 0.65; }
.what-tags      { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  display: inline-flex; align-items: center; padding: 7px 20px;
  background: rgba(178,142,84,0.06); border: 1px solid var(--gold);
  border-radius: 9999px; font-size: 13px; font-weight: 700; color: var(--color-text-accent); letter-spacing: 0.325px;
}

/* ─── WHAT WE OFFER (dark) ───────────────────────────────── */
.offer-section { padding: 96px 80px; background: var(--navy); }
.offer-inner   { display: flex; flex-direction: column; gap: 64px; max-width: 1280px; margin: 0 auto; }
.offer-top     { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.offer-heading { font-size: clamp(42px, 6vw, 72px); font-weight: 800; color: var(--white); letter-spacing: -3px; line-height: 1; margin-top: 24px; }
.offer-desc    { max-width: 520px; font-size: 15px; color: var(--white); line-height: 24px; opacity: 0.4; padding-top: 48px; flex-shrink: 1; }
.offer-grid    { display: flex; flex-direction: column; gap: 20px; }
.offer-row     { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.offer-card    {
  height: 295px; border-radius: 24px; position: relative; overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22, 0.9, 0.38, 1), box-shadow 320ms cubic-bezier(0.22, 0.9, 0.38, 1);
  cursor: pointer;
}
.offer-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.offer-card-bg  { position: absolute; inset: 0; background-size: cover; background-position: center; transform: translateY(0); will-change: transform; transition: transform 420ms cubic-bezier(0.22, 0.9, 0.38, 1); animation: float 6s ease-in-out infinite; }
.offer-card:hover .offer-card-bg {
  transform: scale(1.08);
}
.offer-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,53,.92) 0%, rgba(7,27,53,.15) 55%, rgba(7,27,53,0) 100%);
}
.offer-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; display: flex; flex-direction: column; gap: 7px; }
.offer-num  { font-size: 11px; color: var(--color-text-accent); letter-spacing: 1.1px; text-transform: uppercase; opacity: 0.7; line-height: 15px; }
.offer-name { font-size: 16px; font-weight: 700; color: var(--white); line-height: 21px; }

/* Card color tints (behind the image, show if image fails) */
.c1 { background: linear-gradient(150deg,#0d2744,#1d4a7a); }
.c2 { background: linear-gradient(150deg,#1a3320,#275c30); }
.c3 { background: linear-gradient(150deg,#3a200c,#6b3a18); }
.c4 { background: linear-gradient(150deg,#0d2030,#1a3d55); }
.c5 { background: linear-gradient(150deg,#3a0d0d,#6b1818); }
.c6 { background: linear-gradient(150deg,#0d0d3a,#18186b); }
.c7 { background: linear-gradient(150deg,#280d3a,#4a1870); }
.c8 { background: linear-gradient(150deg,#0d3a28,#186b4a); }

/* ─── WHY CHOOSE CUSTOM WALKS ────────────────────────────── */
.why-section { padding: 96px 80px 128px; background: var(--cream); }
.why-inner   { max-width: 1280px; margin: 0 auto; }
.why-top     { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.why-heading {
  font-size: clamp(36px, 5.5vw, 80px); font-weight: 800;
  letter-spacing: -3px; line-height: 1; margin-top: 20px; white-space: nowrap;
}
.why-heading .navy { color: var(--navy); }
.why-heading .gold  { color: var(--color-text-accent); }

/* Alternating rows */
.why-rows { margin-top: 72px; }
.why-row {
  display: flex; align-items: center;
  border-top: 1px solid rgba(7,27,53,0.08); min-height: 320px;
}
.why-row:last-child { /* no extra border */ }
.why-row--reverse { flex-direction: row-reverse; }

.why-text-col {
  flex: 1; padding: 64px 64px 64px 0;
}
.why-row--reverse .why-text-col {
  padding: 64px 0 64px 64px;
}
.why-ghost-num {
  font-size: 64px; font-weight: 900; color: var(--navy);
  opacity: 0.1; line-height: 1; margin-bottom: 16px;
}
.why-title {
  font-size: 32px; font-weight: 700; color: var(--navy);
  letter-spacing: -1px; line-height: 48px; margin-bottom: 20px;
}
.why-body {
  font-size: 16px; font-weight: 300; color: var(--navy);
  opacity: 0.55; line-height: 26px; max-width: 480px;
}

.why-img-col { flex: 0 0 480px; padding: 24px 0; }
.why-img-box { width: 100%; height: 306px; border-radius: 24px; overflow: hidden; }
.why-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ─── ASK ONCE ───────────────────────────────────────────── */
.ask-section { padding: 120px 80px; background: #25221A; text-align: center; position: relative; overflow: hidden; }
.ask-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; opacity: 0.12; font-size: clamp(100px, 17vw, 220px); font-weight: 900;
  color: var(--white); white-space: nowrap; letter-spacing: -4px; width: 100%;
  text-align: center; line-height: 1;
}
.ask-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; z-index: 1; }
.ask-headline { font-size: clamp(64px, 10vw, 128px); font-weight: 800; color: var(--white); letter-spacing: -4px; line-height: 1; white-space: nowrap; }
.ask-headline .gold { color: var(--color-text-accent); }
.ask-desc { font-size: 17px; font-weight: 300; color: var(--white); opacity: 0.6; line-height: 30px; max-width: 700px; }
.ask-divider { width: 80px; height: 2px; background: var(--gold); opacity: 0.55; border-radius: 2px; }

/* ─── CLIENTELE / WHO WE SERVE ───────────────────────────── */
.clientele-section { padding: 112px 64px; background: var(--cream); }
.clientele-inner   { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.clientele-top     { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; }
.clientele-heading { margin-top: 24px; font-size: clamp(40px, 5.5vw, 72px); font-weight: 800; letter-spacing: -3px; line-height: 1; }
.clientele-heading .navy { color: var(--navy); }
.clientele-heading .gold  { color: var(--color-text-accent); }
.clientele-cta-col { display: flex; align-items: center; padding-top: 24px; }

.clientele-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.clientele-card {
  background: var(--white); border: 1px solid #e8e8e8; border-radius: 20px;
  box-shadow: 0 4px 8px rgba(7,27,53,0.06);
  height: 114px; padding: 24px 33px;
  display: flex; align-items: center; gap: 20px;
}
.clientele-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(178,142,84,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.clientele-icon svg { width: 20px; height: 20px; color: var(--color-text-accent); }
.clientele-label { font-size: 14px; font-weight: 500; color: var(--navy); line-height: 20px; }

/* ─── VISION & MISSION ───────────────────────────────────── */
.vision-section { padding: 96px 80px; background: var(--navy); }
.vision-inner   { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.vision-top     { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.vision-heading {
  font-size: clamp(40px, 6vw, 80px); font-weight: 800; color: var(--white);
  letter-spacing: -3px; line-height: 1; margin-top: 20px; white-space: nowrap;
}
.vision-heading .gold { color: var(--color-text-accent); }
.vision-cards   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Left image card */
.vision-img-card {
  position: relative; border-radius: 24px; overflow: hidden;
  min-height: 400px; background: #1a2e44;
}
.vision-img-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vision-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,27,53,0.88) 0%, rgba(7,27,53,0.2) 50%, rgba(7,27,53,0) 100%);
}
.vision-img-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
  display: flex; flex-direction: column; gap: 6px;
}
.vision-label { font-size: 10px; font-weight: 600; color: var(--color-text-accent); letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.8; }
.vision-img-title { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; }
.vision-img-title .gold { color: var(--color-text-accent); }
.vision-img-desc { font-size: 14px; font-weight: 300; color: var(--white); opacity: 0.65; line-height: 22px; margin-top: 10px; }

/* Right text card */
.vision-text-card {
  border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex; flex-direction: column; gap: 24px;
}
.vision-quote-icon { font-size: 56px; font-weight: 900; color: rgba(255,255,255,0.12); line-height: 1; }
.vision-tagline { font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -0.5px; }
.vision-tagline .gold { color: var(--color-text-accent); }
.vision-p  { font-size: 15px; font-weight: 300; color: var(--white); opacity: 0.55; line-height: 25px; }
.vision-card-divider { height: 1px; background: rgba(255,255,255,0.12); margin-top: auto; }

/* ─── COMMITMENT ─────────────────────────────────────────── */
.commit-section { padding: 96px 80px; background: var(--cream); }
.commit-inner   { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.commit-top     { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.commit-heading {
  font-size: clamp(40px, 6vw, 80px); font-weight: 800;
  letter-spacing: -3px; line-height: 1; margin-top: 20px; white-space: nowrap;
}
.commit-heading .navy { color: var(--navy); }
.commit-heading .gold  { color: var(--color-text-accent); }
.commit-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.2px;
}
.commit-divider { width: 160px; height: 1px; background: rgba(7,27,53,0.15); margin: 32px auto 48px; }
.commit-cards   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.commit-card    {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(7,27,53,0.1);
  border-radius: 20px; padding: 32px 32px 32px 24px;
  display: flex; align-items: flex-start; gap: 20px;
}
.commit-bullet  {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; margin-top: 5px;
}
.commit-card-text { font-size: 15px; font-weight: 400; color: var(--navy); line-height: 26px; opacity: 0.75; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { padding: 56px 80px 40px; background: var(--cream); border-top: 1px solid rgba(7,27,53,0.1); }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.footer-logo img { height: 80px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: 13px; font-weight: 400; color: var(--navy); opacity: 0.5; transition: opacity 0.2s, color 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--color-text-accent); }
.footer-copy { font-size: 12px; color: var(--navy); opacity: 0.35; text-align: center; }

/* ── BEM Footer overrides for Order Pages ── */
.footer__logo-wrapper {
  margin-block-end: var(--space-xl);
}
.footer__logo {
  height: 80px;
  width: auto;
  display: inline-block;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  list-style: none;
  margin-block-start: var(--space-2xl);
  margin-block-end: var(--space-xl);
  flex-wrap: wrap;
  padding: 0;
}
.footer__nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: rgba(11, 26, 48, 0.7);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__nav-link:hover {
  color: var(--color-accent);
}
.footer__copyright {
  font-size: var(--fs-caption);
  color: rgba(11, 26, 48, 0.5);
  margin-block-start: var(--space-xl);
  border-block-start: 1px solid rgba(11, 26, 48, 0.08);
  padding-block-start: var(--space-xl);
  max-inline-size: 800px;
  margin-inline: auto;
}

.footer {
  background-color: var(--color-surface-cream-light);
  color: #0b1a30;
  padding-block: var(--space-4xl) var(--space-2xl);
  text-align: center;
}

.footer__logo-wrapper {
  margin-block-end: var(--space-xl);
}

.footer__logo {
  max-width: 180px;
  height: auto;
  display: inline-block;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  list-style: none;
  margin-block-start: var(--space-2xl);
  margin-block-end: var(--space-xl);
  flex-wrap: wrap;
  padding: 0;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: rgba(11, 26, 48, 0.7);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__nav-link:hover {
  color: var(--color-accent);
}

.footer__copyright {
  font-size: var(--fs-caption);
  color: rgba(11, 26, 48, 0.5);
  margin-block-start: var(--space-xl);
  border-block-start: 1px solid rgba(11, 26, 48, 0.08);
  padding-block-start: var(--space-xl);
  max-inline-size: 800px;
  margin-inline: auto;
}

/* ── Gallery Grid ── */
.gallery {
  background-color: var(--color-surface-dark);
  overflow: hidden;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
  display: block;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* Gallery item caption overlay */
.gallery__caption {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery__caption-num {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: var(--ls-wide);
}

.gallery__caption-title {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  line-height: var(--lh-snug);
}

/* Gallery header two-column split (Figma: left title, right description) */
.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-2xl);
  margin-block-end: var(--space-3xl);
}

.gallery__header-description {
  font-size: var(--fs-body-sm);
  color: var(--color-text-on-dark-muted);
  line-height: var(--lh-relaxed);
  max-inline-size: 400px;
  text-align: start;
}

/* ── What We Do Section ── */
.what-we-do__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.what-we-do__image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.what-we-do__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 162, 101, 0.15);
}

.what-we-do__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.what-we-do__badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 90px;
  height: 90px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: var(--ls-wide);
  box-shadow: var(--shadow-xl);
  z-index: 2;
  border: 3px solid var(--color-white);
}

.what-we-do__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-block: var(--space-lg);
}

.tag-pill {
  background-color: #FDFAF5;
  color: #0b1a30;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(11, 26, 48, 0.15);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* ── Form Components ── */
.form-group {
  margin-block-end: var(--space-lg);
}

.form-group__label {
  display: block;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  margin-block-end: var(--space-xs);
}

.form-group__label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-group__input,
.form-group__select,
.form-group__textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-body);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface-primary);
  transition: border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.form-group__input:focus,
.form-group__select:focus,
.form-group__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
  outline: none;
}

.form-group__input:user-invalid,
.form-group__select:user-invalid,
.form-group__textarea:user-invalid,
.form-group__input.user-invalid-fallback,
.form-group__select.user-invalid-fallback,
.form-group__textarea.user-invalid-fallback {
  border-color: var(--color-error);
}

.form-group__textarea {
  resize: vertical;
  min-block-size: 120px;
}

.form-group__error {
  font-size: var(--fs-caption);
  color: var(--color-error);
  margin-block-start: var(--space-2xs);
  display: none;
}

.form-group__input:user-invalid~.form-group__error,
.form-group__select:user-invalid~.form-group__error,
.form-group__textarea:user-invalid~.form-group__error,
.form-group__input.user-invalid-fallback~.form-group__error,
.form-group__select.user-invalid-fallback~.form-group__error,
.form-group__textarea.user-invalid-fallback~.form-group__error {
  display: block;
}

.form-group__help {
  font-size: var(--fs-caption);
  color: var(--color-text-tertiary);
  margin-block-start: var(--space-2xs);
}

/* ── Product Selector (Order Pages) ── */
.product-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-block-end: var(--space-2xl);
}

.product-option {
  position: relative;
  cursor: pointer;
}

.product-option__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-surface-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.product-option__input:checked+.product-option__card {
  border-color: var(--color-accent);
  background-color: var(--color-accent-light);
}

.product-option__input:focus-visible+.product-option__card {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.product-option__card:hover {
  border-color: var(--color-accent);
}

.product-option__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-block-end: var(--space-sm);
}

.product-option__name {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  text-align: center;
}

.product-option__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-sm);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-text-secondary);
}

.product-option__status::before {
  content: 'Select';
}

.product-option__input:checked + .product-option__card .product-option__status {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.product-option__input:checked + .product-option__card .product-option__status::before {
  content: 'Selected';
}

.upload-zone__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
}

.upload-zone__button:hover {
  background-color: var(--color-accent);
}

/* ── Order Summary ── */
.order-summary {
  background-color: var(--color-neutral-50);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-border);
  position: sticky;
  inset-block-start: calc(80px + var(--space-lg));
}

.order-summary__title {
  font-size: var(--fs-h4);
  margin-block-end: var(--space-lg);
  padding-block-end: var(--space-md);
  border-block-end: 1px solid var(--color-border);
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  padding-block: var(--space-sm);
  font-size: var(--fs-body-sm);
}

.order-summary__row--total {
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  padding-block-start: var(--space-md);
  margin-block-start: var(--space-md);
  border-block-start: 2px solid var(--color-accent);
}
/* Accessibility: Dark background overrides to maintain high-contrast bright gold text */
.offer-section, .vision-section, .ask-section, .footer {
  --color-text-accent: var(--gold);
}
/* ============================================================
   Custom Walks — Animations & Transitions
   ============================================================ */

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal--scale.reveal--visible {
  transform: scale(1);
}

/* ── Stagger Delays ── */
.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }
.stagger-5 { transition-delay: 500ms; }

/* ── Image hover zoom ── */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.img-zoom img {
  transition: transform var(--duration-slow) var(--ease-out);
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ── Gold Line Reveal ── */
.gold-line {
  position: relative;
  display: inline-block;
}

.gold-line::after {
  content: '';
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 3px;
  background-color: var(--color-accent);
  transition: inline-size var(--duration-slow) var(--ease-out);
}

.gold-line--visible::after {
  inline-size: 60px;
}

/* ── Number Counter Animation ── */
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Float animation for hero image ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* ── Pulse for CTA ── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 162, 101, 0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(196, 162, 101, 0); }
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ── Marquee for background text ── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-text {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-animation {
    animation: none;
  }

  .pulse-glow {
    animation: none;
  }

  .marquee-text {
    animation: none;
  }

  .img-zoom img {
    transition: none;
  }
}
/* ============================================================
   Custom Walks — Responsive Styles (Mobile & Tablet Breakpoints)
   ============================================================ */

/* ── Tablet Layout Override for Order Pages (max-width: 768px) ── */
@media (max-width: 48rem) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary-sidebar {
    min-inline-size: auto;
  }

  .order-summary {
    position: static;
  }
}

/* ── Mobile Layout Override for Order Pages (max-width: 768px) ── */
@media (max-width: 48rem) {
  .mobile-toggle {
    display: flex;
  }

  .header__nav {
    display: none;
  }

  .product-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn--lg {
    width: 100%;
  }
}

/* ── Small Mobile Override for Order Pages (max-width: 480px) ── */
@media (max-width: 30rem) {
  .product-selector {
    grid-template-columns: 1fr;
  }
}

/* ── Touch Target Optimizations ── */
@media (pointer: coarse) {
  .btn {
    min-block-size: 48px;
  }

  .header__nav-link {
    padding-block: var(--space-sm);
  }

  .footer__link {
    padding-block: var(--space-2xs);
  }
}

/* ============================================================
   Homepage-Specific Breakpoints (Aligned with Figma Design)
   ============================================================ */

/* ─── TABLET ≤ 1100px ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { padding: 16px 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer    { display: flex; top: 80px; }

  .hero-inner    { padding: 32px 32px 64px; flex-direction: column; min-height: auto; }
  .hero-text     { flex: none; max-width: 100%; padding-right: 0; padding-top: 0; }
  .hero-center   { min-height: 460px; width: 100%; }
  .hero-sidebar  { display: none; }

  .what-section  { padding: 80px 32px; }
  .what-inner    { flex-direction: column; gap: 56px; }
  .what-img-col  { flex: none; width: 100%; }
  .what-img      { height: 420px; }
  .what-badge    { right: 0; }

  .offer-section { padding: 80px 32px; }
  .offer-row     { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .offer-top     { flex-direction: column; }
  .offer-desc    { padding-top: 0; max-width: 100%; }

  .why-section   { padding: 80px 32px 100px; }
  .why-heading   { white-space: normal; letter-spacing: -2px; }
  .why-row, .why-row--reverse { flex-direction: column; }
  .why-text-col, .why-row--reverse .why-text-col { padding: 48px 0 32px; }
  .why-img-col   { flex: none; width: 100%; padding: 0 0 16px; }
  .why-img-box   { height: 280px; }

  .ask-section   { padding: 80px 32px; }

  .clientele-section { padding: 80px 32px; }
  .clientele-grid    { grid-template-columns: repeat(2,1fr); }

  .vision-section  { padding: 80px 32px; }
  .vision-cards    { grid-template-columns: 1fr; }
  .vision-heading  { white-space: normal; letter-spacing: -2px; }
  .vision-top      { flex-direction: column; align-items: flex-start; }

  .commit-section  { padding: 80px 32px; }
  .commit-cards    { grid-template-columns: 1fr; }
  .commit-top      { flex-direction: column; align-items: flex-start; }
  .commit-heading  { white-space: normal; letter-spacing: -2px; }

  .footer { padding: 40px 32px; }
}

/* ─── MOBILE ≤ 640px ────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav { padding: 0 20px; height: 68px; }
  .nav-logo img { height: 40px; }
  .nav-drawer { top: 68px; }

  .hero {
    overflow-x: hidden;
    background-position: right bottom;
    background-size: 150% 100%;
  }
  .hero-inner  { padding: 24px 20px 48px; flex-direction: column; min-height: auto; width: 100%; }
  .hero-center { min-height: auto; display: block; position: static; }
  .hero-center-img {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: auto;
  }
  .hero-center-img img {
    width: 100%;
    height: auto;
  }
  .hero-frosted {
    position: static;
    width: min(100%, 440px);
    margin: 20px auto 0;
    transform: none;
  }
  .hero-text   { padding-top: 16px; flex: none; max-width: 100%; padding-right: 0; }
  .hero-title-custom, .hero-title-walks { letter-spacing: -2px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn-gold, .hero-buttons .btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }

  .what-section  { padding: 64px 20px; }
  .what-img      { height: 300px; }
  .what-badge    { right: 0; bottom: -20px; padding: 14px 20px; }
  .what-badge-num { font-size: 28px; }
  .what-content  { padding-top: 40px; }

  .offer-section { padding: 64px 20px; }
  .offer-row     { grid-template-columns: 1fr; }
  .offer-card    { height: 240px; }

  .why-section   { padding: 64px 20px 80px; }
  .why-text-col, .why-row--reverse .why-text-col { padding: 32px 0 24px; }
  .why-img-box   { height: 240px; }
  .why-ghost-num { font-size: 48px; }
  .why-title     { font-size: 26px; line-height: 1.2; }

  .ask-section   { padding: 72px 20px; }
  .ask-headline  { letter-spacing: -3px; }

  .clientele-section { padding: 64px 20px; }
  .clientele-grid    { grid-template-columns: 1fr; }
  .clientele-card    { height: auto; min-height: 80px; padding: 20px 24px; }

  .vision-section  { padding: 64px 20px; }
  .vision-img-card { min-height: 320px; }

  .commit-section  { padding: 64px 20px; }
  .commit-cards    { grid-template-columns: 1fr; }

  .footer { padding: 40px 20px; }
  .footer-links { gap: 16px; }
}
