:root {
  --navy: #071827;
  --navy-soft: #102a3e;
  --cobalt: #1f5eff;
  --orange: #f26a3d;
  --ice: #edf6f8;
  --white: #faf8f3;
  --ink: #132536;
  --muted: #61717e;
  --line: rgba(7, 24, 39, 0.14);
  --shadow: 0 22px 65px rgba(7, 24, 39, 0.13);
  --radius: 26px;
  --radius-sm: 15px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  padding: 10px 16px; background: var(--white); color: var(--navy);
  border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 70px 0; }
.section-ice { background: var(--ice); }
.section-navy { background: var(--navy); color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px;
  color: var(--cobalt); font-size: .75rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 2px; background: currentColor; }
.section-navy .eyebrow, .hero .eyebrow { color: #9db7ff; }
h1, h2, h3 { margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; line-height: 1.08; font-weight: 500; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.35rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); letter-spacing: -.025em; }
p { margin: 0 0 20px; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--muted); max-width: 720px; }
.section-navy .lead { color: #bcd0dd; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 770px; }
.text-link { color: var(--cobalt); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.btn {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 23px; border: 1px solid transparent; border-radius: 999px;
  background: var(--cobalt); color: #fff; font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31, 94, 255, .28); }
.btn-orange { background: var(--orange); }
.btn-orange:hover { box-shadow: 0 12px 28px rgba(242, 106, 61, .25); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.utility-bar { background: var(--navy); color: #cad9e3; font-size: .78rem; }
.utility-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.utility-links { display: flex; gap: 22px; }
.site-header {
  position: sticky; top: 0; z-index: 80; background: rgba(250, 248, 243, .93);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 46px; height: 35px; }
.brand-name { color: var(--navy); font-family: Georgia, serif; font-size: 1.18rem; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 26px); }
.site-nav a { position: relative; font-size: .88rem; font-weight: 750; white-space: nowrap; }
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--orange); transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 50%; background: transparent; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy);
}

.hero {
  position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden;
  background: var(--navy); color: var(--white);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,24,39,.94) 0%, rgba(7,24,39,.73) 44%, rgba(7,24,39,.22) 76%),
    url("../images/hero-hotel.webp") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; right: -10vw; bottom: -35vw; width: 62vw; height: 62vw;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 830px; padding: 90px 0 150px; }
.hero h1 span { color: #8eb1ff; }
.hero-copy { max-width: 630px; color: #d7e4eb; font-size: 1.14rem; }
.page-hero { position: relative; padding: 112px 0 105px; background: var(--navy); color: var(--white); overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; width: 400px; height: 400px; right: -100px; top: -150px;
  border-radius: 50%; background: radial-gradient(circle, rgba(31,94,255,.48), transparent 67%);
}
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); max-width: 920px; }
.page-hero p { max-width: 690px; color: #c3d5e0; font-size: 1.18rem; }
.booking-strip-wrap { position: relative; z-index: 5; margin-top: -74px; }
.booking-strip {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: end; gap: 16px;
  padding: 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 11px 13px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cobalt); outline: 2px solid rgba(31,94,255,.16); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(35px, 7vw, 95px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.media-frame { overflow: hidden; border-radius: var(--radius); background: #dce9ed; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.stat { padding-left: 16px; border-left: 3px solid var(--orange); }
.stat strong { display: block; color: var(--navy); font: 500 2.25rem/1 Georgia, serif; }
.stat span { color: var(--muted); font-size: .86rem; }
.card {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: #dbe8ec; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 28px; }
.card-kicker { color: var(--orange); font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.card-body p { color: var(--muted); }
.feature-panel {
  padding: clamp(35px, 6vw, 75px); border-radius: 34px; background: var(--navy); color: var(--white);
}
.feature-panel p { color: #bed0da; }
.feature-panel img { border-radius: 22px; }
.feature-list { padding: 0; margin: 28px 0; list-style: none; }
.feature-list li { position: relative; padding: 12px 0 12px 31px; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #82a7ff; font-weight: 900; }
.icon-card { padding: 31px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.icon-mark {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px;
  border-radius: 15px; background: var(--cobalt); color: #fff; font-weight: 900;
}
.event-card { padding: 34px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.event-card time { color: var(--orange); font-weight: 850; font-size: .79rem; letter-spacing: .1em; text-transform: uppercase; }
.quote-card { padding: 34px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.stars { color: var(--orange); letter-spacing: .18em; }
.quote-card blockquote { margin: 20px 0; font: 500 1.3rem/1.45 Georgia, serif; }
.quote-card cite { color: var(--muted); font-style: normal; font-size: .87rem; }
.mosaic { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 250px 250px; gap: 16px; }
.mosaic a, .gallery-item { position: relative; overflow: hidden; border-radius: 20px; cursor: zoom-in; }
.mosaic a:first-child { grid-row: span 2; }
.mosaic img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic a:hover img, .gallery-item:hover img { transform: scale(1.045); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { aspect-ratio: 4/3; border: 0; padding: 0; background: #dce8ec; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }
.split-band { overflow: hidden; border-radius: 34px; background: var(--navy); color: var(--white); }
.split-band .grid-2 { gap: 0; }
.split-band-content { padding: clamp(38px, 6vw, 75px); }
.split-band-content p { color: #bfd0da; }
.split-band img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.cta-band {
  position: relative; overflow: hidden; padding: 70px; border-radius: 34px;
  background: linear-gradient(120deg, var(--cobalt), #1648c5); color: #fff;
}
.cta-band::after { content: ""; position: absolute; width: 300px; height: 300px; right: -100px; bottom: -180px; border: 50px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta-band h2 { max-width: 800px; }
.cta-band p { max-width: 650px; color: #e0e8ff; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 25px 0; }
.pill { padding: 8px 14px; border-radius: 999px; background: var(--ice); color: var(--navy); font-size: .85rem; font-weight: 750; }
.timeline { border-left: 2px solid #b6ccff; padding-left: 35px; }
.timeline article { position: relative; padding: 0 0 40px; }
.timeline article::before { content: ""; position: absolute; width: 14px; height: 14px; left: -43px; top: 7px; border-radius: 50%; background: var(--orange); }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; border: 0; background: transparent; text-align: left; font-weight: 850; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; }
.faq-question::after { content: "+"; color: var(--cobalt); font-size: 1.4rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 0 24px; color: var(--muted); }
.faq-answer.open { display: block; }
.form-card { padding: clamp(28px, 5vw, 55px); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.field-full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .84rem; }
.form-status { display: none; margin-top: 20px; padding: 16px; border-radius: 12px; background: #e2f6ea; color: #155c33; font-weight: 750; }
.form-status.show { display: block; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; color: var(--navy); }
.legal h2 { margin-top: 52px; font-size: 2.15rem; }
.legal h3 { margin-top: 32px; font-size: 1.45rem; }
.legal ul { padding-left: 22px; }
.legal p, .legal li { color: #405463; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); background: var(--ice); }

.site-footer { padding: 80px 0 25px; background: var(--navy); color: #c5d4dd; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 50px; }
.site-footer .brand-name { color: #fff; }
.site-footer h3 { color: #fff; font: 800 .77rem/1.3 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); font-size: .8rem; }

.cookie-banner {
  position: fixed; z-index: 200; left: 22px; right: 22px; bottom: 22px;
  display: none; max-width: 850px; margin: auto; padding: 20px; border-radius: 20px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 22px 80px rgba(7,24,39,.27);
}
.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 9px; }
.cookie-actions .btn { min-height: 44px; padding: 9px 16px; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 30px; background: rgba(2,12,20,.92); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 16px; }
.lightbox-close { position: absolute; top: 20px; right: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: #fff; font-size: 1.8rem; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav {
    position: fixed; inset: 115px 0 auto; display: none; flex-direction: column; align-items: stretch;
    max-height: calc(100vh - 115px); overflow-y: auto; padding: 28px 30px 40px; background: var(--white);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 7px 0; font-size: 1rem; }
  .nav-toggle { display: block; }
  .booking-strip { grid-template-columns: repeat(2, 1fr); }
  .booking-strip .btn { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .utility-inner { min-height: 32px; }
  .utility-inner > span { display: none; }
  .utility-links { width: 100%; justify-content: space-between; }
  .header-inner { min-height: 68px; }
  .site-nav { inset-block-start: 100px; max-height: calc(100vh - 100px); }
  .hero { min-height: 690px; }
  .hero-content { padding: 70px 0 120px; }
  .section { padding: 76px 0; }
  .section-sm { padding: 52px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .text-link { margin-top: 12px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { gap: 40px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 23px; }
  .booking-strip-wrap { margin-top: -60px; }
  .booking-strip { grid-template-columns: 1fr; padding: 20px; }
  .booking-strip .btn { grid-column: auto; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px 180px; }
  .mosaic a:first-child { grid-column: span 2; grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; }
  .split-band .grid-2 > *:first-child { order: 2; }
  .split-band img { min-height: 350px; }
  .cta-band { padding: 40px 27px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner.show { align-items: stretch; flex-direction: column; }
  .cookie-actions { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  h1 { font-size: 3rem; }
  .brand-name { font-size: 1.02rem; }
  .header-inner > .btn { display: none; }
  .page-hero { padding: 80px 0; }
  .button-row .btn { width: 100%; }
  .mosaic { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 230px); }
  .mosaic a:first-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: auto; aspect-ratio: 4/3; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
