/* ═══════════════════════════════════════════════════════════════
   STRENSHAM MILL MOORINGS — site stylesheet
   One font. Three sizes. Soft, round, calm.
   Loaded by every page. Edit here, not in the pages.
   ═══════════════════════════════════════════════════════════════ */

:root{
  /* ── Colour ─────────────────────────────────────────────────
     Blue carries the brand. Ink is a quiet deep navy so long
     paragraphs never shout. Red marks one thing only: sold.
     Gold is the single accent and appears sparingly.

     Palette drawn from a Krone Blanche can: mostly warm white,
     royal blue doing the work, a hairline of amber gold, and
     red-orange as small punctuation.                            */
  --blue:      #123FA6;   /* royal brand blue — links, buttons */
  --blue-deep: #0C2E7A;   /* hover depth */
  --blue-wash: #EAF0FB;   /* soft blue tint band */
  --ink:       #0B1F4D;   /* deep navy ink (letter cores) */
  --ink-soft:  #5A6B92;   /* secondary text (AA on both grounds) */
  --white:     #FFFFFF;   /* pure white — raised cards */
  --ground:    #FBF7ED;   /* warm label white — page ground */
  --line:      #E7E2D6;   /* warm hairline, tuned to the ground */
  --red:       #DD4014;   /* red-orange — sold stamp only */
  --gold:      #EAA026;   /* amber — hairline accent, used sparingly */

  /* ── THREE SIZES. That is the whole scale. ────────────────── */
  --s: 15px;
  --m: 19px;
  --l: clamp(32px, 4.4vw, 48px);

  /* ── Line heights ─────────────────────────────────────────── */
  --lh-flat:1.0; --lh-tight:1.14; --lh-mid:1.4; --lh-read:1.65;

  /* ── Roundness ────────────────────────────────────────────── */
  --r-card:24px;
  --r-inner:16px;
  --r-pill:999px;

  /* ── Elevation — light, layered, never a hard edge ─────────── */
  --shadow-soft:0 1px 2px rgba(11,31,77,.05), 0 8px 24px rgba(11,31,77,.05);
  --shadow-lift:0 2px 6px rgba(11,31,77,.07), 0 18px 44px rgba(11,31,77,.10);
  --shadow-press:0 1px 2px rgba(11,31,77,.08);

  /* ── Motion — emphasised easing, decisive out, gentle in ───── */
  --ease-emph:cubic-bezier(.2,0,0,1);      /* standard, expressive */
  --ease-out:cubic-bezier(.05,.7,.1,1);     /* entering the screen */
  --ease-in:cubic-bezier(.3,0,.8,.15);      /* leaving the screen */
  --dur-fast:120ms;
  --dur-mid:220ms;
  --dur-slow:420ms;

  /* ── Scroll reveal ────────────────────────────────────────── */
  --aos-dur:850ms;                          /* slow, soft, unhurried */
  --aos-ease:cubic-bezier(.16,1,.3,1);      /* strong, smooth decelerate */
  --aos-lift:44px;                          /* travel — must be felt */

  /* ── Minimum comfortable touch target ─────────────────────── */
  --tap:48px;

  --wrap:1120px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:"Figtree","Segoe UI",Helvetica,Arial,sans-serif;
  font-size:var(--m);
  font-weight:400;
  line-height:var(--lh-read);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;}

/* ── Cursor policy ──────────────────────────────────────────── */
a,button,summary,input,[role="button"]{cursor:pointer;}
h1,h2,h3,h4,p,li,span,figcaption,dt,dd{cursor:default;}
a *,button *{cursor:pointer;}
input[type="search"]{cursor:text;}

/* ── Focus ──────────────────────────────────────────────────── */
/* Focus ring: high-contrast, always visible against any surface.
   Doubled with a white outer ring so it reads on photography too. */
:focus-visible{
  outline:3px solid var(--blue);
  outline-offset:2px;
  border-radius:10px;
  box-shadow:0 0 0 5px rgba(255,255,255,.85);
}
.hero :focus-visible,.site-footer :focus-visible,.stats :focus-visible,.club-bar :focus-visible{
  outline-color:var(--white);
  box-shadow:0 0 0 5px rgba(11,31,77,.55);
}

.skip{
  position:absolute;left:8px;top:-72px;z-index:300;
  background:var(--blue);color:var(--white);
  padding:14px 22px;border-radius:var(--r-pill);
  font-size:var(--s);font-weight:700;text-decoration:none;
  transition:top .16s ease;
}
.skip:focus{top:8px;}

.visually-hidden{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

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


.stripe{height:1px;background:var(--line);border:0;margin:0;}

/* ═══════════════════════════════════════════════════════════════
   TYPE ROLES — three sizes, many voices
   ═══════════════════════════════════════════════════════════════ */
.eyebrow{
  font-size:var(--s);font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--ink-soft);line-height:var(--lh-flat);margin:0;
}
.display{
  font-size:var(--l);font-weight:700;
  line-height:var(--lh-tight);letter-spacing:-.028em;margin:0;
}
.lede{
  font-size:var(--m);line-height:var(--lh-read);
  color:var(--ink-soft);max-width:56ch;margin:0;
}
.small{font-size:var(--s);line-height:var(--lh-mid);}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.club-bar{
  background:var(--blue);color:var(--white);
  font-size:var(--s);line-height:var(--lh-flat);
}
.club-bar .wrap{
  display:flex;flex-wrap:wrap;gap:8px 24px;
  align-items:center;justify-content:space-between;
  padding-top:13px;padding-bottom:13px;
}
.club-bar .cb-place{letter-spacing:.12em;text-transform:uppercase;font-weight:600;}
.club-bar .cb-contact{
  display:inline-flex;align-items:center;gap:12px;
}
.club-bar .cb-pc{letter-spacing:.12em;text-transform:uppercase;font-weight:600;}
.club-bar a{color:var(--white);text-decoration:none;font-weight:700;}
.club-bar a:hover{color:var(--gold);}
.club-bar .cb-anchor{font-size:var(--s);}

/* Desktop: postcode reads as part of the left-hand place line.
   The separator dot is drawn in so it matches the old styling. */
@media (min-width:641px){
  .club-bar .cb-pc::before{content:"· ";}
  .club-bar .cb-anchor{display:none;}
}

/* Mobile: place on line one; postcode, phone and anchor together
   on line two, filling the width. */
@media (max-width:640px){
  .club-bar .wrap{justify-content:flex-start;gap:6px 12px;}
  .club-bar .cb-place{flex:1 1 100%;}
  .club-bar .cb-contact{flex:1 1 100%;}
}

.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--white);border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  max-width:var(--wrap);margin:0 auto;padding:16px 28px;
}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none;}
.brand img{height:44px;width:auto;object-fit:contain;}
.brand-text{display:flex;flex-direction:column;line-height:var(--lh-flat);}
.brand-name{font-size:var(--m);font-weight:800;letter-spacing:-.02em;}
.brand-sub{
  font-size:var(--s);color:var(--ink-soft);font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;margin-top:8px;
}

.nav-desktop{display:flex;align-items:center;gap:2px;}
.nav-desktop a{
  display:inline-flex;align-items:center;min-height:var(--tap);
  text-decoration:none;font-size:var(--s);font-weight:700;letter-spacing:.02em;
  color:var(--ink);padding:0 18px;border-radius:var(--r-pill);
  transition:background var(--dur-mid) var(--ease-emph),
             color var(--dur-mid) var(--ease-emph);
}
.nav-desktop a:hover{background:var(--blue-wash);color:var(--blue);}
.nav-desktop a[aria-current="page"]{background:var(--blue-wash);color:var(--blue);}

.nav-toggle{
  display:none;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-pill);padding:0 22px;min-height:var(--tap);
  font-family:inherit;font-size:var(--s);font-weight:700;color:var(--ink);
  transition:background var(--dur-mid) var(--ease-emph),
             border-color var(--dur-mid) var(--ease-emph);
}
.nav-toggle:hover{background:var(--blue-wash);border-color:var(--blue);}
.nav-mobile{display:none;}

@media (max-width:900px){
  .nav-desktop{display:none;}
  .nav-toggle{display:block;}
  .brand-sub{display:none;}
  .nav-mobile{
    display:block;background:var(--white);
    border-top:1px solid var(--line);padding:4px 17px 14px;
    overflow:hidden;
  }
  .nav-mobile[hidden]{display:none;}
  .nav-mobile a{
    display:flex;align-items:center;min-height:var(--tap);
    text-decoration:none;font-size:var(--m);font-weight:700;
    color:var(--ink);padding:13px 2px;border-bottom:1px solid var(--line);
  }
  .nav-mobile a:last-child{border-bottom:0;}

  /* ── Cascading entrance ──────────────────────────────────
     Each link drops in from just above, transparent to solid,
     staggered so the menu unfurls top to bottom. Runs whenever
     the panel is shown (i.e. not [hidden]).                  */
  .nav-mobile:not([hidden]) a{
    animation:navDrop .36s var(--ease-out) both;
  }
  .nav-mobile:not([hidden]) a:nth-child(1){animation-delay:.02s;}
  .nav-mobile:not([hidden]) a:nth-child(2){animation-delay:.07s;}
  .nav-mobile:not([hidden]) a:nth-child(3){animation-delay:.12s;}
  .nav-mobile:not([hidden]) a:nth-child(4){animation-delay:.17s;}
  .nav-mobile:not([hidden]) a:nth-child(5){animation-delay:.22s;}
  .nav-mobile:not([hidden]) a:nth-child(6){animation-delay:.27s;}
}

@keyframes navDrop{
  from{opacity:0;transform:translateY(-10px);}
  to  {opacity:1;transform:translateY(0);}
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS — one style, fully round
   ═══════════════════════════════════════════════════════════════ */
.btn{
  position:relative;isolation:isolate;overflow:hidden;
  display:inline-flex;align-items:center;justify-content:center;
  min-height:var(--tap);
  font-family:inherit;
  font-size:var(--s);font-weight:700;line-height:var(--lh-flat);letter-spacing:.02em;
  padding:15px 28px;border-radius:var(--r-pill);
  border:1px solid var(--blue);background:var(--blue);color:var(--white);
  text-decoration:none;
  box-shadow:var(--shadow-press);
  transition:box-shadow var(--dur-mid) var(--ease-emph),
             transform var(--dur-mid) var(--ease-emph),
             background var(--dur-mid) var(--ease-emph),
             border-color var(--dur-mid) var(--ease-emph),
             color var(--dur-mid) var(--ease-emph);
}

/* State layer — the Material touch. A translucent veil over the
   button that deepens on hover and again on press, so feedback
   reads identically on every variant without restating colours. */
.btn::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:currentColor;opacity:0;
  transition:opacity var(--dur-fast) var(--ease-emph);
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft);}
.btn:hover::after{opacity:.10;}
.btn:active{transform:translateY(0);box-shadow:var(--shadow-press);}
.btn:active::after{opacity:.16;}

.btn--quiet{background:var(--white);color:var(--blue);border-color:var(--line);}
.btn--quiet:hover{border-color:var(--blue);}
.btn--ghost{
  background:rgba(255,255,255,.10);color:var(--white);
  border-color:rgba(255,255,255,.7);
  -webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);
}
.btn--ghost:hover{background:rgba(255,255,255,.18);border-color:var(--white);}

/* ═══════════════════════════════════════════════════════════════
   HERO — full-height, photographic background
   The marina photo fills the viewport. Copy anchors to the lower
   third, over the darker water and foreground, where white text
   reads cleanly. A gradient scrim guarantees legibility over the
   pale sky regardless of the image.
   ═══════════════════════════════════════════════════════════════ */
.hero{
  position:relative;
  min-height:100vh;          /* fallback */
  min-height:100svh;         /* avoids mobile address-bar crop */
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:var(--ink) url("../img/hero-marina.jpg") center 38% / cover no-repeat;
  overflow:hidden;
}
.hero-scrim{
  position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(to bottom,
      rgba(6,24,41,.28) 0%,
      rgba(6,24,41,.10) 34%,
      rgba(6,24,41,.55) 78%,
      rgba(6,24,41,.86) 100%);
}
.hero-copy{
  position:relative;               /* above the scrim */
  max-width:var(--wrap);
  width:100%;
  margin:0 auto;
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  /* Bottom padding clears the scroll cue (34px tall, 22px up)
     with generous breathing room beneath the buttons. */
  padding:0 28px 116px;
}
.hero-mark{display:flex;align-items:center;justify-content:center;gap:14px;margin:0;}
.hero .eyebrow{color:#DCE6F2;}
.hero h1{
  color:var(--white);
  font-size:var(--l);font-weight:700;line-height:var(--lh-tight);
  letter-spacing:-.03em;margin:0 0 30px;max-width:20ch;
  text-align:center;
  text-shadow:0 1px 24px rgba(6,24,41,.4);
}
.hero h1 .accent{color:var(--white);font-weight:800;font-style:italic;}
.hero-note{
  color:#EAF0F8;
  font-size:var(--m);line-height:var(--lh-read);
  max-width:52ch;margin:0 0 18px;
  text-shadow:0 1px 16px rgba(6,24,41,.45);
}
/* Desktop: a single row of two buttons at identical width.
   Mobile: they wrap and each fills the full column. */
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;max-width:460px;margin:0 0 32px;width:100%;justify-content:center;}
.hero-actions .btn{
  flex:1 1 200px;      /* equal basis → identical widths in a row */
  min-width:0;          /* lets them shrink rather than overflow */
  text-align:center;
}

/* ── Scroll cue: a soft chevron inviting the first scroll ──── */
.hero-cue{
  position:absolute;left:50%;bottom:22px;transform:translateX(-50%);
  width:34px;height:34px;border-radius:var(--r-pill);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);opacity:.8;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.08);
  animation:cueBob 2.4s ease-in-out infinite;
}
.hero-cue svg{width:16px;height:16px;}
@keyframes cueBob{
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%    {transform:translateX(-50%) translateY(6px);}
}


/* ═══════════════════════════════════════════════════════════════
   LOGO PLACEMENTS
   The mark is 1200x844 (ratio 1.422). Height is always the driver
   and width stays auto, so it can never be squashed.
   ═══════════════════════════════════════════════════════════════ */
.hero-logo{
  height:122px;            /* 84px + 45% */
  width:auto;
  margin:0 auto 26px;      /* auto margins centre it on the centreline */
  filter:drop-shadow(0 2px 18px rgba(6,24,41,.45));
}
.section-logo{
  height:96px;width:auto;margin:0 0 28px;
}
.about-mark{
  display:flex;align-items:center;gap:24px;
  flex-wrap:wrap;margin:0 0 8px;
}

@media (max-width:840px){
  .hero-logo{height:93px;margin-bottom:20px;}   /* 64px + 45% */
  .section-logo{height:76px;}
}

/* ═══════════════════════════════════════════════════════════════
   READING PROGRESS — a hairline that fills as you scroll
   ═══════════════════════════════════════════════════════════════ */
.progress{
  position:fixed;left:0;top:0;height:3px;width:0;z-index:300;
  background:linear-gradient(90deg,var(--blue),var(--gold));
  transition:width .08s linear;pointer-events:none;
}

/* ── Header condenses once you leave the hero ──────────────── */
.site-header{transition:padding .2s ease,box-shadow .2s ease;}
.site-header.is-condensed{box-shadow:0 6px 24px rgba(11,31,77,.07);}
.site-header.is-condensed .header-inner{padding-top:9px;padding-bottom:9px;}
.site-header.is-condensed .brand img{height:36px;}

/* ═══════════════════════════════════════════════════════════════
   CROWN MARK — a tiny nod to the burgee/crown, drawn in CSS.
   Sits before section eyebrows in place of a bullet.
   ═══════════════════════════════════════════════════════════════ */
.crown{
  display:block;
  width:20px;height:14px;
  flex:0 0 auto;
  margin-right:10px;
  color:var(--gold);
}
.crown svg{display:block;width:100%;height:100%;}

/* Eyebrows that carry a crown align as a row, so the mark sits
   optically centred against the label rather than on a baseline. */
.section-head .eyebrow{display:flex;align-items:center;}

/* The hero is min-height:100svh. On short viewports the larger logo
   would push the content past a single screen and the hero would grow
   taller than the viewport, so it steps back down here. */
@media (max-height:760px){
  .hero-logo{height:80px;margin-bottom:16px;}
  .hero-copy{padding-bottom:92px;}
}
@media (max-height:600px){
  .hero-logo{height:64px;margin-bottom:14px;}
  .hero-copy{padding-bottom:88px;}
}

/* ═══════════════════════════════════════════════════════════════
   NOTICE BOARD
   ═══════════════════════════════════════════════════════════════ */
/* Top padding lifts the card clear of the hero edge; without it the
   card butts against the photograph and crowds the scroll cue. */
.notice{background:var(--white);padding:76px 0;}
.notice-inner{
  background:var(--blue-wash);border-radius:var(--r-card);
  padding:40px;
  /* Centred stack: label above, message below, both optically
     centred within the card rather than packed to the left. */
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;gap:14px;
}
.notice .eyebrow{color:var(--blue);}
.notice p{
  margin:0 auto;font-size:var(--m);line-height:var(--lh-mid);
  max-width:58ch;
}
.notice a{color:var(--blue);font-weight:700;text-underline-offset:3px;}

/* ═══════════════════════════════════════════════════════════════
   AT A GLANCE — animated stat band
   ═══════════════════════════════════════════════════════════════ */
.stats{background:var(--blue);color:var(--white);padding:64px 0;}
.stats-grid{
  display:grid;gap:32px;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}
.stat{text-align:center;display:flex;flex-direction:column;}
.stat dt{
  font-size:var(--s);font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:#B9C9EC;margin:0 0 10px;line-height:var(--lh-flat);order:2;
}
.stat dd{
  margin:0;font-size:var(--l);font-weight:700;line-height:var(--lh-flat);
  letter-spacing:-.02em;order:1;
}
.stat .stat-unit{color:#8FB8F2;}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section{background:var(--ground);padding:100px 0;}
.section--white{background:var(--white);}
.section-head{margin-bottom:52px;}
.section-head .eyebrow{margin-bottom:16px;}
.section-head .display{margin-bottom:20px;}

/* ═══════════════════════════════════════════════════════════════
   BERTH CARD — one card style, everywhere
   ═══════════════════════════════════════════════════════════════ */
.berth-list{list-style:none;margin:0;padding:0;display:grid;gap:28px;}
.berth{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r-card);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  display:grid;grid-template-columns:minmax(0,44%) minmax(0,1fr);
  transition:box-shadow var(--dur-slow) var(--ease-emph),
             transform var(--dur-slow) var(--ease-emph),
             border-color var(--dur-slow) var(--ease-emph);
}
.berth:hover{box-shadow:var(--shadow-lift);transform:translateY(-2px);border-color:#C6D6EC;}
.section--white .berth{background:var(--ground);}

.berth-figure{position:relative;margin:0;background:var(--blue-wash);min-height:100%;}
.berth-figure img{width:100%;height:100%;min-height:300px;object-fit:cover;}

.berth-body{padding:36px;}
.berth-name{
  font-size:var(--m);font-weight:800;line-height:var(--lh-tight);
  letter-spacing:-.02em;margin:0 0 8px;
}
.berth-name a{text-decoration:none;border-bottom:2px solid var(--line);}
.berth-name a:hover{border-bottom-color:var(--blue);color:var(--blue);}
.berth-meta{
  font-size:var(--s);font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--ink-soft);margin:0 0 24px;line-height:var(--lh-mid);
}

.spec{
  margin:0 0 24px;padding:0;
  display:grid;grid-template-columns:auto 1fr;gap:8px 26px;
  font-size:var(--s);line-height:var(--lh-mid);
}
.spec dt{color:var(--ink-soft);font-weight:700;letter-spacing:.06em;text-transform:uppercase;}
.spec dd{margin:0;font-weight:500;}

.notes{font-size:var(--s);line-height:var(--lh-read);color:var(--ink-soft);margin:0 0 24px;}
.notes ul{margin:8px 0 0;padding-left:18px;}
.notes li{margin-bottom:5px;}

/* ── The sold stamp ─────────────────────────────────────────── */
.stamp{
  display:inline-block;
  border:2px solid var(--red);color:var(--red);background:transparent;
  border-radius:var(--r-pill);padding:9px 22px 8px;
  font-size:var(--s);font-weight:800;
  letter-spacing:.28em;text-transform:uppercase;line-height:var(--lh-flat);
  transform:rotate(-2.5deg);margin:0 0 22px;
  box-shadow:inset 0 0 0 1px rgba(200,16,46,.24);
}

/* ═══════════════════════════════════════════════════════════════
   PROSE + FACTS
   ═══════════════════════════════════════════════════════════════ */
.prose p{font-size:var(--m);line-height:var(--lh-read);max-width:60ch;margin:0 0 24px;}
.facts{
  list-style:none;margin:48px 0 0;padding:36px 0 0;
  display:grid;gap:32px;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  border-top:1px solid var(--line);
}
.facts dt{
  font-size:var(--s);font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--ink-soft);margin-bottom:12px;line-height:var(--lh-flat);
}
.facts dd{margin:0;font-size:var(--m);line-height:var(--lh-mid);font-weight:500;}

/* ── Tick list ──────────────────────────────────────────────── */
.ticks{list-style:none;margin:0;padding:0;display:grid;gap:14px;}
.ticks li{
  position:relative;padding-left:32px;
  font-size:var(--m);line-height:var(--lh-mid);
}
.ticks li::before{
  content:"";position:absolute;left:0;top:.5em;
  width:14px;height:14px;border-radius:var(--r-pill);
  background:var(--blue-wash);border:2px solid var(--blue);
}

/* ═══════════════════════════════════════════════════════════════
   GETTING HERE — map + directions
   ═══════════════════════════════════════════════════════════════ */
.here-grid{
  display:grid;gap:32px;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  align-items:start;
}
.map-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-card);box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.map-card iframe{
  display:block;width:100%;height:clamp(300px,42vh,420px);border:0;
}
.map-actions{
  display:flex;flex-wrap:wrap;gap:10px;
  padding:20px;border-top:1px solid var(--line);background:var(--white);
}

.route{list-style:none;margin:0;padding:0;display:grid;gap:20px;}
.route li{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-inner);padding:24px 26px;
  box-shadow:var(--shadow-soft);
}
.route h3{
  font-size:var(--s);font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue);margin:0 0 10px;line-height:var(--lh-flat);
}
.route p{margin:0;font-size:var(--s);line-height:var(--lh-read);color:var(--ink-soft);}
.route strong{color:var(--ink);font-weight:700;}

/* ═══════════════════════════════════════════════════════════════
   FAQ — single-open accordion
   ═══════════════════════════════════════════════════════════════ */
.faq{display:grid;gap:14px;max-width:820px;}
.faq details{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-inner);overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.faq summary{
  list-style:none;padding:22px 26px;
  font-size:var(--m);font-weight:700;line-height:var(--lh-mid);
  display:flex;justify-content:space-between;align-items:center;gap:20px;
}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{
  content:"+";font-size:var(--m);font-weight:700;color:var(--blue);
  line-height:1;flex:0 0 auto;
}
.faq details[open] summary::after{content:"–";}
.faq summary:hover{color:var(--blue);}
.faq .faq-body{padding:0 26px 24px;font-size:var(--s);line-height:var(--lh-read);color:var(--ink-soft);}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery{
  display:grid;gap:14px;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
}
.gallery button{
  padding:0;border:1px solid var(--line);background:var(--blue-wash);
  border-radius:var(--r-inner);overflow:hidden;display:block;width:100%;
  box-shadow:var(--shadow-soft);
  transition:box-shadow var(--dur-slow) var(--ease-emph),transform var(--dur-slow) var(--ease-emph);
}
.gallery button:hover{box-shadow:var(--shadow-lift);transform:translateY(-2px);}
.gallery img{width:100%;height:200px;object-fit:cover;}


/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox{
  position:fixed;inset:0;z-index:400;
  background:rgba(22,41,74,.94);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.lightbox[hidden]{display:none;}
.lightbox img{
  max-width:100%;max-height:82vh;object-fit:contain;border-radius:var(--r-inner);
}
.lb-btn{
  position:absolute;background:rgba(255,255,255,.14);color:var(--white);
  border:1px solid rgba(255,255,255,.3);border-radius:var(--r-pill);
  font-family:inherit;font-size:var(--s);font-weight:700;
  padding:14px 20px;line-height:var(--lh-flat);
  transition:background .18s ease;
}
.lb-btn:hover{background:rgba(255,255,255,.3);}
.lb-close{top:20px;right:20px;}
.lb-prev{left:20px;top:50%;transform:translateY(-50%);}
.lb-next{right:20px;top:50%;transform:translateY(-50%);}
.lb-count{
  position:absolute;bottom:22px;left:50%;transform:translateX(-50%);
  color:var(--white);font-size:var(--s);font-weight:700;letter-spacing:.1em;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-grid{
  display:grid;gap:28px;grid-template-columns:repeat(auto-fit,minmax(270px,1fr));align-items:start;
}
.contact-card{
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-card);box-shadow:var(--shadow-soft);padding:36px;
}
.section--white .contact-card{background:var(--ground);}
.tel{
  font-size:var(--l);font-weight:700;line-height:var(--lh-tight);letter-spacing:-.03em;
  color:var(--blue);text-decoration:none;display:inline-block;
  margin:16px 0 6px;border-bottom:3px solid var(--gold);
}
.tel:hover{border-bottom-color:var(--blue);}
.tel-alt{
  font-size:var(--m);font-weight:700;color:var(--ink);text-decoration:none;
  border-bottom:2px solid var(--line);
}
.tel-alt:hover{border-bottom-color:var(--blue);color:var(--blue);}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════ */
.crumb{background:var(--ground);padding:24px 0 0;}
.crumb ol{
  list-style:none;margin:0;padding:0;
  display:flex;flex-wrap:wrap;gap:10px;align-items:center;
  font-size:var(--s);color:var(--ink-soft);font-weight:600;
}
.crumb a{color:var(--blue);text-decoration:none;}
.crumb a:hover{text-decoration:underline;}
.crumb li+li::before{content:"›";margin-right:10px;color:var(--line);}


/* ═══════════════════════════════════════════════════════════════
   REVIEWS — Google rating and a nudge to leave one.
   Gold is already the site's single accent, so the stars need no
   new colour introduced.
   ═══════════════════════════════════════════════════════════════ */
.review-card{
  background:var(--ground);
  border:1px solid var(--line);
  border-radius:var(--r-card);
  box-shadow:var(--shadow-soft);
  padding:48px 40px;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.section--white .review-card{background:var(--ground);}
.review-card .eyebrow{margin:0 0 14px;}
.review-card .display{margin:0 0 22px;}

.rating-row{
  display:flex;align-items:center;gap:14px;
  margin:0 0 10px;
}
.stars{
  position:relative;display:inline-block;
  font-size:var(--l);line-height:1;letter-spacing:.06em;
  white-space:nowrap;
}
.stars-empty{color:var(--line);}
.stars-full{
  position:absolute;left:0;top:0;
  overflow:hidden;color:var(--gold);
  white-space:nowrap;
}
.rating-num{
  font-size:var(--l);font-weight:700;line-height:1;
  letter-spacing:-.02em;color:var(--ink);
}
.rating-meta{
  margin:0 0 26px;font-size:var(--s);font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;color:var(--ink-soft);
}
.review-lede{margin:0 0 30px;}
.review-actions{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin:0;
}

@media (max-width:840px){
  .review-card{padding:36px 23px;}
  .review-actions .btn{flex:1 1 100%;}
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer{background:var(--ink);color:#B9C7DC;padding:64px 0 40px;font-size:var(--s);}
.footer-grid{display:flex;flex-wrap:wrap;gap:36px;justify-content:space-between;align-items:flex-start;}
.site-footer a{color:var(--white);text-decoration:none;}
.site-footer a:hover{color:var(--gold);}
.footer-brand{display:flex;align-items:center;gap:14px;margin-bottom:18px;}
.footer-brand img{height:56px;width:auto;}
.footer-brand span{font-size:var(--m);font-weight:800;color:var(--white);}
.footer-nav{display:flex;flex-wrap:wrap;gap:10px 24px;}
.footer-nav a{font-weight:700;letter-spacing:.02em;}
.footer-base{
  margin-top:44px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.14);color:#93A6C0;
}
.footer-base p{margin:0;}
.footer-base .footer-credit{margin-top:10px;}
.footer-credit a{
  color:#93A6C0;text-decoration:none;
  transition:color var(--dur-mid) var(--ease-emph);
}
.footer-credit a:hover{color:var(--gold);}


/* ═══════════════════════════════════════════════════════════════
   LAYOUT STABILITY (Core Web Vitals)
   Every image already carries an explicit height in its component
   rule, which reserves the space and keeps CLS at zero. No
   aspect-ratio here: it would fight those heights.
   A tint fills the box while the photograph decodes.
   ═══════════════════════════════════════════════════════════════ */
.berth-figure img,.gallery img{
  background:var(--blue-wash);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL — AOS-compatible, self-hosted, dependency-free
   Uses the AOS data-attribute API (data-aos="fade-up", etc).

   The hidden start state is scoped behind .aos-ready, which a tiny
   head-guard script adds BEFORE first paint. So:
     • No JS at all  → .aos-ready never added → content shows plainly
     • JS runs        → elements fade up as they scroll into view
     • JS fails late  → a 2.5s fallback timer forces everything visible
   Content is never left stranded invisible.
   ═══════════════════════════════════════════════════════════════ */
.aos-ready [data-aos]{
  opacity:0;
  transition:opacity var(--aos-dur) var(--aos-ease),
             transform var(--aos-dur) var(--aos-ease);
}
/* will-change is deliberately NOT set here. With ~45 animated
   elements per page it would promote 45 compositor layers up front
   and cost real memory on phones. Opacity and transform are already
   GPU-accelerated, so the hint buys nothing. */
.aos-ready [data-aos="fade-up"]{transform:translateY(var(--aos-lift));}
.aos-ready [data-aos="fade-down"]{transform:translateY(calc(var(--aos-lift) * -1));}
.aos-ready [data-aos="fade-left"]{transform:translateX(var(--aos-lift));}
.aos-ready [data-aos="fade-right"]{transform:translateX(calc(var(--aos-lift) * -1));}
.aos-ready [data-aos="zoom-in"]{transform:scale(.94);}
.aos-ready [data-aos].aos-in{opacity:1;transform:none;}

/* Failsafe: if the script never marks itself done, show everything. */
.aos-ready.aos-fallback [data-aos]{opacity:1!important;transform:none!important;transition:none!important;}

/* Honour reduced-motion: no movement, content simply present. */
@media (prefers-reduced-motion:reduce){
  .aos-ready [data-aos]{opacity:1!important;transform:none!important;transition:none!important;}
}

@media (max-width:840px){
  .wrap,.hero-copy{padding-left:17px;padding-right:17px;}
  .berth{grid-template-columns:1fr;}
  .berth-body{padding:26px 23px;}
  .section{padding:68px 0;}
  .section-head{margin-bottom:36px;}
  .spec{grid-template-columns:1fr;gap:0;}
  .spec dt{padding-top:14px;}
  .hero-copy{padding-bottom:104px;}
  .hero-actions{max-width:none;}
  .hero-actions .btn{flex:1 1 100%;}
  .notice{padding:56px 0;}
  .notice-inner{padding:28px;}
  .gallery img{height:170px;}
  .lb-prev{left:10px;}
  .lb-next{right:10px;}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.001ms!important;animation-iteration-count:1!important;
    transition-duration:.001ms!important;
  }
  .berth:hover,.btn:hover,.gallery button:hover,.btn:active{transform:none;}
  .hero-cue{animation:none;}
}
