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

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

:root {
  /* Brand palette — pulled from logo/Facebook branding */
  --cream: #FAF5EE;
  --cream-deep: #F2EAD8;
  --tan: #DCC9A8;
  --tan-dark: #C4A87A;
  --rose: #C9898A;
  /* dusty rose from logo */
  --rose-dark: #A96162;
  --rose-light: #EFD8D8;
  --rose-pale: #FAF0EF;
  --sage: #8FA882;
  --sage-light: #EDF2E8;
  --sage-dark: #637857;
  --brown: #7A5C3E;
  /* warm medium brown, nothing near-black */
  --brown-light: #A8825A;
  --text-dark: #4A3525;
  --text-body: #6B4F38;
  --text-muted: #9C7D65;
  --white: #FFFFFF;
  --border: rgba(122, 92, 62, 0.12);
  --border-med: rgba(122, 92, 62, 0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --nav-h: 70px;
  --max-w: 1160px;
  --radius: 6px;
  --radius-lg: 12px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ============================================================
      UTILITY
      ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: block;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
}

.heading em {
  font-style: italic;
  color: var(--rose);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
}

.heading-lg em {
  font-style: italic;
  color: var(--rose);
}

.body-text {
  font-weight: 300;
  color: var(--text-body);
}

.body-text p {
  margin-bottom: 1rem;
}

.body-text p:last-child {
  margin-bottom: 0;
}

.body-text strong {
  font-weight: 600;
  color: var(--brown);
}

/* ============================================================
      BUTTONS
      ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-rose:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(169, 97, 98, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--tan-dark);
}

.btn-outline:hover {
  background: var(--cream-deep);
  border-color: var(--brown);
  transform: translateY(-1px);
}

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

.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

/* ============================================================
      NAV
      ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250, 245, 238, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-logo .accent {
  color: var(--rose);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  margin-left: 1.5rem;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}

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

.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--rose);
}

.nav-mobile .btn {
  margin-top: 1.25rem;
  text-align: center;
  justify-content: center;
}

/* ============================================================
      HERO
      ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle watercolor-style background blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 85% 15%, rgba(201, 137, 138, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5% 90%, rgba(143, 168, 130, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 50% 105%, rgba(220, 201, 168, 0.25) 0%, transparent 60%);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero image panel */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  /* background-image: url('images/thumbprint_cookies.jpg'); */
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.hero-img-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.hero-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(74, 53, 37, 0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-tag-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-img-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-img-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* ============================================================
      MARQUEE STRIP
      ============================================================ */
.marquee-strip {
  background: var(--rose);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.marquee-content .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.marquee-content .highlight {
  color: var(--white);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
      STORY SECTION
      ============================================================ */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img-wrap {
  position: relative;
}

.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.story-accent-top {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--rose);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 28px rgba(169,97,98,0.25);
}

.story-accent-bottom {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--tan-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 28px rgba(74,53,37,0.12);
}

.story-accent-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
}

.story-accent-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  display: block;
  color: var(--white);
}

.story-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.story-pill {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* ============================================================
      MENU SECTION
      ============================================================ */
.menu-section {
  background: var(--cream-deep);
}

.menu-tabs-row {
  display: flex;
  gap: 0.25rem;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.3rem;
  width: fit-content;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-tab {
  padding: 0.6rem 1.25rem;
  background: none;
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 999px;
  transition: all 0.22s;
}

.menu-tab.active {
  background: var(--rose);
  color: var(--white);
}

.menu-tab:hover:not(.active) {
  color: var(--text-dark);
  background: var(--cream-deep);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 53, 37, 0.1);
}

.menu-card-img {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.menu-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.menu-badge-sage {
  background: var(--sage);
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.menu-card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.menu-card-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
}

#panel-custom .menu-grid {
  grid-template-columns: repeat(2, 340px);
  justify-content: center;
}

/* ============================================================
      PRE-ORDER SECTION
      ============================================================ */
.preorder-section {
  background: var(--rose-pale);
}

.preorder-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: start;
}

.preorder-info .heading {
  margin-bottom: 1.5rem;
}

.preorder-info .body-text {
  margin-bottom: 1.5rem;
}

.preorder-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.preorder-tier {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.preorder-tier-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--rose-light);
  color: var(--rose-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.preorder-tier-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.preorder-tier-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.preorder-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(74, 53, 37, 0.07);
}

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

.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201, 137, 138, 0.15);
  background: var(--white);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-2 .form-row {
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  margin-top: 0.5rem;
  border-radius: var(--radius);
}

.form-fine {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 300;
}

/* ============================================================
      HOURS & VISIT SECTION
      ============================================================ */
.visit-section {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.visit-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-weight: 400;
  color: var(--text-body);
}

.hours-time {
  font-weight: 500;
  color: var(--text-dark);
}

.hours-closed {
  color: var(--text-muted);
  font-weight: 300;
}

.hours-open {
  color: var(--sage-dark);
}

.hours-today .hours-day {
  font-weight: 600;
  color: var(--rose-dark);
}

.hours-today .hours-time {
  color: var(--rose-dark);
}

.hours-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.location-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.location-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.location-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.location-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.map-embed {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  display: block;
}

/* ============================================================
      SOCIAL / CTA BANNER
      ============================================================ */
.social-banner {
  background: var(--sage-light);
  padding: 4rem 0;
  text-align: center;
}

.social-banner .heading {
  margin-bottom: 0.75rem;
}

.social-banner .heading em {
  color: var(--sage-dark);
}

.social-banner p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(74, 53, 37, 0.1);
  transform: translateY(-2px);
}

/* ============================================================
      FOOTER
      ============================================================ */
footer {
  background: var(--tan);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.footer-logo .accent {
  color: var(--rose-dark);
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-address {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-body);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--rose-dark);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--rose-dark);
}

/* ============================================================
      TOAST NOTIFICATION
      ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: var(--sage-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
      RESPONSIVE — TABLET
      ============================================================ */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem 3.5rem;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img-main {
    max-height: 300px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-accent {
    top: auto;
    bottom: -1rem;
    right: 1rem;
  }

  .preorder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-inner> :first-child {
    grid-column: 1 / -1;
  }
}

/* ============================================================
      RESPONSIVE — MOBILE
      ============================================================ */
@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-img-main {
    max-height: 240px;
  }

  .hero-img-secondary {
    display: none;
  }

  .heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .story-grid {
    gap: 2rem;
  }

  .story-accent {
    display: none;
  }

  .story-pill-row {
    justify-content: center;
  }

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

  .menu-tabs-row {
    gap: 0.2rem;
  }

  .menu-tab {
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
  }

  .preorder-form-card {
    padding: 1.5rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner> :first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}