:root {
  --forest: #1e3428;
  --forest-dark: #152619;
  --forest-deep: #0f1f18;
  --gold: #c4892e;
  --gold-light: #e8b86d;
  --cream: #f5f0e6;
  --parchment: #faf6ef;
  --stone: #6b5c4a;
  --ink: #1a1410;
  --bark: #2c1f14;
  --red: #8B2323;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.7);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  min-width: 180px;
  padding: 12px 0;
  border: 1px solid rgba(196,137,46,0.2);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
}

.btn-book {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-book:hover {
  background: var(--gold-light);
}

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-book { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url('Housatonic 1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,20,16,0.7) 0%, rgba(26,20,16,0.3) 50%, transparent 100%);
  z-index: 1;
}

.hero-content {
  max-width: 550px;
  z-index: 10;
  padding-bottom: 40px;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 18px;
  color: rgba(245,240,230,0.85);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost {
  background: rgba(26,20,16,0.5);
  color: var(--cream);
  border: 1px solid rgba(245,240,230,0.4);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(26,20,16,0.7);
}

/* INTRO STRIP */
.intro-strip {
  background: var(--forest);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-strip p {
  flex: 1;
  min-width: 300px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(245,240,230,0.85);
  line-height: 1.7;
}

.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(196,137,46,0.3);
}

.strip-stat {
  text-align: center;
}

.strip-stat .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 400;
}

.strip-stat .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.5);
}

/* SECTION STYLES */
section {
  padding: 80px;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-h2 em {
  font-style: italic;
  color: var(--stone);
}

/* EXPERIENCES */
.experiences {
  background: var(--parchment);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.exp-card {
  background: white;
  border: 1px solid rgba(107,92,74,0.15);
  padding: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.exp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.exp-card-img {
  height: 200px;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.exp-card:hover .exp-card-img img {
  transform: scale(1.05);
}

.exp-type {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin: 24px 24px 8px;
}

.exp-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--forest-dark);
  margin: 0 24px 12px;
}

.exp-desc {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin: 0 24px 20px;
}

.exp-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin: 0 24px 24px;
}

.exp-link:hover {
  color: var(--forest);
}

/* FEATURE IMAGE SECTION */
.feature-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature-image {
  background: var(--forest-dark);
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.feature-content {
  background: var(--cream);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* GUIDES - Photo Grid Layout */
.guides-section-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.guides-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
}

.guides-photo {
  position: relative;
  overflow: hidden;
}

.guides-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.guides-photo-large {
  grid-column: span 4;
  grid-row: span 1;
  position: relative;
  overflow: hidden;
}

.guides-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.guides-content {
  background: var(--bark);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guides-intro-text {
  font-size: 17px;
  color: rgba(245,240,230,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
}

.guide-profile {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.guide-avatar-small {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(196,137,46,0.4);
}

.guide-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-profile-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 2px;
}

.guide-role {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.guide-bio {
  font-size: 14px;
  color: rgba(245,240,230,0.6);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 1024px) {
  .guides-section-new {
    grid-template-columns: 1fr;
  }
  .guides-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .guides-photo-large {
    grid-column: span 2;
    height: 300px;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: var(--parchment);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.test-card {
  background: white;
  border: 1px solid rgba(107,92,74,0.12);
  padding: 32px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.test-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.test-by {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--forest-dark);
  font-weight: 700;
}

/* LOCATION */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.map-col {
  position: relative;
  background: var(--forest-dark);
}

.map-col iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(20%) saturate(1.1);
}

.map-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(26,20,16,0.9);
  padding: 12px 18px;
  z-index: 10;
}

.map-label p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--cream);
  font-style: italic;
  margin: 0;
}

.map-label span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-text {
  background: var(--cream);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.loc-cell {
  text-align: center;
  padding: 20px;
  background: white;
  border: 1px solid rgba(107,92,74,0.1);
}

.loc-cell .n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest-dark);
}

.loc-cell .l {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* BOOKING CTA */
.booking-cta {
  background: var(--gold);
  padding: 60px 80px;
  text-align: center;
}

.booking-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
}

.booking-cta p {
  font-size: 16px;
  color: rgba(26,20,16,0.7);
  margin-bottom: 24px;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-dark:hover {
  background: var(--forest-dark);
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 60px 80px 40px;
  color: var(--cream);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ft-tag {
  font-size: 14px;
  color: rgba(245,240,230,0.5);
  line-height: 1.7;
  margin-top: 16px;
}

.ft-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--cream);
  display: block;
  margin-bottom: 16px;
}

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

.ft-col li {
  margin-bottom: 8px;
}

.ft-col a {
  font-size: 13px;
  color: rgba(245,240,230,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--gold);
}

.ft-bot {
  border-top: 1px solid rgba(245,240,230,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
}

.ft-bot p {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,240,230,0.3);
  text-transform: uppercase;
}

/* RIVER JOURNAL PAGE */
.journal-hero {
  background: var(--forest-dark);
  padding: 120px 80px 80px;
  text-align: center;
}

.journal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--cream);
  margin-bottom: 16px;
}

.journal-hero p {
  font-size: 18px;
  color: rgba(245,240,230,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* CONTACT PAGE */
.contact-hero {
  background: var(--forest-dark);
  padding: 120px 80px 80px;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--cream);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: rgba(245,240,230,0.7);
  max-width: 600px;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-info-col {
  background: var(--forest-dark);
  padding: 60px;
  color: var(--cream);
}

.contact-info-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.contact-detail p {
  font-size: 16px;
  color: rgba(245,240,230,0.85);
  line-height: 1.6;
}

.contact-faq {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(196,137,46,0.2);
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14px;
  color: rgba(245,240,230,0.6);
  line-height: 1.6;
}

/* EXPERIENCE DETAIL PAGES */
.exp-detail-hero {
  padding: 120px 80px 80px;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.exp-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,20,16,0.8) 0%, rgba(26,20,16,0.4) 60%, transparent 100%);
  z-index: 1;
}

.exp-detail-hero-content {
  z-index: 10;
}

.exp-detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 16px;
}

.exp-detail-hero p {
  font-size: 20px;
  color: rgba(245,240,230,0.7);
  max-width: 600px;
}

.exp-detail-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}

.exp-detail-content {
  background: var(--cream);
  padding: 60px 80px;
}

.exp-detail-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.exp-detail-content p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 20px;
}

.exp-detail-content ul {
  margin: 20px 0 20px 24px;
}

.exp-detail-content li {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 8px;
}

.exp-detail-sidebar {
  background: var(--parchment);
  padding: 60px 40px;
  border-left: 1px solid rgba(107,92,74,0.15);
}

.exp-booking-card {
  background: white;
  border: 1px solid rgba(107,92,74,0.15);
  padding: 32px;
  margin-bottom: 24px;
}

.exp-booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.exp-price {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(107,92,74,0.1);
}

.exp-price:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.exp-price span {
  font-size: 15px;
  color: var(--stone);
}

.exp-price strong {
  font-size: 15px;
  color: var(--forest-dark);
}

.btn-book-exp {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s;
}

.btn-book-exp:hover {
  background: var(--gold-light);
}

.exp-includes {
  background: white;
  border: 1px solid rgba(107,92,74,0.15);
  padding: 32px;
}

.exp-includes h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.exp-includes li {
  font-size: 14px;
  color: var(--stone);
  padding: 8px 0;
  border-bottom: 1px solid rgba(107,92,74,0.08);
  list-style: none;
}

.exp-includes li:last-child {
  border-bottom: none;
}

/* MEET THE GUIDES PAGE */
.guides-page-hero {
  background: var(--forest-deep) url('Housatonic 2.webp') center/cover no-repeat;
  padding: 120px 80px 80px;
  text-align: center;
  position: relative;
}

.guides-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.4;
}

.guides-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 16px;
}

.guides-page-hero p {
  font-size: 18px;
  color: rgba(245,240,230,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.guides-grid {
  background: var(--parchment);
  padding: 64px 80px;
}

.guides-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guide-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: white;
  border: 1px solid rgba(107,92,74,0.12);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.guide-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196,137,46,0.1);
}

.guide-card-photo {
  width: 190px;
  min-width: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.guide-card-body {
  padding: 24px 28px;
  flex: 1;
}

.guide-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest-dark);
  margin: 0 0 4px;
}

.guide-profile-role {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.guide-profile-bio {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.75;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feature-image-section,
  .location-section,
  .contact-main,
  .exp-detail-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-hamburger { display: flex; }
  nav > .btn-book { display: none; }

  .nav-links {
    display: none;
  }

  nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 20px 24px 24px;
    gap: 18px;
    border-top: 1px solid rgba(196,137,46,0.2);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }

  nav.is-open .nav-dropdown-content {
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 6px 0 0 14px;
    min-width: 0;
  }

  nav.is-open .nav-mobile-book {
    display: block;
    margin-top: 8px;
  }

  nav.is-open .nav-mobile-book .btn-book {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
  }

  section,
  .hero,
  .contact-hero,
  .exp-detail-content {
    padding: 48px 24px;
  }

  .intro-strip {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }

  .strip-divider {
    width: 60px;
    height: 1px;
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  footer {
    padding: 48px 24px 32px;
  }

  .guides-grid { padding: 48px 24px; }
  .guide-card { flex-direction: column; }
  .guide-card-photo { width: 100%; min-width: unset; height: auto; aspect-ratio: 1 / 1; }
  .guides-page-hero { padding: 80px 24px 60px; }
  .guides-page-hero h1 { font-size: 36px; }
}
