/* ============================================================
   Cornish Point Holiday Home | style.css
   Editorial Lakeside — a Wimdu-inspired listing aesthetic
   ============================================================ */


/* ------------------------------------------------------------
   Design Tokens
   ------------------------------------------------------------ */
:root {
  /* Palette — warm editorial with blue + terracotta accents */
  --ink:           #141414;
  --ink-soft:      #2A2A2A;
  --muted:         #6B6B6B;
  --muted-2:       #A0A0A0;
  --line:          #E8E3DB;
  --line-2:        #F2EEE7;
  --paper:         #FFFFFF;
  --paper-warm:    #FAF7F1;
  --paper-warm-2:  #F4EFE5;

  --accent:        #2E6CA8;   /* editorial blue — category labels + links */
  --accent-dk:     #245687;
  --cta:           #D65C48;   /* terracotta — primary action */
  --cta-dk:        #B8483A;
  --gold:          #E5A94A;   /* stars + highlights */

  /* Shadows */
  --shadow-card:   0 1px 2px rgba(20, 20, 20, 0.04),
                   0 8px 24px -12px rgba(20, 20, 20, 0.10);
  --shadow-lift:   0 4px 12px rgba(20, 20, 20, 0.06),
                   0 24px 48px -16px rgba(20, 20, 20, 0.18);
  --shadow-bar:    0 -2px 12px rgba(20, 20, 20, 0.06),
                   0 -20px 48px -20px rgba(20, 20, 20, 0.10);

  /* Typography */
  --font-display:  'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans:     'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:         1240px;
  --gutter:        32px;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;

  /* Motion */
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

ul, ol { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}


/* ------------------------------------------------------------
   Base
   ------------------------------------------------------------ */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 96px; /* room for sticky booking bar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: 1.375rem; letter-spacing: -0.015em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  width: 100%;
  padding: clamp(64px, 10vw, 120px) 0;
}

#hero { padding: 0; }


/* Eyebrow label — blue uppercase micro text, used throughout */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Section-level titles (secondary pages) */
.section-title {
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.section-title.center { text-align: center; }

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
  max-width: 720px;
}

.section-header.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }

.section-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}


/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease),
              box-shadow 220ms var(--ease);
  text-align: center;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

/* Primary — coral terracotta CTA */
.btn {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.06), 0 6px 16px -8px rgba(214, 92, 72, 0.5);
}
.btn:hover,
.btn:focus-visible {
  background: var(--cta-dk);
  border-color: var(--cta-dk);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(20, 20, 20, 0.08), 0 14px 28px -10px rgba(214, 92, 72, 0.55);
}

/* Outline — ink */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

/* Ghost — subtle */
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(20,20,20,0.04);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--ink);
  background: var(--paper-warm);
}


/* ------------------------------------------------------------
   Fade-in
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}


/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 280ms var(--ease), border-color 280ms var(--ease);
}

#header.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 500;
  position: relative;
  transition: color 200ms var(--ease);
}

.nav-links a:not(.btn-airbnb)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease);
}
.nav-links a:not(.btn-airbnb):hover::after { transform: scaleX(1); }
.nav-links a:not(.btn-airbnb):hover { color: var(--ink); }

.btn-airbnb {
  background: var(--cta);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.btn-airbnb:hover {
  background: var(--cta-dk);
  transform: translateY(-1px);
}
.btn-airbnb::after { display: none !important; }

.btn-vrbo {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.btn-vrbo:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}
.btn-vrbo::after { display: none !important; }

/* Blue variant of primary CTA button */
.btn.btn-blue {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.06), 0 6px 16px -8px rgba(46, 108, 168, 0.5);
}
.btn.btn-blue:hover,
.btn.btn-blue:focus-visible {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  box-shadow: 0 2px 4px rgba(20, 20, 20, 0.08), 0 14px 28px -10px rgba(46, 108, 168, 0.55);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}

.nav-toggle span {
  width: 22px;
  height: 1.75px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms var(--ease), opacity 200ms var(--ease);
  transform-origin: center;
}


/* ------------------------------------------------------------
   Hero — split image gallery + listing header
   ------------------------------------------------------------ */
#hero {
  padding-top: 96px;
  background: var(--paper);
}

.hero-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, clamp(180px, 22vw, 280px));
  gap: 10px;
  position: relative;
}

.hero-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-warm);
}

.hero-img-main {
  grid-row: span 2;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.hero-img:hover img { transform: scale(1.03); }

.hero-explore {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #fff;
  color: var(--ink);
  padding: 11px 18px 11px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.hero-explore:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.hero-explore .grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  grid-template-rows: repeat(3, 3px);
  gap: 2px;
}
.hero-explore .grid-icon span {
  background: var(--ink);
  border-radius: 1px;
}


/* Listing header — Wimdu-style property details */
.listing-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px var(--gutter) 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}

.listing-meta .eyebrow { margin-bottom: 16px; }

.listing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 22px;
  font-variation-settings: "SOFT" 40, "WONK" 0, "opsz" 144;
}

.listing-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  color: var(--accent);
}

.listing-review {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.stars svg { width: 16px; height: 16px; }

.listing-review-meta {
  color: var(--muted);
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.listing-review-meta strong {
  color: var(--ink);
  font-weight: 600;
}
.listing-review-meta .dot {
  width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%;
  display: inline-block;
}

.listing-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-bottom: 32px;
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
}

.stat-icon {
  width: 22px;
  height: 22px;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.stat-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }

.listing-description {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 58ch;
}

.listing-description a.read-more {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.listing-description a.read-more:hover { border-color: var(--accent); }


/* Listing sidebar — booking card (desktop) */
.listing-sidebar {
  position: sticky;
  top: 110px;
}

.booking-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}
.booking-price .big {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.booking-price .unit {
  color: var(--muted);
  font-size: 0.9375rem;
}

.booking-sub {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: 22px;
}

.booking-list {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 22px;
}
.booking-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.booking-list li span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.booking-card .btn { width: 100%; }
.booking-card .btn-ghost { width: 100%; margin-top: 10px; }

.booking-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 14px;
}


/* ------------------------------------------------------------
   Location & Getting Here (combined, editorial)
   ------------------------------------------------------------ */
#location {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.location-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 30, "opsz" 48;
}

.location-text p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  height: 420px;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }


/* Distance grid — pure horizontal rail */
.distance-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.distance-item {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--line);
  text-align: left;
  transition: background 240ms var(--ease);
}
.distance-item:first-child { border-left: none; }
.distance-item:hover { background: var(--paper-warm); }

.distance-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 48;
}

.distance-label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ------------------------------------------------------------
   Property — "Plenty of Room" (editorial bedroom cards)
   ------------------------------------------------------------ */
#property {
  background: var(--paper-warm);
  position: relative;
}

#property::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(214, 92, 72, 0.04), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(46, 108, 168, 0.04), transparent 55%);
  pointer-events: none;
}

#property .container { position: relative; }

.section-intro {
  max-width: 640px;
  margin: 0 0 56px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

.bedroom-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 400ms var(--ease);
}

.bedroom-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line-2);
  margin-bottom: 20px;
}
.bedroom-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease);
}
.bedroom-card:hover .bedroom-img img { transform: scale(1.04); }

.bedroom-info {
  padding: 0;
}
.bedroom-info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "opsz" 32;
}
.bedroom-info p {
  color: var(--muted);
  font-size: 0.9875rem;
  line-height: 1.65;
}


/* ------------------------------------------------------------
   Amenities — minimal icon grid
   ------------------------------------------------------------ */
#amenities {
  background: var(--paper);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.amenity-item {
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 240ms var(--ease);
}
.amenity-item:hover { background: var(--paper-warm); }

.amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.amenity-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }

.amenity-item span:last-child {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9375rem;
}


/* ------------------------------------------------------------
   Activities — editorial tile cards
   ------------------------------------------------------------ */
#activities {
  background: var(--paper-warm);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 300ms var(--ease);
  position: relative;
  overflow: hidden;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.activity-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms var(--ease);
}
.activity-card:hover::after { transform: scaleX(1); }

.activity-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.activity-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }

.activity-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  font-variation-settings: "SOFT" 30, "opsz" 32;
}

.activity-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}


/* ------------------------------------------------------------
   Testimonials — big editorial quote
   ------------------------------------------------------------ */
#testimonials {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.16;
  margin-bottom: -20px;
  text-align: center;
  font-weight: 400;
  user-select: none;
}

.testimonial-track {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonial-slide.active { opacity: 1; position: relative; }

.testimonial-slide blockquote { margin: 0; padding: 0; max-width: 720px; }

.testimonial-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  font-variation-settings: "SOFT" 50, "opsz" 32;
}

.testimonial-slide cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 260ms var(--ease), width 260ms var(--ease);
}
.testimonial-dot:hover { background: var(--muted-2); }
.testimonial-dot.active {
  background: var(--accent);
  width: 44px;
}


/* ------------------------------------------------------------
   E-Bikes
   ------------------------------------------------------------ */
#ebikes {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.ebike-features {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}

.ebike-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink-soft);
}

.ebike-feat-icon {
  width: 36px;
  height: 36px;
  background: rgba(46, 108, 168, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.ebike-feat-icon svg {
  width: 18px;
  height: 18px;
}

.ebike-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
}

.ebike-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 72;
}

.ebike-unit {
  color: var(--muted);
  font-size: 0.9375rem;
}

.ebike-visual {
  position: relative;
}

.ebike-illustration {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.ebike-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.ebike-card-badge svg {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .ebike-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ebike-visual { order: -1; }
}


/* ------------------------------------------------------------
   Pricing — clean editorial table
   ------------------------------------------------------------ */
#pricing {
  background: var(--paper-warm);
}

.pricing-table-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.pricing-table th {
  background: var(--paper);
  color: var(--muted);
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid var(--line);
}

.pricing-table td {
  padding: 24px 28px;
  border-top: 1px solid var(--line-2);
  color: var(--ink-soft);
}

.pricing-table tbody tr:first-child td { border-top: none; }
.pricing-table tbody tr:hover { background: var(--paper-warm); }

.pricing-table td:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 30, "opsz" 24;
}
.pricing-table td:first-child strong { font-weight: 500; }

.pricing-table td:nth-child(2) { color: var(--muted); }

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.per-night {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pricing-notes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.pricing-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-notes span:not(:last-child)::after {
  content: "·";
  color: var(--muted-2);
  display: inline-block;
  margin-left: 20px;
}

@media (max-width: 600px) {
  .pricing-notes {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .pricing-notes span:not(:last-child)::after { display: none; }
}

.pricing-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}


/* ------------------------------------------------------------
   Guest Info — minimal grid
   ------------------------------------------------------------ */
#guest-info { background: var(--paper); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-item {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 240ms var(--ease);
}
.info-item:hover { background: var(--paper-warm); }

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-bottom: 10px;
}
.info-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }

.info-item strong {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 600;
}

.info-item span:last-child {
  color: var(--muted);
  font-size: 0.875rem;
}


/* ------------------------------------------------------------
   Gallery preview — editorial asymmetric mosaic
   ------------------------------------------------------------ */
#gallery-preview {
  background: var(--paper-warm);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}

.preview-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line-2);
  position: relative;
}

.preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.preview-item:hover img { transform: scale(1.05); }

/* Asymmetric tile sizing for magazine feel */
.preview-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.preview-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.preview-item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.preview-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.preview-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.preview-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.preview-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}


/* ------------------------------------------------------------
   Contact Form
   ------------------------------------------------------------ */
#contact {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: start;
}

.contact-intro p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-direct {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 200ms var(--ease);
}
.contact-direct a:hover { color: var(--accent); }
.contact-direct svg {
  width: 18px; height: 18px;
  stroke: var(--accent); fill: none; stroke-width: 1.5;
}

.contact-form {
  background: var(--paper-warm);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full-width { margin-bottom: 22px; }

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 108, 168, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Hide the invisible reCAPTCHA badge — attribution text is shown in the footer (required by Google ToS) */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* reCAPTCHA attribution line in footer */
.recaptcha-attribution {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 14px;
}
.recaptcha-attribution a {
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.recaptcha-attribution a:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--cta);
  color: #fff;
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid var(--cta);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
  font-family: var(--font-sans);
  box-shadow: 0 1px 2px rgba(20, 20, 20, 0.06), 0 6px 16px -8px rgba(214, 92, 72, 0.5);
}
.btn-submit:hover {
  background: var(--cta-dk);
  border-color: var(--cta-dk);
  transform: translateY(-1px);
}

.form-message {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
}
.form-success { background: #E8F3EC; color: #1F6B3A; border: 1px solid #C4E2CC; }
.form-error   { background: #FBEAE7; color: #8B3A2E; border: 1px solid #F3C9C2; }


/* ------------------------------------------------------------
   Sticky Booking Bar — fixed bottom (like Wimdu)
   ------------------------------------------------------------ */
.booking-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-bar);
  transform: translateY(110%);
  transition: transform 480ms var(--ease-out);
}

.booking-bar.is-visible { transform: translateY(0); }

.booking-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.booking-bar-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-bar-price .big {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 24;
}

.booking-bar-price .big span { color: var(--muted); font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500; letter-spacing: 0; margin-left: 4px; }

.booking-bar-price .stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 3px;
}

.booking-bar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.booking-bar .btn {
  padding: 14px 32px;
  font-size: 0.9375rem;
}


/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}

.footer-info h3,
.footer-contact h3,
.footer-links h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer-info .footer-brand {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
  font-variation-settings: "SOFT" 40, "opsz" 48;
}

.footer-content p,
.footer-content a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.footer-content a {
  transition: color 200ms var(--ease);
}
.footer-content a:hover { color: #fff; }

.footer-links ul { display: grid; gap: 8px; }

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .container { width: 100%; }


/* ------------------------------------------------------------
   Gallery page
   ------------------------------------------------------------ */
.gallery-page {
  padding-top: 140px !important;
  padding-bottom: 100px !important;
  background: var(--paper);
}

.gallery-page .container { max-width: var(--max-w); }

.gallery-page-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.gallery-page-header .eyebrow { margin-bottom: 12px; }

.gallery-page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}

.gallery-page-header p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 6px;
  background: var(--paper-warm);
  border-radius: 999px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
}

.filter-btn {
  padding: 9px 20px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--line-2);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }


/* ------------------------------------------------------------
   Media: Tablet (max-width 1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .listing-header {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px var(--gutter) 32px;
  }

  .listing-sidebar {
    position: static;
  }

  .location-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .distance-grid { grid-template-columns: repeat(2, 1fr); }
  .distance-item:nth-child(2) { border-left: 1px solid var(--line); }
  .distance-item:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .distance-item:nth-child(4) { border-top: 1px solid var(--line); }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }

  .preview-grid {
    grid-auto-rows: 140px;
    grid-template-columns: repeat(4, 1fr);
  }
  .preview-item:nth-child(1) { grid-column: span 2; }
  .preview-item:nth-child(2) { grid-column: span 2; }
  .preview-item:nth-child(3) { grid-column: span 2; }
  .preview-item:nth-child(4) { grid-column: span 2; }
  .preview-item:nth-child(5) { grid-column: span 2; }
  .preview-item:nth-child(6) { grid-column: span 2; }
  .preview-item:nth-child(7) { grid-column: span 4; }
}


/* ------------------------------------------------------------
   Media: Mobile (max-width 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  body { padding-bottom: 84px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    flex-direction: column;
    background: var(--paper);
    padding: 96px 32px 32px;
    transition: right 360ms var(--ease);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    border-left: 1px solid var(--line);
    align-items: flex-start;
    gap: 20px;
  }
  .nav-links.active { right: 0; }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  #hero { padding-top: 84px; }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 110px;
    gap: 8px;
    padding-top: 16px;
  }
  .hero-img-main { grid-column: span 2; grid-row: 1; }

  .listing-header { padding: 32px var(--gutter) 28px; gap: 32px; }
  .listing-stats { gap: 16px 24px; }
  .listing-title { font-size: clamp(2rem, 8vw, 3rem); }

  .distance-grid { grid-template-columns: 1fr; }
  .distance-item { border-left: none !important; border-top: 1px solid var(--line); }
  .distance-item:first-child { border-top: none; }

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

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }

  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .preview-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .preview-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }

  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form { padding: 28px 22px; }

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

  .pricing-table th { padding: 16px 18px; font-size: 0.6875rem; }
  .pricing-table td { padding: 18px; }
  .pricing-table td:first-child { font-size: 1.125rem; }
  .pricing-table td:nth-child(2) { display: none; }

  .booking-bar-inner { padding: 12px 16px; gap: 12px; }
  .booking-bar-price .big { font-size: 1.125rem; }
  .booking-bar .btn { padding: 12px 22px; font-size: 0.875rem; }
  .booking-bar-price .stars { display: none; }

  footer { padding: 60px 0 0; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: left; padding-bottom: 48px; }

  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}


/* ------------------------------------------------------------
   Wide desktop
   ------------------------------------------------------------ */
@media (min-width: 1440px) {
  .hero-gallery {
    grid-template-rows: repeat(2, 300px);
  }
}
