/* =========================================================
   HARBOUR ISLAND — LUXURY EDITORIAL DESIGN SYSTEM
   Dreamweaver friendly: edit colours and spacing below.
   ========================================================= */
:root {
  --ocean: #103f45;
  --ocean-dark: #082b31;
  --ocean-soft: #1f5d61;
  --shell: #f3c8c7;
  --shell-deep: #dfaaa9;
  --sand: #f7f2e9;
  --ivory: #fffdf8;
  --white: #ffffff;
  --ink: #18383c;
  --muted: #6d7c7d;
  --line: rgba(16, 63, 69, 0.14);
  --gold: #c4a26b;
  --shadow-soft: 0 20px 60px rgba(8, 43, 49, 0.10);
  --shadow-card: 0 24px 70px rgba(8, 43, 49, 0.14);
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 38px;
  --page: min(1320px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.72;
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--shell); color: var(--ocean-dark); }

/* ---------- Announcement ---------- */
.topbar {
  position: relative;
  z-index: 50;
  padding: 10px 24px;
  color: rgba(255,255,255,.92);
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--ocean-dark);
}
.topbar a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 4px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 24px);
  background: rgba(255,253,248,.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, height .25s ease;
}
header.scrolled { box-shadow: 0 12px 35px rgba(8,43,49,.08); }
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.logo img {
  display: block;
  width: clamp(150px, 14vw, 205px);
  height: auto;
}
nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
nav a:not(.pill)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--shell-deep);
  transition: right .25s ease;
}
nav a:not(.pill):hover::after { right: 0; }
.pill {
  padding: 12px 18px;
  color: var(--ocean-dark);
  border-radius: 999px;
  background: var(--shell);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(223,170,169,.32); }
.menu {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ocean);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: transparent;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 122px);
  max-height: 920px;
  overflow: hidden;
  background: var(--ocean-dark);
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn { from { opacity: .35; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }
.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,32,37,.90) 0%, rgba(6,32,37,.63) 45%, rgba(6,32,37,.14) 78%),
    linear-gradient(0deg, rgba(6,32,37,.42) 0%, transparent 45%);
}
.hero-copy {
  position: absolute;
  left: max(7vw, 28px);
  top: 50%;
  width: min(850px, 88vw);
  color: var(--white);
  transform: translateY(-50%);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--ocean-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f4d9d8; }
.hero h1,
.section h2,
.photo-band h2,
.cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 900px;
  font-size: clamp(56px, 7.6vw, 112px);
}
.hero h1 em { color: #f5d1cf; font-weight: 600; }
.hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.primary { color: var(--ocean-dark); background: var(--shell); box-shadow: 0 12px 30px rgba(243,200,199,.20); }
.primary:hover { background: #f8d7d5; box-shadow: 0 16px 34px rgba(243,200,199,.28); }
.glass { color: var(--white); border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.light { color: var(--ocean-dark); background: var(--white); }
.outline { color: var(--white); border: 1px solid rgba(255,255,255,.70); }

/* ---------- Floating quick links ---------- */
.quick {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: -52px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.quick a {
  position: relative;
  min-height: 126px;
  padding: 27px 28px;
  text-decoration: none;
  background: rgba(255,255,255,.98);
  border-right: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}
.quick a:last-child { border-right: 0; }
.quick a:hover { background: #fff7f6; }
.quick a::before {
  content: "0" counter(item);
  counter-increment: item;
  display: block;
  margin-bottom: 11px;
  color: var(--shell-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
}
.quick { counter-reset: item; }
.quick b { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 20px; line-height: 1.2; }
.quick span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.45; }

/* ---------- Global sections ---------- */
.section { padding: 120px max(6vw, 28px); }
.section > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.section h2 { color: var(--ocean); font-size: clamp(44px, 5.2vw, 76px); }
.section h3 { color: var(--ocean); }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .74fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}
.intro > * { max-width: none; margin: 0; }
.feature-img {
  width: 100%;
  margin-top: 44px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.prose { padding-top: 74px; font-size: 17px; }
.prose p:first-child::first-letter {
  float: left;
  margin: 11px 10px 0 0;
  color: var(--shell-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  line-height: .72;
}
.prose h3, .media-split h3 { margin: 34px 0 8px; font-family: "Playfair Display", Georgia, serif; font-size: 28px; }
.text-link { font-weight: 800; text-decoration-color: var(--shell-deep); text-decoration-thickness: 2px; text-underline-offset: 6px; }

/* ---------- Real estate ---------- */
.estate, .dining, .benefits { position: relative; background: var(--sand); }
.estate::before, .dining::before, .benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(16,63,69,.06) .7px, transparent .7px);
  background-size: 12px 12px;
  opacity: .35;
}
.estate > *, .dining > *, .benefits > * { position: relative; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.section-head > div { max-width: 900px; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 280px; color: var(--muted); font-size: 14px; }
.media-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
}
.media-split.reverse { grid-template-columns: .92fr 1.08fr; }
.media-split > img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.media-split > div { font-size: 16px; }
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}
.three article {
  min-height: 220px;
  padding: 34px;
  border: 1px solid rgba(16,63,69,.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
}
.three article::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 25px;
  background: var(--shell-deep);
}
.three h3 { margin: 0 0 12px; font-family: "Playfair Display", Georgia, serif; font-size: 25px; }
.three p { margin: 0; color: var(--muted); }

/* ---------- Pink Sands feature ---------- */
.photo-band {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  min-height: 620px;
  color: var(--white);
  background: var(--ocean);
}
.photo-band img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.photo-band > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(6vw, 44px);
  overflow: hidden;
}
.photo-band > div::after {
  content: "Pink Sands";
  position: absolute;
  right: -55px;
  bottom: 30px;
  color: rgba(255,255,255,.05);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 92px;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}
.photo-band .eyebrow { color: var(--shell); }
.photo-band h2 { font-size: clamp(54px, 5vw, 82px); }
.photo-band p { color: rgba(255,255,255,.78); font-size: 17px; }

/* ---------- Hotels cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8,43,49,.07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.card:hover img { transform: scale(1.035); }
.card div { padding: 28px 29px 31px; }
.card h3 { margin: 0 0 10px; font-family: "Playfair Display", Georgia, serif; font-size: 30px; line-height: 1.1; }
.card p { min-height: 78px; margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.card span, .activities a { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-decoration: underline; text-decoration-color: var(--shell-deep); text-underline-offset: 6px; }

/* ---------- Dining directory ---------- */
.directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.directory > div {
  padding: 34px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,63,69,.10);
}
.directory h3 { margin: 0 0 14px; font-family: "Playfair Display", Georgia, serif; font-size: 27px; }
.directory a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 14px;
}
.directory a::after { content: "↗"; color: var(--shell-deep); }
.directory a:hover { color: var(--shell-deep); }

/* ---------- Activities ---------- */
.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}
.activities article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.activities img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.activities h3 { margin: 26px 26px 8px; font-family: "Playfair Display", Georgia, serif; font-size: 27px; }
.activities p { min-height: 108px; margin: 0 26px 16px; color: var(--muted); font-size: 14px; }
.activities a { display: inline-block; margin: 0 26px 28px; }

/* ---------- Getting here ---------- */
.getting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 100px);
  max-width: none;
  color: var(--white);
  background: var(--ocean-dark);
}
.getting > div { max-width: 650px; margin-left: auto; align-self: center; }
.getting h2 { color: var(--white); }
.getting .eyebrow { color: var(--shell); }
.getting ol { margin: 32px 0; padding: 0; list-style: none; counter-reset: steps; }
.getting li { position: relative; min-height: 46px; margin: 0 0 18px; padding-left: 58px; counter-increment: steps; }
.getting li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--shell);
  font-family: "Playfair Display", Georgia, serif;
}
.getting a { color: var(--white); text-underline-offset: 5px; }
.getting > img { width: 100%; height: 100%; min-height: 670px; object-fit: cover; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }

/* ---------- Benefits ---------- */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; padding: 0; list-style: none; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  background: var(--ocean-soft);
}
.legal { margin-top: 24px; padding: 18px 20px; color: var(--muted); border-left: 3px solid var(--shell-deep); background: rgba(255,255,255,.58); font-size: 12px; }

/* ---------- FAQ ---------- */
.faq details {
  max-width: 1020px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.faq summary { cursor: pointer; list-style: none; color: var(--ocean); font-family: "Playfair Display", Georgia, serif; font-size: 23px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--shell-deep); font-family: "DM Sans", sans-serif; font-size: 25px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 850px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(6,32,37,.70), rgba(6,32,37,.86)); }
.cta > div { position: relative; z-index: 2; max-width: 940px; padding: 80px 28px; }
.cta .eyebrow { color: var(--shell); }
.cta h2 { font-size: clamp(54px, 6vw, 90px); }
.cta p { max-width: 700px; margin: 25px auto 0; color: rgba(255,255,255,.82); font-size: 17px; }
.cta .actions { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
  padding: 78px max(6vw, 28px) 34px;
  color: rgba(255,255,255,.84);
  background: #061f24;
}
footer h3 { margin-top: 0; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 22px; }
footer p { max-width: 470px; color: rgba(255,255,255,.62); }
footer a { display: block; margin: 10px 0; text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--shell); }
footer small { grid-column: 1 / -1; margin-top: 20px; padding-top: 24px; color: rgba(255,255,255,.46); border-top: 1px solid rgba(255,255,255,.12); }
.footer-logo b { color: var(--ocean-dark); background: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px max(5vw, 24px) 34px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(8,43,49,.10);
  }
  nav.open { display: flex; }
  .menu { display: inline-block; }
  .quick { grid-template-columns: 1fr 1fr; }
  .cards, .activities { grid-template-columns: 1fr 1fr; }
  .photo-band { grid-template-columns: 1.15fr .85fr; }
}

@media (max-width: 800px) {
  :root { --page: calc(100vw - 28px); }
  .topbar { font-size: 10px; }
  header { height: 74px; }
  nav { top: 74px; }
  .logo img { width: 145px; }
  .hero { min-height: 690px; height: calc(100vh - 108px); }
  .hero-copy { left: 24px; top: 48%; width: calc(100vw - 48px); }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .shade { background: linear-gradient(90deg, rgba(6,32,37,.88), rgba(6,32,37,.35)); }
  .quick { grid-template-columns: 1fr; margin-top: -34px; }
  .quick a { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 86px 22px; }
  .intro, .media-split, .media-split.reverse, .getting, .photo-band { grid-template-columns: 1fr; }
  .prose { padding-top: 0; }
  .section-head { display: block; }
  .section-head > a, .section-head > p { display: inline-block; margin-top: 20px; }
  .three, .cards, .directory, .activities, footer { grid-template-columns: 1fr; }
  .photo-band img { min-height: 390px; }
  .photo-band > div { min-height: 390px; }
  .getting > div { max-width: none; margin: 0; }
  .getting > img { min-height: 390px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; order: -1; }
  .checks { grid-template-columns: 1fr; }
  .card p, .activities p { min-height: auto; }
  footer small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}


/* ---------- Scrolling hero carousel ---------- */
.hero-carousel { position:absolute; inset:0; }
.hero-slide {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transform:scale(1.045); transition:opacity 1s ease, transform 6.5s ease;
}
.hero-slide.active { opacity:1; transform:scale(1.01); }
.carousel-controls {
  position:absolute; z-index:4; right:max(4vw,24px); bottom:34px;
  display:flex; align-items:center; gap:10px;
}
.carousel-arrow,.carousel-pause,.carousel-dot {
  border:1px solid rgba(255,255,255,.52); color:#fff; background:rgba(6,32,37,.30);
  backdrop-filter:blur(8px); cursor:pointer;
}
.carousel-arrow { width:44px; height:44px; border-radius:50%; font-size:28px; line-height:1; }
.carousel-dots { display:flex; gap:7px; padding:0 4px; }
.carousel-dot { width:9px; height:9px; padding:0; border-radius:50%; background:rgba(255,255,255,.35); }
.carousel-dot.active { background:#fff; transform:scale(1.25); }
.carousel-pause { min-height:40px; padding:0 14px; border-radius:999px; font:700 11px "DM Sans",Arial,sans-serif; text-transform:uppercase; letter-spacing:.08em; }
.carousel-arrow:hover,.carousel-pause:hover { background:rgba(255,255,255,.18); }

/* ---------- 2026 market update ---------- */
.market-update { background:var(--ivory); }
.market-date { color:var(--muted); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.market-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.market-stat { padding:34px 28px; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; box-shadow:var(--shadow-soft); }
.market-stat.featured-stat { background:var(--ocean); color:#fff; }
.stat-label { display:block; min-height:40px; font-size:11px; font-weight:800; letter-spacing:.13em; line-height:1.45; text-transform:uppercase; color:var(--muted); }
.featured-stat .stat-label { color:rgba(255,255,255,.68); }
.market-stat strong { display:block; margin:14px 0 12px; font-family:"Playfair Display",Georgia,serif; font-size:clamp(38px,4vw,58px); line-height:1; color:var(--ocean); }
.featured-stat strong { color:var(--shell); }
.market-stat p { margin:0; font-size:14px; line-height:1.65; color:var(--muted); }
.featured-stat p { color:rgba(255,255,255,.76); }
.market-analysis { display:grid; grid-template-columns:1.25fr .75fr; gap:50px; margin-top:58px; align-items:start; }
.market-analysis > div { font-size:17px; }
.market-analysis h3 { font-family:"Playfair Display",Georgia,serif; font-size:32px; }
.market-takeaway { padding:38px; border-radius:var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm); background:var(--sand); border:1px solid var(--line); }
.market-takeaway .btn { margin-top:14px; }
.source-note { margin-top:36px; padding-top:22px; border-top:1px solid var(--line); color:var(--muted); font-size:12px; line-height:1.65; }

@media (max-width:1120px) { .market-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:800px) {
  .carousel-controls { right:18px; bottom:18px; }
  .carousel-arrow { display:none; }
  .carousel-pause { min-height:36px; }
  .market-grid,.market-analysis { grid-template-columns:1fr; }
  .market-analysis { gap:28px; }
}
