/* ============================================================
   Island City Vacation Rentals — stylesheet
   Boutique coastal · South Florida
   ============================================================ */

:root {
  --navy: #0f2b46;
  --navy-soft: #1c3e5c;
  --white: #ffffff;
  --sand: #f7f5f0;
  --sand-deep: #efe9de;
  --gray: #6b7280;
  --gray-light: #9aa1ab;
  --ink: #16222e;
  --teal: #2a9d8f;
  --teal-deep: #218377;
  --gold: #e9c46a;
  --line: rgba(15, 43, 70, 0.10);
  --line-strong: rgba(15, 43, 70, 0.18);
  --shadow-sm: 0 2px 10px rgba(15, 43, 70, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 43, 70, 0.12);
  --shadow-lg: 0 30px 70px rgba(15, 43, 70, 0.18);
  --serif: "Cormorant Garamond", "Noto Serif JP", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1240px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}

.section { padding: 96px 0; }
.section--sand { background: var(--sand); }

.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.section-head p { color: var(--gray); margin-top: 16px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sand); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--teal); font-size: 0.96rem;
  transition: gap .25s ease, color .25s ease;
}
.link-arrow svg { transition: transform .25s ease; }
.link-arrow:hover { color: var(--teal-deep); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(42,157,143,0.16), rgba(15,43,70,0.20)),
    repeating-linear-gradient(45deg, #dfe7e6 0 14px, #d6e0df 14px 28px);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.72rem; letter-spacing: 0.04em;
  color: rgba(15,43,70,0.55);
  text-transform: uppercase;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: nowrap;
  height: 82px;
}
.brand { display: flex; flex-direction: row; align-items: center; gap: 11px; line-height: 1; flex-shrink: 0; cursor: pointer; text-decoration: none; }
.brand__logo { height: 48px; width: auto; flex-shrink: 0; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: "Cormorant Garamond", "Noto Serif JP", Georgia, "Times New Roman", serif; font-weight: 600; color: var(--navy);
  font-size: 1.14rem; letter-spacing: -0.01em; white-space: nowrap;
}
.brand__name b { color: var(--teal); font-weight: 600; }
.brand__tag {
  font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); margin-top: 6px; font-weight: 600; white-space: nowrap;
}

.nav { display: flex; align-items: center; flex-wrap: nowrap; gap: 2px; margin-left: auto; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 8px 9px; border-radius: 8px;
  font-weight: 600; font-size: 0.8rem; color: var(--navy);
  cursor: pointer; transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--sand); color: var(--teal-deep); }
.nav__link svg { opacity: .6; transition: transform .25s ease; }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-md);
  padding: 8px; min-width: 248px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 8px;
  font-size: 0.93rem; font-weight: 500; color: var(--navy);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.dropdown a:hover { background: var(--sand); color: var(--teal-deep); padding-left: 20px; }

.header__right { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.header__phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  transition: color .2s ease; white-space: nowrap;
}
.header__phone:hover { color: var(--teal-deep); }
.header__phone svg { color: var(--teal); }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  border: 1.5px solid var(--line-strong); background: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 0.85rem;
  color: var(--navy); cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.lang__btn:hover { border-color: var(--teal); background: var(--sand); }
.lang__btn svg { opacity: .55; }
.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-md);
  padding: 7px; min-width: 200px; z-index: 50;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left; padding: 10px 13px; border-radius: 8px;
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; color: var(--navy);
  transition: background .16s ease;
}
.lang__opt:hover { background: var(--sand); }
.lang__opt[aria-selected="true"] { color: var(--teal-deep); font-weight: 700; }
.lang__opt small { color: var(--gray-light); font-weight: 600; font-size: 0.74rem; letter-spacing: .08em; }

.btn--contact { padding: 11px 22px; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: min(840px, 92vh); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 2s ease-in-out;
}
.hero__video.active { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,43,70,0.42) 0%, rgba(15,43,70,0.22) 38%, rgba(15,43,70,0.50) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 80px 0 64px; }
.hero__tagline {
  color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  max-width: 16ch; margin: 0 0 14px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.28);
}
.hero__sub {
  color: rgba(255,255,255,0.92); font-size: 1.12rem; font-weight: 500;
  max-width: 44ch; margin: 0 0 40px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.3);
}

/* Search bar */
.search {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  max-width: 940px;
}
.search__tabs { display: flex; gap: 6px; padding: 4px 4px 12px; }
.search__tab {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  color: var(--gray); padding: 9px 18px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.search__tab.active { background: var(--navy); color: #fff; }
.search__tab:not(.active):hover { background: var(--sand); color: var(--navy); }

.search__fields {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.9fr auto; gap: 6px;
  align-items: stretch;
}
.search__fields--name { grid-template-columns: 1fr auto; }
.field {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 16px; border-radius: var(--r);
  background: var(--sand); transition: background .2s ease;
  min-width: 0;
}
.field:hover { background: var(--sand-deep); }
.field label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray);
}
.field input, .field select {
  border: 0; background: transparent; font-family: var(--sans);
  font-size: 0.98rem; font-weight: 600; color: var(--navy);
  padding: 1px 0; width: 100%; outline: none;
}
.field input::placeholder { color: var(--gray-light); font-weight: 500; }
.search__submit {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; cursor: pointer; background: var(--teal); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  border-radius: var(--r); padding: 0 30px;
  transition: background .2s ease;
}
.search__submit:hover { background: var(--teal-deep); }

/* ============================================================
   INTRO
   ============================================================ */
.intro { text-align: center; }
.intro__grid { max-width: 760px; margin: 0 auto; }
.intro h2 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); }
.intro__copy { display: grid; gap: 18px; margin: 28px 0 36px; }
.intro__copy p { color: var(--gray); font-size: 1.1rem; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm);
}
.tile .ph { position: absolute; inset: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.tile:hover .ph { transform: scale(1.07); }
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.tile:hover .tile__img { transform: scale(1.07); }
.tile__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,43,70,0) 30%, rgba(15,43,70,0.72) 100%);
}
/* lower-left-weighted overlay for bright/sunset photos (e.g. the pier) */
.tile__veil--ll {
  background:
    linear-gradient(180deg, rgba(15,43,70,0) 30%, rgba(15,43,70,0.72) 100%),
    radial-gradient(120% 95% at 12% 100%, rgba(15,43,70,0.55) 0%, rgba(15,43,70,0.18) 42%, rgba(15,43,70,0) 70%);
}
.tile__label {
  position: absolute; left: 26px; bottom: 24px; z-index: 2;
  color: #fff;
}
.tile__label .k { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.82; font-weight: 600; margin-bottom: 6px; }
.tile__label .t { font-family: var(--serif); font-size: 1.72rem; font-weight: 600; }
.tile__arrow {
  position: absolute; right: 22px; bottom: 22px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transform: translateY(8px); opacity: 0; transition: .35s ease;
}
.tile:hover .tile__arrow { transform: translateY(0); opacity: 1; }

/* ============================================================
   WHY BOOK
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card { text-align: center; padding: 12px; }
.why-card__icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.section--sand .why-card__icon { background: #fff; }
.why-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.why-card p { color: var(--gray); font-size: 1.04rem; }

/* ============================================================
   FEATURED PROPERTIES
   ============================================================ */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prop-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.prop-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.prop-card__media .ph { position: absolute; inset: 0; }
.prop-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.prop-card:hover .prop-card__media img { transform: scale(1.06); }
.prop-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.95); color: var(--navy);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 7px 13px; border-radius: 999px;
}
.prop-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prop-card__loc { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-bottom: 8px; }
.prop-card__name { font-size: 1.46rem; margin-bottom: 8px; }
.prop-card__sub { color: var(--gray); font-size: 0.96rem; margin-bottom: 16px; min-height: 1.4em; }
.prop-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.prop-card__rating .stars { color: var(--gold); letter-spacing: 1px; }
.prop-card__rating .count { color: var(--gray); font-weight: 500; }
.prop-card__specs {
  display: flex; gap: 18px; padding-top: 16px; margin-top: auto;
  border-top: 1px solid var(--line); color: var(--gray); font-weight: 600; font-size: 0.9rem;
}
.spec { display: inline-flex; align-items: center; gap: 7px; }
.spec svg { color: var(--navy); opacity: .65; }
.prop-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.prop-card__price { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.prop-card__price span { font-family: var(--sans); font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--navy);
}
.faq__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); position: relative; transition: .3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--navy);
  top: 50%; left: 50%; transform: translate(-50%, -50%); transition: .3s ease;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item.open .faq__icon { background: var(--teal); border-color: var(--teal); }
.faq__item.open .faq__icon::before, .faq__item.open .faq__icon::after { background: #fff; }
.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { color: var(--gray); font-size: 1.05rem; padding: 0 4px 28px; max-width: 70ch; }

/* ============================================================
   PLAN YOUR VACATION
   ============================================================ */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.plan-tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  padding: 40px; color: #fff;
}
.plan-tile .ph { position: absolute; inset: 0; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.plan-tile:hover .ph { transform: scale(1.06); }
.plan-tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.plan-tile:hover .plan-tile__img { transform: scale(1.06); }
.plan-tile__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,43,70,0.15) 0%, rgba(15,43,70,0.78) 100%); }
/* extra lower-weighted darkening for bright-sky photos (Las Olas sunrise) */
.plan-tile__veil--low {
  background:
    linear-gradient(180deg, rgba(15,43,70,0.22) 0%, rgba(15,43,70,0.40) 45%, rgba(15,43,70,0.85) 100%);
}
.plan-tile__content { position: relative; z-index: 2; }
.plan-tile__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.plan-tile h3 { color: #fff; font-size: 2rem; margin-bottom: 18px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info .eyebrow { color: var(--teal); }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.contact-info > p { color: var(--gray); font-size: 1.08rem; margin-bottom: 34px; }
.contact-list { display: grid; gap: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-row__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.section--sand .contact-row__icon { background: #fff; }
.contact-row__k { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); font-weight: 700; margin-bottom: 3px; }
.contact-row__v { font-weight: 600; color: var(--navy); font-size: 1.06rem; }
.contact-row__v a:hover { color: var(--teal-deep); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form__group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.form input, .form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--navy);
  border: 1.5px solid var(--line-strong); border-radius: var(--r);
  padding: 13px 15px; background: var(--sand); transition: border-color .2s ease, background .2s ease;
  width: 100%; resize: vertical;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.74); padding: 76px 0 0; }
.footer a { color: rgba(255,255,255,0.74); transition: color .2s ease; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 56px; padding-bottom: 56px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__name b { color: var(--gold); }
.footer__brand .brand__tag { color: rgba(255,255,255,0.5); }
.footer__blurb { margin: 22px 0 26px; font-size: 0.98rem; max-width: 38ch; }
.social { display: flex; gap: 12px; }
.social a {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.social a:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.footer__links { display: grid; gap: 13px; font-size: 0.96rem; }
.footer__news p { font-size: 0.96rem; margin-bottom: 18px; }
.news-form { display: flex; gap: 8px; }
.news-form input {
  flex: 1; min-width: 0; font-family: var(--sans); font-size: 0.94rem;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06);
  color: #fff; border-radius: 999px; padding: 13px 18px;
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { outline: none; border-color: var(--teal); }
.news-form .btn { padding: 13px 22px; }
.footer__contact { display: grid; gap: 10px; margin-top: 26px; font-size: 0.95rem; }
.footer__contact .k { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
}

/* ============================================================
   MOBILE NAV PANEL
   ============================================================ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--navy);
  color: #fff; padding: 28px; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1); overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav__close { background: none; border: 0; color: #fff; cursor: pointer; font-size: 2rem; line-height: 1; }
.mobile-nav a, .mobile-nav__group > span {
  display: block; color: #fff; padding: 13px 4px; font-size: 1.1rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__group > span { color: var(--gold); font-size: 0.8rem; letter-spacing: .14em; text-transform: uppercase; border: 0; padding-bottom: 4px; }
.mobile-nav__group a { padding-left: 16px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); }

/* ============================================================
   SECONDARY PAGES — hero band, prose
   ============================================================ */
.page-hero {
  background: var(--navy); color: #fff; padding: 72px 0 64px; text-align: center;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 60ch; margin: 18px auto 0; font-size: 1.1rem; }

.content { max-width: 760px; margin: 0 auto; }
.content p { color: var(--gray); font-size: 1.1rem; margin-bottom: 20px; }
.content h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 44px 0 18px; }
.content h3 { font-size: 1.5rem; margin: 32px 0 12px; }
.content ul { color: var(--gray); font-size: 1.08rem; padding-left: 22px; margin-bottom: 20px; }
.content li { margin-bottom: 10px; }

/* Two-column area guide blocks */
.guide-block { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 56px; }
.guide-block:nth-child(even) .guide-block__media { order: 2; }
.guide-block__media { aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sand-deep); }
.guide-block__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.guide-block h3 { font-size: 1.9rem; margin-bottom: 14px; }
.guide-block p { color: var(--gray); font-size: 1.06rem; }
.guide-block__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: 0.86rem; font-weight: 600; color: var(--navy); }
.section--sand .tag { background: #fff; }

/* ============================================================
   LISTING — filters + grid
   ============================================================ */
.listing-wrap { padding: 56px 0 96px; }
.filters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 26px 32px; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.filter-group { display: flex; flex-direction: column; gap: 9px; }
.filter-group__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.seg { display: inline-flex; flex-wrap: wrap; gap: 6px; background: var(--sand); padding: 5px; border-radius: 999px; }
.seg--multi { background: transparent; padding: 0; }
.seg__btn {
  border: 0; cursor: pointer; background: transparent; font-family: var(--sans);
  font-weight: 600; font-size: 0.9rem; color: var(--navy); padding: 9px 16px; border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap;
}
.seg__btn:hover { color: var(--teal-deep); }
.seg__btn.active { background: var(--navy); color: #fff; }
.seg--multi .seg__btn { border: 1.5px solid var(--line-strong); }
.seg--multi .seg__btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.filters__clear { margin-left: auto; align-self: center; border: 0; background: none; cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.listing-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 30px 0 26px; }
#result-count { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-weight: 600; }
.listing-grid { grid-template-columns: repeat(3, 1fr); }
.listing-empty .empty { text-align: center; padding: 80px 20px; }
.empty h3 { font-size: 1.8rem; margin-bottom: 12px; }
.empty p { color: var(--gray); margin-bottom: 26px; }

/* ============================================================
   PROPERTY DETAIL
   ============================================================ */
.detail__top { padding: 28px 0 0; }
.detail__back { font-weight: 600; }
.detail { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 30px 0 96px; align-items: start; }
.gallery { margin-bottom: 36px; }
.gallery__main { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-lg); overflow: hidden; background: var(--sand-deep); box-shadow: var(--shadow-sm); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__soon { position: absolute; bottom: 16px; left: 16px; background: rgba(15,43,70,0.78); color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; padding: 7px 14px; border-radius: 999px; }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.gallery__thumb { width: 92px; height: 70px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--sand-deep); transition: border-color .2s ease; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.active { border-color: var(--teal); }
.detail__name { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.detail__sub { color: var(--gray); font-size: 1.2rem; margin-bottom: 22px; }
.detail__specs { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 600; }
.detail__specs .spec svg { color: var(--teal); opacity: 1; }
.detail__h { font-size: 1.7rem; margin: 36px 0 16px; }
.detail__desc p { color: var(--gray); font-size: 1.08rem; margin-bottom: 16px; }
.amenities { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.amenities li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 500; }
.amen__ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.detail__aside { position: sticky; top: 104px; }
.booking-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 12px; }
.booking-card__loc { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.booking-card__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); line-height: 1.15; }
.booking-card__specs { color: var(--gray); font-weight: 600; font-size: 0.95rem; padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.booking-card .btn { width: 100%; justify-content: center; }
.booking-card__call { text-align: center; font-weight: 700; color: var(--navy); margin-top: 6px; }
.booking-card__call:hover { color: var(--teal-deep); }

/* Owners / forms extras */
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.owners-points { display: grid; gap: 22px; margin-top: 10px; }
.owners-point { display: flex; gap: 16px; }
.owners-point__ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--sand); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.section--sand .owners-point__ic { background: #fff; }
.owners-point h3 { font-size: 1.3rem; margin-bottom: 4px; }
.owners-point p { color: var(--gray); font-size: 1rem; }
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.stat__n { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--navy); line-height: 1; }
.stat__l { color: var(--gray); font-size: 0.92rem; font-weight: 600; margin-top: 6px; }

/* Legal */
.legal { max-width: 760px; margin: 0 auto; }
.legal p, .legal li { color: var(--gray); font-size: 1.02rem; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal .lead { color: var(--gray); font-size: 1.08rem; }
.legal ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.legal ul li { position: relative; padding-left: 22px; line-height: 1.6; }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.legal a { color: var(--teal-deep); font-weight: 600; }
.legal a:hover { text-decoration: underline; text-underline-offset: 3px; }
.policy-contact {
  background: var(--sand); border-left: 4px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0; padding: 24px 28px; margin: 8px 0 4px;
}
.policy-contact h2 { margin-top: 0; }
.policy-contact p { margin-bottom: 4px; }
.policy-contact .pc-name { font-weight: 700; color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1240px) {
  .nav, .header__phone { display: none; }
  .hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__news { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .section { padding: 72px 0; }
  .search__fields { grid-template-columns: 1fr 1fr; }
  .search__submit { grid-column: 1 / -1; padding: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; max-width: 460px; margin: 0 auto; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .plan-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1fr; gap: 32px; }
  .detail__aside { position: static; order: -1; }
  .guide-block { grid-template-columns: 1fr; gap: 24px; }
  .guide-block:nth-child(even) .guide-block__media { order: 0; }
  .owners-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .header__bar { height: 70px; gap: 14px; }
  .brand__name { font-size: 1.15rem; }
  .brand__logo { height: 38px; }
  .brand__tag { display: none; }
  .lang__btn span.lang__full { display: none; }
  .search__fields { grid-template-columns: 1fr; }
  .search__fields--name { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .filters { gap: 18px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__inner { padding: 56px 0 48px; }
}


/* ============================================================
   PROPERTY DETAIL v2
   ============================================================ */
.d-head { padding: 26px 0 22px; }
.d-head__badge { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-deep); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.d-head__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 18px; }
.d-rating { display: flex; align-items: center; gap: 9px; color: var(--gray); font-weight: 600; font-size: 0.92rem; }
.d-rating .stars { color: var(--gold); letter-spacing: 1px; }

.detail2 { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; padding: 8px 0 80px; align-items: start; }
.detail2__aside { position: sticky; top: 96px; align-self: start; display: grid; gap: 16px; }
.bk-widget { display: grid; gap: 18px; }
.bk-widget__h { font-family: var(--serif); font-weight: 600; color: var(--navy); font-size: 1.5rem; }
.bk-callout { text-align: center; color: var(--gray); font-weight: 600; font-size: 0.95rem; padding: 4px 0 2px; }
.bk-callout span { color: var(--teal); }
.bk-callout:hover span { color: var(--teal-deep); }

/* gallery */
.gallery2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; margin-bottom: 8px; }
.g-hero { grid-row: span 2; position: relative; border: 0; padding: 0; cursor: pointer; border-radius: var(--r-lg) 0 0 var(--r-lg); overflow: hidden; background: var(--sand-deep); aspect-ratio: auto; min-height: 420px; }
.g-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.g-cell { position: relative; border: 0; padding: 0; cursor: pointer; overflow: hidden; background: var(--sand-deep); min-height: 204px; }
.g-cell:nth-child(2) { border-top-right-radius: var(--r-lg); }
.g-cell:nth-child(4) { border-bottom-right-radius: var(--r-lg); }
.gallery2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); display: block; }
.g-hero:hover img, .g-cell:hover img { transform: scale(1.05); }
.g-soon { position: absolute; bottom: 16px; left: 16px; background: rgba(15,43,70,0.78); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
.g-more { position: absolute; inset: 0; background: rgba(15,43,70,0.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; }
/* single-image gallery */
.gallery2:not(:has(.g-grid)) { grid-template-columns: 1fr; }
.gallery2:not(:has(.g-grid)) .g-hero { border-radius: var(--r-lg); min-height: 460px; }

/* sections */
.d-sec { padding: 30px 0; border-top: 1px solid var(--line); }
.d-sec:first-of-type { border-top: 0; padding-top: 22px; }
.d-sec__h { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-bottom: 16px; }
.d-prose p { color: var(--gray); font-size: 1.08rem; line-height: 1.75; }

/* property details */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.pd-row { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.pd-k { color: var(--gray); font-weight: 600; }
.pd-v { color: var(--navy); font-weight: 600; text-align: right; }

/* amenities */
.amen-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; max-height: 300px; overflow: hidden; position: relative; transition: max-height .45s ease; }
.amen-wrap.open { max-height: 1400px; }
.amen-wrap:not(.open)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(180deg, rgba(255,255,255,0), #fff); }
.section--sand .amen-wrap:not(.open)::after { background: linear-gradient(180deg, rgba(247,245,240,0), var(--sand)); }
.amen-cat { padding: 14px 0; }
.amen-cat h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 12px; font-weight: 700; }
.amen-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.amen-list li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 500; }
.amen2-ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; background: var(--sand); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.amen-toggle { margin-top: 20px; background: none; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 12px 26px; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--navy); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.amen-toggle:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

/* getting around */
.ga-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 36px; }
.ga-row { display: flex; gap: 14px; }
.ga-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--sand); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.ga-k { font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.ga-v { color: var(--gray); font-size: 0.98rem; line-height: 1.5; }

/* rules */
.rules-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.rules-list li { color: var(--gray); font-size: 1.02rem; position: relative; padding-left: 20px; }
.rules-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.rules-list--check li { padding-left: 0; display: flex; align-items: center; gap: 10px; }
.rules-list--check li::before { display: none; }
.rules-list--check li svg { color: var(--teal); flex-shrink: 0; }

/* booking card */
.bk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 14px; }
.bk-rate { display: flex; align-items: baseline; gap: 8px; }
.bk-rate__n { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--navy); }
.bk-rate__u { color: var(--gray); font-weight: 600; font-size: 0.92rem; }
.bk-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-field { display: flex; flex-direction: column; gap: 5px; }
.bk-field > span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }
.bk-field input, .bk-field select { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--navy); border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 11px 12px; background: var(--sand); width: 100%; }
.bk-field input:focus, .bk-field select:focus { outline: none; border-color: var(--teal); background: #fff; }
.bk-calc { font-size: 0.92rem; color: var(--gray); text-align: center; padding: 4px 0; }
.bk-line { display: flex; justify-content: space-between; gap: 12px; color: var(--gray); font-size: 0.95rem; padding: 4px 0; text-align: left; }
.bk-line--total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 10px; color: var(--navy); font-weight: 700; font-size: 1.02rem; }
.bk-note { font-size: 0.78rem; color: var(--gray-light); text-align: center; margin-top: 6px; }
.bk-card .btn { width: 100%; justify-content: center; }
.bk-warn { margin: 0; font-size: 0.86rem; line-height: 1.45; color: #c0772f; font-weight: 600; text-wrap: pretty; }
.bk-reserve { transition: background .2s ease, color .2s ease, opacity .2s ease, box-shadow .2s ease, transform .2s ease; }
.btn.btn--disabled, .btn.btn--disabled:hover {
  background: #d1d5db; color: #6b7280; opacity: 0.6;
  cursor: not-allowed; box-shadow: none; transform: none; border-color: transparent;
}
.bk-call { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: 0.95rem; margin-top: 2px; }
.bk-call:hover { color: var(--teal-deep); }
.bk-call svg { color: var(--teal); }

.aside-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; }
.aside-block h3 { font-size: 1.2rem; margin-bottom: 14px; }
.bk-info { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.bk-info li { display: flex; justify-content: space-between; gap: 14px; font-size: 0.92rem; }
.bk-info li span { color: var(--gray); }
.bk-info li b { color: var(--navy); font-weight: 600; text-align: right; }
.bk-info li.bk-info__note { display: block; margin-top: -5px; }
.bk-info__note em { color: var(--gray); font-style: italic; font-size: 0.78rem; line-height: 1.5; font-weight: 400; }
.bk-cancel { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.bk-cancel__h { color: var(--navy); font-weight: 600; font-size: 0.92rem; margin-bottom: 12px; }
.bk-cancel__list { list-style: disc; margin: 0; padding-left: 18px; display: grid; gap: 10px; }
.bk-cancel__list li { color: var(--gray); font-size: 0.88rem; line-height: 1.55; }
.bk-cancel__list li::marker { color: var(--teal); }

/* map placeholder */
.map-ph { position: relative; height: 170px; border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--navy);
  background: var(--sand-deep);
  background-image: linear-gradient(rgba(15,43,70,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15,43,70,0.06) 1px, transparent 1px);
  background-size: 26px 26px; }
.map-ph__pin { color: var(--teal); }
.map-ph__area { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }
.map-cap { font-size: 0.82rem; color: var(--gray); margin-top: 10px; text-align: center; }

/* similar */
.similar { padding: 16px 0 90px; border-top: 1px solid var(--line); }
.similar__head { margin: 30px 0 26px; }
.similar-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.similar-row .prop-card:nth-child(n+4) { display: none; }
.similar__foot { text-align: center; margin-top: 40px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 5000; background: rgba(8, 16, 26, 0.95); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lb-stage { display: flex; align-items: center; justify-content: center; gap: 28px; width: 100%; height: 100%; padding: 0 24px; box-sizing: border-box; }
.lb-img {
  object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  opacity: 1; transition: opacity .2s ease;
  max-width: 85vw; max-height: 85vh;
  min-width: min(80vmin, 85vw); min-height: 0;
}
.lb-close {
  position: absolute; top: 24px; right: 24px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.14); border: 0; color: #fff;
  font-size: 2rem; line-height: 1; cursor: pointer; opacity: .9;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, opacity .2s ease;
}
.lb-close:hover { opacity: 1; background: rgba(255,255,255,0.26); }
.lb-nav {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,0.16); color: #fff; font-size: 2rem; line-height: 1;
  cursor: pointer; transition: background .2s ease; backdrop-filter: blur(2px);
}
.lb-nav:hover { background: rgba(255,255,255,0.32); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 600; font-size: 0.92rem; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

@media (min-width: 1024px) { .lb-img { max-width: 85vw; max-height: 85vh; } }
@media (min-width: 768px) and (max-width: 1023px) { .lb-img { max-width: 86vw; max-height: 85vh; } }

@media (max-width: 1024px) {
  .detail2 { grid-template-columns: 1fr; gap: 36px; }
  .detail2__aside { position: static; grid-template-columns: 1fr; }
  .bk-widget__h { font-size: 1.6rem; }
}
@media (max-width: 760px) {
  .gallery2 { grid-template-columns: 1fr; }
  .g-hero { border-radius: var(--r-lg); min-height: 300px; grid-row: auto; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-cell { min-height: 130px; border-radius: var(--r) !important; }
  .pd-grid, .amen-wrap, .ga-grid { grid-template-columns: 1fr; }
  .amen-wrap { max-height: 360px; }
  .similar-row { grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 80%; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .similar-row .prop-card { scroll-snap-align: start; }
  .similar-row .prop-card:nth-child(n+4) { display: flex; }
  .lb-stage { gap: 8px; padding: 0 8px; }
  .lb-nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lb-img { max-width: 95vw; max-height: 90vh; min-width: 0; }
}

/* content-driven detail bits */.amen-flat { grid-template-columns: repeat(2, 1fr); gap: 13px 28px; }
.amen-more { margin-top: 16px; color: var(--gray); font-weight: 600; font-size: 0.95rem; }
.pd-note { color: var(--gray); font-size: 1.02rem; line-height: 1.7; margin-top: 18px; }
.d-rules-text { color: var(--gray); font-size: 1.0rem; line-height: 1.7; white-space: pre-line; }
@media (max-width: 760px) { .amen-flat { grid-template-columns: 1fr; } }

/* ============================================================
   CORAL RIDGE — flagged shared-complex sections
   ============================================================ */
.d-sec__h--ic { display: flex; align-items: center; gap: 12px; }
.d-sec__ic { display: inline-flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.cr-box {
  background: var(--sand);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 26px 30px;
}
.cr-intro { color: var(--navy); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.cr-prose { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.cr-sub { font-family: var(--serif); color: var(--navy); font-size: 1.3rem; font-weight: 600; margin: 22px 0 14px; }
.cr-list { list-style: none; padding: 0; margin: 0 0 4px; display: grid; gap: 12px; }
.cr-list li { color: var(--gray); font-size: 1rem; line-height: 1.65; padding-left: 18px; position: relative; }
.cr-list li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.cr-list__k { color: var(--navy); font-weight: 700; }
.cr-list__v { color: var(--gray); }
.cr-foot { color: var(--gray); font-size: 0.98rem; line-height: 1.7; margin-top: 18px; }
.cr-foot a { color: var(--teal-deep); font-weight: 600; }
.cr-foot a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .cr-box { padding: 18px 18px; }
  .cr-sub { font-size: 1.18rem; }
}

/* ============================================================
   HERO — Find Property by Name autocomplete
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.namesearch { position: relative; }
.namesearch__menu {
  list-style: none; margin: 0; padding: 6px;
  position: absolute; top: calc(100% + 1px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--sand);
  border-radius: 6px; box-shadow: 0 18px 44px rgba(15,43,70,0.18);
  max-height: 320px; overflow-y: auto;
  display: none;
}
.namesearch__menu.open { display: block; }
.namesearch__opt {
  padding: 12px 16px; border-radius: 6px; cursor: pointer;
  transition: background .14s ease;
}
.namesearch__opt.active, .namesearch__opt:hover { background: var(--sand); }
.namesearch__top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.namesearch__name { font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.3; }
.namesearch__name mark { background: transparent; color: var(--teal); font-weight: 800; }
.namesearch__area { flex-shrink: 0; color: var(--gray); font-size: 0.86rem; font-weight: 600; }
.namesearch__specs { color: var(--gray); font-size: 0.84rem; margin-top: 3px; }
.namesearch__empty { padding: 14px 16px; color: var(--gray); font-size: 0.94rem; }

/* ============================================================
   AREA GUIDE PAGES
   ============================================================ */
.guide-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; overflow: hidden; }
.guide-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.guide-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,43,70,0.30) 0%, rgba(15,43,70,0.42) 45%, rgba(15,43,70,0.82) 100%); }
.guide-hero__inner { position: relative; z-index: 2; padding: 0 0 52px; color: #fff; }
.guide-hero__inner h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.9rem); max-width: 20ch; text-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.guide-hero__tag { color: rgba(255,255,255,0.94); font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 500; max-width: 56ch; margin-top: 16px; text-shadow: 0 1px 14px rgba(0,0,0,0.32); }

.guide-body { max-width: 920px; margin: 0 auto; }
.guide-intro p { color: var(--gray); font-size: 1.12rem; line-height: 1.75; margin-bottom: 20px; }
.guide-intro { margin-bottom: 16px; }
.guide-div { border: 0; border-top: 1px solid var(--line); margin: 44px 0; }

.guide-tier { padding-top: 12px; }
.guide-tier__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.guide-tier__ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--sand); color: var(--teal); flex-shrink: 0; }
.guide-tier__head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.guide-tier__blurb { color: var(--gray); font-size: 1.06rem; line-height: 1.7; margin-bottom: 26px; max-width: 70ch; }

.guide-cats { display: grid; gap: 30px; }
.guide-cat__h { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; margin-bottom: 12px; }
.guide-cat__h svg { color: var(--teal); }
.guide-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.guide-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.guide-item:last-child { border-bottom: 0; }
.guide-item__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.guide-item__name { font-weight: 700; color: var(--navy); font-size: 1.05rem; width: max-content; max-width: 100%; transition: color .18s ease; }
.guide-item__name:hover { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.guide-item__desc { color: var(--gray); font-size: 0.98rem; line-height: 1.5; }
.guide-item__dist { color: var(--gray-light); font-size: 0.84rem; }
.guide-item__dist em { font-style: italic; }
.guide-item__pin { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); background: var(--sand); transition: background .18s ease, color .18s ease, transform .18s ease; margin-top: 2px; }
.guide-item__pin:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

.guide-fav { background: var(--sand); border-radius: var(--r-lg); padding: 34px 38px; margin: 48px 0 8px; text-align: left; }
.guide-fav__star { font-size: 1.4rem; line-height: 1; margin-bottom: 10px; }
.guide-fav__star svg { display: none; }
.guide-fav h3 { font-size: 1.5rem; margin-bottom: 14px; }
.guide-fav__quote { font-style: italic; color: var(--ink); font-size: 1.12rem; line-height: 1.7; max-width: 64ch; }
.guide-fav__sign { color: var(--gray); font-size: 0.92rem; margin-top: 16px; }

.guide-cta { text-align: center; margin-top: 46px; }

@media (max-width: 640px) {
  .guide-hero { min-height: 360px; }
  .guide-fav { padding: 24px 22px; }
  .guide-tier__head { position: sticky; top: 64px; z-index: 5; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); padding: 8px 0; margin-left: -4px; padding-left: 4px; }
  .guide-item__pin { width: 44px; height: 44px; }
}

/* ---- Hospitable booking widget (bare — no outer card; widget has its own) ---- */
.hbw { position: relative; background: transparent; border: 0; border-radius: 0; overflow: visible; box-shadow: none; height: auto; min-height: fit-content; padding: 0; }
.hbw__frame { display: block; width: 100%; border: 0; min-height: 560px; }
.hbw__loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--gray); font-weight: 600; font-size: 0.98rem; background: transparent; min-height: 560px; }
.hbw__spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--sand-deep); border-top-color: var(--teal); animation: hbw-spin .8s linear infinite; }
@keyframes hbw-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hbw__spinner { animation-duration: 2.4s; } }

.hbw-fallback { background: var(--sand); border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--r-lg); padding: 30px 32px; }
.hbw-fallback h3 { font-size: 1.5rem; margin-bottom: 10px; }
.hbw-fallback > p { color: var(--gray); font-size: 1.04rem; margin-bottom: 20px; }
.hbw-fallback__contacts { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hbw-fallback__row { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.hbw-fallback__row svg { color: var(--teal); flex-shrink: 0; }
.hbw-fallback__row:hover { color: var(--teal-deep); }
