:root {
  --bg: #fdfcf8;
  --ink: #1f2a30;
  --ink-soft: #4a5860;
  --sand: #efe7d8;
  --sand-soft: #f6f1e6;
  --sea: #6ea8a8;
  --sea-deep: #3e6e72;
  --sea-darker: #2c5559;
  --sky: #c9dde0;
  --line: #e3ddcf;
  --gold: #c89b3c;
  --off: #b8d4d4;
  --shoulder: #e8c97a;
  --summer: #e89968;
  --peak: #d56a5a;
  --shadow: 0 1px 2px rgba(31,42,48,.06), 0 8px 24px rgba(31,42,48,.06);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); margin-bottom: .6em; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--sea-deep);
  font-weight: 500;
  margin: 0 0 1em;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  display: block;
  height: 80px;
  width: auto;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  /* Surfboard occupies the upper ~60% of the cropped image — shift the
     wordmark up so its center aligns with the board's visual middle,
     not the geometric center of the image bounding box. */
  transform: translateY(-14px);
  white-space: nowrap;
}
.nav nav { display: flex; gap: 26px; align-items: center; }
.nav nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav nav a:hover { color: var(--sea-deep); }
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--sea-deep) !important;
  font-size: .88rem !important;
}
.nav-cta {
  background: var(--sea-deep);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .85rem !important;
}
.nav-cta:hover { background: var(--ink); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,42,48,0) 0%, rgba(31,42,48,.15) 45%, rgba(31,42,48,.78) 100%);
  z-index: -1;
}
.hero-overlay {
  color: #fff;
  padding: 0 28px 80px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-overlay .eyebrow { color: var(--sky); }
.hero h1 { color: #fff; margin-bottom: .15em; }
.hero .lede {
  color: rgba(255,255,255,.92);
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 2em;
}
.hero-stats-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.4em;
}
.hero-stats {
  display: inline-flex;
  align-items: stretch;
  background: rgba(62, 110, 114, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 16px 12px;
  box-shadow: 0 14px 44px rgba(0,0,0,.28);
}
.hero-stats > div {
  position: relative;
  padding: 2px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-stats > div + div::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(255,255,255,0.28);
}
.hero-stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.hero-stats span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-top: 8px;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  padding: 14px 34px;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); background: var(--sea-deep); color: #fff; }

.btn-ghost {
  display: inline-block;
  color: var(--sea-deep);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid var(--sea-deep);
  padding-bottom: 2px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

/* Trust strip */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.trust-item svg { color: var(--sea-deep); flex-shrink: 0; }
.trust-item p { margin: 0; line-height: 1.4; }
.trust-item strong { color: var(--ink); font-weight: 600; }
.trust-item span { font-size: .8rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; flex-shrink: 0; }

/* Sections */
section { padding: 110px 0; }
section.hero { padding: 0; }
section.trust-strip { padding: 24px 0; }

/* About */
.about { background: var(--bg); }
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.quick-facts {
  background: var(--sand-soft);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.quick-facts h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 18px;
  font-size: 1.55rem;
}
.quick-facts ul { list-style: none; padding: 0; margin: 0; }
.quick-facts li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.quick-facts li:last-child { border-bottom: 0; }
.quick-facts li span:first-child { color: var(--ink-soft); }
.quick-facts li span:last-child { color: var(--ink); font-weight: 500; }

/* Gallery */
.gallery { background: var(--sand-soft); }
.gallery-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 60px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.gallery-heading:first-of-type { margin-top: 40px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.grid figure {
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.grid figure:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  background: var(--sand);
}
.grid figcaption {
  padding: 12px 16px 14px;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  flex-grow: 1;
}

/* Amenities */
.amenities { background: var(--bg); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.amenity-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sea-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(62,110,114,.25);
}
.amenity-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.amenity-card ul { list-style: none; padding: 0; margin: 0; }
.amenity-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: left;
}
.amenity-card li::before {
  content: '';
  flex: 0 0 8px;
  margin-top: 7px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--sea);
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
}
.amenity-card li > * { min-width: 0; }

/* Rates + Calendar */
.rates { background: var(--sand-soft); }
.rates .sub { max-width: 620px; margin: 0 auto 30px; }
.rate-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 30px 0 40px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.rate-legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--off);
}
.dot.off { background: var(--off); }
.dot.shoulder { background: var(--shoulder); }
.dot.summer { background: var(--summer); }
.dot.peak { background: var(--peak); }

.calendar-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-controls button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.3rem;
  transition: background .2s, color .2s;
}
.cal-controls button:hover { background: var(--sea-deep); color: #fff; border-color: var(--sea-deep); }
#calLabel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
}
.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cal-month h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  text-align: center;
  margin: 0 0 12px;
  color: var(--ink);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-head {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  color: var(--ink-soft);
  padding: 4px 0;
  font-weight: 500;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: .85rem;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: transform .15s;
}
.cal-day.empty { cursor: default; }
.cal-day.past { color: #c5beae; cursor: not-allowed; }
.cal-day.past:hover { background: transparent; }
.cal-day.tier-off { background: rgba(184,212,212,.35); }
.cal-day.tier-shoulder { background: rgba(232,201,122,.35); }
.cal-day.tier-summer { background: rgba(232,153,104,.35); }
.cal-day.tier-peak { background: rgba(213,106,90,.35); }
.cal-day:not(.past):not(.empty):hover { transform: scale(1.08); border-color: var(--ink); }
.cal-day.selected { background: var(--sea-deep) !important; color: #fff; border-color: var(--sea-deep); }
.cal-day.in-range { background: var(--sky) !important; }

.rate-summary {
  max-width: 880px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}
.rs-dates { display: flex; gap: 28px; }
.rs-dates > div { display: flex; flex-direction: column; gap: 4px; }
.rs-dates span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-soft);
}
.rs-dates strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ink);
}
.rs-total { text-align: right; }
.rs-total span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.rs-total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--sea-deep);
  display: block;
}
.rs-total em {
  font-style: normal;
  font-size: .75rem;
  color: var(--ink-soft);
}

/* Testimonials */
.testimonials { background: var(--bg); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 32px 28px 0;
}
.t-card .stars { margin-bottom: 16px; font-size: 1rem; }
.t-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.t-card footer {
  padding: 18px 28px;
  margin: 24px -28px 0;
  background: var(--sea-deep);
  color: #fff;
}
.t-card footer strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 3px;
}
.t-card footer span {
  font-size: .78rem;
  color: rgba(255,255,255,.82);
  letter-spacing: .03em;
}

/* Location */
.location { background: var(--sand-soft); }
.distance-list { list-style: none; padding: 0; margin: 24px 0 0; }
.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.distance-list li:last-child { border-bottom: 0; }
.distance-list span:first-child { color: var(--ink-soft); }
.distance-list span:last-child { color: var(--ink); font-weight: 500; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.address {
  padding: 16px 22px;
  margin: 0;
  font-size: .9rem;
  color: var(--ink);
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--line);
}

/* Local guide */
.guide { background: var(--bg); }
.guide .sub { max-width: 580px; margin: 0 auto 60px; text-align: center; }
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.guide-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.guide-col-title span {
  font-size: .82rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: .2em;
  color: var(--sea-deep);
  font-weight: 500;
}
.guide-list { list-style: none; padding: 0; margin: 0; }
.guide-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.guide-list li:last-child { border-bottom: 0; }
.g-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.guide-list p {
  margin: 0 0 8px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.g-meta {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sea-deep);
  background: var(--sand-soft);
  padding: 4px 10px;
  border-radius: 3px;
}
.guide-footer {
  text-align: center;
  margin: 60px auto 0;
  max-width: 600px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* FAQ */
.faq { background: var(--sand-soft); }
.faq-list {
  max-width: 820px;
  margin: 50px auto 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-of-type { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--sea-deep);
  margin-left: 16px;
  transition: transform .2s;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin: 16px 0 0; color: var(--ink-soft); }

/* Book */
.book { background: var(--bg); }
.book-inner { max-width: 720px; margin: 0 auto; }
.book .sub { margin-bottom: 40px; }
.inquiry {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.inquiry .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inquiry .row:has(input[type="date"]) { grid-template-columns: 1fr 1fr 1fr; }
.inquiry label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-soft);
  font-weight: 500;
}
.inquiry input, .inquiry select, .inquiry textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus {
  outline: 0;
  border-color: var(--sea-deep);
  box-shadow: 0 0 0 3px rgba(62,110,114,.15);
}
.inquiry button {
  align-self: center;
  margin-top: 12px;
  background: var(--sea-deep);
  color: #fff;
  border: 0;
  min-width: 220px;
}
.inquiry button:hover { background: var(--ink); }
.inquiry button:disabled { opacity: .6; cursor: not-allowed; }

.form-estimate {
  background: var(--sand-soft);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.form-estimate strong {
  font-family: 'Cormorant Garamond', serif;
  color: var(--sea-deep);
  font-size: 1.6rem;
  font-weight: 500;
}
.form-estimate em {
  font-style: normal;
  font-size: .8rem;
  width: 100%;
  color: var(--ink-soft);
}
.form-note {
  text-align: center;
  font-size: .82rem;
  margin: 0;
  color: var(--ink-soft);
}
.form-note a { color: var(--sea-deep); }

.form-success {
  background: #fff;
  padding: 60px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}
.form-success svg { color: var(--sea-deep); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 12px; }
.form-success a { color: var(--sea-deep); }

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(31,42,48,.08);
}
.mobile-bar > div { display: flex; flex-direction: column; }
.mobile-bar strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1;
}
.mobile-bar span { font-size: .75rem; color: var(--ink-soft); }
.mobile-bar .btn { padding: 10px 24px; background: var(--sea-deep); color: #fff; }
.mobile-bar .btn:hover { background: var(--ink); }

/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  margin: 0 0 18px;
  filter: brightness(0) invert(1) opacity(0.85);
}
footer p { color: rgba(255,255,255,.7); }
footer a { color: rgba(255,255,255,.85); text-decoration: none; }
footer a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.fineprint {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 22, 26, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Responsive */

/* Narrow desktop — keep brand visible but scale down so it doesn't crowd nav */
@media (max-width: 1100px) {
  .nav-inner { gap: 18px; }
  .nav nav { gap: 20px; }
  .brand-logo { height: 68px; }
  .brand-name { font-size: 1.45rem; transform: translateY(-12px); }
  .nav-phone { font-size: .82rem !important; }
}

/* Tablet — hide secondary nav links, keep brand */
@media (max-width: 960px) {
  .cal-months { grid-template-columns: 1fr; gap: 28px; }
  .t-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; gap: 40px; }
  .rate-summary { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .rs-dates { justify-content: center; flex-wrap: wrap; }
  .rs-total { text-align: center; }
  .brand-logo { height: 60px; }
  .brand-name { font-size: 1.3rem; transform: translateY(-10px); }
}

/* Phone — collapse nav links behind hamburger, hide wordmark, show mobile bar */
@media (max-width: 860px) {
  .brand-logo { height: 56px; }
  .brand-name { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  section { padding: 80px 0; }
  .hero-overlay { padding-bottom: 60px; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 1.9rem; }
  .inquiry { padding: 28px 22px; }
  .inquiry .row, .inquiry .row:has(input[type="date"]) { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* Tablet / large phone — collapse trust strip, scale hero stats */
@media (max-width: 720px) {
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: start;
  }
  .trust-item { max-width: 380px; width: 100%; padding: 0 4px; }
  .hero-stats { padding: 12px 4px; border-radius: 18px; }
  .hero-stats > div { padding: 2px 16px; }
  .hero-stats strong { font-size: 1.65rem; }
  .hero-stats span { font-size: .6rem; letter-spacing: .15em; }
}

/* Small phone */
@media (max-width: 480px) {
  .nav-inner { padding: 10px 18px; gap: 10px; }
  .brand-logo { height: 48px; }
  .nav-cta { padding: 8px 14px; font-size: .8rem !important; }
  .nav-phone { display: none !important; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.7rem; }
  section { padding: 64px 0; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 10px;
    padding: 16px 28px;
    border-radius: 18px;
  }
  .hero-stats > div { padding: 4px 0; }
  .hero-stats > div + div::before { display: none; }
  .hero-stats > div:nth-child(2)::before,
  .hero-stats > div:nth-child(4)::before {
    content: '';
    position: absolute;
    display: block;
    left: -14px; top: 18%; bottom: 18%;
    width: 1px;
    background: rgba(255,255,255,0.28);
  }
  .hero-stats > div:nth-child(3),
  .hero-stats > div:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 10px;
  }
  .hero-stats strong { font-size: 1.5rem; }
  .hero-stats span { font-size: .58rem; letter-spacing: .14em; }
  .hero-overlay .btn { padding: 12px 26px; font-size: .9rem; }
  .hero .lede { font-size: 1.05rem; }
  .amenity-card { padding: 26px 20px; }
  .amenity-card li { font-size: .9rem; gap: 10px; }
  .amenity-card h3 { font-size: 1.35rem; }
}

/* ============================================================
   Reviews page
   ============================================================ */

.reviews-hero {
  background: var(--bg);
  padding: 110px 0 60px;
  text-align: center;
}
.reviews-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: .3em;
}
.reviews-sub {
  max-width: 560px;
  margin: 30px auto 0;
  color: var(--ink-soft);
}

.reviews-stats {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 40px;
  margin: 30px auto 0;
  box-shadow: var(--shadow);
  gap: 36px;
}
.reviews-stats > div { text-align: center; }
.rs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--sea-deep);
}
.rs-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
.rs-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
}

.reviews-list-section {
  background: var(--sand-soft);
  padding: 60px 0 120px;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px;
  justify-content: center;
}
.rf-chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.rf-chip:hover { border-color: var(--sea-deep); color: var(--sea-deep); }
.rf-chip.active {
  background: var(--sea-deep);
  color: #fff;
  border-color: var(--sea-deep);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.rc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.rc-name-block strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
}
.rc-name-block span {
  font-size: .78rem;
  color: var(--ink-soft);
}
.rc-rating { text-align: right; flex-shrink: 0; }
.rc-rating .stars { font-size: .9rem; }
.rc-score {
  display: block;
  font-size: .72rem;
  color: var(--ink-soft);
  margin-top: 2px;
  letter-spacing: .04em;
}
.rc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sea-deep);
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.rc-comment {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  flex-grow: 1;
}
.rc-foot {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.rc-source {
  font-size: .72rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

.reviews-cta {
  margin-top: 80px;
  text-align: center;
  padding: 50px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.reviews-cta h2 { margin-bottom: .3em; }
.reviews-cta p { margin-bottom: 24px; color: var(--ink-soft); }
.reviews-cta .btn { background: var(--sea-deep); color: #fff; }
.reviews-cta .btn:hover { background: var(--ink); }

/* Home page testimonial title + view-all CTA */
.t-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sea-deep);
  margin: 0 0 12px;
  letter-spacing: -.005em;
}
.t-cta-row {
  text-align: center;
  margin: 50px 0 0;
}
.t-cta-row .btn { background: var(--sea-deep); color: #fff; }
.t-cta-row .btn:hover { background: var(--ink); }

.trust-item a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
.trust-item a:hover { color: var(--sea-deep); }

@media (max-width: 720px) {
  .reviews-stats {
    flex-direction: column;
    gap: 18px;
    padding: 22px 28px;
  }
  .rs-divider { width: 60%; height: 1px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-hero { padding: 80px 0 40px; }
  .reviews-cta { padding: 36px 24px; }
}

/* ============================================================
   Mobile hamburger menu
   ============================================================ */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-hamburger {
  display: none; /* desktop hidden */
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--sea-deep); }
.nav-hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 28px; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Desktop: keep existing nav layout (links inline, no hamburger) */
@media (min-width: 861px) {
  .nav-links { display: flex; gap: 26px; align-items: center; }
}

/* Mobile: collapse links into a slide-down panel; show hamburger next to Book */
@media (max-width: 860px) {
  .nav-hamburger { display: block; }
  .nav-actions { gap: 12px; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(31, 42, 48, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
    padding: 0 0;
  }
  .nav-links.open {
    max-height: 60vh;
    padding: 8px 0 14px;
    opacity: 1;
  }
  .nav-links a {
    display: block;
    padding: 14px 28px;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    color: var(--ink) !important;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a:hover { background: var(--sand-soft); color: var(--sea-deep) !important; }
}

/* On smaller phones, tighten gap further */
@media (max-width: 480px) {
  .nav-actions { gap: 8px; }
  .nav-hamburger { width: 40px; height: 40px; }
  .nav-hamburger span { left: 10px; right: 10px; }
}

/* ============================================================
   Reserve page (3-step checkout)
   ============================================================ */
.reserve-section {
  background: var(--bg);
  padding: 80px 0 100px;
}
.reserve-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.reserve-form-col h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .3em;
}
.reserve-intro {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.reserve-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.reserve-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  flex: 1;
  padding: 0 6px;
}
.reserve-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand-soft);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .78rem;
  border: 1px solid var(--line);
}
.reserve-steps li.current { color: var(--ink); font-weight: 500; }
.reserve-steps li.current span,
.reserve-steps li.active span {
  background: var(--sea-deep);
  color: #fff;
  border-color: var(--sea-deep);
}

.reserve-form { display: block; }
.rf-step { display: none; }
.rf-step.active { display: block; }
.rf-step h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 22px;
  color: var(--ink);
}
.rf-step label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  font-weight: 500;
}
.rf-step input, .rf-step select, .rf-step textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.rf-step input:focus, .rf-step select:focus, .rf-step textarea:focus {
  outline: 0;
  border-color: var(--sea-deep);
  box-shadow: 0 0 0 3px rgba(62,110,114,.15);
}
.rf-step .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rf-availability {
  background: rgba(213, 106, 90, .12);
  border: 1px solid rgba(213, 106, 90, .35);
  color: #8a2f1f;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: .88rem;
  margin: 0 0 16px;
}
.rf-terms {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  font-size: .85rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
  background: var(--sand-soft);
  padding: 16px;
  border-radius: 8px;
}
.rf-terms input { margin-top: 3px; }
.rf-terms a { color: var(--sea-deep); }

.rf-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.rf-step-actions .btn { background: var(--sea-deep); color: #fff; }
.rf-step-actions .btn:hover { background: var(--ink); }

.rf-payment-intro {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
#payment-element {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
  min-height: 200px;
}
.rf-payment-placeholder {
  font-size: .9rem;
  color: var(--ink-soft);
  padding: 20px 0;
  text-align: center;
}
.rf-payment-placeholder.rf-no-key {
  background: rgba(232, 153, 104, .12);
  border-radius: 6px;
  padding: 18px 22px;
  color: #7a4a26;
  border: 1px solid rgba(232, 153, 104, .35);
}
.rf-error {
  background: rgba(213, 106, 90, .12);
  border: 1px solid rgba(213, 106, 90, .35);
  color: #8a2f1f;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: .88rem;
  margin-bottom: 16px;
}
.rf-spinner { display: inline-block; }
.rf-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
  justify-content: center;
}

.reserve-summary { position: sticky; top: 110px; }
.rs-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rs-hero {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.rs-body { padding: 24px 26px 28px; }
.rs-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.rs-loc { font-size: .85rem; color: var(--ink-soft); margin: 0 0 10px; }
.rs-meta {
  display: flex;
  gap: 6px;
  font-size: .78rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.rs-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.rs-card dl { margin: 0; padding: 0; }
.rs-card dl > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .88rem;
}
.rs-card dl dt {
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0;
}
.rs-card dl dd {
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.rs-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .95rem;
  color: var(--ink-soft);
}
.rs-total-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--sea-deep);
}
.rs-note {
  font-size: .75rem;
  color: var(--ink-soft);
  margin: 14px 0 0;
  line-height: 1.4;
}

/* Homepage rate-summary action buttons */
.rs-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.rs-actions .btn-ghost {
  background: transparent;
  color: var(--sea-deep);
  border: 1px solid var(--sea-deep);
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.rs-actions .btn-ghost:hover { background: var(--sea-deep); color: #fff; }
.rs-actions .btn { background: var(--sea-deep); color: #fff; }
.rs-actions .btn:hover { background: var(--ink); }

/* Calendar booked-day state */
.cal-day.booked {
  background: repeating-linear-gradient(
    135deg,
    rgba(31, 42, 48, 0.08),
    rgba(31, 42, 48, 0.08) 4px,
    rgba(31, 42, 48, 0.18) 4px,
    rgba(31, 42, 48, 0.18) 8px
  ) !important;
  color: var(--ink-soft) !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  text-decoration-color: rgba(31, 42, 48, 0.4);
}
.cal-day.booked:hover { transform: none !important; border-color: transparent !important; }

/* ============================================================
   Confirmation page
   ============================================================ */
.confirmation-section {
  padding: 100px 0 120px;
  background: var(--bg);
  min-height: 70vh;
}
.confirmation-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.conf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  background: rgba(62, 110, 114, .12);
  border-radius: 50%;
  color: var(--sea-deep);
  margin-bottom: 24px;
}
.conf-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.conf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: var(--shadow);
  text-align: left;
  margin-bottom: 40px;
}
.conf-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--ink);
}
.conf-dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin: 0; }
.conf-dl > div { display: flex; flex-direction: column; gap: 2px; }
.conf-dl dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-soft);
  margin: 0;
}
.conf-dl dd {
  margin: 0;
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
}
.conf-receipt {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.conf-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.conf-actions .btn { background: var(--sea-deep); color: #fff; }
.conf-actions .btn:hover { background: var(--ink); }
.conf-actions .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 28px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
}
.conf-actions .btn-ghost:hover { border-color: var(--sea-deep); color: var(--sea-deep); }
.conf-help {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 30px 0 0;
}
.conf-help a { color: var(--sea-deep); }

@media (max-width: 860px) {
  .reserve-grid { grid-template-columns: 1fr; gap: 32px; }
  .reserve-summary { position: static; }
  .rs-actions { flex-direction: column; align-items: stretch; }
  .rs-actions .btn, .rs-actions .btn-ghost { text-align: center; }
  .reserve-steps li { font-size: .78rem; padding: 0; }
  .rf-step .row.two { grid-template-columns: 1fr; }
  .conf-dl { grid-template-columns: 1fr; }
}
