/* ============================================
   HOT YOGA CUMBRIA — Shared Stylesheet
   White, Light Grey, F&B Hay & Dorchester Pink
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- VARIABLES ---- */
:root {
  --bg-page:      #ffffff;   /* white */
  --bg-section:   #f4f3f2;   /* very light grey */
  --bg-card:      #ffffff;   /* white */
  --bg-warm:      #edecea;   /* light grey — for intro strip, timetable header, CTA */

  /* Farrow & Ball Hay No. 37 — warm golden yellow */
  --amber:        #c9a24a;
  --amber-light:  #ddb96a;
  --amber-dark:   #a07e30;

  /* Farrow & Ball Dorchester Pink No. 278 — warm dusty rose */
  --blush:        #c4857a;
  --blush-light:  #d8a098;

  --text:         #2e2a28;   /* dark warm grey — main text */
  --text-muted:   #7a6e6a;   /* medium grey — body text */
  --white:        #ffffff;
  --border:       rgba(196,133,122,0.2);
  --nav-height:   72px;

  /* Aliases so older CSS references still work */
  --gold:         #c9a24a;
  --gold-light:   #ddb96a;
  --gold-dark:    #a07e30;
  --pink:         #c4857a;
  --pink-light:   #d8a098;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 600; }

/* Hero heading in Dorchester Pink */
.hero-content h1 { color: var(--blush); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: 0.75rem;
}

p { color: var(--text-muted); font-size: 1.05rem; }
p + p { margin-top: 1rem; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Nav always light — hero is no longer dark */
nav {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
nav .nav-logo { color: var(--text); }
nav .nav-links a { color: var(--text-muted); }
nav .nav-links a:hover,
nav .nav-links a.active { color: var(--text); }
nav .nav-toggle span { background: var(--text); }

/* scrolled class kept for JS but visually identical */
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.nav-logo span { color: var(--blush); }
nav.scrolled .nav-logo span { color: var(--blush); }

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links .btn-nav {
  background: var(--blush);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-links .btn-nav:hover { background: #a86a60; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

/* Primary = pink (matching dollythehut.com CTA colour) */
.btn-primary {
  background: var(--blush);
  color: var(--white);
}
.btn-primary:hover { background: #a86a60; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blush);
  border: 1.5px solid var(--blush);
}
.btn-outline:hover { background: var(--blush); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-white:hover { background: var(--bg-section); transform: translateY(-1px); }

/* ---- HERO (light split layout) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-section);
  padding-top: var(--nav-height);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-content .eyebrow { color: var(--blush); }

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

.hero-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(196,133,122,0.18);
  background: var(--bg-section);   /* soft warm grey fills any gaps around the image */
}

.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(0.78) brightness(0.96);  /* subtle muting — keeps warmth, softens intensity */
}

/* Decorative corner accent */
.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 100px; height: 100px;
  border-bottom: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 3rem; min-height: unset; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo { order: -1; }
  .hero-photo img { max-height: 60vw; }
}

/* ---- STUDIO STRIP (full-width photo feature) ---- */
.studio-strip {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
}

.studio-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.6s ease;
}

.studio-strip:hover img { transform: scale(1.02); }

.studio-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(38,26,20,0.08) 0%,
    rgba(38,26,20,0.0) 40%,
    rgba(38,26,20,0.45) 100%
  );
  pointer-events: none;
}

.studio-strip-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
}

.studio-strip-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: rgba(255,250,244,0.92);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ---- DIVIDER ---- */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--blush);
  margin: 1.5rem 0 2rem;
}
.gold-divider.center { margin: 1.5rem auto 2rem; }

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.intro-item {
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
}
.intro-item:first-child { padding-left: 0; }
.intro-item:last-child { border-right: none; }

.intro-item .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.intro-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.intro-item p { font-size: 0.95rem; }

/* ---- ABOUT SECTION (homepage) ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.about-image img {
  width: 100%; height: 500px;
  object-fit: cover;
}

.about-image-fallback {
  width: 100%; height: 500px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--blush);
  border-right: 2px solid var(--blush);
}

/* ---- BENEFITS GRID ---- */
.benefits {
  background: var(--bg-section);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200,148,74,0.12);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* ---- TIMETABLE (homepage preview) ---- */
.timetable-preview {
  background: var(--bg-page);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(192,146,120,0.08);
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blush);
}

.schedule-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.schedule-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
}

.schedule-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ---- PRICING CARDS ---- */
/* Retreat pricing cards (classes.html) */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card.featured {
  background: #f5e8e6;        /* very light blush tint */
  border: 2px solid var(--blush);
  box-shadow: 0 4px 24px rgba(196,133,122,0.18);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.price-card.featured {
  border-color: var(--amber);
  background: var(--bg-warm);
  box-shadow: 0 4px 24px rgba(200,148,74,0.15);
}

.price-card.featured .badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
  margin: 0.75rem 0 0.5rem;
}

.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ---- SPRING OFFER BOX ---- */
.spring-offer-box {
  background: var(--bg-warm);
  border: 2px solid var(--amber);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(200,148,74,0.15);
}

.spring-offer-box h2 {
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.spring-offer-box .gold-divider {
  background: var(--amber);
  margin: 1.25rem auto 1.75rem;
}

.spring-offer-text {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.spring-offer-text strong {
  color: var(--text);
}

.spring-offer-text + .spring-offer-text {
  margin-top: 0.75rem;
}

/* ---- WHAT TO BRING ---- */
.bring-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.bring-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}

.bring-item .bring-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bring-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.bring-item p { font-size: 0.85rem; }

/* ---- POOL FEATURE ---- */
.pool-feature {
  background: var(--bg-section);
}

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

.pool-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.pool-image img {
  width: 100%; height: 420px;
  object-fit: cover;
}

.pool-image::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--blush);
  border-left: 2px solid var(--blush);
  z-index: 1;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1.25rem; }
.cta-banner p { max-width: 540px; margin: 0 auto 2.5rem; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.4rem;
}

.contact-info-item p, .contact-info-item a {
  color: var(--text-muted);
  font-size: 1rem;
}

.contact-info-item a:hover { color: var(--text); }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: saturate(0.6) brightness(0.95);
  transition: filter 0.3s;
}

.map-embed:hover iframe { filter: saturate(1) brightness(1); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 1rem; }
.page-hero p { max-width: 600px; font-size: 1.1rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

footer h2, footer h3, footer h4 { color: var(--text); }
footer p, footer a { color: var(--text-muted); }
footer a:hover { color: var(--text); }

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

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--text) !important;
}
.footer-brand .nav-logo span { color: var(--blush) !important; }
.footer-brand p { font-size: 0.9rem; max-width: 260px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush) !important;
  margin-bottom: 1.25rem;
}

.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }

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

.footer-bottom p { font-size: 0.8rem; }

/* ---- ABOUT PAGE ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1rem; }

.about-gallery {
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ---- FAQ ---- */
.faq-list { margin-top: 2.5rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.faq-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.faq-item p { font-size: 0.95rem; }

/* ---- FULL TIMETABLE ---- */
.timetable-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 2px 16px rgba(192,146,120,0.1);
}

.timetable-row {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  gap: 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.timetable-row:last-child { border-bottom: none; }

.timetable-row.header {
  background: var(--bg-warm);
}

.timetable-row.header span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  padding: 1rem 1.5rem;
}

.timetable-row .t-day {
  padding: 1.25rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
}

.timetable-row .t-time {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timetable-row .t-price {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--amber);
  font-size: 0.95rem;
  text-align: center;
}

/* ---- CONTACT FORM (in contact.html) ---- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(192,146,120,0.1);
}

.form-group { margin-bottom: 1.5rem; }

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blush);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-split, .pool-split, .about-intro, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .intro-item:last-child { border-bottom: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .timetable-row { grid-template-columns: 1fr 1fr; }
  .timetable-row.header span:last-child, .timetable-row .t-price { display: none; }
}

@media (max-width: 680px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(255,255,255,0.99);
    padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .nav-links a { color: var(--text-muted) !important; }
  .nav-links a:hover { color: var(--text) !important; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .bring-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
