/* ===== Tokens ===== */
:root {
  --c-dark:    #2f2f2f;
  --c-red:     #df2645;
  --c-red-hover: #c41f3a;
  --c-gray:    #77777a;
  --c-cream:   #faf7f3;
  --c-cream-mid: #f4f0ea;
  --c-white:   #ffffff;
  --f-display: 'Cormorant Garant', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;
  --radius:    4px;
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Typography helpers ===== */
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 10vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--f-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}
.display-md {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
}
.body-lg { font-size: 1rem; line-height: 1.7; color: var(--c-gray); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary { background: var(--c-red); color: var(--c-white); }
.btn-primary:hover { background: var(--c-red-hover); color: var(--c-white); }
.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--c-white); color: var(--c-white); }
.btn-dark { background: var(--c-dark); color: var(--c-white); }
.btn-dark:hover { background: #1a1a1a; color: var(--c-white); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.7rem; }

/* ===== Section wrapper ===== */
.section { padding: 4rem 1.5rem; }
.section-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.section-header { margin-bottom: 2.5rem; }
.section-header .eyebrow { margin-bottom: 0.6rem; }
.form-card { text-align: left; }
.sso-section { text-align: left; }
.location-details { text-align: left; }

/* ===== Container (legacy pages) ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  gap: 0.75rem;
  flex-wrap: wrap;
}
nav.scrolled {
  background: var(--c-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  order: 1;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  padding: 0.3rem 0.5rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--c-white); }
nav.scrolled .nav-links a { color: rgba(255,255,255,0.7); }
nav.scrolled .nav-links a:hover { color: var(--c-white); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.nav-lang select {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  padding: 0.1rem;
}
nav.scrolled .nav-lang select { color: rgba(255,255,255,0.7); }
.nav-lang select option { color: var(--c-dark); }
.nav-book {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-red);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.5rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.6) 100%),
    url('../images/hero.png') 12% 40% / cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  text-align: center;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.hero-content .display-xl { color: var(--c-white); margin-bottom: 0.5rem; }
.hero-content .display-xl em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== Photo Strip ===== */
.photo-strip {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-item {
  flex: 0 0 auto;
  width: 140px;
  height: 180px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--c-cream);
  position: relative;
  background-size: cover;
  background-position: center;
}
.photo-strip-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ===== Experiences Grid ===== */
.exp-grid { display: flex; flex-direction: column; gap: 1rem; }
.exp-card {
  background: var(--c-white);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  min-height: 120px;
  border: 1px solid var(--c-cream-mid);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.exp-card-img {
  background-size: cover;
  background-position: center;
}
.exp-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exp-card-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.exp-card-meta {
  font-size: 0.75rem;
  color: var(--c-gray);
  margin-bottom: 0.5rem;
}
.exp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exp-price {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.exp-price span {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-gray);
}
.exp-book-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
}

/* ===== About ===== */
.about-img-wrap {
  margin: 0 -1.5rem 2rem;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-white));
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-cream);
  border: 1px solid var(--c-cream-mid);
  padding: 0.5rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-gray);
  margin-bottom: 1.5rem;
}
.about-badge-dot {
  width: 8px; height: 8px;
  background: var(--c-red);
  border-radius: 50%;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-number {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--c-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Gallery Carousel ===== */
.gallery-section { background: var(--c-cream); border-top: 1px solid var(--c-cream-mid); }
.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: var(--c-cream);
  aspect-ratio: 16 / 9;
}
.carousel-track { display: flex; transition: transform .5s ease; height: 100%; }
.carousel-slide { min-width: 100%; height: 100%; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--c-white);
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
  z-index: 2;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--c-white); }

/* ===== Testimonial ===== */
.testimonial { background: var(--c-dark); color: var(--c-white); }
.testimonial .eyebrow { color: rgba(255,255,255,0.4); }
.quote-mark {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--c-red);
  margin-bottom: 0.75rem;
  display: block;
}
.quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  text-align: center;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), #a01830);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-white);
}
.quote-author-name { font-weight: 600; font-size: 0.85rem; }
.quote-author-origin { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.quote-stars { color: var(--c-red); font-size: 0.8rem; letter-spacing: 0.1em; margin-top: 0.75rem; }

/* ===== Booking Form ===== */
.booking-section { background: var(--c-cream); border-top: 1px solid var(--c-cream-mid); }
.form-card {
  background: var(--c-white);
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--c-cream-mid);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  color: var(--c-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--c-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 2px rgba(223,38,69,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== Alerts ===== */
.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== Location ===== */
.location-map {
  margin: 0 -1.5rem 1.5rem;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--c-cream);
  border-radius: 6px;
  z-index: 0;
}
.location-map .leaflet-control-attribution { display: none !important; }
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-gray);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #f0f0f0;
  box-shadow:
    6px 6px 12px rgba(0,0,0,0.06),
    -6px -6px 12px rgba(255,255,255,0.7);
  transition: box-shadow var(--transition), background var(--transition);
}
@media (hover: hover) {
  .location-item:hover {
    background: #f0f0f0;
    box-shadow:
      inset 3px 3px 6px rgba(0,0,0,0.06),
      inset -3px -3px 6px rgba(255,255,255,0.7);
  }
}
.location-item:active {
  background: #e8e8e8;
  box-shadow:
    inset 3px 3px 6px rgba(0,0,0,0.06),
    inset -3px -3px 6px rgba(255,255,255,0.7);
}
.location-icon {
  width: 20px;
  color: var(--c-red);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--c-cream);
  border-top: 1px solid var(--c-cream-mid);
  text-align: center;
}
.cta-section .display-lg { margin: 0.75rem 0; }
.cta-section .body-lg { margin-bottom: 2rem; }
.cta-section .btn { width: 100%; margin-bottom: 0.75rem; }

/* ===== Footer ===== */
footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.45);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-logo {
  margin: 0 auto 1rem;
  width: 55px;
  height: 55px;
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.7rem; }

/* ===== Sticky Bar (mobile) ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: var(--c-white);
  border-top: 1px solid var(--c-cream-mid);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.sticky-wa {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-wa svg { width: 22px; height: 22px; fill: white; }
.sticky-book {
  flex: 1;
  background: var(--c-red);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.sticky-book:hover { background: var(--c-red-hover); }

/* ===== Gallery page ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-grid a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* ===== SSO Section ===== */
.sso-section {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.sso-label { font-weight: 600; font-size: 1.1rem; color: var(--c-red); }
.sso-sub { font-size: 0.9rem; color: var(--c-gray); margin-bottom: 1rem; }
.sso-buttons { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.sso-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  color: var(--c-white);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity .2s;
  width: 100%;
  max-width: 300px;
  justify-content: center;
}
.sso-btn:hover { opacity: .9; color: var(--c-white); }
.sso-icon { font-weight: 700; font-size: 1.1rem; }
.sso-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: #aaa;
  font-size: 0.9rem;
}
.sso-divider::before, .sso-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

/* ===== Admin (unchanged) ===== */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.admin-table th, .admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.admin-table th { background: var(--c-red); color: var(--c-white); font-weight: 600; }
.admin-table tr:hover { background: #f8f6f2; }
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.admin-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: #2c2c2c;
  color: #ddd;
  padding: 2rem 1rem;
}
.admin-sidebar h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 2rem; color: var(--c-white); }
.admin-sidebar a {
  display: block;
  color: #bbb;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-sidebar a:hover { color: var(--c-red); }
.admin-main { flex: 1; padding: 2rem; background: #f8f6f2; }
.admin-main h1 { font-family: 'Playfair Display', serif; color: var(--c-red); margin-bottom: 1.5rem; }
.admin-login {
  max-width: 400px;
  margin: 6rem auto;
  background: var(--c-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.admin-login h1 { text-align: center; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; color: var(--c-red); }

/* ===== Mobile-first desktop breakpoint ===== */
@media (min-width: 768px) {
  .hero-bg { background-position: center 40%; }
  .section { padding: 5rem 2rem; }
  .section-inner { max-width: 760px; }

  nav { padding: 1rem 2rem; flex-wrap: nowrap; }
  .nav-logo { width: 44px; height: 44px; font-size: 1.5rem; }
  .nav-links { order: 0; width: auto; gap: 1.5rem; }
  .nav-links a { font-size: 0.75rem; }
  .nav-book { padding: 0.5rem 1rem; }

  .exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .exp-card { grid-template-columns: 1fr; grid-template-rows: 180px 1fr; min-height: unset; }
  .exp-card-img { height: 180px; }

  .about-img-wrap { margin: 0 0 2rem; border-radius: 6px; height: 300px; }

  .photo-strip-item { width: 180px; height: 220px; }

  .cta-section .btn { width: auto; margin-right: 0.75rem; margin-bottom: 0; }

  .sticky-bar { display: none; }

  .location-map { margin: 0 0 1.5rem; border-radius: 6px; height: 260px; }
}

@media (min-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
}
