:root {
  --ink: #102d35;
  --ink-soft: #496168;
  --teal-950: #032f33;
  --teal-900: #06474a;
  --teal-800: #075b5c;
  --teal-700: #087270;
  --teal-500: #2aa29b;
  --teal-200: #b9e3dc;
  --teal-100: #ddf2ed;
  --teal-50: #f0f8f5;
  --gold-800: #8d5910;
  --gold-600: #bd7f1d;
  --gold-500: #d9a33d;
  --gold-200: #f0d89e;
  --gold-100: #f9edcf;
  --cream: #fbf8f1;
  --paper: #fffdf9;
  --white: #fff;
  --line: rgba(6, 71, 74, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --danger-soft: #fff6ef;
  --danger-line: #d99b70;
  --shadow-sm: 0 16px 42px rgba(3, 47, 51, 0.08);
  --shadow-lg: 0 34px 90px rgba(3, 47, 51, 0.2);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --max: 1260px;
  --pad: clamp(22px, 4vw, 56px);
  --section: clamp(78px, 9vw, 138px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
:focus-visible { outline: 3px solid rgba(217, 163, 61, 0.82); outline-offset: 4px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 5000; transform: translateY(-160%); padding: 11px 17px; border-radius: 12px; background: var(--white); color: var(--teal-950); font-weight: 850; box-shadow: var(--shadow-lg); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.container { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin-inline: auto; }
.section { width: 100%; padding: var(--section) 0; }
.section-sm { width: 100%; padding: clamp(44px, 6vw, 72px) 0; }
.surface { background: var(--white); }
.surface-soft { background: var(--teal-50); }
.surface-dark { background: var(--teal-950); color: var(--white); }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0.48em; color: var(--teal-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.04; text-wrap: balance; }
h1 { font-size: clamp(2.8rem, 6.2vw, 6rem); letter-spacing: -0.052em; }
h2 { font-size: clamp(2.1rem, 4.1vw, 4.25rem); letter-spacing: -0.038em; }
h3 { font-size: clamp(1.22rem, 1.7vw, 1.6rem); line-height: 1.14; }
p { margin-bottom: 1.15em; }
.surface-dark h1, .surface-dark h2, .surface-dark h3 { color: var(--white); }
.surface-dark p, .surface-dark li { color: rgba(255,255,255,0.76); }
.lead { max-width: 800px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.65; }
.surface-dark .lead { color: rgba(255,255,255,0.78); }
.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--teal-700); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.16em; line-height: 1.4; text-transform: uppercase; }
.kicker::before { content: ""; width: 34px; height: 2px; flex: 0 0 auto; background: var(--gold-500); }
.surface-dark .kicker, .hero .kicker, .page-hero .kicker, .cta-band .kicker { color: var(--gold-100); }
.lede-center { max-width: 860px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.lede-center > p:last-child { margin-inline: auto; color: var(--ink-soft); font-size: 1.04rem; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr); gap: clamp(32px, 6vw, 90px); align-items: end; margin-bottom: clamp(42px, 6vw, 78px); }
.section-heading > p { margin-bottom: 0; color: var(--ink-soft); font-size: 1.04rem; }

.utility-bar { background: var(--teal-950); color: rgba(255,255,255,0.84); font-size: 0.75rem; }
.utility-inner { min-height: 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.utility-inner a { color: var(--white); font-weight: 760; text-decoration: none; }
.utility-map { justify-self: end; }
.site-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--line); background: rgba(255,253,249,0.94); box-shadow: 0 8px 30px rgba(3,47,51,0.05); backdrop-filter: blur(18px); }
.nav-shell { min-height: 84px; display: flex; align-items: center; gap: clamp(20px, 3vw, 46px); }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 286px; text-decoration: none; }
.brand img { width: 58px; height: 58px; flex: 0 0 auto; border: 1px solid rgba(189,127,29,0.55); border-radius: 50%; object-fit: cover; box-shadow: 0 8px 20px rgba(3,47,51,0.1); }
.brand-copy { line-height: 1.08; }
.brand-copy strong { display: block; color: var(--teal-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.brand-copy small { display: block; margin-top: 6px; color: var(--gold-800); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 2px; }
.site-nav a { padding: 10px 10px; border-radius: 999px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 760; text-decoration: none; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--teal-100); color: var(--teal-950); }
.site-nav .nav-book { margin-left: 8px; padding-inline: 17px; background: var(--teal-800); color: var(--white); }
.site-nav .nav-book:hover, .site-nav .nav-book[aria-current="page"] { background: var(--gold-600); color: var(--white); }
.nav-toggle { display: none; width: 48px; height: 48px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--teal-950); }

.hero { position: relative; isolation: isolate; min-height: min(860px, calc(100svh - 122px)); display: grid; align-items: center; overflow: hidden; background: var(--teal-950); color: var(--white); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { height: 100%; object-fit: cover; object-position: center; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(3,36,40,0.98) 0%, rgba(3,47,51,0.9) 40%, rgba(3,47,51,0.35) 70%, rgba(3,47,51,0.05) 100%); }
.hero-grid { min-height: inherit; display: grid; grid-template-columns: 1fr; align-items: center; padding: clamp(76px, 10vw, 140px) 0; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 780px; color: var(--white); }
.hero .lead { max-width: 650px; color: rgba(255,255,255,0.82); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-location { margin: 30px 0 0; color: var(--gold-100); font-size: 0.78rem; font-weight: 760; letter-spacing: 0.04em; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-size: 0.82rem; font-weight: 820; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-500); color: #162925; box-shadow: 0 12px 28px rgba(189,127,29,0.24); }
.button-primary:hover { background: var(--gold-200); }
.button-secondary { border-color: rgba(255,255,255,0.46); background: rgba(255,255,255,0.1); color: var(--white); }
.button-secondary:hover { background: rgba(255,255,255,0.18); }
.button-teal { background: var(--teal-800); color: var(--white); }
.button-teal:hover { background: var(--teal-950); }
.button-outline { border-color: var(--line); background: var(--white); color: var(--teal-950); }
.button-outline:hover { border-color: var(--teal-500); background: var(--teal-50); }
.surface-dark .button-outline, .cta-band .button-outline { border-color: var(--white); color: var(--teal-950); }

.page-hero { position: relative; isolation: isolate; min-height: min(720px, calc(100svh - 122px)); display: grid; align-items: end; overflow: hidden; background: var(--teal-950); color: var(--white); }
.page-hero-media, .page-hero-shade { position: absolute; inset: 0; }
.page-hero-media { z-index: -2; }
.page-hero-media img { height: 100%; object-fit: cover; object-position: center; }
.page-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(2,30,34,0.98) 0%, rgba(3,47,51,0.88) 46%, rgba(3,47,51,0.28) 78%, rgba(3,47,51,0.14) 100%); }
.page-hero-content { padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 118px); }
.page-hero h1 { max-width: 970px; color: var(--white); font-size: clamp(2.8rem, 5.8vw, 5.8rem); }
.page-hero .lead { max-width: 720px; color: rgba(255,255,255,0.8); }
.breadcrumbs { margin-bottom: clamp(42px, 8vw, 88px); color: rgba(255,255,255,0.68); font-size: 0.76rem; }
.breadcrumbs a { color: var(--white); font-weight: 760; text-decoration: none; }
.breadcrumbs span { margin: 0 8px; }

.trust-strip { position: relative; z-index: 2; border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 126px; padding: 28px clamp(18px, 2.4vw, 34px); border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--teal-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.trust-item span { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.5; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; height: 100%; padding: clamp(25px, 3vw, 38px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.card-soft { background: var(--teal-50); box-shadow: none; }
.card-gold { border-color: rgba(189,127,29,0.3); background: #fffaf0; }
.card h3 { margin-bottom: 12px; }
.card p, .card li { color: var(--ink-soft); }
.card p:last-child { margin-bottom: 0; }
.surface-dark .card { border-color: rgba(255,255,255,0.12); background: var(--white); }
.surface-dark .card h3 { color: var(--teal-950); }
.surface-dark .card p, .surface-dark .card li, .surface-dark .card .muted { color: var(--ink-soft); }
.card-link { display: inline-flex; align-items: center; margin-top: 14px; color: var(--teal-800); font-size: 0.82rem; font-weight: 850; text-decoration: none; }
.card-link:hover { color: var(--gold-800); }
.number { display: block; margin-bottom: 18px; color: var(--gold-800); font-family: Georgia, "Times New Roman", serif; font-size: 1.48rem; }
.icon-chip { display: inline-grid; min-width: 46px; height: 46px; place-items: center; margin-bottom: 18px; padding-inline: 12px; border-radius: 14px; background: var(--teal-100); color: var(--teal-950); font-size: 0.78rem; font-weight: 850; }
.service-grid { align-items: stretch; }
.service-card { padding: 0; }
.service-card > img { height: clamp(270px, 26vw, 360px); object-fit: cover; }
.service-card .card-body { padding: clamp(25px, 3vw, 38px); }
.service-card .number { margin-bottom: 12px; }
.tag-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li, .tag-list span, .tag-list a { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft); font-size: 0.76rem; font-weight: 760; }
.tag-list a { text-decoration: none; transition: border-color 160ms ease, color 160ms ease, transform 160ms ease; }
.tag-list a:hover { border-color: var(--gold-500); color: var(--teal-950); transform: translateY(-1px); }
.tag-list a[aria-current="page"] { border-color: var(--teal-700); background: var(--teal-100); color: var(--teal-950); }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr); gap: clamp(44px, 7vw, 106px); align-items: start; }
.split-narrow { grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.12fr); }
.sticky-card { position: sticky; top: 126px; }
.prose { max-width: 880px; }
.prose h2 { margin-top: clamp(42px, 6vw, 70px); }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--teal-800); font-weight: 760; }
.prose ul, .check-list { padding-left: 20px; }
.check-list { display: grid; gap: 12px; list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 31px; color: var(--ink-soft); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 9px; height: 9px; border: 2px solid var(--gold-600); border-radius: 50%; }
.surface-dark .check-list li { color: rgba(255,255,255,0.78); }
.plain-list { display: grid; gap: 10px; padding-left: 20px; color: var(--ink-soft); }
.notice { padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-left: 5px solid var(--teal-700); border-radius: var(--radius-sm); background: var(--teal-50); color: var(--ink-soft); }
.notice h2, .notice h3, .notice strong { color: var(--teal-950); }
.notice a { color: var(--teal-800); font-weight: 760; }
.notice-caution { border-color: var(--danger-line); border-left-color: #b96532; background: var(--danger-soft); }

.media-section { overflow: hidden; }
.media-split, .visual-story-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.9fr); gap: clamp(44px, 7vw, 110px); align-items: center; }
.media-split-reverse .image-frame { order: 2; }
.image-frame, .visual-story figure { margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-frame img, .visual-story figure img { height: clamp(460px, 48vw, 620px); object-fit: cover; }
.image-frame-tall img { height: clamp(540px, 56vw, 700px); }
.media-copy { max-width: 600px; }
.visual-story { padding: clamp(68px, 8vw, 116px) 0; background: linear-gradient(135deg, var(--teal-950), var(--teal-800)); color: var(--white); }
.visual-story-grid { grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.72fr); }
.visual-story figure img { height: clamp(410px, 42vw, 530px); }
.visual-story h2 { color: var(--white); }
.visual-story p { color: rgba(255,255,255,0.78); }
.visual-story .card-link { color: var(--gold-100); }
.experience-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.experience-rail article { min-height: 270px; padding: 34px clamp(20px, 3vw, 38px); border-right: 1px solid var(--line); }
.experience-rail article:last-child { border-right: 0; }
.experience-rail span { display: block; margin-bottom: 44px; color: var(--gold-800); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.12em; }
.experience-rail p { color: var(--ink-soft); }
.location-feature { position: relative; isolation: isolate; min-height: 720px; display: grid; align-items: center; overflow: hidden; }
.location-image { position: absolute; inset: 0; z-index: -2; }
.location-image img { height: 100%; object-fit: cover; }
.location-feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,34,38,0.96), rgba(3,47,51,0.68) 56%, rgba(3,47,51,0.18)); }
.location-content { padding-block: var(--section); }
.location-content h2, .location-content p { max-width: 760px; }
.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr); gap: clamp(42px, 7vw, 105px); align-items: start; }

.details-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 8px 24px rgba(3,47,51,0.035); }
summary { position: relative; padding: 21px 56px 21px 23px; color: var(--teal-950); font-weight: 820; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 14px; color: var(--gold-600); font-family: Georgia, serif; font-size: 1.6rem; }
details[open] summary::after { content: "−"; }
.details-body { padding: 0 23px 22px; color: var(--ink-soft); }
.details-body p:last-child { margin-bottom: 0; }
.contact-panel { display: grid; gap: 16px; }
.contact-row { display: grid; gap: 8px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.contact-row strong { color: var(--teal-950); }
.contact-row a { color: var(--teal-800); font-weight: 850; text-decoration: none; }
.map-card { min-height: 430px; display: grid; place-content: center; padding: clamp(35px, 6vw, 72px); border-radius: var(--radius-lg); color: var(--white); text-align: center; background: linear-gradient(145deg, var(--teal-950), var(--teal-700)); box-shadow: var(--shadow-lg); }
.map-card h2 { color: var(--white); }
.map-card .muted { color: rgba(255,255,255,0.7); }

.booking-form { padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px; margin-bottom: 20px; }
.field { display: grid; gap: 8px; color: var(--teal-950); font-size: 0.83rem; font-weight: 760; }
.field-full { grid-column: 1 / -1; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(6,71,74,0.24); border-radius: 13px; background: var(--white); color: var(--ink); padding: 13px 14px; }
.field textarea { min-height: 122px; resize: vertical; }
.form-note { margin: 0 0 24px; color: var(--ink-soft); font-size: 0.77rem; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--teal-800); font-size: 0.8rem; font-weight: 760; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.video-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.video-card > div { padding: clamp(26px, 4vw, 42px); }
.video-card p { color: var(--ink-soft); }
.video-card a { color: var(--teal-800); font-weight: 850; text-decoration: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--teal-950); box-shadow: var(--shadow-sm); }
.gallery-grid img { height: clamp(420px, 43vw, 560px); object-fit: cover; transition: transform 500ms ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 70px 24px 22px; color: var(--white); font-size: 0.8rem; font-weight: 720; background: linear-gradient(transparent, rgba(3,30,34,0.92)); }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { height: clamp(520px, 52vw, 660px); }

.cta-band { position: relative; isolation: isolate; width: 100%; overflow: hidden; background: linear-gradient(135deg, var(--teal-950), var(--teal-700)); color: var(--white); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 85% 30%, rgba(217,163,61,0.2), transparent 27%); }
.cta-inner { min-height: 500px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(36px, 8vw, 120px); align-items: center; padding-block: clamp(76px, 9vw, 132px); }
.cta-band h2 { max-width: 820px; color: var(--white); }
.cta-band p { max-width: 720px; color: rgba(255,255,255,0.76); }
.cta-band .button-row { margin-top: 0; align-items: stretch; flex-direction: column; min-width: 210px; }

.site-footer { padding: clamp(70px, 8vw, 110px) 0 28px; background: #02282c; color: rgba(255,255,255,0.7); }
.footer-top { display: flex; justify-content: space-between; gap: 44px; align-items: center; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 16px; max-width: 530px; color: var(--white); text-decoration: none; }
.footer-brand img { width: 72px; height: 72px; flex: 0 0 auto; border: 1px solid var(--gold-500); border-radius: 50%; object-fit: cover; }
.footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.footer-brand p { margin: 5px 0 0; color: rgba(255,255,255,0.66); font-size: 0.82rem; }
.footer-call { text-align: right; text-decoration: none; }
.footer-call span { display: block; color: var(--gold-100); font-size: 0.72rem; font-weight: 760; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-call strong { display: block; margin-top: 4px; color: var(--white); font-family: Georgia, serif; font-size: 1.42rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr 0.8fr; gap: clamp(30px, 5vw, 72px); padding-top: 52px; }
.site-footer h2 { color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 10px; padding: 0; list-style: none; }
.footer-links a, .site-footer p a { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-decoration: none; }
.footer-links a:hover, .site-footer p a:hover { color: var(--gold-100); }
.site-footer address { font-size: 0.82rem; line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.7rem; }
.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px; padding: 12px 17px; border-radius: 999px; background: #147d57; color: var(--white); box-shadow: 0 16px 40px rgba(3,47,51,0.28); font-size: 0.78rem; font-weight: 850; text-decoration: none; }
.consent-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 2000; max-width: 860px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-lg); }
.consent-banner[hidden] { display: none; }
.consent-copy strong { display: block; color: var(--teal-950); }
.consent-copy p { margin: 4px 0 0; color: var(--ink-soft); font-size: 0.76rem; }
.consent-copy a { color: var(--teal-800); font-weight: 800; }
.consent-actions { display: flex; flex-shrink: 0; gap: 8px; }
.consent-actions button { min-height: 42px; padding: 9px 14px; border-radius: 999px; font-size: 0.74rem; font-weight: 850; cursor: pointer; }
.consent-reject { border: 1px solid var(--line); background: var(--white); }
.consent-accept { border: 1px solid var(--teal-800); background: var(--teal-800); color: var(--white); }

@media (max-width: 1120px) {
  .brand { min-width: 250px; }
  .brand-copy strong { font-size: 0.94rem; }
  .site-nav a { padding-inline: 7px; font-size: 0.72rem; }
  .grid-4, .experience-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-rail article:nth-child(2) { border-right: 0; }
  .experience-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .utility-inner { grid-template-columns: 1fr auto; }
  .utility-address { display: none; }
  .nav-shell { min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 50px; height: 50px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; padding: 16px var(--pad) 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-lg); }
  .site-nav[data-open="true"] { display: grid; }
  .site-nav a { padding: 13px 14px; font-size: 0.84rem; }
  .site-nav .nav-book { margin: 6px 0 0; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: 760px; align-content: center; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,36,40,0.97), rgba(3,47,51,0.72) 75%, rgba(3,47,51,0.36)); }
  .page-hero { min-height: 680px; }
  .page-hero-shade { background: linear-gradient(90deg, rgba(2,30,34,0.96), rgba(3,47,51,0.7) 72%, rgba(3,47,51,0.38)); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .split, .split-narrow, .media-split, .visual-story-grid, .faq-layout { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid > :last-child { grid-column: 1 / -1; }
  .sticky-card { position: static; }
  .media-split-reverse .image-frame { order: 0; }
  .image-frame-tall img { height: 500px; }
  .visual-story figure img { height: 400px; }
  .cta-inner { grid-template-columns: 1fr; min-height: 440px; }
  .cta-band .button-row { margin-top: 8px; align-items: flex-start; flex-direction: row; }
}
@media (max-width: 620px) {
  :root { --pad: 18px; --section: 72px; --radius-lg: 26px; }
  body { line-height: 1.65; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .utility-inner { min-height: 34px; font-size: 0.66rem; display: flex; justify-content: center; }
  .utility-map { display: none; }
  .brand-copy small { display: none; }
  .brand-copy strong { max-width: 150px; font-size: 0.9rem; }
  .hero-grid { min-height: 710px; padding: 78px 0; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(3,35,39,0.7), rgba(3,40,44,0.94) 54%, rgba(3,40,44,0.99)); }
  .hero .lead { font-size: 1.03rem; }
  .hero-actions, .button-row { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .hero-location { font-size: 0.7rem; }
  .page-hero { min-height: 650px; align-items: end; }
  .page-hero-media img { object-position: 62% center; }
  .page-hero-shade { background: linear-gradient(180deg, rgba(2,30,34,0.56), rgba(3,35,39,0.96) 52%, rgba(3,35,39,1)); }
  .page-hero-content { padding-top: 64px; padding-bottom: 64px; }
  .page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .breadcrumbs { margin-bottom: 46px; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .video-grid, .gallery-grid, .form-grid, .footer-grid, .experience-rail { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid > :last-child { grid-column: auto; }
  .card { padding: 24px; }
  .service-card { padding: 0; }
  .experience-rail article { min-height: auto; padding: 30px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-rail article:last-child { border-bottom: 0; }
  .experience-rail span { margin-bottom: 22px; }
  .service-card > img { height: 290px; }
  .image-frame img, .image-frame-tall img, .visual-story figure img { height: 330px; }
  .location-feature { min-height: 650px; }
  .location-feature::after { background: linear-gradient(180deg, rgba(3,34,38,0.42), rgba(3,34,38,0.95) 48%, rgba(3,34,38,1)); }
  .gallery-grid figure, .gallery-wide { grid-column: auto; }
  .gallery-grid img, .gallery-wide img { height: 360px; }
  .field-full { grid-column: auto; }
  .booking-form { padding: 23px; }
  .cta-inner { min-height: 480px; }
  .cta-band .button-row { flex-direction: column; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-call { text-align: left; }
  .footer-bottom { flex-direction: column; }
  .floating-wa { right: 12px; bottom: 12px; padding: 12px 14px; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: stretch; }
  .consent-actions { justify-content: stretch; }
  .consent-actions button { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
@media print {
  .utility-bar, .site-header, .floating-wa, .consent-banner, .button-row, .hero-actions { display: none !important; }
  body { background: var(--white); color: #000; }
  .hero, .page-hero, .surface-dark, .visual-story, .cta-band { min-height: auto; background: var(--white); color: #000; }
  .hero-media, .hero-shade, .page-hero-media, .page-hero-shade, .location-image { display: none; }
  .hero h1, .page-hero h1, .surface-dark h2, .surface-dark h3, .visual-story h2, .cta-band h2 { color: #000; }
}
