/* ============================================
   Maisy's Hideaway — Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --cream:        #FAF8F4;
  --warm-white:   #F2EDE6;
  --stone:        #E8E1D8;
  --border:       #D8D0C6;
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #787062;
  --green:        #3A5432;
  --green-mid:    #4D6E43;
  --green-light:  #617D58;
  --slate:        #475569;
  --earth:        #8B7355;
  --earth-light:  #A68B68;
  --white:        #FFFFFF;

  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);

  --transition:   0.25s ease;

  --max-width:    1160px;
  --gutter:       clamp(1.25rem, 5vw, 3rem);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Typography helpers --- */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0; }
p { color: var(--text-mid); }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--text-mid); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(3rem, 8vw, 6rem) 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0.75rem 0;
}
.site-nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 0;
}
.site-nav.nav-light:not(.scrolled) .nav-logo,
.site-nav.nav-light:not(.scrolled) .nav-links a { color: var(--white); }
.site-nav.nav-light:not(.scrolled) .nav-toggle span { background: var(--white); }
.site-nav.nav-light:not(.scrolled) .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.site-nav.nav-light:not(.scrolled) .btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--green); }
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 6px;
}
/* On transparent hero nav add a subtle shadow so the logo reads against dark photos */
.site-nav.nav-light:not(.scrolled) .nav-logo-img {
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
  .nav-logo-img { height: 60px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); background: rgba(58, 84, 50, 0.07); }
.nav-cta { flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  padding: 5rem var(--gutter) 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stone);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--green); }
.nav-mobile .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  background: linear-gradient(160deg, #2A3F24 0%, #3A5432 40%, #4A6840 70%, #5C7A54 100%);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Image loaded from the images folder — swap in your hero photo */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,8,0.75) 0%, rgba(10,20,8,0.3) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

/* ============================================
   FEATURE STRIP
   ============================================ */
.feature-strip {
  background: var(--green);
  padding: 1.25rem 0;
}
.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.feature-item svg { opacity: 0.8; flex-shrink: 0; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { max-width: 600px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green-mid);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

/* ============================================
   INTRO SECTION (homepage)
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone);
}
.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.intro-badge .badge-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green);
  font-weight: 500;
}
.intro-badge .badge-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.intro-content .section-header { margin-bottom: 1.75rem; }
.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.highlight-card .highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(58, 84, 50, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--green);
}
.highlight-card h4 { font-size: 0.875rem; margin-bottom: 0.3rem; color: var(--text); }
.highlight-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-badge { right: 1.5rem; }
  .intro-highlights { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ROOMS PREVIEW (homepage)
   ============================================ */
.rooms-preview { background: var(--warm-white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--stone);
  position: relative;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card:hover .room-card-image img { transform: scale(1.04); }
.room-card-body { padding: 1.5rem; }
.room-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.room-card-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }
.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 1rem;
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}
.room-card:hover .room-card-link { gap: 0.7rem; }

@media (max-width: 900px) { .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ============================================
   LOCATION TEASER (homepage)
   ============================================ */
.location-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.location-map-side {
  position: relative;
  background: var(--stone);
  overflow: hidden;
  min-height: 380px;
}
.location-map-side iframe, .location-map-side img {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.location-content-side {
  background: var(--green);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.location-content-side .section-label { color: rgba(255,255,255,0.6); }
.location-content-side .section-label::before { background: rgba(255,255,255,0.4); }
.location-content-side h2 { color: var(--white); }
.location-content-side p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.location-facts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.location-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}
.location-fact svg { flex-shrink: 0; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .location-teaser { grid-template-columns: 1fr; }
  .location-map-side { min-height: 260px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 480px; margin: 0 auto 2rem; font-size: 1rem; color: var(--text-mid); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #141A12;
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; display: block; }
.footer-brand .nav-logo-img { height: 100px; border-radius: 8px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.8); }
.footer-col h4 { color: rgba(255,255,255,0.95); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.95); }
.footer-address { font-size: 0.875rem; font-style: normal; line-height: 1.85; color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding-top: 7rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 84, 50, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { max-width: 640px; }
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 540px; }
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================
   HOUSE PAGE
   ============================================ */
.room-section { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--border); }
.room-section:last-of-type { border-bottom: none; }
.room-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.room-layout.reverse { direction: rtl; }
.room-layout.reverse > * { direction: ltr; }
.room-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.room-photos .photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stone);
}
.room-photos .photo-sub {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--stone);
}
.room-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-info h2 { margin-bottom: 1rem; }
.room-info p { margin-bottom: 1.25rem; color: var(--text-mid); }
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.amenity-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.amenities-full {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.amenities-full h3 { margin-bottom: 2rem; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem 2rem;
}
.amenity-category h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}
.amenity-category ul { display: flex; flex-direction: column; gap: 0.45rem; }
.amenity-category li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.amenity-category li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: bold;
}

@media (max-width: 768px) {
  .room-layout { grid-template-columns: 1fr; }
  .room-layout.reverse { direction: ltr; }
  .room-photos { grid-template-columns: 1fr; }
  .room-photos .photo-sub { display: none; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-intro {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
  padding: 2.5rem 0;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--stone);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--stone);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder svg { opacity: 0.4; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { color: white; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  background: none;
  border: none;
  transition: color var(--transition);
}
.lightbox-nav:hover { color: white; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }

/* ============================================
   LOCATION PAGE
   ============================================ */
.location-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.location-image-stack { position: relative; }
.location-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--stone);
}
.location-image-main img { width: 100%; height: 100%; object-fit: cover; }
.location-image-sub {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--stone);
  border: 4px solid var(--cream);
  box-shadow: var(--shadow);
}
.location-image-sub img { width: 100%; height: 100%; object-fit: cover; }
.location-intro-content { padding-top: 1rem; }
.location-intro-content h2 { margin-bottom: 1.25rem; }
.location-intro-content p { margin-bottom: 1rem; font-size: 0.95rem; }

.things-to-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.attraction-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.attraction-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.attraction-icon {
  width: 44px;
  height: 44px;
  background: rgba(58, 84, 50, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.attraction-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.attraction-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.attraction-distance {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  background: rgba(58, 84, 50, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  margin-top: 0.75rem;
}

.getting-there-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.travel-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.travel-card h3 { font-size: 1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.travel-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

.map-section { background: var(--warm-white); border-top: 1px solid var(--border); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: var(--stone);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 768px) {
  .location-intro-grid { grid-template-columns: 1fr; }
  .location-image-stack { padding-bottom: 3rem; }
  .location-image-sub { right: 0; }
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.booking-form-wrap h2 { margin-bottom: 0.5rem; }
.booking-form-wrap .lead { font-size: 0.95rem; margin-bottom: 2rem; color: var(--text-light); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.form-group label .req { color: var(--green); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58, 84, 50, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

.booking-info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-card h3 { font-size: 1rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.info-card h3 .icon { color: var(--green); }
.info-card p, .info-card li { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }
.info-card ul { padding-left: 0; margin-top: 0.5rem; }
.info-card ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.info-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: bold;
}
.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.contact-method svg { color: var(--green); flex-shrink: 0; }
.contact-method a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

.success-message {
  display: none;
  background: rgba(58, 84, 50, 0.08);
  border: 1px solid rgba(58, 84, 50, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--green);
  margin-top: 1rem;
}
.success-message.show { display: block; }

@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-white); }
.bg-green { background: var(--green); color: var(--white); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Image placeholder style (shown when real images aren't loaded) */
.img-placeholder {
  background: linear-gradient(135deg, var(--stone) 0%, var(--warm-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}

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