/* ============================================
   Barnacle Bay · v2 — Light & Airy Magazine
   ============================================ */

:root{
  /* Light, bright palette — sand + cream dominant */
  --cream:        #fdfaf3;
  --cream-warm:   #faf3e6;
  --sand:         #f3ead7;
  --sand-deep:    #e8dcc0;
  --paper:        #ffffff;

  /* Sea + sky accents */
  --sea:          #2a8a8c;   /* soft teal */
  --sea-deep:     #155456;   /* deep teal for text accent */
  --sky:          #b9d8d5;   /* pale seafoam */

  /* Warm hits */
  --coral:        #e2785c;
  --coral-deep:   #c25b40;
  --ochre:        #c89a55;
  --rust:         #a04a2e;

  /* Ink */
  --ink:          #1a2a2c;
  --ink-soft:     #4a5a5c;
  --line:         #e4d9c2;
  --line-soft:    #efe6d3;

  --max:          1280px;
  --pad:          clamp(1.25rem, 4vw, 3rem);
  --radius:       18px;
  --radius-sm:    10px;

  --shadow-sm:    0 8px 28px rgba(21, 84, 86, .07);
  --shadow-md:    0 20px 60px rgba(21, 84, 86, .12);
  --shadow-lg:    0 30px 90px rgba(21, 84, 86, .18);

  --serif:        'Fraunces', ui-serif, Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--coral); color: white; }

.container{ width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

/* ────────── TYPOGRAPHY ────────── */
.eyebrow{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before{
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--coral);
}
.display{
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 40;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--sea-deep);
  margin: 0 0 1.2rem;
}
.display em{
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.display--md{
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}
.lede{
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1.4rem;
  line-height: 1.55;
}

.kicker{
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--sea);
  margin: 0 0 .8rem;
}

.section-head{ margin: 0 0 3.5rem; max-width: 880px; }
.section-head--center{ margin-inline: auto; text-align: center; }
.section-head--center .eyebrow{ justify-content: center; }
.section-head--center .lede{ margin-inline: auto; }

/* ────────── BUTTONS ────────── */
.btn{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.7rem;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary{
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 34px rgba(226, 120, 92, .35);
}
.btn--primary:hover{ background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(194,91,64,.42); }
.btn--ghost{
  color: var(--sea-deep);
  border: 1px solid var(--sea-deep);
}
.btn--ghost:hover{ background: var(--sea-deep); color: white; }
.btn--link{
  padding: .9rem 0;
  color: white;
  position: relative;
  border-radius: 0;
}
.btn--link .arrow{ transition: transform .3s ease; }
.btn--link::after{
  content: ''; position: absolute; left: 0; right: 1.4rem; bottom: 4px;
  height: 1px; background: currentColor; opacity: .55;
}
.btn--link:hover .arrow{ transform: translateX(6px); }
.btn--lg{ padding: 1.15rem 2.2rem; font-size: 16px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem clamp(1rem, 3vw, 2.4rem);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, color .35s ease, box-shadow .35s ease;
  color: white;
}
.nav.is-scrolled{
  background: rgba(253,250,243,.94);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  color: var(--sea-deep);
  padding-block: .75rem;
  box-shadow: 0 1px 0 rgba(21,84,86,.06);
}
.nav__brand{
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
}
.nav__logo{
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.35));
  transition: filter .35s ease, height .35s ease;
}
.nav.is-scrolled .nav__logo{
  filter: brightness(0) saturate(0) invert(20%) sepia(28%) saturate(800%) hue-rotate(140deg) brightness(80%);
  height: 34px;
}
.nav.is-open .nav__logo{
  filter: brightness(0) saturate(0) invert(20%) sepia(28%) saturate(800%) hue-rotate(140deg) brightness(80%);
}
@media (max-width: 600px){
  .nav__logo{ height: 32px; }
  .nav.is-scrolled .nav__logo{ height: 30px; }
}
.nav__links{
  display: flex; gap: 1.8rem; justify-content: center;
  font-size: 14.5px; font-weight: 500; letter-spacing: .02em;
}
.nav__links a{ position: relative; padding: .25rem 0; opacity: .9; }
.nav__links a::after{
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover{ opacity: 1; }
.nav__links a:hover::after{ transform: scaleX(1); }
.nav__cta{
  display: inline-flex; align-items: center;
  padding: .65rem 1.2rem;
  background: var(--coral); color: white;
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: background .25s ease, transform .25s ease;
}
.nav__cta:hover{ background: var(--coral-deep); transform: translateY(-1px); }
.nav__burger{
  display: none;
  width: 38px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav__burger span{ display: block; width: 22px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav.is-open .nav__burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px){
  .nav__cta{ display: none; }
  .nav__burger{ display: inline-flex; }
  .nav__links{
    position: fixed;
    top: 64px; right: 0; bottom: 0; left: 0;
    z-index: 40;
    background: var(--cream);
    color: var(--sea-deep);
    flex-direction: column; gap: 1.6rem; justify-content: center; align-items: center;
    font-size: 22px;
    padding: 0 2rem;

    /* Closed state — belt + suspenders so it can never leak in */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
      opacity .3s ease,
      transform .4s cubic-bezier(.6,.2,.2,1),
      visibility 0s linear .4s;
  }
  .nav.is-open .nav__links{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity .25s ease,
      transform .4s cubic-bezier(.6,.2,.2,1),
      visibility 0s linear 0s;
  }
  .nav.is-open{ background: var(--cream); color: var(--sea-deep); box-shadow: 0 1px 0 var(--line); }
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}
.hero__media{
  position: absolute; inset: 0; overflow: hidden;
}
.hero__video{
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__veil{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,40,42,.45) 0%, rgba(8,40,42,.05) 30%, rgba(8,40,42,.55) 100%),
    radial-gradient(70% 50% at 30% 70%, rgba(8,40,42,.45), transparent 70%);
  pointer-events: none;
}
.hero__grain{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: .6;
}

.hero__content{
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem var(--pad) 3rem;
}
.hero__eyebrow{
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: white;
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin: 0 0 2rem;
  font-weight: 500;
}
.hero__eyebrow .dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 4px rgba(226,120,92,.3);
}
.hero__title{
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(3.4rem, 12vw, 11rem);
  line-height: .92;
  letter-spacing: -.04em;
  margin: 0;
}
.hero__title .line{
  display: block;
}
.hero__title .word{
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: title-up 1.1s cubic-bezier(.2,.7,.2,1) .2s forwards;
}
.hero__title .italic .word{ animation-delay: .35s; }
.hero__title .italic{
  font-style: italic; font-weight: 400; color: #ffd9c7;
  padding-left: .12em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
@keyframes title-up{
  to{ opacity: 1; transform: translateY(0); }
}
.hero__sub{
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  margin: 1.8rem 0 2.4rem;
  color: rgba(255,255,255,.92);
  opacity: 0;
  animation: fade-in 1s ease .8s forwards;
}
@keyframes fade-in{ to{ opacity: 1; } }
.hero__cta{
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center;
  opacity: 0;
  animation: fade-in 1s ease 1s forwards;
}

.hero__bar{
  position: relative;
  background: rgba(253,250,243,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--sea-deep);
  border-top: 1px solid rgba(21,84,86,.08);
  margin-top: auto;
}
.hero__bar-inner{
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem 2rem;
  padding: 1.6rem var(--pad);
  align-items: center;
}
.hero__bar-inner > div:not(.hero__bar-tag){
  display: flex; flex-direction: column; gap: .15rem;
}
.hero__bar-inner strong{
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1; color: var(--sea-deep);
  letter-spacing: -.02em;
}
.hero__bar-inner span{
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__bar-tag{
  display: inline-flex; align-items: center; gap: .65rem;
  background: white;
  color: var(--sea-deep);
  padding: .35rem 1.1rem .35rem .35rem;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 0 0 1px var(--line),
    0 6px 16px rgba(21,84,86,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero__bar-tag:hover{
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 0 0 1px var(--coral),
    0 10px 22px rgba(21,84,86,.12);
}
.hero__bar-tag .dog-mark{
  width: 30px; height: 30px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.hero__bar-tag .dog-mark svg{ display: block; }
.hero__bar-tag .dog-text{ color: var(--sea-deep); }

/* Sound toggle on hero */
.hero__sound{
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 130px);
  z-index: 3;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem 1rem .65rem .85rem;
  background: rgba(20, 42, 44, .35);
  color: white;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.hero__sound:hover{
  background: rgba(20, 42, 44, .55);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}
.hero__sound-icon{
  display: inline-flex;
  width: 18px; height: 18px;
}
.hero__sound .hero__sound-icon--on{ display: none; }
.hero__sound.is-on .hero__sound-icon--off{ display: none; }
.hero__sound.is-on .hero__sound-icon--on{ display: inline-flex; }
.hero__sound.is-on{
  background: var(--coral);
  border-color: var(--coral);
}
.hero__sound.is-on:hover{
  background: var(--coral-deep);
  border-color: var(--coral-deep);
}

@media (max-width: 720px){
  .hero__sound{
    bottom: calc(env(safe-area-inset-bottom, 0px) + 240px);
  }
  .hero__sound-label{ display: none; }
  .hero__sound{ padding: .7rem; }
}

.hero__scroll{
  position: absolute; left: 50%; bottom: 110px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 999px;
  display: flex; justify-content: center; padding-top: 7px;
  z-index: 2;
}
.hero__scroll span{
  width: 3px; height: 8px; background: white; border-radius: 2px;
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse{
  0%{ opacity: 1; transform: translateY(0); }
  100%{ opacity: 0; transform: translateY(14px); }
}

@media (max-width: 720px){
  .hero__bar-inner{
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.4rem;
  }
  .hero__bar-tag{ grid-column: 1 / -1; justify-self: start; }
  .hero__scroll{ display: none; }
  .hero__content{ padding-top: 8rem; }
}

/* ============================================
   WELCOME
   ============================================ */
.welcome{
  padding: clamp(6rem, 11vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
}
.welcome__inner{ max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }
.welcome__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: 2.5rem;
}
.welcome__copy p{ margin: 0 0 1.2rem; color: var(--ink-soft); font-size: 17px; max-width: 50ch; }
.welcome__copy .lead{ font-size: 19px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.dropcap{
  float: left;
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 4.2rem;
  line-height: .85;
  padding: .35rem .6rem .25rem 0;
  color: var(--coral-deep);
  font-weight: 400;
}
.welcome__art{
  position: relative;
  margin: 0;
  width: 100%;
}
.welcome__art .art__main{
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.welcome__art .art__inset{
  position: absolute;
  width: 58%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm);
  right: -7%; bottom: -8%;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.welcome__art .art__tag{
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(253,250,243,.92);
  color: var(--sea-deep);
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: .45rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 880px){
  .welcome__grid{ grid-template-columns: 1fr; }
  .welcome__art{ max-width: 560px; margin: 1.5rem auto 0; }
  .welcome__art .art__main{ aspect-ratio: 4/3; }
  .welcome__art .art__inset{ width: 50%; right: -4%; bottom: -6%; }
}

/* ============================================
   TICKER
   ============================================ */
.ticker{
  background: var(--sea-deep);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: -.01em;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker__track{
  display: inline-flex; align-items: center; gap: 1.4rem;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
  padding-left: 1.4rem;
}
.ticker__track span{
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
}
.ticker__track .star{
  color: var(--coral);
  font-style: normal;
  font-size: 1.1em;
}
@keyframes ticker{
  to{ transform: translateX(-50%); }
}

/* ============================================
   THE HOME
   ============================================ */
.home{ padding: clamp(6rem, 11vw, 10rem) 0; }

/* Editorial Duo */
.duo{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 6rem;
}
.duo__big{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.duo__big img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.duo__big:hover img{ transform: scale(1.03); }
.duo__big figcaption{
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(253,250,243,.92);
  color: var(--sea-deep);
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  max-width: calc(100% - 2.4rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.duo__text .duo__title{
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--sea-deep);
  margin: 0 0 1rem;
}
.duo__text .duo__title em{
  font-style: italic; color: var(--coral-deep); font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.duo__text p{ color: var(--ink-soft); max-width: 36ch; }

/* Asymmetric Trio */
.trio{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(1.6rem, 3vw, 3rem);
  margin-bottom: 6rem;
}
.trio__a, .trio__b{
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.trio__a:hover, .trio__b:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trio__a img, .trio__b img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .8s ease;
}
.trio__a:hover img, .trio__b:hover img{ transform: scale(1.04); }
.trio__a .trio__body, .trio__b .trio__body{
  padding: 1.8rem 1.7rem 2rem;
}
.trio__a{ align-self: end; }
.trio__b{ align-self: start; margin-top: 3rem; }
.trio__body h3{
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: var(--sea-deep);
  margin: 0 0 .7rem;
}
.trio__body p{ margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* Stacked features with offset images */
.features{ display: grid; gap: 3rem; }
.feat{
  display: grid;
  grid-template-columns: 80px 1fr 1.1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}
.feat:last-child{ border-bottom: 1px solid var(--line); }
.feat__num{
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coral-deep);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.feat__copy h3{
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--sea-deep);
  margin: 0 0 .8rem;
}
.feat__copy p{ margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 42ch; }
.feat__img{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.feat__img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}

/* "Photos Coming Soon" placeholder */
.coming-soon{
  position: relative;
  width: 100%; height: 100%;
  min-height: 280px;
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(185,216,213,.45), transparent 70%),
    radial-gradient(50% 50% at 80% 80%, rgba(226,120,92,.18), transparent 70%),
    var(--cream-warm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: .55rem;
  padding: 1.5rem;
  color: var(--sea-deep);
  border: 1px dashed var(--sand-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.coming-soon::before{
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  pointer-events: none;
  opacity: .5;
}
.coming-soon__icon{
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(253,250,243,.85);
  color: var(--coral-deep);
  font-size: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: .15rem;
}
.coming-soon__label{
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--coral-deep); font-weight: 600;
  margin: 0;
}
.coming-soon__title{
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 120, "SOFT" 60;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  color: var(--sea-deep);
  margin: 0;
}
.coming-soon__title em{
  font-style: italic; color: var(--coral-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.coming-soon__sub{
  font-size: 13px; color: var(--ink-soft);
  margin: 0; max-width: 32ch;
}

/* When used inside a .room overlay-card slot */
.room.room--coming{
  min-height: 320px;
}
.room.room--coming .coming-soon{
  border: 0;
  border-radius: var(--radius);
}
.feat:hover .feat__img img{ transform: scale(1.04); }
.feat--rev{
  grid-template-columns: 1.1fr 1fr 80px;
}
.feat--rev .feat__num{ order: 3; text-align: right; }
.feat--rev .feat__copy{ order: 2; }
.feat--rev .feat__img{ order: 1; }

@media (max-width: 900px){
  .duo{ grid-template-columns: 1fr; }
  .trio{ grid-template-columns: 1fr; }
  .trio__b{ margin-top: 0; }
  .feat, .feat--rev{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .feat--rev .feat__num{ order: 0; text-align: left; }
  .feat--rev .feat__copy{ order: 0; }
  .feat--rev .feat__img{ order: 0; }
}

/* ============================================
   INDULGE — now bright!
   ============================================ */
.indulge{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
}
.indulge::before{
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(40% 30% at 90% 10%, rgba(185,216,213,.4), transparent 70%),
    radial-gradient(35% 30% at 5% 80%, rgba(226,120,92,.08), transparent 70%);
  pointer-events: none;
}
.indulge > .container{ position: relative; }

.hero-feature{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 4.5rem;
}
.hero-feature__media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-feature__media img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-feature__media:hover img{ transform: scale(1.03); }
.hero-feature__chip{
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: rgba(253,250,243,.95);
  color: var(--sea-deep);
  padding: .55rem .95rem;
  border-radius: 999px;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  max-width: calc(100% - 2.4rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-feature__copy p{
  font-size: 17px; color: var(--ink-soft); max-width: 42ch;
}

.quad{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.tile{
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
}
.tile:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tile img{
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .8s ease;
}
.tile:hover img{ transform: scale(1.04); }
.tile__body{ padding: 1.5rem 1.4rem 1.7rem; }
.chip{
  display: inline-block;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral-deep); font-weight: 600;
  margin-bottom: .65rem;
}
.tile__body h3{
  font-family: var(--serif); font-weight: 500;
  font-size: 1.3rem; line-height: 1.2;
  color: var(--sea-deep); margin: 0 0 .55rem;
}
.tile__body p{ margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

@media (max-width: 1000px){
  .hero-feature{ grid-template-columns: 1fr; }
  .quad{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .quad{ grid-template-columns: 1fr; }
}

/* ============================================
   SLEEP — overlay-style room cards
   ============================================ */
.sleep{ padding: clamp(6rem, 11vw, 10rem) 0; }
.rooms{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
  min-height: 540px;
}
.room{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
}
.room--lg{ grid-row: span 1; }
.room img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.room:hover img{ transform: scale(1.05); }
.room__overlay{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(transparent, rgba(20,42,44,.92));
  color: white;
}
.room__level{
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: #ffd9c7; margin: 0 0 .35rem; font-weight: 600;
}
.room__overlay h3{
  font-family: var(--serif); font-weight: 500;
  font-size: 1.35rem; line-height: 1.15;
  margin: 0 0 .45rem; color: white;
}
.room__overlay p{ margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.85); }

.sleep__note{
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 15px;
}

@media (max-width: 1100px){
  .rooms{ grid-template-columns: 1fr 1fr; min-height: 0; }
}
@media (max-width: 560px){
  .rooms{ grid-template-columns: 1fr; }
}

/* ============================================
   COMMUNITY
   ============================================ */
.community{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.beach-hero{
  position: relative;
  margin: 0 0 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.beach-hero img{
  width: 100%;
  height: clamp(340px, 56vh, 580px);
  object-fit: cover;
}
.beach-hero figcaption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(20,42,44,.78));
  color: white;
}
.beach-hero figcaption em{
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.amenities{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  min-height: 460px;
}
.am{
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.am:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.am img{
  width: 100%; flex: 1; min-height: 180px;
  object-fit: cover;
  transition: transform .8s ease;
}
.am:hover img{ transform: scale(1.04); }
.am__body{
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 170px;
}
.am__body h3{
  font-family: var(--serif); font-weight: 500;
  font-size: 1.18rem; line-height: 1.15;
  color: var(--sea-deep); margin: 0 0 .45rem;
}
.am__body p{ margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.45; }

.am--tall{ grid-row: span 1; }
.am--tall img{ min-height: 260px; }

@media (max-width: 1000px){
  .am__body{ min-height: 150px; }
}
@media (max-width: 520px){
  .am__body{ min-height: 0; }
}

@media (max-width: 1000px){
  .amenities{ grid-template-columns: 1fr 1fr; min-height: 0; }
}
@media (max-width: 520px){
  .amenities{ grid-template-columns: 1fr; }
}

.bullets{
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.bullets li{
  font-size: 15px; color: var(--ink);
  padding-left: 1.4rem; position: relative;
}
.bullets li::before{
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral);
}
@media (max-width: 900px){ .bullets{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .bullets{ grid-template-columns: 1fr; } }

/* ============================================
   YES — light bright editorial card stack
   ============================================ */
.yes{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--cream);
}
.yes__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.yes__head .lede{ max-width: 36ch; }
.yes__list{
  list-style: none; padding: 0; margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  color: var(--sea-deep);
  display: grid; gap: 1rem;
  font-weight: 300;
}
.yes__list li{
  position: relative; padding-left: 2.4rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .9rem;
}
.yes__list li:last-child{ border-bottom: 0; }
.yes__list li em{
  font-style: italic; color: var(--coral-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.yes__list li::before{
  content: '✓';
  position: absolute; left: 0; top: .15em;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-family: var(--sans); font-style: normal; font-weight: 700;
}
@media (max-width: 900px){
  .yes__inner{ grid-template-columns: 1fr; }
}

/* ============================================
   WHY — pill badges
   ============================================ */
.why{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: linear-gradient(180deg, var(--cream-warm), var(--sand) 100%);
}
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
  align-items: start;
  margin-top: 1rem;
  position: relative;
}
.why-grid::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.why-col{
  padding: 2rem 0 .5rem;
  position: relative;
}
.why-col__num{
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 1.3rem;
  color: var(--coral-deep);
  margin: 0 0 .9rem;
  letter-spacing: .02em;
}
.why-col__title{
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 120, "SOFT" 40;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  color: var(--sea-deep);
  margin: 0 0 1.2rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.01em;
}
.why-col__list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .75rem;
}
.why-col__list li{
  font-size: 15px;
  color: var(--ink);
  padding-left: 1.4rem;
  line-height: 1.45;
  position: relative;
}
.why-col__list li::before{
  content: '';
  position: absolute;
  left: 0; top: .6rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

@media (max-width: 900px){
  .why-grid{
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2rem;
  }
}
@media (max-width: 560px){
  .why-grid{ grid-template-columns: 1fr; gap: 0; }
  .why-col{ padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
  .why-col:last-child{ border-bottom: 0; }
}

/* ============================================
   ARRANGEMENTS
   ============================================ */
.arrange{
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream);
}
.arrange__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.arrange__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.arrange__col h4{
  font-family: var(--serif); font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-deep);
  margin: 1.8rem 0 .6rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line-soft);
}
.arrange__col h4:first-child{ margin-top: 0; }
.arrange__col ul{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .5rem;
}
.arrange__col ul li{ font-size: 15.5px; color: var(--ink); padding: .15rem 0; }
.arrange__col ul.cols-2{ grid-template-columns: 1fr 1fr; gap: .5rem 1.4rem; }
@media (max-width: 800px){
  .arrange__cols{ grid-template-columns: 1fr; }
  .arrange__col ul.cols-2{ grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background: var(--cream);
}
.gal{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
}
.gx{
  display: block;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: var(--sand);
  cursor: zoom-in;
}
.gx img{
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .6s ease, filter .4s ease;
}
.gx:hover img{ transform: scale(1.06); filter: brightness(1.04); }
.gx--wide{ grid-column: span 2; }
.gx--xl{ grid-column: span 2; grid-row: span 2; }
.gx--xl img{ aspect-ratio: 1/1; height: 100%; }

@media (max-width: 900px){
  .gal{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .gal{ grid-template-columns: repeat(2, 1fr); }
  .gx--xl{ grid-column: span 2; grid-row: span 2; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox{
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(20,42,44,.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.is-open{ display: flex; }
.lightbox__img{
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  animation: lb-in .3s ease;
}
@keyframes lb-in{
  from{ opacity: 0; transform: scale(.97); }
  to{ opacity: 1; transform: scale(1); }
}
.lightbox__close, .lightbox__prev, .lightbox__next{
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
  backdrop-filter: blur(6px);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background: rgba(255,255,255,.22); }
.lightbox__close{ top: 1.5rem; right: 1.5rem; font-size: 32px; }
.lightbox__prev{ left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next{ right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__count{
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  margin: 0;
}

/* ============================================
   BOOK
   ============================================ */
.book{
  padding: clamp(6rem, 11vw, 10rem) 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(185,216,213,.4), transparent 70%),
    var(--cream-warm);
  position: relative;
}
.book__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.book__copy p{ color: var(--ink-soft); max-width: 48ch; }
.book__copy .btn{ margin-top: 1.2rem; }
.book__note{
  margin-top: 1.2rem; font-size: 14px; color: var(--ink-soft);
}
.book__note a{ color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }

.book__art{
  position: relative;
  margin: 0;
  width: 100%;
}
.book__art-main{
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.book__art-inset{
  position: absolute;
  width: 55%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--radius-sm);
  left: -7%; bottom: -8%;
  border: 8px solid var(--cream-warm);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px){
  .book__art-main{ aspect-ratio: 4/3; }
}
.book__art-tag{
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(253,250,243,.92);
  color: var(--sea-deep);
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: .45rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px){
  .book__inner{ grid-template-columns: 1fr; }
  .book__art{ aspect-ratio: 4/3; margin-top: 1.5rem; }
  .book__art-inset{ left: auto; right: -4%; bottom: -6%; width: 50%; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer{
  background: var(--sea-deep);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 2.5rem;
}
.footer__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer__brand{ display: flex; flex-direction: column; gap: .55rem; color: white; }
.footer__loc{ margin: 0; font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.footer__logo{
  height: 44px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer__nav{ display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; font-size: 14px; }
.footer__nav a{ opacity: .8; transition: opacity .2s ease, color .2s ease; }
.footer__nav a:hover{ opacity: 1; color: var(--coral); }
.footer__small{
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px; letter-spacing: .04em; text-align: center;
  color: rgba(255,255,255,.5);
}
@media (max-width: 800px){
  .footer__inner{ grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer__brand{ flex-direction: column; gap: .4rem; text-align: center; }
}

/* ============================================
   REVEAL ON SCROLL
   (only when JS active; never hide if scripts fail)
   ============================================ */
html.js-on .reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1);
}
html.js-on .reveal.is-visible{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js-on .reveal{ opacity: 1; transform: none; }
}
