/* ============================================================
   ROSSEAU GENERAL STORE — Main Stylesheet
   Palette: Forest Green · Warm Cream · Rich Brown · Soft Gold
   ============================================================ */

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

:root {
  --green-dark:   #2A4A2E;
  --green-mid:    #3D6642;
  --green-light:  #6A9470;
  --cream:        #F5F0E6;
  --cream-dark:   #EDE4D0;
  --brown-dark:   #2D2018;
  --brown-mid:    #5C3D1E;
  --brown-light:  #A07850;
  --gold:         #C4963C;
  --gold-light:   #D4B06A;
  --white:        #FFFFFF;
  --text-dark:    #1E1610;
  --text-mid:     #4A3728;
  --text-light:   #8C7060;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;

  --radius:       4px;
  --transition:   0.3s ease;
  --max-width:    1200px;
  --section-pad:  90px;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }

em { font-style: italic; color: var(--green-mid); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title { margin-bottom: 24px; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-intro {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-header.center { text-align: center; margin-bottom: 60px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-sep { opacity: 0.4; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(245, 240, 230, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* Footer logo — invert to white illustration, screen removes the black bg */
.footer-logo-img {
  height: 120px;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.92;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--green-mid);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--green-dark); }
.main-nav a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 640px;
  max-height: 960px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-image-wrap.hero-placeholder {
  background: linear-gradient(160deg, #2A4A2E 0%, #3D6642 40%, #5C3D1E 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 55%,
    rgba(0,0,0,0.5) 78%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px 52px;
  max-width: 740px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  display: none;
}
.hero-content .btn-primary {
  display: none;
}
.hero-content .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-scroll {
  display: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-strip {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span { margin: 0 20px; }
.marquee-track .dot { color: var(--gold); margin: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

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

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

.story-image-col { position: relative; }

.story-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-dark);
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-img-wrap.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
}

.img-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  border: 2px dashed var(--brown-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  pointer-events: none;
}
/* Hide placeholder label when real img loads */
.story-img-wrap img + .img-placeholder-label { display: none; }

.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-dark);
  color: var(--white);
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 2;
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.badge-number sup { font-size: 1rem; vertical-align: super; }
.badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
  line-height: 1.4;
}

.story-text-col { padding-right: 20px; }

.story-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.story-text-col p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 0.97rem;
}

.story-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar h4 { color: var(--green-dark); margin-bottom: 4px; }
.pillar p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ══════════════════════════════════════
   FULL-WIDTH IMAGE BREAK
══════════════════════════════════════ */
.full-image-break {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--green-dark);
  display: flex;
  align-items: flex-end;
}
.full-image-break img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.full-image-break.full-img-placeholder {
  background: linear-gradient(135deg, #3D6642, #2A4A2E);
}
.full-img-placeholder-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: 2px dashed rgba(255,255,255,0.3);
  padding: 20px 40px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
/* Hide placeholder text when real img loads */
.full-image-break img + .full-img-placeholder-label { display: none; }

.full-image-caption {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 32px 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}
.full-image-caption blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   OFFERINGS
══════════════════════════════════════ */
.offerings-section { background: var(--cream); }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offering-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.offering-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.offering-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover .offering-img img { transform: scale(1.04); }
.offering-img-placeholder {
  background: var(--cream-dark) !important;
}
.offering-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
  border: 2px dashed var(--brown-light);
  margin: 10px;
  border-radius: 4px;
  pointer-events: none;
}
/* Hide when real img loads */
.offering-img img + .offering-img-label { display: none; }

.offering-body {
  padding: 24px;
}
.offering-body h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.offering-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   COMMUNITY SECTION
══════════════════════════════════════ */
.community-section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.community-bg-img {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
}
.community-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.comm-img-placeholder { display: none; }
.community-bg-placeholder-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border: 2px dashed rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
.community-bg-img img + .community-bg-placeholder-label { display: none; }

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,60,34,0.82) 0%, rgba(42,74,46,0.72) 100%);
  z-index: 1;
}
.community-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.community-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: var(--cream-dark); }

.testimonials-track {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card {
  position: absolute;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  position: absolute;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.dot-btn {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brown-light);
  opacity: 0.35;
  transition: opacity var(--transition), transform var(--transition);
}
.dot-btn.active {
  opacity: 1;
  transform: scale(1.25);
  background: var(--green-dark);
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 0;
}
.gallery-item {
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  border-radius: 4px;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-img-placeholder { display: none; }
.gallery-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
  border: 2px dashed var(--brown-light);
  margin: 6px;
  border-radius: 4px;
  pointer-events: none;
}
/* Hide when real img loads */
.gallery-item img + .gallery-placeholder-label { display: none; }

/* ══════════════════════════════════════
   VISIT SECTION
══════════════════════════════════════ */
.visit-section { background: var(--cream); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-info .section-title { margin-bottom: 16px; }
.visit-info > p {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: 0.97rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.visit-icon svg { width: 18px; height: 18px; }
.visit-detail h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.visit-detail a {
  color: var(--green-dark);
  font-weight: 600;
}
.visit-detail a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
}
.social-link svg { width: 20px; height: 20px; color: var(--green-mid); }
.social-link:hover { color: var(--green-dark); }

/* Map */
.visit-map { border-radius: 8px; overflow: hidden; }
.map-placeholder {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border: 2px dashed var(--brown-light);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
  color: var(--text-light);
}
.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.map-placeholder svg { color: var(--green-mid); }
.map-placeholder p { font-size: 1rem; color: var(--text-mid); line-height: 1.5; }
.map-replace-note {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; display: block; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  width: 100%;
}
.footer-copy p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-copy a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-copy a:hover { color: var(--white); }
.footer-address { font-size: 0.72rem !important; }

/* ── Scroll fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav link */
.main-nav a.active-link {
  color: var(--green-dark);
}
.main-nav a.active-link::after { width: 100%; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }

  .story-grid { gap: 50px; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-wide  { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 116px; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
  }

  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .story-badge { bottom: -16px; right: -8px; width: 110px; height: 110px; }
  .badge-number { font-size: 1.8rem; }
  .story-text-col { padding-right: 0; }

  /* Full-image */
  .full-image-break { height: 320px; }

  /* Offerings */
  .offerings-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-large, .gallery-wide { grid-column: span 2; }
  .gallery-grid .gallery-item { height: 220px; }

  /* Visit */
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .map-placeholder { aspect-ratio: 4/3; }

  /* Header */
  .header-inner { height: 70px; }
  .main-nav { top: calc(70px + 37px); } /* header + topbar */
}

@media (max-width: 480px) {
  .topbar { font-size: 0.65rem; }
  .hero-title { font-size: 2.6rem; }
  .story-badge { display: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large, .gallery-wide { grid-column: span 1; }
}
