/* =============================================
   CLIFF VIEW GUEST HOUSE - Styles
   Coastal palette: blues, sandy whites, driftwood greys
   ============================================= */

:root {
  /* Light theme */
  --color-primary: #2B6B8A;
  --color-primary-dark: #1E4D63;
  --color-accent: #C8785A;
  --color-accent-light: #D4967E;
  --color-bg: #FAF8F5;
  --color-bg-alt: #F0EDE8;
  --color-bg-card: #FFFFFF;
  --color-text: #2C3E3A;
  --color-text-muted: #7A8B87;
  --color-text-light: #A3B0AC;
  --color-sand: #E8DFD1;
  --color-sand-light: #F3EDE4;
  --color-driftwood: #B8A99A;
  --color-sea-dark: #1A3D5C;
  --color-sea-light: #5B9CB5;
  --color-border: #E0D8CE;
  --color-overlay: rgba(26, 61, 92, 0.55);
  --map-sea: #C7DDE8;
  --map-land: #E8DFD1;
  --map-coast: #2B6B8A;
  --nav-bg: rgba(250, 248, 245, 0.92);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s ease;
}

[data-theme="dark"] {
  --color-primary: #5BB0D0;
  --color-primary-dark: #7CC8E2;
  --color-accent: #D4967E;
  --color-accent-light: #E0B09E;
  --color-bg: #1A1F24;
  --color-bg-alt: #222930;
  --color-bg-card: #252C34;
  --color-text: #E4E0DB;
  --color-text-muted: #8A9590;
  --color-text-light: #5F6B67;
  --color-sand: #3A342E;
  --color-sand-light: #2E2A25;
  --color-driftwood: #6B5F52;
  --color-border: #3A3530;
  --color-overlay: rgba(10, 20, 30, 0.7);
  --map-sea: #1A2E3E;
  --map-land: #2E3530;
  --map-coast: #5BB0D0;
  --nav-bg: rgba(26, 31, 36, 0.95);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section styles */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  transition: color var(--transition);
}

.nav.scrolled .nav__logo { color: var(--color-text); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background var(--transition), transform var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--color-text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav.scrolled .nav__links a { color: var(--color-text-muted); }
.nav__links a:hover, .nav.scrolled .nav__links a:hover { color: var(--color-accent); }

.nav__cta {
  padding: 8px 20px !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  border-radius: var(--radius);
}

.nav.scrolled .nav__cta {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: -60px 0 0 0;
  z-index: 0;
}

.hero__bg {
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,61,92,0.4) 0%, rgba(26,61,92,0.6) 60%, rgba(26,61,92,0.8) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: rgba(255,255,255,0.8);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.82rem;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

.btn--small:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--full { width: 100%; }

/* =============================================
   INTRO STATS
   ============================================= */
.intro {
  padding: 48px 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.intro__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.intro__label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* =============================================
   WEATHER
   ============================================= */
.weather-strip {
  padding: 40px 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.weather__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-text);
}

.weather__days {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.weather-day {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  min-width: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.weather-day:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.weather-day__name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.weather-day__icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
  line-height: 1;
}

.weather-day__temp {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
}

.weather-day__desc {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* =============================================
   ROOMS
   ============================================= */
.rooms {
  padding: 100px 0;
}

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

.room-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-card__price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--color-overlay);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.room-card__body {
  padding: 28px;
}

.room-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.room-card__body p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
}

.room-card__features li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--color-sand-light);
  border-radius: 20px;
  color: var(--color-text-muted);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.lightbox__content {
  text-align: center;
  max-width: 800px;
  width: 90%;
}

.lightbox__content img {
  max-height: 70vh;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.lightbox__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.lightbox__arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.lightbox__arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

#lightboxCounter {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

#lightboxCaption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-style: italic;
}

/* =============================================
   BREAKFAST
   ============================================= */
.breakfast {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.breakfast__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.breakfast__menu h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.breakfast__intro {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.menu-group {
  margin-bottom: 28px;
}

.menu-group h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-list li span:first-child {
  display: block;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}

.menu-list li span:last-child {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.menu-list--simple li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  padding: 6px 0;
}

.breakfast__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  position: sticky;
  top: 100px;
}

/* =============================================
   EXPLORE
   ============================================= */
.explore {
  padding: 100px 0;
}

.explore__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.explore__tab {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.explore__tab.active,
.explore__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-bg);
}

.explore__panel { display: none; }
.explore__panel.active { display: block; }

/* Walking cards */
.walk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.walk-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.walk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.walk-card__difficulty {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.walk-card__difficulty--easy { background: #D4EDDA; color: #2D6A3F; }
.walk-card__difficulty--moderate { background: #FFF3CD; color: #856404; }
.walk-card__difficulty--hard { background: #F8D7DA; color: #842029; }

[data-theme="dark"] .walk-card__difficulty--easy { background: #1A3D2A; color: #8BC99B; }
[data-theme="dark"] .walk-card__difficulty--moderate { background: #3D3520; color: #D4A837; }
[data-theme="dark"] .walk-card__difficulty--hard { background: #3D1A1E; color: #D48A90; }

.walk-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.walk-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.walk-card__meta {
  display: flex;
  gap: 16px;
}

.walk-card__meta span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-sand-light);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Attractions */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.attraction {
  display: flex;
  gap: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform var(--transition);
}

.attraction:hover { transform: translateY(-2px); }

.attraction img,
.attraction__placeholder svg {
  width: 140px;
  min-width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
}

.attraction__body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.attraction__body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.attraction__distance {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* =============================================
   COAST MAP
   ============================================= */
.coast-map {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.map-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.coast-svg {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--map-sea);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-label {
  font-family: var(--font-body);
  font-size: 10px;
  fill: var(--color-text);
  font-weight: 500;
  pointer-events: none;
}

.map-label--highlight {
  font-size: 11px;
  font-weight: 600;
  fill: var(--color-accent);
}

.map-label-small {
  font-family: var(--font-body);
  font-size: 8px;
  font-style: italic;
}

.map-pin circle {
  transition: r 0.2s ease;
}

.map-pin:hover circle:first-child {
  r: 12;
}

.map-info {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.map-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.map-info p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* =============================================
   AVAILABILITY CALENDAR
   ============================================= */
.availability {
  padding: 100px 0;
}

.calendar-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.calendar-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.calendar-select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calendar-btn {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.calendar-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.calendar-month {
  font-family: var(--font-display);
  font-size: 1.2rem;
  min-width: 160px;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.calendar-grid .cal-header {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-align: center;
  padding: 8px 0;
}

.calendar-grid .cal-day {
  text-align: center;
  padding: 10px 4px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  cursor: default;
  transition: all var(--transition);
}

.cal-day--empty { visibility: hidden; }

.cal-day--available {
  background: #D4EDDA;
  color: #2D6A3F;
}

.cal-day--limited {
  background: #FFF3CD;
  color: #856404;
}

.cal-day--booked {
  background: var(--color-sand);
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.cal-day--past {
  color: var(--color-text-light);
  opacity: 0.4;
}

[data-theme="dark"] .cal-day--available { background: #1A3D2A; color: #8BC99B; }
[data-theme="dark"] .cal-day--limited { background: #3D3520; color: #D4A837; }
[data-theme="dark"] .cal-day--booked { background: #2E2A25; color: #6B5F52; }

.calendar-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot--available { background: #5CB85C; }
.legend-dot--limited { background: #F0AD4E; }
.legend-dot--booked { background: var(--color-driftwood); }

/* =============================================
   IMAGE STRIP (Parallax Quote)
   ============================================= */
.image-strip {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-strip__parallax {
  position: absolute;
  inset: -40px 0 0 0;
}

.image-strip__bg {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  will-change: transform;
}

.image-strip__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.image-strip__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
}

.image-strip__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  border: none;
}

.image-strip__cite {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: normal;
}

/* =============================================
   BOOKING
   ============================================= */
.booking {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.booking__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.booking__info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.booking__details {
  display: grid;
  gap: 20px;
}

.booking__detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.booking__detail span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.booking__form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
}

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

.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 16px;
  font-size: 0.88rem;
  text-align: center;
  color: var(--color-primary);
  min-height: 1.4em;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 64px 0 32px;
  background: var(--color-sea-dark);
  color: rgba(255,255,255,0.7);
}

[data-theme="dark"] .footer {
  background: #111519;
}

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

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

/* =============================================
   THEME TOGGLE
   ============================================= */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle__sun { display: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .rooms__grid { grid-template-columns: 1fr; }
  .about__grid,
  .breakfast__layout,
  .booking__layout { grid-template-columns: 1fr; gap: 40px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .walk-cards,
  .attraction-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__links.open { display: flex; }
  .nav__links a { color: var(--color-text) !important; }

  .intro__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .attraction {
    flex-direction: column;
  }

  .attraction img,
  .attraction__placeholder svg {
    width: 100%;
    height: 160px;
  }

  .breakfast__image { order: -1; }
  .breakfast__image img {
    position: relative;
    top: 0;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .intro__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero { min-height: 500px; }
  .calendar-wrapper { padding: 20px; }
}
