/* BenChase — coastal luxury static site */
:root {
  --teal: #0B4F6C;
  --teal-deep: #083A50;
  --teal-soft: #1A6B8A;
  --sand: #E8DCC8;
  --sand-light: #F5F0E8;
  --coral: #E07A5F;
  --coral-hover: #C9654A;
  --navy: #1B2A3A;
  --navy-muted: #4A5A6A;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(11, 79, 108, 0.12);
  --shadow-sm: 0 2px 12px rgba(11, 79, 108, 0.08);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--teal-deep);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 79, 108, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--teal);
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(280px, 70vw);
  object-fit: contain;
}
.footer-logo .logo-img {
  height: 52px;
  filter: none;
}
@media (max-width: 600px) {
  .logo-img { height: 44px; max-width: min(220px, 72vw); }
}
.logo {
  text-decoration: none;
  color: var(--teal-deep);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo:hover { color: var(--teal); }

.logo-word {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem !important;
}

.nav-cta:hover {
  background: var(--teal-deep) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(11, 79, 108, 0.2);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--teal);
}

.nav-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(11, 79, 108, 0.1);
    box-shadow: var(--shadow-sm);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
  }
  .nav a:hover { background: var(--sand-light); }
  .nav-cta {
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(380px, 70vh, 620px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(160deg, rgba(8, 58, 80, 0.75) 0%, rgba(11, 79, 108, 0.55) 45%, rgba(224, 122, 95, 0.35) 100%),
    linear-gradient(135deg, #0B4F6C 0%, #1A6B8A 40%, #E8DCC8 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(232, 220, 200, 0.2), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(224, 122, 95, 0.15), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  max-width: 36rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.hero-unit {
  min-height: clamp(280px, 45vh, 420px);
}

/* —— Sections —— */
.section {
  padding: 4rem 0;
}

.section-sand {
  background: var(--sand-light);
}

.section-teal {
  background: var(--teal);
  color: var(--white);
}

.section-teal h2,
.section-teal h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--navy-muted);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

/* —— Unit cards —— */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.75rem;
}

.unit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 79, 108, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.unit-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.unit-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--sand);
  color: var(--teal-deep);
}

.unit-card p {
  color: var(--navy-muted);
  flex: 1;
  font-size: 0.975rem;
}

.unit-card .btn-row {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* —— Photo / placeholder —— */
.photo-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(145deg, #0B4F6C 0%, #1A6B8A 35%, #E8DCC8 70%, #E07A5F 100%);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame.tall {
  aspect-ratio: 4 / 5;
}

.photo-placeholder-label {
  position: absolute;
  inset: 0;
  display: none; /* only shown on load error */
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.photo-frame.is-error .photo-placeholder-label {
  display: flex;
}

.photo-frame.has-photo .photo-placeholder-label {
  display: none;
}

/* Hide broken images, keep gradient + label */
.photo-frame img {
  position: absolute;
  inset: 0;
}

.photo-frame img:not([src]),
.photo-frame img[src=""] {
  opacity: 0;
}

/* —— Amenities —— */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 79, 108, 0.06);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sand-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.amenity-icon svg {
  width: 26px;
  height: 26px;
}

.amenity-card h3 {
  margin-bottom: 0.4rem;
}

.amenity-card p {
  color: var(--navy-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* —— Feature list —— */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  border-bottom: 1px solid rgba(11, 79, 108, 0.08);
  color: var(--navy);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.85;
}

/* —— Two-col layout —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* —— Gallery —— */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
}

.gallery .photo-frame {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

/* —— Contact —— */
.contact-block {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(11, 79, 108, 0.08);
}

.contact-compact {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
  border: 1px solid rgba(11, 79, 108, 0.08);
}

.contact-compact h3 {
  margin-bottom: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(11, 79, 108, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

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

.contact-note {
  font-size: 0.9rem;
  color: var(--navy-muted);
  margin-top: 1rem;
}

.contact-meta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.contact-meta strong {
  color: var(--teal-deep);
}

/* —— Stats strip —— */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(11, 79, 108, 0.1);
  border-bottom: 1px solid rgba(11, 79, 108, 0.1);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--teal);
}

.stat span {
  font-size: 0.85rem;
  color: var(--navy-muted);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-word {
  color: var(--white);
  font-size: 1.35rem;
}

.footer-brand .logo-sub {
  color: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* —— Utilities —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-muted { color: var(--navy-muted); }

.mt-0 { margin-top: 0; }

/* —— Creative polish: lightbox, motion, vibe, sticky CTA —— */

.hero-with-photo {
  background: var(--teal-deep);
}

.hero-bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 58, 80, 0.72) 0%, rgba(11, 79, 108, 0.38) 42%, rgba(8, 58, 80, 0.12) 100%),
    linear-gradient(to top, rgba(8, 58, 80, 0.45), transparent 50%);
}

.hero-with-photo::after {
  display: none;
}

.hero-with-photo .hero-content {
  max-width: 38rem;
}

/* Vibe / Why BenChase */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .vibe-grid { grid-template-columns: 1fr; }
}

.vibe-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(11, 79, 108, 0.08);
  box-shadow: var(--shadow-sm);
}

.vibe-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.vibe-card p {
  margin: 0;
  color: var(--navy-muted);
  font-size: 0.975rem;
}

.vibe-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 0.65rem;
}

/* Amenity photo strip */
.amenity-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .amenity-photos { grid-template-columns: 1fr; }
}

.amenity-photos .photo-frame {
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}

.amenity-photos .photo-frame:first-child {
  aspect-ratio: 16 / 11;
}

/* Gallery zoom cue */
.gallery .photo-frame,
.photo-frame[data-zoom] {
  cursor: zoom-in;
}

.gallery .photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 58, 80, 0);
  transition: background 0.2s;
  pointer-events: none;
  z-index: 1;
}

.gallery .photo-frame:hover::after {
  background: rgba(8, 58, 80, 0.12);
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 58, 80, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-figure {
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 40rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg {
    transform: none !important;
  }
}

/* Airbnb secondary note button */
.btn-airbnb-ask {
  background: transparent;
  color: var(--teal);
  border-color: rgba(11, 79, 108, 0.35);
  font-size: 0.875rem;
}

.btn-airbnb-ask:hover {
  background: var(--sand-light);
  color: var(--teal-deep);
  border-color: var(--teal);
}

.hero .btn-airbnb-ask {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-airbnb-ask:hover {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}

/* Sticky mobile Inquire CTA */
.sticky-inquire {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(11, 79, 108, 0.12);
  box-shadow: 0 -6px 24px rgba(11, 79, 108, 0.1);
  justify-content: center;
  gap: 0.65rem;
}

.sticky-inquire .btn {
  flex: 1;
  max-width: 220px;
  padding: 0.7rem 1rem;
}

.sticky-inquire.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}

.sticky-inquire {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 720px) {
  .sticky-inquire {
    display: flex;
  }
  body {
    padding-bottom: 4.5rem;
  }
}

/* Book strip on unit pages */
.book-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--sand-light);
  border: 1px solid rgba(11, 79, 108, 0.1);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.book-strip p {
  margin: 0;
  flex: 1;
  min-width: 12rem;
  font-size: 0.95rem;
  color: var(--navy-muted);
}

.book-strip strong {
  color: var(--teal-deep);
}


/* —— Rates & stay rules —— */
.rates-card {
  background: var(--white);
  border: 1px solid rgba(11, 79, 108, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
}

.rates-card .section-header {
  text-align: left;
  margin-bottom: 0.75rem;
}

.rates-lead {
  font-size: 1.125rem;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}

.rates-note {
  color: var(--navy-muted);
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
}

/* —— Shared club amenity intro —— */
.club-amenity-intro {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  color: var(--navy-muted);
}

/* —— FAQ —— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(11, 79, 108, 0.1);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.35rem;
  font-weight: 600;
  color: var(--teal-deep);
  font-family: var(--font-sans);
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-answer {
  padding: 0 1.35rem 1.2rem;
  color: var(--navy-muted);
  font-size: 0.975rem;
  margin: 0;
}

.faq-item .faq-answer a {
  font-weight: 500;
}


/* —— Host extras / transportation —— */
.extras-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 800px) {
  .extras-grid { grid-template-columns: 1fr; }
}
.extras-grid-compact {
  grid-template-columns: 1fr 1fr;
}
.extras-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(11, 79, 108, 0.1);
  box-shadow: 0 8px 28px rgba(8, 58, 80, 0.06);
}
.extras-card-featured {
  border-color: rgba(224, 122, 95, 0.35);
  background:
    linear-gradient(160deg, rgba(232, 220, 200, 0.35), transparent 55%),
    var(--white);
}
.extras-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.5rem;
}
.extras-card h3 {
  margin: 0 0 0.75rem;
}
.extras-list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--ink-muted, #4a5d68);
}
.extras-list li { margin-bottom: 0.35rem; }
.extras-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--teal);
  margin: 0 0 1.25rem;
}

/* —— Guest / Client Log In portal —— */
.guest-portal {
  padding: 2.5rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(11, 79, 108, 0.06), transparent 220px),
    var(--sand-light);
  min-height: 70vh;
}
.guest-shell { max-width: 820px; }
.guest-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 79, 108, 0.08);
  padding: 1.5rem 1.35rem;
}
.guest-login-form { margin-top: 1.25rem; max-width: 420px; }
.guest-lead { color: var(--navy-muted); margin-bottom: 0.75rem; }
.guest-error {
  color: #9b2c2c;
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  margin: 0.75rem 0;
  font-size: 0.95rem;
}
.guest-guide-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.guest-unit-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.guest-unit-tab {
  border: 1px solid rgba(11, 79, 108, 0.2);
  background: var(--white);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.guest-unit-tab.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.guest-sections {
  display: grid;
  gap: 1rem;
}
.guest-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.guest-dl { margin: 0; }
.guest-kv {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.35rem 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(11, 79, 108, 0.06);
}
.guest-kv:last-child { border-bottom: 0; }
.guest-kv dt {
  font-weight: 600;
  color: var(--navy-muted);
  font-size: 0.9rem;
}
.guest-kv dd { margin: 0; }
.guest-qr {
  margin-bottom: 0.75rem;
}
.guest-qr img {
  border-radius: 8px;
  border: 1px solid rgba(11, 79, 108, 0.12);
  background: #fff;
}
.guest-stays { margin-bottom: 1rem; }
.guest-table-wrap { overflow-x: auto; }
.guest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.guest-table th,
.guest-table td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid rgba(11, 79, 108, 0.08);
  vertical-align: top;
}
.guest-table code {
  font-size: 0.88rem;
  background: var(--sand-light);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .guest-kv { grid-template-columns: 1fr; }
  .guest-guide-top { flex-direction: column; }
}


/* Guest portal refinements */
.guest-shell { max-width: 820px; margin: 0 auto; padding: 2.5rem 0 4rem; }
.guest-portal { background: linear-gradient(180deg, rgba(11,79,108,.06), transparent 220px), #f7f4ef; min-height: 70vh; }
.guest-card { background:#fff; border-radius:12px; border:1px solid rgba(11,79,108,.08); box-shadow:0 8px 28px rgba(11,79,108,.08); padding:1.5rem 1.35rem; margin-bottom:1rem; }
.guest-lead { color:#4a5d6a; margin-bottom:.75rem; }
.guest-error { color:#9b2c2c; background:#fff5f5; border:1px solid #feb2b2; border-radius:8px; padding:.65rem .8rem; margin:.75rem 0; }
.guest-login-form { max-width:420px; margin-top:1rem; }
.guest-guide-top { display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; margin-bottom:1.25rem; }
.guest-unit-tabs { display:flex; gap:.5rem; margin-bottom:1rem; flex-wrap:wrap; }
.guest-unit-tab { border:1px solid rgba(11,79,108,.2); background:#fff; color:#0b4f6c; border-radius:999px; padding:.45rem 1rem; font:inherit; font-weight:600; cursor:pointer; }
.guest-unit-tab.is-active { background:#0b4f6c; border-color:#0b4f6c; color:#fff; }
.guest-sections { display:grid; gap:1rem; }
.guest-section h2 { font-size:1.2rem; margin:0 0 .75rem; }
.guest-dl { margin:0; }
.guest-kv { display:grid; grid-template-columns:7.5rem 1fr; gap:.35rem 1rem; padding:.35rem 0; border-bottom:1px solid rgba(11,79,108,.06); }
.guest-kv:last-child { border-bottom:0; }
.guest-kv dt { font-weight:600; color:#4a5d6a; font-size:.9rem; }
.guest-kv dd { margin:0; word-break:break-word; }
.guest-qr { margin-bottom:.75rem; }
.guest-qr img { border-radius:8px; border:1px solid rgba(11,79,108,.12); background:#fff; max-width:240px; height:auto; }
.guest-table-wrap { overflow-x:auto; }
.guest-table { width:100%; border-collapse:collapse; font-size:.92rem; }
.guest-table th, .guest-table td { text-align:left; padding:.55rem .4rem; border-bottom:1px solid rgba(11,79,108,.08); vertical-align:top; }
.guest-table code { font-size:.88rem; background:#f3eee6; padding:.1rem .35rem; border-radius:4px; }
@media (max-width:640px){ .guest-kv{grid-template-columns:1fr;} .guest-guide-top{flex-direction:column;} }
