/* =============================================
   Sora Coffee — Design System
   Warm, modern, craft-focused
============================================= */

:root {
  /* Palette */
  --cream: #F7F1E8;
  --coffee: #3E2C23;
  --coffee-light: #5C4436;
  --terracotta: #C46A3F;
  --terracotta-dark: #A8552F;
  --sage: #8A9B7C;
  --sage-light: #A8B89A;
  --sand: #E4D5C0;
  --sand-light: #EFE6D8;
  --white: #FFFDF9;
  --ink: #2A1F18;
  --muted: #7A6A5C;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-md: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-lg: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --text-xl: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  --text-2xl: clamp(2.25rem, 1.7rem + 2vw, 3.5rem);
  --text-3xl: clamp(2.75rem, 2rem + 3vw, 4.5rem);

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(62, 44, 35, 0.06);
  --shadow-md: 0 6px 20px rgba(62, 44, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(62, 44, 35, 0.12);
  --shadow-xl: 0 24px 60px rgba(62, 44, 35, 0.16);

  /* Container */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
}

/* ============ Reset & Base ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ============ Inline SVG Illustrations ============ */
.illustration,
.svg-illustration {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.illustration svg,
.svg-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--terracotta-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--coffee);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p + p {
  margin-top: var(--space-md);
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

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

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Layout Helpers ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--tight {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background: var(--sand-light);
}

.section--cream {
  background: var(--cream);
}

.section--coffee {
  background: var(--coffee);
  color: var(--cream);
}

.section--coffee h2,
.section--coffee h3 {
  color: var(--cream);
}

.section-header {
  max-width: 700px;
  margin-bottom: var(--space-3xl);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: 1.5;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  text-align: center;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 106, 63, 0.3);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(196, 106, 63, 0.4);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--coffee);
  border-color: var(--coffee);
}

.btn--secondary:hover {
  background: var(--coffee);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--coffee);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn--light:hover {
  background: var(--white);
  color: var(--coffee);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--terracotta);
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.btn--ghost:hover {
  color: var(--terracotta-dark);
  background: rgba(196, 106, 63, 0.08);
}

.btn--sm {
  padding: var(--space-xs) var(--space-lg);
  min-height: 40px;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-md);
  min-height: 56px;
}

/* ============ Header / Navigation ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(62, 44, 35, 0.08);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.site-header--scrolled {
  background: rgba(247, 241, 232, 0.98);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 72px;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--coffee);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo:hover {
  color: var(--coffee);
}

.logo__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__icon svg {
  width: 100%;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--coffee-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--terracotta);
  background: rgba(196, 106, 63, 0.06);
}

.nav__link--active {
  color: var(--terracotta);
  font-weight: 600;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle svg {
  display: block;
}

.nav__toggle:hover {
  background: rgba(196, 106, 63, 0.08);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl);
  overflow: hidden;
  background: var(--coffee);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 31, 24, 0.65) 0%,
    rgba(42, 31, 24, 0.45) 40%,
    rgba(42, 31, 24, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--cream);
  padding: 0 var(--container-pad);
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  background: rgba(196, 106, 63, 0.25);
  backdrop-filter: blur(4px);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.hero__title {
  color: var(--cream);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(247, 241, 232, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ============ Cards ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card__media .illustration,
.card__media .svg-illustration {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
}

.card__media .illustration svg,
.card__media .svg-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--terracotta);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.card__body {
  padding: var(--space-xl);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  color: var(--muted);
}

.card__price {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--terracotta);
}

/* ============ Feature Grid ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--sand-light);
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}

.feature-item__icon svg {
  width: 28px;
  height: 28px;
}

.feature-item__title {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.feature-item__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ============ Story Section ============ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.story__media .illustration,
.story__media .svg-illustration {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  aspect-ratio: 4 / 3;
}

.story__media .illustration svg,
.story__media .svg-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story__content h2 {
  margin-bottom: var(--space-lg);
}

.story__content p {
  color: var(--muted);
  line-height: 1.7;
}

.story__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.story__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--terracotta);
}

.story__stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============ Menu Page ============ */
.menu-category {
  margin-bottom: var(--space-3xl);
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--sand);
}

.menu-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--sand-light);
  color: var(--terracotta);
  flex-shrink: 0;
}

.menu-category__icon svg {
  width: 22px;
  height: 22px;
}

.menu-category__title {
  font-size: var(--text-xl);
}

.menu-list {
  display: grid;
  gap: var(--space-sm);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.menu-item:hover {
  background: var(--sand-light);
  box-shadow: var(--shadow-md);
}

.menu-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--coffee);
}

.menu-item__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-top: 2px;
}

.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted var(--sand);
  margin: 0 var(--space-sm);
  min-width: 30px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--terracotta);
  white-space: nowrap;
}

.menu-note {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--sand-light);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-2xl);
}

.menu-note svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ============ Subscription Page ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  position: relative;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border: 3px solid var(--terracotta);
  box-shadow: var(--shadow-xl);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2xs) var(--space-md);
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: var(--space-xs);
}

.plan-card__price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--muted);
  font-family: var(--font-body);
}

.plan-card__desc {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.plan-card__features {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--coffee-light);
}

.plan-card__features svg {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card .btn {
  width: 100%;
}

.faq-section {
  margin-top: var(--space-4xl);
}

.faq-list {
  display: grid;
  gap: var(--space-md);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  border-left: 4px solid var(--terracotta);
}

.faq-item__question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--coffee);
  margin-bottom: var(--space-sm);
}

.faq-item__answer {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ============ Visit Page ============ */
.visit-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.visit-hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visit-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.visit-hero__media .illustration,
.visit-hero__media .svg-illustration {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-light);
  aspect-ratio: 4 / 3;
}

.visit-hero__media .illustration svg,
.visit-hero__media .svg-illustration svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.visit-info__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.visit-info__card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
}

.visit-info__card h3 svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}

.visit-info__card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

.hours-list {
  display: grid;
  gap: var(--space-xs);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--sand);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 600;
  color: var(--coffee);
}

.hours-list .time {
  color: var(--muted);
}

.hours-list .closed {
  color: var(--terracotta);
  font-style: italic;
}

/* ============ CTA Section ============ */
.cta-section {
  text-align: center;
  background: var(--coffee);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 106, 63, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(247, 241, 232, 0.85);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--text-md);
}

.cta-section .btn {
  margin: 0 var(--space-xs);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--coffee);
  color: rgba(247, 241, 232, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.site-footer__brand p {
  font-size: var(--text-sm);
  color: rgba(247, 241, 232, 0.6);
  max-width: 300px;
  margin-top: var(--space-sm);
}

.site-footer .logo {
  color: var(--cream);
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sand);
  margin-bottom: var(--space-md);
}

.site-footer__links li {
  margin-bottom: var(--space-xs);
}

.site-footer__links a {
  color: rgba(247, 241, 232, 0.7);
  font-size: var(--text-sm);
  transition: color var(--duration) var(--ease);
}

.site-footer__links a:hover {
  color: var(--cream);
}

.site-footer__bottom {
  border-top: 1px solid rgba(247, 241, 232, 0.15);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(247, 241, 232, 0.5);
}

/* ============ Reveal on Scroll ============ */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(62, 44, 35, 0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav__list--open {
    transform: translateY(0);
  }

  .nav__link {
    display: block;
    padding: var(--space-md);
    font-size: var(--text-md);
    border-radius: var(--radius-sm);
  }

  .nav__link:hover {
    background: var(--sand-light);
  }

  .story {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .visit-hero {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .visit-info {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .hero {
    min-height: 80vh;
  }

  .hero__title {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .section--tight {
    padding: var(--space-2xl) 0;
  }

  .hero {
    min-height: 70vh;
    padding-top: calc(72px + var(--space-xl));
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .story__stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .menu-item {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .menu-item__dots {
    display: none;
  }

  .menu-item__price {
    margin-left: auto;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}