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

:root {
  --brown:       #2c1a0e;
  --brown-mid:   #5c3018;
  --brown-light: #8b5a3a;
  --brown-pale:  #c4956a;
  --cream:       #f7f3eb;
  --cream-dark:  #ede8db;
  --cream-deep:  #e0d8c8;
  --green:       #4a5c28;
  --green-light: #6b7d44;
  --gold:        #b8902a;
  --gold-light:  #d4aa4e;
  --text:        #1a0f07;
  --text-mid:    #4a3020;
  --text-light:  #7a6050;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(44,26,14,0.12);
  --shadow-md:   0 6px 24px rgba(44,26,14,0.18);
  --shadow-lg:   0 12px 48px rgba(44,26,14,0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

/* ─── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--brown);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.topbar-contact {
  color: rgba(247,243,235,0.75);
  font-size: 13px;
  font-family: 'Lora', serif;
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-contact a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-contact a:hover { color: var(--white); }
.topbar-divider { color: rgba(247,243,235,0.25); }

/* ─── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  background: var(--brown);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.header-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.site-logo {
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-right: 32px;
  flex-shrink: 0;
}
.site-logo img {
  height: 70px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
}
.site-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(247,243,235,0.85);
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-bottom-color: var(--gold-light);
}
.site-nav a.active {
  color: var(--white);
  border-bottom-color: var(--green-light);
  background: rgba(255,255,255,0.04);
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream, #f7f3eb);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
/* Animated X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,0.15) 0%,
    rgba(44,26,14,0.05) 40%,
    rgba(44,26,14,0.55) 100%
  );
}
.hero-title {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-title h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  line-height: 1.2;
}
.hero-title h1 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── MAIN LAYOUT ────────────────────────────────────────────── */
.page-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.page-content { min-width: 0; }
.page-sidebar { position: sticky; top: 108px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
}
.section-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 4px;
  display: block;
}
.section-title {
  font-size: 2.2rem;
  color: var(--brown);
  margin-bottom: 28px;
}
.content-section { margin-bottom: 40px; }
.content-section h2 {
  font-size: 1.45rem;
  color: var(--brown);
  padding-left: 16px;
  border-left: 3px solid var(--green);
  margin-bottom: 14px;
}
.content-section p { color: var(--text-mid); margin-bottom: 14px; }
.content-section p:last-child { margin-bottom: 0; }

/* ─── SIDEBAR WIDGETS ────────────────────────────────────────── */
.sidebar-widget {
  background: var(--brown);
  color: var(--cream);
  padding: 22px;
  margin-bottom: 20px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.sidebar-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.sidebar-widget .widget-subtitle {
  font-size: 13px;
  color: rgba(247,243,235,0.65);
  line-height: 1.5;
  margin-bottom: 16px;
}
.sidebar-widget .btn-reserve {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  font-family: 'Lora', serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  border-radius: 1px;
  margin-top: 14px;
}
.sidebar-widget .btn-reserve:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.contact-widget {
  background: var(--cream-dark);
  border: 1px solid var(--cream-deep);
  padding: 22px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.contact-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-deep);
}
.contact-widget p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 4px;
}
.contact-widget a {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
}
.contact-widget a:hover { text-decoration: underline; }

/* ─── MINI CALENDAR (sidebar) ────────────────────────────────── */
.mini-calendar {
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  font-size: 12px;
}
.mini-cal-header {
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.mini-cal-header button {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 14px;
  padding: 0 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.mini-cal-header button:hover { opacity: 1; }
.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  padding: 8px 6px;
}
.mini-cal-grid .day-head {
  text-align: center;
  color: rgba(247,243,235,0.5);
  font-size: 10px;
  padding: 2px 0;
  letter-spacing: 0.04em;
}
.mini-cal-grid .day {
  text-align: center;
  padding: 3px 0;
  color: rgba(247,243,235,0.8);
  border-radius: 2px;
  cursor: default;
  font-size: 11px;
}
.mini-cal-grid .day.today {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}
.mini-cal-grid .day.other-month { color: rgba(247,243,235,0.25); }

/* ─── RATES TABLE ────────────────────────────────────────────── */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 8px;
  font-size: 15px;
}
.rates-table th {
  background: var(--brown);
  color: var(--cream);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.rates-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--text-mid);
  font-size: 14px;
}
.rates-table tr:nth-child(even) td { background: rgba(224,216,200,0.3); }
.rates-table tr:hover td { background: rgba(74,92,40,0.06); }
.rates-table .season-header td {
  background: var(--cream-deep);
  font-family: 'Playfair Display', serif;
  color: var(--brown-mid);
  font-weight: 600;
  padding: 8px 16px;
  font-size: 13px;
}
.rate-note {
  font-size: 12.5px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  margin-top: 16px;
}
.amenities-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.amenities-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* ─── ROOM CARDS ─────────────────────────────────────────────── */
.room-card {
  border: 1px solid var(--cream-deep);
  margin-bottom: 36px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.room-card:hover { box-shadow: var(--shadow-md); }
.room-card-header {
  background: var(--brown);
  color: var(--cream);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}
.room-card-header .price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
}
.room-card-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.room-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.room-card-info { padding: 20px 24px; }
.room-card-info h3 {
  font-size: 13px;
  color: var(--brown-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.amenity-tag {
  background: var(--cream-dark);
  color: var(--text-mid);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--cream-deep);
  display: flex;
  align-items: center;
  gap: 5px;
}
.amenity-tag svg { flex-shrink: 0; }

/* ─── FORM VALIDATION ───────────────────────────────────────── */
.form-error-alert {
  display: none;
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  border-left: 4px solid #b03030;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 0 2px 2px 0;
  color: #6b1a1a;
  font-size: 13.5px;
}
.form-error-alert strong {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  color: #5c1010;
}
.form-error-alert ul { margin: 0; padding-left: 20px; }
.form-error-alert li { margin-bottom: 4px; }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #b03030;
  box-shadow: 0 0 0 3px rgba(176,48,48,0.12);
}
.date-picker-wrap.has-error .calendar-widget {
  border: 1px solid #b03030;
  box-shadow: 0 0 0 3px rgba(176,48,48,0.12);
}
.date-picker-wrap.has-error .selected-date-display { color: #b03030; }

/* ─── RESERVATIONS FORM ──────────────────────────────────────── */
.reservation-form { background: var(--white); padding: 32px; border: 1px solid var(--cream-deep); border-radius: 2px; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
  padding-left: 14px;
  border-left: 3px solid var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full-width { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  color: var(--text-mid);
  font-family: 'Lora', serif;
  letter-spacing: 0.03em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  padding: 10px 14px;
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--text);
  border-radius: 1px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,92,40,0.1);
}
.form-field textarea { min-height: 100px; resize: vertical; }

/* ─── DUAL CALENDAR PICKER ───────────────────────────────────── */
.date-pickers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.date-picker-wrap { display: flex; flex-direction: column; gap: 8px; }
.date-picker-wrap label {
  font-size: 13px;
  color: var(--text-mid);
  font-family: 'Lora', serif;
}
.calendar-widget {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
  user-select: none;
}
.cal-header {
  background: var(--brown-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
}
.cal-header .cal-month-label {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.cal-nav {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 2px;
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s;
}
.cal-nav:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.cal-body { padding: 8px 10px 10px; }
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-days-header span {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  padding: 2px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  text-align: center;
  padding: 5px 2px;
  font-size: 13px;
  color: var(--text);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-cell:hover:not(.empty):not(.disabled) {
  background: var(--cream-deep);
  color: var(--brown);
}
.cal-cell.today {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}
.cal-cell.selected {
  background: var(--brown-mid);
  color: var(--white);
  font-weight: 600;
}
.cal-cell.in-range {
  background: rgba(74,92,40,0.15);
  color: var(--green);
}
.cal-cell.empty { cursor: default; }
.cal-cell.disabled {
  color: var(--cream-deep);
  cursor: default;
}
.selected-date-display {
  font-size: 13px;
  color: var(--green);
  font-family: 'Lora', serif;
  min-height: 20px;
  font-style: italic;
}

.form-notice {
  background: var(--cream-dark);
  border: 1px solid var(--cream-deep);
  border-left: 4px solid var(--brown-pale);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 20px 0;
  border-radius: 0 2px 2px 0;
}
.btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 13px 36px;
  font-family: 'Lora', serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(74,92,40,0.25);
}
.btn-submit:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,92,40,0.3);
}
.btn-submit:active { transform: translateY(0); }

/* ─── HOME PAGE SPECIFIC ─────────────────────────────────────── */
.home-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.home-hero-slides {
  position: absolute;
  inset: 0;
}
.home-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 50%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.home-hero-slide.is-active {
  opacity: 1;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,26,14,0.1) 0%,
    rgba(44,26,14,0.0) 35%,
    rgba(44,26,14,0.65) 100%
  );
}
.home-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 0 36px;
}
.home-hero-content-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.home-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  line-height: 1.15;
  margin-bottom: 8px;
}
.home-hero-text h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.home-hero-text p {
  color: rgba(247,243,235,0.85);
  font-size: 15px;
  max-width: 440px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-hero-primary {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  font-family: 'Lora', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 1px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.15s;
}
.btn-hero-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-hero-secondary {
  background: rgba(247,243,235,0.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  font-family: 'Lora', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(247,243,235,0.35);
  border-radius: 1px;
  transition: background 0.2s, transform 0.15s;
}
.btn-hero-secondary:hover { background: rgba(247,243,235,0.25); transform: translateY(-2px); }

.home-quicklinks {
  background: var(--brown-mid);
  padding: 0;
}
.home-quicklinks-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quicklink-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.quicklink-item:last-child { border-right: none; }
.quicklink-item:hover {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
}
.quicklink-icon { font-size: 1.2rem; opacity: 0.75; }

/* ─── LOCAL ATTRACTIONS ──────────────────────────────────────── */
.attraction-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-deep);
}
.attraction-item:last-child { border-bottom: none; }
.attraction-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.attraction-item p { font-size: 14px; color: var(--text-mid); }
.attraction-logo { max-height: 50px; max-width: 160px; object-fit: contain; margin-bottom: 8px; display: block; }

/* ─── DIRECTIONS ─────────────────────────────────────────────── */
.directions-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--green);
}
.directions-from {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.directions-from h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-deep);
}
.directions-from ol {
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}
.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-deep);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(247,243,235,0.7);
  padding: 36px 0 20px;
  border-top: 3px solid var(--brown-mid);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}
.footer-logo img { height: 64px; width: auto; opacity: 0.85; }
.footer-info h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-info p, .footer-info address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
}
.footer-info a { color: var(--gold-light); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }
.footer-nav h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav ul li a {
  color: rgba(247,243,235,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--gold-light); }
.footer-social h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-social-links { display: flex; flex-direction: column; gap: 6px; }
.footer-social-links a {
  color: rgba(247,243,235,0.7);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-social-links a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(247,243,235,0.4); }

/* ─── WEDDING PAGE ───────────────────────────────────────────── */
.wedding-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}
.wedding-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: opacity 0.2s;
}
.wedding-gallery img:hover { opacity: 0.85; }

/* ─── SKI PAGE ───────────────────────────────────────────────── */
.coming-soon-box {
  background: var(--cream-dark);
  border: 1px dashed var(--brown-pale);
  padding: 32px;
  text-align: center;
  border-radius: 2px;
  margin: 24px 0;
}
.coming-soon-box p {
  color: var(--text-mid);
  font-style: italic;
  font-size: 15px;
}

/* ─── EVENTS ANNEX ───────────────────────────────────────────── */
.events-room-card {
  border: 1px solid var(--cream-deep);
  margin-bottom: 32px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
}
.events-room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.events-room-card .room-info { padding: 20px 24px; }
.events-room-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.events-room-card p { font-size: 14px; color: var(--text-mid); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-body {
    grid-template-columns: 1fr;
  }
  .page-sidebar { position: static; }
  .home-hero { height: 380px; }
  .home-hero-content-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .home-hero-text h1 { font-size: 2.2rem; }
  .home-quicklinks-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .date-pickers { grid-template-columns: 1fr; }
  .room-card-body { grid-template-columns: 1fr; }
  .room-card-img { height: 220px; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-logo { grid-column: 1 / -1; }
  .amenities-list { grid-template-columns: 1fr; }
  .wedding-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--brown);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid transparent;
  }
  .site-nav a:hover,
  .site-nav a.active {
    border-left-color: var(--gold-light);
    border-bottom-color: transparent;
  }
  .page-hero { height: 240px; }
  .hero-title h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .home-hero { height: 300px; }
  .wedding-gallery { grid-template-columns: 1fr; }
}

/* ─── SPINNER ─────────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }

.btn-submit .spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
