/* ===========================================================================
   The Infinisea — luxury coastal redesign (2026)
   Warm white · soft sand · deep ocean navy · gold · Tiffany turquoise (accent).
   Headlines: Cormorant Garamond · Body: Inter.
   =========================================================================== */

:root {
  --warm-white: #FAFAF7;
  --sand: #F5EFE6;
  --sand-deep: #ECE2D2;
  --navy: #23445D;
  --navy-deep: #1A3346;
  --navy-700: #2C5470;
  --turq: #81D8D0;
  --turq-deep: #4FB3AA;
  --gold: #B69C6D;
  --gold-soft: #CDB68F;

  --text: #23445D;
  --text-muted: #5E7689;
  --line: rgba(35, 68, 93, .14);
  --line-soft: rgba(35, 68, 93, .08);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 12px 30px -20px rgba(35, 68, 93, .35);
  --shadow: 0 26px 60px -34px rgba(35, 68, 93, .40);
  --shadow-lg: 0 40px 90px -40px rgba(35, 68, 93, .45);
  --glass: rgba(250, 250, 247, .72);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1280px;
  --header-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-script: "Amsterdam Four", "Cormorant Garamond", cursive;
}
@font-face {
  font-family: "Amsterdam Four";
  src: url("/assets/fonts/amsterdam-four.ttf") format("truetype");
  font-weight: normal; font-style: normal; font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.75;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--turq-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy); }
::selection { background: var(--turq); color: var(--navy-deep); }
:focus-visible { outline: 1.5px solid var(--turq-deep); outline-offset: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.005em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.75rem); }
.section { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.section--compact { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--soft { background: var(--sand); }
.section--sea { background: linear-gradient(180deg, var(--warm-white), var(--sand)); }
.section--editorial { background: var(--warm-white); }
.center { text-align: center; }

.label {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.label::before { content: ""; width: 1.9rem; height: 1px; margin-right: .8rem; background: currentColor; opacity: .8; }

.title {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 400; line-height: 1.02; letter-spacing: -.012em;
  margin-bottom: 1.2rem;
}
.title--xl { font-size: clamp(3rem, 8vw, 6rem); }
.subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); font-weight: 400; line-height: 1.85; color: var(--text-muted); max-width: 46rem; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 500; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 999px;
  background: var(--turq); color: var(--navy-deep); border: 1px solid var(--turq);
  cursor: pointer; transition: transform .4s var(--ease), background .3s var(--ease), box-shadow .4s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap; box-shadow: 0 14px 32px -16px rgba(79,179,170,.5);
}
.btn:hover { background: var(--turq-deep); border-color: var(--turq-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 22px 46px -18px rgba(79,179,170,.6); }
.btn:not(.btn--outline)::before {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:not(.btn--outline):hover::before { left: 145%; }
.btn--outline {
  background: transparent; color: var(--navy); border-color: var(--line);
  box-shadow: none;
}
.btn--outline:hover { background: var(--turq); color: var(--navy-deep); border-color: var(--turq); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
/* turquoise = booking highlight accent */
.nav-cta, .btn--book {
  background: var(--turq); border-color: var(--turq); color: var(--navy-deep);
}
.nav-cta:hover, .btn--book:hover { background: var(--turq-deep); border-color: var(--turq-deep); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.solid, .site-header.is-open {
  background: var(--glass); backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line-soft); box-shadow: 0 8px 30px -22px rgba(35,68,93,.4);
}

/* brand lockup (emblem + wordmark) */
.brand { display: inline-flex; align-items: center; gap: .7rem; line-height: 1; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand-mark { height: 42px; width: auto; display: block; flex: 0 0 auto; }
.brand-word { display: inline-flex; align-items: center; }
.brand-word .bw { height: 18px; width: auto; }
.brand-word .bw--dark { display: block; }
.brand-word .bw--light { display: none; }
.site-header.over-hero:not(.solid) .bw--dark { display: none; }
.site-header.over-hero:not(.solid) .bw--light { display: block; }
.site-header.over-hero:not(.solid) .brand,
.site-header.over-hero:not(.solid) .brand-mark,
.site-header.over-hero:not(.solid) .brand-word { color: var(--warm-white); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav a {
  font-family: var(--font-sans); font-weight: 500; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--navy); white-space: nowrap;
  position: relative; transition: color .25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--turq-deep); }
.site-header.over-hero:not(.solid) .nav > a,
.site-header.over-hero:not(.solid) .nav > .has-sub > a { color: rgba(255,255,255,.9); }
.site-header.over-hero:not(.solid) .nav > a:hover,
.site-header.over-hero:not(.solid) .nav > .has-sub > a:hover,
.site-header.over-hero:not(.solid) .nav > a.active { color: #fff; }
@media (min-width: 861px) {
  .nav > a::after, .nav > .has-sub > a::after {
    content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .45s var(--ease);
  }
  .nav > a:hover::after, .nav > .has-sub > a:hover::after, .nav > a.active::after { transform: scaleX(1); transform-origin: left; }
}

.has-sub { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--glass); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .7rem; min-width: 232px; opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  border: 1px solid var(--line-soft);
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: .65rem .9rem; border-radius: var(--radius-sm); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.submenu a:hover { background: var(--sand); color: var(--turq-deep); }

.nav-cta { margin-left: .3rem; padding: .85rem 1.6rem; box-shadow: none; }
.lang { display: flex; align-items: center; gap: .3rem; font-size: .72rem; }
.lang a { color: var(--text-muted); padding: 3px 7px; border-radius: 999px; font-weight: 600; letter-spacing: .08em; }
.lang a.active { color: var(--navy); background: var(--sand); }
.lang a[aria-disabled="true"] { opacity: .4; pointer-events: none; }
.site-header.over-hero:not(.solid) .lang a { color: rgba(255,255,255,.82); }
.site-header.over-hero:not(.solid) .lang a.active { color: var(--navy); background: rgba(255,255,255,.85); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--navy); }
.site-header.over-hero:not(.solid) .menu-toggle { color: #fff; }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(640px, 94vh, 940px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero--page { min-height: clamp(440px, 60vh, 660px); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(26,51,70,.42) 0%, rgba(26,51,70,.12) 32%, rgba(26,51,70,.28) 64%, rgba(26,51,70,.78) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: calc(var(--header-h) + 2rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero__claim { font-family: var(--font-sans); font-size: .76rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--turq); margin-bottom: 1.3rem; }
.hero h1 { color: #fff; font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 500; letter-spacing: -.01em; line-height: 1; text-shadow: 0 4px 40px rgba(0,0,0,.3); }
.hero h1 .sea { color: var(--turq); font-style: italic; }
.hero__sub { margin-top: 1.4rem; max-width: 38rem; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero--page .hero__inner { padding-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.hero--page h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.crumbs { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs a:hover { color: #fff; }

/* home hero — brand lockup centered on the slideshow */
.hero--slides { align-items: center; text-align: center; background: var(--navy); }
.hero--slides .hero__inner { text-align: center; padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4rem)); }
.hero-slides, .hero-veil { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); animation: heroFade 28s infinite; }
.hero-veil { pointer-events: none; background:
  radial-gradient(ellipse at 50% 44%, rgba(26,51,70,.46) 0%, rgba(26,51,70,.32) 46%, rgba(26,51,70,.26) 100%),
  linear-gradient(0deg, rgba(26,51,70,.82) 0%, rgba(26,51,70,.30) 42%, rgba(26,51,70,.5) 100%); }
@keyframes heroFade { 0% { opacity: 0 } 5% { opacity: 1 } 22% { opacity: 1 } 27% { opacity: 0 } 100% { opacity: 0 } }
.hero-lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero-mark { width: clamp(78px, 11vw, 120px); height: auto; color: #fff; }
.hero-word { width: min(640px, 86vw); height: auto; display: block; margin: .15rem auto 0; filter: drop-shadow(0 4px 30px rgba(0,0,0,.32)); }
.hero-badge { display: inline-block; font-family: var(--font-sans); font-size: .64rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-soft); border: 1px solid rgba(182,156,109,.55); border-radius: 999px; padding: .5rem 1.25rem; margin-bottom: 1.5rem; backdrop-filter: blur(2px); }
.hero-script { font-family: var(--font-script); font-size: clamp(1.8rem, 3.8vw, 3rem); color: var(--gold-soft); line-height: 1; margin-top: .35rem; text-shadow: 0 2px 20px rgba(0,0,0,.42); }
.hero__sub--brand { max-width: 40rem; margin: 1.6rem auto 0; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero--slides .hero__actions { justify-content: center; margin-top: 2.4rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 3; width: 1px; height: 48px; background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.8)); }
.hero-scroll::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--turq); transform: translateX(-50%); }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: clamp(1.4rem, 2.5vw, 2.2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: transparent; border-radius: var(--radius-lg); overflow: hidden; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); background: var(--sand-deep); box-shadow: var(--shadow-sm); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem .25rem 0; }
.card__body h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: .5rem; }
.card__body p { color: var(--text-muted); font-size: 1rem; }
.card .meta { font-family: var(--font-sans); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .7rem; }

/* feature row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.feature + .feature { margin-top: clamp(4rem, 8vw, 7rem); }
.feature--rev .feature__media { order: 2; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--sand-deep); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature > div:not(.feature__media) { display: flex; flex-direction: column; justify-content: center; }

/* fact strip */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.fact { text-align: center; padding: 2rem 1.2rem; background: var(--warm-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.fact b { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); font-weight: 500; line-height: 1; margin-bottom: .35rem; }
.fact span { font-size: .72rem; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }

/* amenity lists */
.amenity-group { background: var(--warm-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); padding: 2rem 2.1rem; }
.amenity-group h3 { font-size: 1.5rem; margin-bottom: 1.1rem; font-weight: 500; }
.amenity-group ul { list-style: none; display: grid; gap: .7rem; }
.amenity-group li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; color: var(--text); }
.amenity-group li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--turq);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9.5l3 3L14 6' fill='none' stroke='%2323445D' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--sand-deep); box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
.gallery--editorial { grid-template-columns: 1.2fr .9fr .9fr; grid-auto-flow: dense; }
.gallery--editorial .tall { grid-row: span 2; aspect-ratio: 4 / 5.4; }

/* faq */
.faq-item { background: var(--warm-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); margin-bottom: 1rem; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.3rem 1.6rem; font-weight: 500; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 1.6rem; color: var(--turq-deep); transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.6rem 1.4rem; color: var(--text-muted); }

/* price table */
.price-table { width: 100%; border-collapse: collapse; background: var(--warm-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.price-table th, .price-table td { padding: 1.05rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.price-table th { background: var(--sand); color: var(--navy); font-weight: 600; letter-spacing: .12em; font-size: .72rem; text-transform: uppercase; }
.price-table td b { color: var(--navy); font-family: var(--font-display); font-size: 1.15rem; }
.note { font-size: .85rem; color: var(--text-muted); margin-top: 1rem; }
.flag { background: var(--gold); color: #fff; padding: .15rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }

/* widget slot */
.widget-slot { border: 1.5px dashed var(--turq); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(129,216,208,.12), rgba(245,239,230,.6)); padding: clamp(2.5rem, 6vw, 4rem); text-align: center; color: var(--navy); }
.widget-slot .ico { font-size: 2rem; }
.widget-slot h3 { color: var(--navy); margin: .7rem 0 .4rem; font-weight: 500; }
.widget-slot p { color: var(--text-muted); font-size: .95rem; max-width: 34rem; margin: 0 auto; }

/* form */
.form { display: grid; gap: 1.1rem; max-width: 38rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .72rem; font-weight: 600; color: var(--navy); letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: .98rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--warm-white); color: var(--navy); width: 100%; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--turq); box-shadow: 0 0 0 4px rgba(129,216,208,.25); }

/* home bespoke ---------------------------------------------------------- */
.home-intro { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.home-intro .title { max-width: 11ch; margin-bottom: 0; }
.home-intro__note { margin-top: 1.6rem; padding-left: 1.4rem; border-left: 2px solid var(--gold); color: var(--navy); font-size: clamp(1rem, 1.7vw, 1.12rem); font-style: italic; font-family: var(--font-display); }

.overview-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.overview-strip__item { display: grid; gap: .6rem; min-height: 160px; padding: clamp(1.6rem, 3vw, 2.6rem); border-right: 1px solid var(--line); }
.overview-strip__item:last-child { border-right: 0; }
.overview-strip__item span { color: var(--gold); font-size: .66rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.overview-strip__item b { align-self: end; max-width: 15rem; color: var(--navy); font-family: var(--font-display); font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 500; line-height: 1.08; }

.experience-list { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.experience-list .title { max-width: 12ch; }
.experience-list__items { display: grid; border-top: 1px solid var(--line); }
.experience-list__item { display: grid; grid-template-columns: minmax(10rem,.5fr) 1fr; gap: clamp(1rem, 3vw, 2rem); padding: clamp(1.7rem, 3vw, 2.6rem) 0; border-bottom: 1px solid var(--line); }
.experience-list__item h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 500; }
.experience-list__item p { color: var(--text-muted); font-size: 1.05rem; }

.split-showcase { display: grid; gap: clamp(4rem, 10vw, 8rem); }
.story-band { padding: 0; }

/* cta band */
.cta-band { background: transparent; padding: 0 0 clamp(4rem, 8vw, 7rem); }
.cta-band .container { padding-left: 0; padding-right: 0; }
.cta-band__panel {
  position: relative; overflow: hidden;
  margin: 0 clamp(1.25rem, 4vw, 2.75rem); border-radius: var(--radius-lg);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4.5rem); text-align: center;
  background: radial-gradient(circle at 50% -10%, rgba(129,216,208,.18), transparent 55%), var(--navy);
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-band__panel .label { color: var(--turq); }
.cta-band__panel .title { color: #fff; }
.cta-band__panel p { color: rgba(255,255,255,.82); max-width: 40rem; margin: 0 auto 2rem; }

/* prose / credits */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.7rem; margin: 2.2rem 0 .8rem; font-weight: 500; }
.prose p, .prose li { color: var(--text-muted); margin-bottom: .8rem; }
.prose ul { padding-left: 1.2rem; }
.credits-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.credits-list li { display: flex; flex-wrap: wrap; gap: .4rem 1rem; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.credits-list .credit-meta { color: var(--text-muted); font-size: .88rem; }

/* ---------- footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); color: rgba(255,255,255,.7); padding: clamp(4rem, 7vw, 6rem) 0 2.2rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(255,255,255,.7); font-size: .95rem; display: block; padding: .25rem 0; transition: color .25s; }
.site-footer a:hover { color: var(--turq); }
.brand-foot .brand-word { color: #fff; }
.brand-foot .brand-mark { color: #fff; }
.brand-word-foot { height: 22px; width: auto; display: block; }
.brand-foot .footer-brand { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: .9rem; }
.site-footer .brand-foot p { margin-top: .2rem; font-size: .95rem; max-width: 24rem; color: rgba(255,255,255,.66); }
.foot-claim { font-family: var(--font-script); font-size: 1.7rem; letter-spacing: .01em; color: var(--gold-soft); margin-top: 1rem; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }
.foot-bottom a { display: inline; }

/* ===========================================================================
   Motion — soft luxury reveals (graceful under .js-reveal; honours reduced motion)
   =========================================================================== */
.js-reveal .reveal-text { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js-reveal .reveal-text.is-in { opacity: 1; transform: none; }
.js-reveal .reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.js-reveal .reveal-img.is-in { clip-path: inset(0 0 0 0); }

/* ===========================================================================
   Subpage elevation — propagate the landing page's premium language
   =========================================================================== */
/* Ken-Burns + gold script claim on page heroes (reuses heroKen + .hero-script) */
.hero--page .hero__media--ken img { animation: heroKen 38s ease-in-out infinite alternate; transform-origin: 50% 45%; }
.hero--page .hero-script { display: block; font-size: clamp(1.4rem, 2.8vw, 2.2rem); margin-top: .5rem; }

/* one gold handwriting flourish per subpage body */
.script-accent { font-family: var(--font-script); color: var(--gold); font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.15; text-align: center; margin: 0 auto; max-width: 34rem; }

/* numbered journey index (Getting here) */
.experience-list__item h3 .step-no { font-family: var(--font-display); color: var(--gold); font-weight: 500; margin-right: .6rem; }

/* contact details as a ruled index */
.contact-list { list-style: none; display: grid; border-top: 1px solid var(--line); margin: 1.6rem 0 0; }
.contact-list li { display: grid; grid-template-columns: minmax(7rem, .4fr) 1fr; gap: 1rem; align-items: baseline; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.contact-list .k { color: var(--gold); font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; font-family: var(--font-sans); }
.contact-list .v { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.contact-list .v a { color: var(--navy); }
.contact-list .v a:hover { color: var(--turq-deep); }

/* booking "why direct" trust band */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust > div { padding: clamp(1.6rem, 3vw, 2.4rem); border-right: 1px solid var(--line); }
.trust > div:last-child { border-right: 0; }
.trust .label { margin-bottom: .8rem; }
.trust h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; margin-bottom: .5rem; }
.trust p { color: var(--text-muted); font-size: .96rem; }

/* contact form card panel */
.form--card { background: var(--warm-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(1.8rem, 4vw, 2.6rem); max-width: none; }

/* FAQ — clustered groups + open-state accent */
.faq-group + .faq-group { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.faq-group > .label { margin-bottom: 1.1rem; }
.faq-item summary:hover { color: var(--turq-deep); }
.faq-item[open] { border-left: 2px solid var(--gold); padding-left: 1.2rem; }

/* branded gallery lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(26,51,70,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: clamp(1rem, 4vw, 3rem); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; display: grid; justify-items: center; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: rgba(255,255,255,.86); font-family: var(--font-sans); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; text-align: center; margin-top: 1rem; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(182,156,109,.55); color: #fff; width: 46px; height: 46px; border-radius: 999px; cursor: pointer; display: grid; place-items: center; font-size: 1.3rem; line-height: 1; transition: background .25s var(--ease); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(129,216,208,.25); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }

.hero-slides { animation: heroKen 38s ease-in-out infinite alternate; transform-origin: 50% 45%; }
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero--slides .hero-lockup { animation: heroRise 1.2s var(--ease) both; }
.hero--slides .hero__sub--brand { animation: heroRise 1.2s .18s var(--ease) both; }
.hero--slides .hero__actions { animation: heroRise 1.2s .36s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  .hero-slides, .hero-slide { animation: none; }
  .hero-slide:first-child { opacity: 1; }
  .hero--slides .hero-lockup, .hero--slides .hero__sub--brand, .hero--slides .hero__actions { animation: none; }
  .hero--page .hero__media--ken img { animation: none; }
  .lightbox { transition: none; }
  .btn::before { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .facts, .overview-strip, .trust { grid-template-columns: repeat(2, 1fr); }
  .trust > div:nth-child(2) { border-right: 0; }
  .trust > div:nth-child(-n+1) { border-bottom: 1px solid var(--line); }
  .home-intro, .experience-list, .feature, .feature--rev, .gallery--editorial { grid-template-columns: 1fr; }
  .feature--rev .feature__media, .feature__media { order: -1; }
  .overview-strip__item:nth-child(2) { border-right: 0; }
  .overview-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery--editorial .tall { grid-row: auto; aspect-ratio: 4/3; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--glass); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
    padding: 1.4rem 1.5rem 1.8rem; gap: .1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav > a, .nav .has-sub > a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); color: var(--navy) !important; font-size: .95rem; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding: 0 0 .6rem 1.1rem; min-width: 0; border: 0; background: transparent; backdrop-filter: none; }
  .has-sub:hover .submenu { transform: none; }
  .nav-cta { margin: .7rem 0 0; }
  .lang { padding-top: .7rem; }
  .menu-toggle { display: inline-flex; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .gallery, .facts, .overview-strip, .trust { grid-template-columns: 1fr; }
  .trust > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust > div:last-child { border-bottom: 0; }
  .contact-list li { grid-template-columns: 1fr; gap: .2rem; }
  .form .row { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .overview-strip__item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .overview-strip__item:last-child { border-bottom: 0; }
  .experience-list__item { grid-template-columns: 1fr; gap: .4rem; }
  .brand-word .bw { height: 15px; }
}
