/* ==========================================================
   Floridays — tropical island aesthetic
   Turquoise + coral + palm + sand
   ========================================================== */

:root {
  --sand:       #fdf6e8;
  --sand-warm:  #f6e8cc;
  --sand-deep:  #e8d4a8;
  --paper:      #fffbf2;
  --ink:        #1a3a3f;
  --ink-soft:   #4a6366;
  --palm:       #0d5c5e;
  --palm-deep:  #06383a;
  --turquoise:  #2fa8a3;
  --turq-light: #7ecdc9;
  --coral:      #ff7a59;
  --coral-deep: #e85d3c;
  --sunset:     #f4a261;
  --line:       rgba(26,58,63,0.14);

  --f-display: 'Caladea', Georgia, serif;
  --f-body:    'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1340px;
  --pad:  clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography ---------------------------------------- */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
h3 {
  font-family: var(--f-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.eyebrow, .section-label {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}
.eyebrow {
  color: var(--coral);
  margin-bottom: 1.5rem;
}
/* Hero eyebrow gets extra treatment for readability over photos */
.hero .eyebrow {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  background: rgba(6,56,58,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: var(--sunset);
  border: 1px solid rgba(244,162,97,0.3);
  margin-bottom: 1.75rem;
  font-weight: 700;
}
.section-label {
  color: var(--turquoise);
  margin-bottom: 1.5rem;
}
.section-label.centered { text-align: center; }
.section-label.light { color: var(--turq-light); }

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.lead.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Buttons ------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 0 8px 24px -8px rgba(255,122,89,0.5);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(232,93,60,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--sand);
  border-color: rgba(253,246,232,0.5);
}
.btn-ghost:hover { background: rgba(253,246,232,0.12); border-color: var(--sand); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* --- Nav ----------------------------------------------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad);
  color: var(--sand);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(6,56,58,0.55) 0%, rgba(6,56,58,0) 100%);
  z-index: 5;
  pointer-events: none;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { font-size: 1.2rem; }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.25rem 0;
  transition: opacity 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--coral);
  border-radius: 2px;
}
.nav-cta {
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(253,246,232,0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--coral); color: var(--paper); border-color: var(--coral); }

/* Nav on light pages */
body:has(.page-header) .nav { color: var(--ink); }
body:has(.page-header) .nav-cta { border-color: var(--line); color: var(--ink); }

/* --- Hero ---------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: var(--sand);
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slowZoom 22s ease-out forwards;
}
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,56,58,0.35) 0%, rgba(6,56,58,0.1) 40%, rgba(6,56,58,0.7) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 12vh, 8rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: fadeUp 1.2s ease-out 0.2s backwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-title {
  color: var(--sand);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-title em {
  color: var(--sunset);
  font-style: italic;
  display: inline-block;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 48ch;
  opacity: 0.92;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Quick stats --------------------------------------- */
.quick-stats {
  background: var(--turquoise);
  color: var(--paper);
  padding: 1.5rem var(--pad);
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  position: relative;
}
.qs { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.qs-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sand);
}
.qs-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* --- Intro --------------------------------------------- */
.intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 8rem) var(--pad);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-text h2 { margin-bottom: 0; line-height: 1.15; }
.intro-body .lead { margin-bottom: 2rem; }
.intro-img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: 0 20px 50px -20px rgba(26,58,63,0.35);
}

/* --- House section ------------------------------------- */
.house {
  background: var(--sand);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.house::before {
  content: '';
  position: absolute;
  top: 0; right: -5%;
  width: 35%; height: 100%;
  background: radial-gradient(ellipse, rgba(47,168,163,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.house-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.house-title { margin-bottom: 1.5rem; }
.house-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 65ch; margin-bottom: 3.5rem; }
.house-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.hg-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sand-warm);
}
.hg-item.tall { grid-row: span 2; }
.hg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hg-item:hover img { transform: scale(1.06); }
.hg-item figcaption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(253,246,232,0.92);
  backdrop-filter: blur(4px);
  color: var(--palm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

/* --- Bedrooms (named, with hover effect) --------------- */
.bedrooms {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  background: var(--paper);
}
.bedrooms-inner { max-width: var(--maxw); margin: 0 auto; }
.bedrooms h2 { margin-bottom: 1.5rem; }
.bedrooms .lead { margin-bottom: 3.5rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.room-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--line);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(13,92,94,0.28);
}
.room-image {
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--sand-warm);
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}
.room-card:hover .room-image img {
  transform: scale(1.08);
  filter: brightness(1.03) saturate(1.1);
}
.room-meta { padding: 1.75rem 1.75rem 2rem; }
.room-tag {
  display: inline-block;
  background: var(--turq-light);
  color: var(--palm-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.room-meta h3 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--palm);
  margin-bottom: 0.4rem;
}
.room-bed {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}
.room-note {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* --- What's Included ----------------------------------- */
.included {
  background: var(--palm);
  color: var(--sand);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.included::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(47,168,163,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.included::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 45%; height: 120%;
  background: radial-gradient(circle, rgba(244,162,97,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.included-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.included-title {
  color: var(--sand);
  text-align: center;
  max-width: 20ch;
  margin: 0 auto 4rem;
}
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.inc {
  padding: 2rem 1.75rem;
  background: rgba(253,246,232,0.06);
  border-radius: 4px;
  border: 1px solid rgba(253,246,232,0.1);
  transition: all 0.3s ease;
}
.inc:hover {
  background: rgba(253,246,232,0.1);
  transform: translateY(-3px);
  border-color: rgba(253,246,232,0.2);
}
.inc-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: saturate(1.1);
}
.inc h3 {
  color: var(--sand);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.inc p {
  font-size: 0.95rem;
  color: rgba(253,246,232,0.82);
  line-height: 1.55;
}

/* --- Location ------------------------------------------ */
.location {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
}
.loc-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.loc-copy h2 { margin-bottom: 2rem; }
.loc-copy p { color: var(--ink-soft); margin-bottom: 1.25rem; max-width: 48ch; }
.loc-imgs {
  position: relative;
  aspect-ratio: 4/5;
}
.loc-imgs img {
  position: absolute;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 20px 50px -20px rgba(26,58,63,0.3);
}
.loc-img-1 {
  top: 0; left: 0;
  width: 75%; height: 65%;
}
.loc-img-2 {
  bottom: 0; right: 0;
  width: 65%; height: 55%;
  border: 8px solid var(--paper);
}

/* --- Why Rebook ---------------------------------------- */
.why-rebook {
  background: var(--sand-warm);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-rebook::before {
  content: '🌴';
  position: absolute;
  font-size: 12rem;
  opacity: 0.06;
  top: -2rem; left: -2rem;
  transform: rotate(-15deg);
}
.why-rebook::after {
  content: '🐚';
  position: absolute;
  font-size: 10rem;
  opacity: 0.06;
  bottom: -1rem; right: -1rem;
  transform: rotate(12deg);
}
.why-inner { max-width: 820px; margin: 0 auto; position: relative; }
.why-rebook h2 { margin-bottom: 1.5rem; }

/* --- Direct pitch -------------------------------------- */
.direct-pitch {
  background: var(--palm-deep);
  color: var(--sand);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.direct-pitch::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(47,168,163,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.direct-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; }
.direct-pitch h2 { color: var(--sand); margin-bottom: 1.5rem; }
.direct-pitch h2 em { color: var(--sunset); }
.direct-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
  margin-bottom: 3rem;
  text-align: left;
}
.perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.2rem;
  background: rgba(253,246,232,0.06);
  border-left: 3px solid var(--turquoise);
  font-size: 0.95rem;
  border-radius: 2px;
}
.perks span {
  color: var(--turq-light);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Reviews ------------------------------------------- */
.reviews {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
blockquote {
  padding: 2rem;
  background: var(--sand);
  border-radius: 4px;
  position: relative;
  border-top: 3px solid var(--coral);
}
blockquote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; left: 1rem;
  font-family: var(--f-display);
  font-size: 4.5rem;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
}
blockquote p {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
  position: relative;
}
blockquote cite {
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
}

/* --- FAQ ----------------------------------------------- */
.faq {
  background: var(--sand);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
}
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq h2 { margin-bottom: 1.5rem; }
.faq .lead { margin-bottom: 3rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq-list summary {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--f-body);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--palm); }
.faq-list details p {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 68ch;
}

/* --- CTA band ------------------------------------------ */
.cta-band {
  background: var(--turquoise);
  color: var(--paper);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244,162,97,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,122,89,0.15) 0%, transparent 50%);
}
.cta-band h2 {
  color: var(--sand);
  margin-bottom: 2rem;
  position: relative;
}
.cta-band h2 em { color: var(--sunset); }

/* --- Page header (gallery, book) ----------------------- */
.page-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(8rem, 14vh, 11rem) var(--pad) clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-header h1 { margin-bottom: 1rem; }
.page-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 auto;
}

/* --- Gallery ------------------------------------------- */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.g-item { overflow: hidden; border-radius: 4px; background: var(--sand-warm); }
.g-item.span-2 { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.g-item.span-2 img { aspect-ratio: 8/3; }
.g-item:hover img { transform: scale(1.05); }

/* --- Book page ----------------------------------------- */
.book-header h1 em { display: inline-block; color: var(--coral); }
.book-benefits {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.bene {
  padding: 2rem;
  background: var(--sand);
  border-radius: 4px;
  border-top: 3px solid var(--turquoise);
}
.bene-num {
  font-family: var(--f-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--coral);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.bene h3 { margin-bottom: 0.5rem; font-family: var(--f-display); font-size: 1.4rem; font-weight: 400; }
.bene p { color: var(--ink-soft); font-size: 0.95rem; }

.booking-section {
  background: var(--sand);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  text-align: center;
}
.booking-title { text-align: center; margin-bottom: 3rem; }
.booking-placeholder {
  max-width: 860px;
  margin: 0 auto;
  border: 2px dashed rgba(13,92,94,0.3);
  border-radius: 8px;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  text-align: left;
}
.placeholder-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--palm);
  color: var(--sand);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.placeholder-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--palm);
  margin-bottom: 1rem;
}
.placeholder-body { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1rem; max-width: 62ch; }
.placeholder-body.small { font-size: 0.88rem; opacity: 0.8; }
.placeholder-body code {
  background: var(--sand-deep);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

/* --- Inquiry form -------------------------------------- */
.inquiry {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.inquiry-copy h2 { margin-bottom: 1.25rem; }
.inquiry-copy p { color: var(--ink-soft); margin-bottom: 2rem; }
.inquiry-direct { display: flex; flex-direction: column; gap: 0.5rem; }
.inquiry-direct a {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--palm);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  width: fit-content;
  transition: color 0.2s;
}
.inquiry-direct a:hover { color: var(--coral); }

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.5rem;
  background: var(--sand);
  border-radius: 4px;
  border-top: 3px solid var(--coral);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 700;
}
.inquiry-form input,
.inquiry-form textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.2s;
  letter-spacing: normal;
  text-transform: none;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(47,168,163,0.15);
}
.inquiry-form textarea { resize: vertical; font-family: var(--f-body); }
.inquiry-form button { margin-top: 0.5rem; align-self: flex-start; }

/* --- Footer -------------------------------------------- */
.footer {
  background: var(--palm-deep);
  color: var(--sand);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(253,246,232,0.15);
}
.footer .brand-name {
  color: var(--sand);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
  font-style: italic;
}
.footer-addr { font-size: 0.9rem; opacity: 0.75; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; opacity: 0.78; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--turq-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a {
  font-family: var(--f-display);
  font-size: 1.1rem;
  opacity: 0.92;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--sunset); }
.footer-bot {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* --- Responsive ---------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .house-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .hg-item.tall { grid-row: span 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-imgs { aspect-ratio: 4/3; max-width: 500px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-item.span-2 { grid-column: span 2; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .quick-stats { gap: 1.5rem 2rem; }
  .qs-num { font-size: 1.8rem; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; gap: 0.5rem; }
  .g-item.span-2 { grid-column: span 1; }
  .inc-grid { grid-template-columns: 1fr; }
  .house-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
}

/* --- Island Club membership ---------------------------- */
.island-club {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunset) 100%);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.island-club::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 200%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(253,246,232,0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 70%, rgba(47,168,163,0.2) 0%, transparent 45%);
  pointer-events: none;
}
.club-inner { max-width: 800px; margin: 0 auto; position: relative; }
.club-badge {
  display: inline-block;
  background: rgba(253,246,232,0.95);
  color: var(--coral-deep);
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.island-club h2 {
  color: var(--paper);
  margin-bottom: 1.5rem;
}
.island-club h2 em {
  color: var(--palm-deep);
  font-style: italic;
  text-shadow: 0 1px 0 rgba(253,246,232,0.2);
}
.club-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.club-perks {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.club-perk {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(253,246,232,0.2);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(253,246,232,0.35);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}
.club-icon { font-size: 1.3rem; }

/* --- Review headlines ---------------------------------- */
blockquote .review-headline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--palm);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
blockquote p:not(.review-headline) {
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  font-family: var(--f-body);
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 520px) {
  .club-perks { flex-direction: column; align-items: center; }
}

/* --- Hero-style photo breaks --------------------------- */
.photo-break {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
.photo-break.tall {
  height: 65vh;
  min-height: 500px;
}
.break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,56,58,0.45) 0%, rgba(6,56,58,0.65) 100%);
}
.break-content {
  position: relative;
  max-width: 780px;
  padding: 0 var(--pad);
  z-index: 2;
}
.break-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sunset);
  background: rgba(6,56,58,0.5);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(244,162,97,0.3);
}
.break-quote {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(6,56,58,0.4);
}
.break-cite {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turq-light);
  font-style: normal;
}

@media (max-width: 900px) {
  .photo-break { height: 45vh; min-height: 340px; }
  .photo-break.tall { height: 50vh; min-height: 400px; }
}

/* --- Two-step booking flow ----------------------------- */
.two-step {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 6vw, 5rem);
}
.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.step-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--sand);
  border-radius: 6px;
  border-top: 3px solid var(--turquoise);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.step-card.highlighted {
  background: linear-gradient(135deg, var(--palm) 0%, var(--palm-deep) 100%);
  color: var(--sand);
  border-top-color: var(--coral);
}
.step-num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--coral);
  margin-bottom: 1rem;
}
.step-card.highlighted .step-num { color: var(--sunset); }
.step-card h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.step-card.highlighted h2 { color: var(--sand); }
.step-card p {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.step-card.highlighted p {
  color: rgba(253,246,232,0.92);
}
.step-cta {
  margin-bottom: 1.25rem;
}
.step-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 0;
  opacity: 0.85;
}
.step-card.highlighted .step-note {
  color: rgba(253,246,232,0.7);
}

.book-benefits .bene-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--coral);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.inquiry-tip {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--sand-warm);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

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

/* --- Book page hero override --------------------------- */
.hero.book-hero {
  height: 75vh;
  min-height: 540px;
}
.hero.book-hero .hero-content {
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

/* --- Things to Do -------------------------------------- */
.things-to-do {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.things-to-do::before {
  content: '';
  position: absolute;
  top: 5%; right: -8%;
  width: 30%; height: 60%;
  background: radial-gradient(circle, rgba(244,162,97,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ttd-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.things-to-do h2 { margin-bottom: 1.5rem; }
.things-to-do .lead { margin-bottom: 4rem; }

.ttd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.ttd-card {
  background: var(--sand);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--line);
}
.ttd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 50px -22px rgba(13,92,94,0.25);
}
.ttd-card.big {
  grid-column: span 2;
  flex-direction: row;
  min-height: 360px;
}
.ttd-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.ttd-card.big img {
  width: 50%;
  height: auto;
  aspect-ratio: auto;
  align-self: stretch;
  flex-shrink: 0;
}
.ttd-card:hover img { transform: scale(1.04); }
.ttd-meta {
  padding: 1.75rem 1.85rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ttd-card.big .ttd-meta {
  padding: clamp(2rem, 3vw, 2.75rem);
  justify-content: center;
}
.ttd-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--turq-light);
  color: var(--palm-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.ttd-card.big .ttd-tag {
  background: var(--coral);
  color: var(--paper);
}
.ttd-meta h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--palm);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.ttd-card.big .ttd-meta h3 {
  font-size: clamp(1.75rem, 2.6vw, 2.2rem);
  margin-bottom: 1.1rem;
}
.ttd-meta p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.ttd-meta p:last-of-type { margin-bottom: 0; }
.ttd-note {
  font-size: 0.88rem !important;
  font-style: italic;
  color: var(--coral) !important;
  margin-top: 0.5rem;
}
.ttd-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--turquoise);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s;
}
.ttd-link:hover { color: var(--coral); }

@media (max-width: 900px) {
  .ttd-grid { grid-template-columns: 1fr; }
  .ttd-card.big { grid-column: span 1; flex-direction: column; min-height: 0; }
  .ttd-card.big img { width: 100%; aspect-ratio: 16/10; }
}

/* --- Video photo-break (dolphins) ---------------------- */
.video-break {
  position: relative;
  height: 75vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #4a8fa3 0%, #3d6f7a 100%); /* gulf-water gradient as letterbox bg */
}
.break-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}
.video-break .break-overlay {
  background: linear-gradient(180deg, rgba(6,56,58,0.3) 0%, rgba(6,56,58,0.55) 100%);
}

/* --- Portrait card variant ----------------------------- */
/* For phone-shot photos in 3/4 portrait orientation. Image gets a taller
   aspect ratio so the whole subject is visible without cropping. */
.ttd-card.portrait img {
  aspect-ratio: 3/4;
  object-position: center;
}

/* Big fishing card: portrait image on left, contain rather than cover */
.ttd-card.big img[src*="ttd-fishing"] {
  object-fit: contain;
  background: var(--sand);
  object-position: center center;
}

@media (max-width: 900px) {
  .video-break {
    height: 50vh;
    min-height: 380px;
  }
}

/* Position text at the bottom of the video moment so it doesn't cover the dolphins */
.video-break {
  align-items: flex-end;
}
.video-break-content {
  padding-bottom: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(6,56,58,0.7));
  width: 100%;
  max-width: none;
  padding: 5rem var(--pad) 2.5rem;
}
