:root {
  --ink: #111614;
  --paper: #f3f6f3;
  --white: #ffffff;
  --sea: #6fd1ca;
  --sea-dark: #216d68;
  --pink: #c8325c;
  --muted: #6b716e;
  --line: rgba(17, 22, 20, 0.18);
  --radius: 12px;
  --header-h: 72px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --display: "Arial Narrow", "Franklin Gothic Medium", "Roboto Condensed", Arial, sans-serif;
  --body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.55; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: var(--white); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; height: var(--header-h); padding: 0 clamp(18px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; color: var(--white); transition: background-color .25s ease, box-shadow .25s ease; }
.site-header::after { content: ""; position: absolute; left: clamp(18px, 4vw, 64px); right: clamp(18px, 4vw, 64px); bottom: 0; height: 1px; background: rgba(255, 255, 255, .34); }
.site-header.is-solid { background: rgba(17, 22, 20, .96); box-shadow: 0 8px 24px rgba(0, 0, 0, .12); }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.brand-mark img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,.55); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.site-nav > a { position: relative; color: inherit; text-decoration: none; font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav > a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--sea); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-toggle { display: none; }
.icon-button { border: 0; background: transparent; color: inherit; cursor: pointer; transition: transform 140ms var(--ease-out), background-color 180ms ease; }
.icon-button:active { transform: scale(.94); }

.hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; display: flex; align-items: flex-end; color: var(--white); }
.hero-media { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 51%; will-change: transform; animation: hero-drift 18s var(--ease-in-out) infinite alternate; }
.hero-atmosphere { position: absolute; z-index: 1; inset: 0; overflow: hidden; pointer-events: none; }
.hero-glow { position: absolute; width: clamp(280px, 38vw, 620px); aspect-ratio: 1; border-radius: 50%; opacity: .24; mix-blend-mode: screen; filter: blur(22px); will-change: transform, opacity; }
.hero-glow-sea { top: -18%; left: -12%; background: radial-gradient(circle, rgba(111,209,202,.72), rgba(111,209,202,0) 68%); animation: glow-sea 12s var(--ease-in-out) infinite alternate; }
.hero-glow-pink { right: -14%; bottom: -28%; background: radial-gradient(circle, rgba(200,50,92,.64), rgba(200,50,92,0) 68%); animation: glow-pink 15s var(--ease-in-out) infinite alternate; }
.hero-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1) 12%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.42) 100%); }
.hero-content { position: relative; z-index: 3; width: min(1240px, calc(100% - 40px)); margin: 0 auto clamp(72px, 9vh, 108px); }
.hero-kicker, .eyebrow { margin: 0 0 16px; font-size: .76rem; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.hero-kicker { display: inline-block; padding-bottom: 8px; border-bottom: 3px solid var(--sea); }
.hero h1, h2, h3 { font-family: var(--display); text-transform: uppercase; letter-spacing: -.035em; line-height: .93; }
.hero h1 { max-width: 650px; margin: 0; font-size: clamp(3.2rem, 5.6vw, 4.9rem); text-wrap: balance; text-shadow: 0 2px 18px rgba(0, 0, 0, .2); }
.hero-copy { max-width: 470px; margin: 18px 0 0; font-size: clamp(1rem, 1.55vw, 1.18rem); font-weight: 700; }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { min-height: 50px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .83rem; cursor: pointer; transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease; }
.button:active { transform: scale(.97); }
.button-accent { background: var(--sea); color: var(--ink); }
.button-accent:hover { background: #8de1db; }
.button-ghost { background: rgba(17, 22, 20, .2); border-color: rgba(255, 255, 255, .8); color: var(--white); backdrop-filter: blur(5px); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.button-small { min-height: 42px; padding: 9px 18px; }
.hero-scroll { position: absolute; z-index: 4; right: clamp(20px, 4vw, 64px); bottom: 30px; display: flex; align-items: center; gap: 8px; text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.hero-scroll svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-scroll svg { animation: scroll-cue 1.8s var(--ease-in-out) infinite; }
.hero-stamp { position: absolute; z-index: 4; right: clamp(38px, 8vw, 128px); bottom: clamp(118px, 20vh, 190px); width: clamp(116px, 11vw, 158px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: rgba(17,22,20,.42); border: 1px solid rgba(255,255,255,.5); box-shadow: 0 0 0 6px rgba(111,209,202,.15); pointer-events: none; }
.hero-stamp svg { position: absolute; inset: 5px; width: calc(100% - 10px); height: calc(100% - 10px); overflow: visible; animation: stamp-spin 20s linear infinite; }
.hero-stamp text { fill: currentColor; font-family: var(--body); font-size: 10.4px; font-weight: 800; letter-spacing: 1.65px; text-transform: uppercase; }
.hero-stamp > span { font-family: var(--display); font-size: clamp(1.65rem, 2.6vw, 2.35rem); font-weight: 800; line-height: 1; }

.quick-facts { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.quick-facts::after { content: ""; position: absolute; left: -180px; bottom: 0; width: 180px; height: 2px; background: var(--sea); box-shadow: 0 0 16px rgba(111,209,202,.8); animation: fact-line 5.6s linear infinite; }
.quick-facts-inner { width: min(1320px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quick-fact { min-width: 0; padding: 24px clamp(14px, 2.5vw, 34px); border-right: 1px solid rgba(255,255,255,.16); }
.quick-fact:first-child { padding-left: 0; }
.quick-fact:last-child { padding-right: 0; border-right: 0; }
.quick-fact span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.58); font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.quick-fact strong { display: block; font-family: var(--display); font-size: clamp(1rem, 1.6vw, 1.35rem); text-transform: uppercase; line-height: 1.1; }
.quick-fact strong span { display: inline; margin: 0 0 0 3px; color: var(--sea); font-size: 1em; letter-spacing: 0; }

.brand-ticker { overflow: hidden; padding: 13px 0 12px; background: var(--pink); color: var(--white); border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(17,22,20,.18); }
.brand-ticker-track { display: flex; width: max-content; animation: ticker-flow 24s linear infinite; }
.brand-ticker-sequence { display: flex; align-items: center; flex: none; gap: clamp(24px, 3vw, 50px); padding-right: clamp(24px, 3vw, 50px); font-family: var(--display); font-size: clamp(1rem, 2vw, 1.45rem); font-weight: 800; text-transform: uppercase; letter-spacing: .035em; white-space: nowrap; }
.brand-ticker-sequence b { color: var(--sea); font-size: .85em; }

.section { width: min(1220px, calc(100% - 40px)); margin: 0 auto; padding: clamp(84px, 10vw, 148px) 0; }
.story { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(44px, 8vw, 120px); }
.story-visual { position: relative; isolation: isolate; min-width: 0; padding: 0 48px 62px 0; }
.story-visual::before { content: ""; position: absolute; z-index: -1; right: 4%; bottom: 3%; width: 44%; aspect-ratio: 1; border: 1px dashed rgba(33,109,104,.65); border-radius: 50%; animation: detail-orbit 18s linear infinite; }
.story-media, .ratio-media, .gallery-item { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: #d9ddd7; }
.story-media img, .ratio-media img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.story-media img { object-position: 50% 54%; }
.story-detail-media { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4 / 3; overflow: hidden; border: 8px solid var(--paper); border-radius: var(--radius); background: var(--ink); will-change: transform; animation: detail-float 5.8s var(--ease-in-out) infinite alternate; }
.story-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.story-detail-media span { position: absolute; left: 10px; bottom: 10px; padding: 6px 9px; border-radius: 999px; background: var(--pink); color: var(--white); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.eyebrow { color: var(--sea-dark); }
h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.6rem); text-wrap: balance; }
h3 { text-wrap: balance; }
.story-tag, .section-context, .gallery-context, .reviews-source, .visit-context { margin: 0 0 16px; color: var(--sea-dark); font-size: .8rem; font-weight: 800; }
.story-copy > p:not(.story-tag) { max-width: 650px; margin: 20px 0 0; font-size: clamp(1rem, 1.4vw, 1.17rem); color: #414845; text-wrap: pretty; }
.story-copy .story-lead { max-width: 580px; margin-top: 26px; color: var(--ink); font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.15; text-transform: uppercase; }
.story-details { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.story-details span { position: relative; padding-left: 15px; font-size: .86rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.story-details span::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--sea-dark); }

.menu-section { border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.section-intro { max-width: 440px; margin: 0 0 4px; color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 42px); }
.menu-group:nth-child(2) { margin-top: 60px; }
.menu-group h3 { margin: 22px 0 18px; font-size: clamp(1.65rem, 3vw, 2.6rem); }
.menu-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.menu-list li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); transition: transform 180ms var(--ease-out), color 180ms ease; }
.menu-list span { color: #3d4541; }
.menu-list strong { white-space: nowrap; }
.menu-footer { margin-top: 48px; display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.menu-footer p, .menu-note { margin: 0; color: var(--muted); font-size: .86rem; }
.text-link { padding: 0 0 7px; border: 0; border-bottom: 2px solid var(--ink); background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; }
.text-link span { display: inline-block; margin-left: 8px; animation: link-arrow 1.8s var(--ease-in-out) infinite; }

.favourites-section { padding: clamp(78px, 9vw, 132px) 20px; background: var(--sea); }
.favourites-inner { width: min(1320px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr); gap: clamp(44px, 7vw, 100px); align-items: start; }
.favourites-heading { position: sticky; top: calc(var(--header-h) + 42px); }
.pink-mark { display: inline-flex; margin-bottom: 18px; padding: 7px 11px; border-radius: 999px; background: var(--pink); color: var(--white); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.favourites-heading h2 { max-width: 520px; font-size: clamp(3rem, 4.5vw, 4.7rem); }
.favourites-heading p { max-width: 430px; margin: 24px 0 0; color: #184c48; }
.favourites-list { border-top: 1px solid rgba(17,22,20,.24); }
.favourite { display: grid; grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr); gap: clamp(20px, 3vw, 38px); align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(17,22,20,.24); }
.favourite img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); transition: transform 260ms var(--ease-out), filter 260ms ease; }
.favourite > div > span { display: block; color: #235e59; font-size: .75rem; font-weight: 800; }
.favourite h3 { margin: 7px 0 8px; font-size: clamp(1.65rem, 3vw, 2.65rem); }
.favourite p { margin: 0; color: #184c48; }

.gallery-section { width: 100%; padding-left: clamp(20px, 4vw, 64px); padding-right: clamp(20px, 4vw, 64px); background: var(--ink); color: var(--white); }
.gallery-section .section-heading { width: min(1220px, 100%); margin-left: auto; margin-right: auto; }
.gallery-section .section-intro { color: rgba(255,255,255,.64); }
.gallery-grid { width: min(1420px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); }
.gallery-item { padding: 0; border: 0; cursor: zoom-in; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { transform: translateY(28px); }
.gallery-item::before { content: ""; position: absolute; z-index: 2; top: -22%; bottom: -22%; left: -42%; width: 30%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent); transform: skewX(-16deg); animation: gallery-light 8s linear infinite; pointer-events: none; }
.gallery-item:nth-child(2n)::before { animation-delay: -2.6s; }
.gallery-item:nth-child(3n)::before { animation-delay: -5.2s; }
.gallery-item::after { content: ""; position: absolute; z-index: 1; inset: 58% 0 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.72)); pointer-events: none; }
.gallery-item { position: relative; color: var(--white); text-align: left; }
.gallery-caption { position: absolute; z-index: 3; left: 18px; right: 18px; bottom: 16px; display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 800; transition: transform 220ms var(--ease-out); }
.gallery-caption::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--sea); box-shadow: 0 0 0 0 rgba(111,209,202,.48); animation: caption-pulse 2.4s ease-out infinite; }

.reviews-section { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(48px, 7vw, 100px); }
.reviews-heading { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
.rating-summary { margin-top: 28px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 14px; }
.rating-summary strong { grid-row: span 2; font-family: var(--display); font-size: 4.5rem; line-height: 1; }
.rating-summary > span:last-child { color: var(--muted); font-size: .9rem; }
.stars { color: #c68c13; letter-spacing: .08em; }
.reviews-grid { display: grid; gap: 18px; }
.review-card { position: relative; padding: 30px; border-top: 1px solid var(--line); background: transparent; transition: transform 220ms var(--ease-out), background-color 220ms ease; }
.review-card:last-child { border-bottom: 1px solid var(--line); }
.review-topic { position: absolute; top: 31px; right: 30px; color: var(--sea-dark); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author img { border-radius: 50%; }
.review-author div { display: grid; }
.review-author span { color: var(--muted); font-size: .82rem; }
.review-card > .stars { margin-top: 20px; }
.review-card blockquote { margin: 15px 0 0; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.65; color: #343b38; }

.good-to-know { padding: clamp(76px, 8vw, 116px) 20px; background: var(--white); }
.good-to-know-inner { width: min(1320px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: clamp(42px, 7vw, 100px); }
.know-heading p { margin: 0 0 14px; color: var(--pink); font-weight: 800; }
.know-heading h2 { font-size: clamp(3rem, 5vw, 4.8rem); }
.know-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.know-item { display: grid; gap: 7px; padding: 24px 20px 24px 0; border-bottom: 1px solid var(--line); }
.know-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.know-item strong { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; }
.know-item span { max-width: 270px; color: var(--muted); }

.visit-section { background: var(--sea); }
.visit-panel { width: min(1320px, calc(100% - 40px)); display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
.visit-copy { padding: 10px 0; }
.visit-copy .eyebrow { color: #194b47; }
.visit-list { margin: 36px 0 0; }
.visit-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid rgba(17,22,20,.2); }
.visit-list > div:last-child { border-bottom: 1px solid rgba(17,22,20,.2); }
.visit-list dt { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.visit-list dd { margin: 0; font-weight: 700; }
.map-wrap { min-height: 590px; overflow: hidden; border-radius: var(--radius); background: #d2d7d3; box-shadow: 0 24px 50px rgba(10, 50, 47, .18); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 590px; border: 0; display: block; }

.site-footer { padding: 70px clamp(20px, 4vw, 64px) 26px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr auto; align-items: center; gap: 30px; padding-bottom: 52px; }
.footer-brand { display: inline-flex; align-items: center; gap: 18px; text-decoration: none; font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; line-height: 1; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; }
.footer-main p { color: rgba(255,255,255,.62); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; display: grid; place-items: center; transition: color .2s, border-color .2s, background-color .2s; }
.social-links a:hover { color: var(--ink); border-color: var(--sea); background: var(--sea); }
.social-links svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-links .fill-dot, .social-links .fill-icon { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.6); font-size: .78rem; }
.footer-bottom a { margin-left: auto; }
.footer-bottom a + a { margin-left: 0; }

.modal, .lightbox { width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 20px; border: 0; background: transparent; color: var(--ink); }
.modal::backdrop, .lightbox::backdrop { background: rgba(6, 10, 9, .82); backdrop-filter: blur(7px); }
.modal[open] { display: grid; place-items: center; }
.modal-shell { position: relative; width: min(760px, 100%); max-height: calc(100svh - 40px); overflow: auto; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius); background: var(--paper); box-shadow: 0 28px 80px rgba(0,0,0,.36); opacity: 1; transform: translateY(0) scale(1); transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out); }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 16px; width: 44px; height: 44px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.modal-close:hover { background: rgba(17,22,20,.08); }
.modal-heading h2 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
.modal-heading > p:last-child { max-width: 560px; color: var(--muted); }
.booking-form { margin-top: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink); padding: 13px 14px; text-transform: none; letter-spacing: normal; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: 3px solid rgba(59,159,153,.24); border-color: var(--sea-dark); }
.form-grid [aria-invalid="true"] { border-color: #9b2e2e; }
.form-wide { grid-column: 1 / -1; }
.field-error { min-height: 1em; color: #9b2e2e; font-size: .7rem; text-transform: none; letter-spacing: normal; }
.booking-form > .button { margin-top: 22px; }
.booking-result { margin-top: 20px; padding: 18px; border: 1px solid var(--sea-dark); border-radius: 8px; background: var(--white); }
.booking-result a { font-weight: 800; }
.menu-modal-shell { width: min(900px, 100%); }
.menu-modal-shell > img { width: 100%; margin-top: 24px; border-radius: 8px; }
.menu-note { padding-top: 18px; }

.lightbox[open] { display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; gap: 10px; color: var(--white); }
.lightbox figure { margin: 0 auto; width: min(820px, 100%); height: min(78svh, 940px); display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; opacity: 1; transform: translateY(0) scale(1); transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out); }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { text-align: center; font-size: .88rem; }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; background: rgba(0,0,0,.28); font-size: 2.2rem; }
.lightbox-nav { min-width: 50px; min-height: 64px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(0,0,0,.25); color: var(--white); font-size: 2.8rem; cursor: pointer; transition: transform 140ms var(--ease-out), background-color 180ms ease; }
.lightbox-nav:active { transform: scale(.95); }

:focus-visible { outline: 3px solid var(--sea-dark); outline-offset: 4px; }
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out); }
.motion-ready .reveal[data-motion="left"] { transform: translateX(-14px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translate(0, 0); }
.motion-ready .reveal .story-media,
.motion-ready .reveal .ratio-media { clip-path: inset(0 0 100% 0); transition: clip-path 900ms var(--ease-in-out); }
.motion-ready .reveal.is-visible .story-media,
.motion-ready .reveal.is-visible .ratio-media { clip-path: inset(0 0 0 0); }
.motion-ready .menu-group:nth-child(2) { transition-delay: 70ms; }
.motion-ready .menu-group:nth-child(3) { transition-delay: 140ms; }
.motion-ready .gallery-item:nth-child(3n + 2) { transition-delay: 60ms; }
.motion-ready .gallery-item:nth-child(3n + 3) { transition-delay: 120ms; }
.booking-result:not([hidden]) { animation: result-enter 260ms var(--ease-out); }

@starting-style {
  .modal[open] .modal-shell,
  .lightbox[open] figure { opacity: 0; transform: translateY(18px) scale(.97); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover:not(:active) { transform: translateY(-3px); }
  .story-media:hover img, .menu-group:hover .ratio-media img, .gallery-item:hover img { transform: scale(1.055); }
  .menu-list li:hover { transform: translateX(7px); }
  .menu-list li:hover strong { color: var(--pink); }
  .favourite:hover img { transform: scale(1.035) rotate(-.6deg); filter: saturate(1.08); }
  .gallery-item:hover .gallery-caption { transform: translateY(-5px); }
  .review-card:hover { transform: translateX(8px); background: rgba(111,209,202,.08); }
  .hero-stamp:hover { transform: scale(1.04); }
}

@keyframes hero-drift {
  0% { transform: scale(1.035) translate3d(-.5%, -.25%, 0); }
  100% { transform: scale(1.075) translate3d(.7%, .45%, 0); }
}
@keyframes glow-sea {
  0% { transform: translate3d(-8%, -3%, 0) scale(.9); opacity: .16; }
  100% { transform: translate3d(42%, 30%, 0) scale(1.15); opacity: .34; }
}
@keyframes glow-pink {
  0% { transform: translate3d(10%, 12%, 0) scale(.92); opacity: .14; }
  100% { transform: translate3d(-34%, -24%, 0) scale(1.18); opacity: .3; }
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }
@keyframes scroll-cue {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(5px); }
}
@keyframes fact-line { to { transform: translateX(calc(100vw + 360px)); } }
@keyframes ticker-flow { to { transform: translateX(-50%); } }
@keyframes detail-orbit { to { transform: rotate(360deg); } }
@keyframes detail-float {
  0% { transform: translate3d(0, 0, 0) rotate(-.3deg); }
  100% { transform: translate3d(0, -10px, 0) rotate(.7deg); }
}
@keyframes link-arrow {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, -4px, 0); }
}
@keyframes gallery-light {
  0%, 30% { transform: translate3d(0, 0, 0) skewX(-16deg); opacity: 0; }
  38% { opacity: 1; }
  58%, 100% { transform: translate3d(520%, 0, 0) skewX(-16deg); opacity: 0; }
}
@keyframes caption-pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,209,202,.55); }
  75%, 100% { box-shadow: 0 0 0 9px rgba(111,209,202,0); }
}
@keyframes result-enter {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mobile-action-bar { display: none; }

@media (max-width: 880px) {
  :root { --header-h: 66px; }
  .site-header { padding: 0 18px; }
  .site-header::after { left: 18px; right: 18px; }
  .brand-mark span { font-size: .9rem; }
  .brand-mark img { width: 42px; height: 42px; }
  .nav-toggle { display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; }
  .nav-toggle span { width: 24px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header-h); left: 0; right: 0; display: grid; gap: 0; padding: 18px 20px 26px; background: rgba(17,22,20,.98); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav > a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 1rem; }
  .site-nav .button { margin-top: 18px; }
  .hero-content { width: calc(100% - 36px); margin-bottom: 86px; }
  .hero h1 { font-size: clamp(3rem, 8.4vw, 4.9rem); }
  .hero-copy { max-width: 360px; }
  .hero-scroll { display: none; }
  .hero-stamp { display: none; }
  .section { width: min(100% - 36px, 680px); padding: 88px 0; }
  .quick-facts-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-fact { border-bottom: 1px solid rgba(255,255,255,.16); }
  .quick-fact:nth-child(2) { border-right: 0; }
  .quick-fact:nth-child(3), .quick-fact:nth-child(4) { border-bottom: 0; }
  .quick-fact:first-child, .quick-fact:nth-child(3) { padding-left: 0; }
  .quick-fact:nth-child(2), .quick-fact:last-child { padding-right: 0; }
  .story, .section-heading, .reviews-section, .visit-panel, .favourites-inner, .good-to-know-inner { grid-template-columns: minmax(0, 1fr); }
  .story { gap: 42px; }
  .story-visual, .story-copy { min-width: 0; max-width: 100%; }
  .story-visual { width: min(92%, 530px); }
  .story-media { width: 100%; }
  .story-copy { margin-left: 8%; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-group { display: grid; grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr); column-gap: 24px; align-items: start; }
  .menu-group:nth-child(2) { margin-top: 0; }
  .menu-group .ratio-media { grid-row: span 2; }
  .menu-group h3 { margin-top: 4px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { transform: none; }
  .reviews-heading { position: static; }
  .favourites-heading { position: static; }
  .visit-panel { width: min(100% - 36px, 680px); }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .mobile-action-bar { position: fixed; z-index: 45; left: 0; right: 0; bottom: 0; min-height: 62px; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: .8fr 1.2fr 1fr; gap: 6px; background: rgba(17,22,20,.97); color: var(--white); box-shadow: 0 -6px 18px rgba(0,0,0,.16); }
  .mobile-action-bar a, .mobile-action-bar button { min-height: 48px; border: 0; border-radius: 999px; display: grid; place-items: center; background: transparent; color: inherit; text-decoration: none; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
  .mobile-action-bar a:nth-child(2) { border: 1px solid rgba(255,255,255,.3); }
  .mobile-action-bar button { background: var(--sea); color: var(--ink); }
}

@media (min-width: 561px) and (max-width: 880px) and (max-height: 640px) {
  .hero-content { max-width: 560px; margin-bottom: 84px; }
  .hero-kicker { margin-bottom: 10px; }
  .hero h1 { font-size: clamp(2.85rem, 6.2vw, 4rem); }
  .hero-copy { max-width: 410px; margin-top: 12px; font-size: 1rem; }
  .hero-actions { display: none; }
}

@media (max-width: 560px) {
  .hero-media { object-position: 51% 51%; }
  .hero-content { margin-bottom: calc(90px + env(safe-area-inset-bottom)); }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 5.4rem); }
  .hero-kicker { margin-bottom: 12px; }
  .hero-copy { margin-top: 16px; font-size: .98rem; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { flex: 1; min-width: 0; padding-left: 16px; padding-right: 16px; }
  .hero-glow { width: 92vw; filter: blur(18px); opacity: .18; }
  .hero-glow-pink { right: -52%; bottom: -15%; }
  h2 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .story-visual { width: 100%; padding: 0 30px 48px 0; }
  .story-detail-media { width: 48%; border-width: 6px; }
  .story-copy { margin-left: 0; }
  .story-copy > p:not(.eyebrow) { font-size: .98rem; }
  .menu-group { display: block; }
  .menu-group .ratio-media { width: 100%; }
  .menu-group h3 { margin-top: 20px; }
  .menu-footer { align-items: flex-start; flex-direction: column; }
  .gallery-section { padding-left: 12px; padding-right: 12px; }
  .gallery-grid { gap: 10px; }
  .gallery-caption { left: 10px; right: 10px; bottom: 10px; font-size: .68rem; line-height: 1.25; }
  .review-card { padding: 24px 20px; }
  .review-topic { position: static; display: block; margin-bottom: 18px; }
  .favourites-section, .good-to-know { padding-left: 18px; padding-right: 18px; }
  .favourite { grid-template-columns: 112px minmax(0, 1fr); gap: 18px; }
  .favourite h3 { font-size: 1.55rem; }
  .favourite p { font-size: .86rem; }
  .know-grid { grid-template-columns: 1fr; }
  .know-item, .know-item:nth-child(even) { padding: 20px 0; border-left: 0; }
  .visit-actions { flex-direction: column; }
  .visit-actions .button { width: 100%; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > p { grid-column: auto; grid-row: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a, .footer-bottom a + a { margin-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .modal { padding: 10px; }
  .modal-shell { max-height: calc(100svh - 20px); padding: 34px 20px 26px; }
  .lightbox { padding: 12px; }
  .lightbox[open] { grid-template-columns: 1fr 1fr; align-content: center; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; height: min(74svh, 720px); }
  .lightbox-prev, .lightbox-next { grid-row: 2; min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .hero-media, .hero-glow, .story-detail-media, .story-visual::before, .hero-scroll svg { transform: none !important; }
  .brand-ticker { overflow-x: auto; }
  .brand-ticker-track { transform: none !important; }
  .brand-ticker-sequence + .brand-ticker-sequence { display: none; }
  .motion-ready .reveal .story-media,
  .motion-ready .reveal .ratio-media { clip-path: inset(0); }
}
