/* ============================================================
   CEDAR DOUGH PIZZA BAR — Styles
   A Sstori.com Design
   ============================================================ */

/* --- VARIABLES --- */
:root {
  --cream: #F6F0E7;
  --sand: #DCC7A6;
  --olive: #7A8363;
  --terracotta: #B76A45;
  --deep-brown: #3D2C24;
  --charcoal: #1a1410;
  --white: #FEFCF9;
  --text: #2A1F18;
  --text-mid: #6B5D52;
  --text-light: #9B8E82;
  --chalk: #e8dfd3;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --hand: 'Caveat', cursive;

  /* Glassmorphism tokens */
  --glass-bg: rgba(246, 240, 231, 0.12);
  --glass-bg-light: rgba(246, 240, 231, 0.55);
  --glass-bg-dark: rgba(26, 20, 16, 0.45);
  --glass-border: rgba(246, 240, 231, 0.18);
  --glass-border-dark: rgba(246, 240, 231, 0.08);
  --glass-blur: blur(16px);
  --glass-blur-heavy: blur(24px);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: all 0.4s ease;
}
/* .scrolled is no longer used — nav glass is driven by JS progressively */
.nav-inner {
  max-width: 100%; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-left {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-right {
  margin-left: auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.85rem;
}
.nav-logo img {
  height: 52px; width: auto;
  border-radius: 50%;
  transition: height 0.4s;
  border: 2px solid rgba(246,240,231,0.15);
}
/* No size change on scroll */
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--cream);
  transition: color 0.4s;
}
/* Nav text stays cream always */
.nav-logo-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-mobile-cta { display: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(246,240,231,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }
/* Nav links stay cream always */
.nav-cta {
  padding: 0.5rem 1.3rem !important;
  background: rgba(246,240,231,0.12) !important;
  border: 1px solid rgba(246,240,231,0.25) !important;
  color: var(--cream) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--cream) !important;
  color: var(--deep-brown) !important;
}
/* Nav CTA stays consistent */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 200;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  margin: 5px 0; background: var(--cream);
  transition: all 0.3s;
}
/* Nav toggle stays cream */

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--charcoal); overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 25s ease-out forwards;
  transform-origin: center center;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(26,20,16,0.55) 0%,
      rgba(26,20,16,0.3) 40%,
      rgba(26,20,16,0.05) 70%,
      transparent 100%
    ),
    linear-gradient(180deg,
      rgba(26,20,16,0.3) 0%,
      transparent 30%,
      transparent 70%,
      rgba(26,20,16,0.4) 100%
    );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0;
  max-width: 560px;
}
.hero-glass {
  background: rgba(26, 20, 16, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(246,240,231,0.1);
  border-left: none;
  border-bottom: none;
  border-radius: 0 28px 0 0;
  padding: 2.5rem 3rem 2rem 2.5rem;
  box-shadow: inset 0 1px 0 rgba(246,240,231,0.08), inset -1px 0 0 rgba(246,240,231,0.05), 0 0 60px rgba(0,0,0,0.3);
}

/* Remove the scroll indicator gap */
.hero-scroll {
  right: 2rem; left: auto; transform: none;
}
.hero-welcome {
  font-family: var(--hand);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sand);
  margin-bottom: 0.75rem;
  transform: rotate(-2deg);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
  max-width: 650px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sand);
}
.hero-sub {
  font-size: 1.1rem; font-weight: 400; line-height: 1.7;
  color: rgba(246,240,231,0.85);
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: rgba(246, 240, 231, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  border: 1px solid rgba(246,240,231,0.25);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--deep-brown);
  border-color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(246,240,231,0.25);
}
.btn-ghost:hover {
  background: var(--cream); color: var(--deep-brown);
  border-color: var(--cream);
}
.btn-dark {
  background: rgba(61, 44, 36, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--deep-brown);
  border: 1px solid rgba(61, 44, 36, 0.3);
}
.btn-dark:hover {
  background: var(--deep-brown);
  color: var(--cream);
  border-color: var(--deep-brown);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--deep-brown);
  border: 1px solid var(--deep-brown);
}
.btn-outline:hover { background: var(--deep-brown); color: var(--cream); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; color: rgba(246,240,231,0.3);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px; background: rgba(246,240,231,0.15);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--sand);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; }
}

/* --- WELCOME STRIP --- */
.welcome-strip {
  background: rgba(61, 44, 36, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(246,240,231,0.08);
  border-bottom: 1px solid rgba(246,240,231,0.05);
}
.welcome-strip p {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--sand);
  letter-spacing: 0.02em;
}
.welcome-strip span {
  color: rgba(246,240,231,0.35);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin: 0 1rem;
}

/* --- ABOUT / PETER & JALILA --- */
.about {
  padding: 6rem 0;
  position: relative;
}
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 20px 20px 0 var(--sand);
}
.about-img-note {
  position: absolute; bottom: -1.5rem; right: -1rem;
  font-family: var(--hand);
  font-size: 1.25rem; color: var(--terracotta);
  transform: rotate(3deg);
  background: rgba(246, 240, 231, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(220,199,166,0.3);
  padding: 0.4rem 1rem;
}
.section-tag {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before {
  content: ''; width: 28px; height: 1.5px; background: var(--terracotta);
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; line-height: 1.2;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--terracotta); }
.about-text p {
  color: var(--text-mid); font-size: 1.05rem;
  line-height: 1.85; margin-bottom: 0.8rem; font-weight: 300;
}
.about-text .about-accent {
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--sand);
  font-family: var(--hand); font-size: 1.9rem;
  font-weight: 700;
  color: var(--terracotta);
}

/* --- FOOD SPREAD --- */
.spread {
  padding: 0;
  position: relative;
  background: var(--charcoal);
}
.spread-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}
.spread-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 2rem 0.8rem;
  background: linear-gradient(to top, rgba(26,20,16,0.7) 0%, transparent 50%);
  display: flex; justify-content: center; align-items: end;
}
.spread-text {
  text-align: center;
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 2.5rem;
}
.spread-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 0.5rem;
}
.spread-text p {
  font-family: var(--hand);
  font-size: 1.5rem; color: var(--sand); opacity: 0.8;
}

/* --- CHALKBOARD MENU --- */
.chalkboard {
  padding: 5rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.chalkboard::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(246,240,231,0.06);
  pointer-events: none;
}
.chalk-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.chalk-header {
  text-align: center; margin-bottom: 3rem;
}
.chalk-header h2 {
  font-family: var(--hand);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400; color: var(--chalk);
  margin-bottom: 0.5rem;
}
.chalk-header p {
  font-size: 0.95rem; color: rgba(246,240,231,0.35);
  letter-spacing: 0.05em;
}
.chalk-cats {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.chalk-cat {
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: rgba(246,240,231,0.5);
  border: 1px solid var(--glass-border);
  cursor: pointer; transition: all 0.3s;
}
.chalk-cat:hover,
.chalk-cat.active {
  background: rgba(246,240,231,0.85);
  color: var(--charcoal);
  border-color: rgba(246,240,231,0.6);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.chalk-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(246,240,231,0.06);
}
.chalk-item {
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid rgba(246,240,231,0.05);
  border-right: 1px solid rgba(246,240,231,0.05);
  transition: background 0.3s;
}
.chalk-item:hover { background: rgba(246,240,231,0.02); }
.chalk-item:nth-child(2n) { border-right: none; }
.chalk-item-top {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 0.3rem;
}
.chalk-item-name {
  font-family: var(--hand); font-size: 1.45rem;
  color: var(--chalk);
}
.chalk-item-price {
  font-size: 0.95rem; color: var(--sand); font-weight: 500;
}
.chalk-item-desc {
  font-size: 0.9rem; color: rgba(246,240,231,0.35);
  line-height: 1.5; font-weight: 300;
}
.chalk-footer {
  margin-top: 2.5rem; text-align: center;
}
.chalk-note {
  font-family: var(--hand);
  font-size: 1.2rem; color: rgba(246,240,231,0.25);
  margin-top: 1rem;
}

/* --- WINDOW SEAT (why people come back) --- */
.reasons {
  padding: 5rem 0;
  background: var(--deep-brown);
  color: var(--cream);
  border: none;
}
.reasons-inner {
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.reasons-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 3rem;
}
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reason {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(246, 240, 231, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246, 240, 231, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(246,240,231,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  background: rgba(246, 240, 231, 0.12);
}
.reason-icon {
  font-family: var(--hand);
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.reason h3 {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.reason p {
  font-size: 0.95rem; color: rgba(246,240,231,0.65);
  line-height: 1.6; font-weight: 300;
}

/* --- GALLERY --- */
.gallery {
  padding: 5rem 0;
  background: var(--cream);
}
.gallery-header {
  max-width: 1200px; margin: 0 auto 2.5rem; padding: 0 2rem;
}
.gallery-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--deep-brown);
}
.gallery-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 0.6rem;
}
.gallery-item {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,20,16,0);
  transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(26,20,16,0.12); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; }
.gallery-item:nth-child(5) { grid-column: 4 / 9; }

/* --- VISIT --- */
.visit {
  padding: 6rem 0;
  background: var(--white);
}
.visit-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.visit h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--deep-brown);
  margin-bottom: 1rem;
}
.visit-body {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 2rem; font-weight: 300;
}
.visit-window {
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--deep-brown);
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--sand);
}
.visit-details { list-style: none; margin-bottom: 2rem; }
.visit-detail {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 1rem; padding: 0.9rem 0;
  border-bottom: 1px solid rgba(220,199,166,0.3);
  font-size: 1rem;
}
.visit-detail dt {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); padding-top: 0.1rem;
}
.visit-detail dd { color: var(--text); }
.visit-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.visit-map {
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
  margin-top: 3.5rem;
}
.visit-map iframe {
  width: 100%; height: 100%; border: none;
  filter: saturate(0.85) contrast(0.95);
}

/* --- INSTAGRAM --- */
.site-footer {
  padding: 1.5rem 2rem;
  background: var(--deep-brown);
}
.site-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(246,240,231,0.45);
}
.site-credit a { color: rgba(246,240,231,0.55); }
.site-credit a:hover { color: var(--cream); }

/* --- VISIT SOCIAL --- */
.visit-social {
  display: inline-block;
  font-size: 1rem; color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-right: 1rem;
  transition: color 0.2s;
}
.visit-social:hover { color: var(--deep-brown); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .chalk-grid { grid-template-columns: 1fr; }
  .chalk-item { border-right: none !important; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 1rem; }
  .nav-left { gap: 0; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { color: var(--deep-brown) !important; font-size: 1.1rem; }
  .nav-right { display: none; }
  .nav-links.open .nav-mobile-cta { display: list-item; }
  .nav-links.open .nav-mobile-cta .nav-cta {
    background: var(--deep-brown) !important;
    color: var(--cream) !important;
    border-color: var(--deep-brown) !important;
    font-size: 0.9rem !important;
  }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

  .hero-img { background-position: 62% 30%; }
  .hero { align-items: flex-end; min-height: 115vh; min-height: 115svh; }
  .hero-content { max-width: 100%; padding: 0; margin-top: auto; }
  .hero-glass {
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(246,240,231,0.06);
    padding: 1.2rem 1.5rem 1rem;
    text-align: center;
    background: rgba(26, 20, 16, 0.3);
    box-shadow: none;
  }
  .hero-welcome { font-size: 1.2rem; margin-bottom: 0.3rem; }
  .hero h1 { margin-bottom: 0.6rem; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1rem; }
  .hero-btns .btn { padding: 0.7rem 1.5rem; }
  .hero-btns { justify-content: center; flex-direction: row; gap: 0.75rem; }
  .hero-btns .btn { flex: 1; max-width: 160px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-welcome { transform: rotate(0); }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
  .about-img { box-shadow: 14px 14px 0 var(--sand); }

  .about { padding-bottom: 0; }
  .spread { padding-bottom: 2rem; }
  .spread-overlay {
    transform: translateY(35%);
    z-index: 1;
    background: none;
    padding-bottom: 0;
  }
  .spread-text { padding: 0.5rem 1.2rem; width: 95%; }
  .spread-text h2 { font-size: 1.1rem; margin-bottom: 0.2rem; }
  .spread-text p { font-size: 0.95rem; }

  .reasons-heading { display: none; }
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr); gap: 1rem;
  }
  .reasons-grid::before {
    content: 'Why People Keep Coming Back';
    font-family: var(--serif);
    font-size: 1.5rem; font-weight: 400;
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    text-align: center; line-height: 1.3;
    padding: 1.5rem 1rem;
  }
  .reason { padding: 1.5rem 1rem; }
  .reason-icon { font-size: 2rem; }
  .reason h3 { font-size: 1rem; }
  .reason p { font-size: 0.85rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .visit-inner { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 16/10; }

}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-btns .btn { font-size: 0.78rem; padding: 0.7rem 1.2rem; }
  .visit-btns { flex-direction: column; }
  .chalk-cats { justify-content: flex-start; }
  .reason p { font-size: 0.8rem; }
}
