:root {
  --navy-950: #061520;
  --navy-900: #0a2238;
  --navy-800: #113653;
  --blue-700: #1d4774;
  --teal-600: #1d8587;
  --teal-100: #dff2f0;
  --gold-500: #c89a54;
  --gold-300: #e8c994;
  --sand-100: #f4efe7;
  --sand-50: #faf8f4;
  --ink: #11202c;
  --muted: #5c6872;
  --white: #fff;
  --border: rgba(10, 34, 56, .13);
  --shadow: 0 24px 70px rgba(6, 21, 32, .14);
  --section: min(1180px, calc(100% - 48px));
  --radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 4px; }

.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.section { width: var(--section); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(250, 248, 244, .97);
  color: var(--navy-900);
  box-shadow: 0 12px 36px rgba(6, 21, 32, .09);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  padding: 5px;
  background: rgba(255,255,255,.94);
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 15px; letter-spacing: .02em; }
.brand-copy small { margin-top: 4px; font-size: 11px; opacity: .72; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.is-scrolled .nav-cta, .is-menu-open .nav-cta { border-color: var(--gold-500); }
.nav-cta:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: clamp(700px, 86vh, 900px);
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy-950);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 55% center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,18,28,.91) 0%, rgba(4,18,28,.62) 48%, rgba(4,18,28,.13) 77%),
    linear-gradient(0deg, rgba(4,18,28,.64), transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  padding: 190px 0 110px;
}
.eyebrow, .kicker {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--gold-300); }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--gold-300); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 14px 30px rgba(200,154,84,.22); }
.button-primary:hover { background: var(--white); box-shadow: 0 18px 35px rgba(0,0,0,.18); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.43); }
.button-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button-large { min-height: 58px; padding-inline: 26px; font-size: 15px; }
.hero-note {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1320px) / 2));
  bottom: 110px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 250px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(6,21,32,.56);
  backdrop-filter: blur(12px);
}
.hero-note p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.45; }
.hero-note strong { color: var(--white); }
.pulse { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: #68d7af; box-shadow: 0 0 0 6px rgba(104,215,175,.13); }

.fact-bar {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.fact { min-height: 116px; padding: 26px 28px; display: grid; align-content: center; border-right: 1px solid var(--border); }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: 31px; line-height: 1; }
.fact span { margin-top: 9px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(44px, 8vw, 110px); padding: 150px 0; }
.section-heading h2, .safety h2, .food h2, .application h2, .contact h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading h2 span, .life-heading h2 span { color: var(--teal-600); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }
.intro-copy { padding-top: 30px; }
.intro-copy p { margin: 0 0 20px; color: var(--muted); font-size: 18px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 10px; color: var(--navy-900); font-weight: 800; text-decoration-color: var(--gold-500); text-underline-offset: 7px; }
.text-link span { color: var(--gold-500); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.section-dark { position: relative; overflow: hidden; background: var(--navy-950); color: var(--white); }
.safety { padding: 130px 0; }
.safety-pattern { position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(circle at 25% 20%, var(--teal-600) 0 1px, transparent 1.5px); background-size: 28px 28px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.safety-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.kicker-light { color: var(--gold-300); }
.safety h2, .application h2 { color: var(--white); }
.safety-copy > p:not(.kicker) { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: 19px; }
.safety-copy > p strong { color: var(--gold-300); }
.safety-seal { width: 222px; aspect-ratio: 1; margin-top: 48px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(232,201,148,.55); border-radius: 50%; background: radial-gradient(circle, rgba(200,154,84,.13), transparent 66%); }
.safety-seal::before, .safety-seal::after { content: ""; position: absolute; }
.safety-seal span, .safety-seal small { color: rgba(255,255,255,.63); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.safety-seal strong { margin: 3px 0; color: var(--gold-300); font-family: Georgia, "Times New Roman", serif; font-size: 70px; line-height: .95; }
.safety-features { border-top: 1px solid rgba(255,255,255,.16); }
.safety-features article { position: relative; padding: 34px 0 34px 64px; border-bottom: 1px solid rgba(255,255,255,.16); }
.feature-number { position: absolute; left: 0; top: 38px; color: var(--gold-300); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.safety-features h3 { margin: 0 0 8px; font-size: 21px; }
.safety-features p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; }

.rooms { padding: 140px 0 130px; }
.section-heading.centered { max-width: 800px; margin: 0 auto 64px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 17px; }
.room-showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.room-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 40px rgba(6,21,32,.06); }
.media-button { position: relative; width: 100%; padding: 0; border: 0; overflow: hidden; background: var(--navy-950); cursor: zoom-in; }
.room-card .media-button { aspect-ratio: 16/10; }
.media-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
.media-button:hover img { transform: scale(1.045); opacity: .86; }
.zoom-label { position: absolute; right: 18px; bottom: 18px; padding: 9px 12px; border-radius: 999px; background: rgba(6,21,32,.74); color: var(--white); font-size: 11px; font-weight: 800; backdrop-filter: blur(8px); }
.room-card-copy { padding: 28px 30px 32px; }
.room-type { margin: 0 0 12px; color: var(--teal-600); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.room-card-copy h3 { margin: 0 0 10px; color: var(--navy-900); font-size: 25px; line-height: 1.2; }
.room-card-copy > p:last-child { margin: 0; color: var(--muted); font-size: 15px; }
.amenity-list { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.amenity-list span { padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.55); color: var(--navy-800); font-size: 12px; font-weight: 700; }
.amenity-list span::before { content: "✓"; margin-right: 8px; color: var(--teal-600); }

.life { padding: 130px 0 85px; background: var(--sand-100); }
.life-heading { margin-bottom: 56px; }
.life-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(38px, 5vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.life-grid { width: min(1320px, calc(100% - 48px)); margin-inline: auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.life-card { position: relative; min-height: 410px; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); color: var(--white); }
.life-card-wide { grid-row: span 2; min-height: 840px; }
.life-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,18,28,.86), rgba(4,18,28,.05) 62%); }
.life-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.life-card:hover img { transform: scale(1.035); }
.life-card > div { position: absolute; z-index: 2; inset: auto 32px 28px; }
.life-card span { color: var(--gold-300); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.life-card h3 { margin: 8px 0; font-size: clamp(24px, 3vw, 36px); line-height: 1.12; }
.life-card p { max-width: 580px; margin: 0; color: rgba(255,255,255,.69); font-size: 14px; }
.service-ribbon { margin-top: 62px; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid rgba(10,34,56,.15); border-bottom: 1px solid rgba(10,34,56,.15); }
.service-ribbon p { margin: 0; padding: 24px 16px; border-right: 1px solid rgba(10,34,56,.15); color: var(--navy-800); font-size: 12px; font-weight: 800; text-align: center; }
.service-ribbon p:last-child { border-right: 0; }

.food { padding: 110px 0; }
.food-card { display: grid; grid-template-columns: .4fr .6fr; gap: 70px; align-items: center; padding: 60px; border-radius: 30px; background: var(--teal-100); }
.food-stat { aspect-ratio: 1; display: grid; place-content: center; border: 1px solid rgba(29,133,135,.35); border-radius: 50%; text-align: center; }
.food-stat strong { color: var(--teal-600); font-family: Georgia, "Times New Roman", serif; font-size: clamp(70px, 9vw, 120px); line-height: .85; }
.food-stat span { margin-top: 15px; color: var(--navy-800); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.food h2 { font-size: clamp(38px, 4.5vw, 58px); }
.food-copy > p:last-child { margin: 23px 0 0; color: var(--muted); font-size: 17px; }

.application { padding: 120px 0; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 140px); align-items: center; }
.application-grid > div > p:not(.kicker) { max-width: 600px; margin: 26px 0 34px; color: rgba(255,255,255,.68); font-size: 17px; }
.application-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.application-steps li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.application-steps li > span { color: var(--gold-300); font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.application-steps strong { font-size: 18px; }
.application-steps p { margin: 6px 0 0; color: rgba(255,255,255,.6); font-size: 14px; }

.contact { padding: 110px 0; }
.contact-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; padding: 64px; border: 1px solid var(--border); border-radius: 30px; background: var(--white); box-shadow: 0 18px 50px rgba(6,21,32,.06); }
.contact-copy > p:last-child { margin: 22px 0 0; color: var(--muted); }
.contact-details { display: grid; gap: 10px; }
.contact-details a { position: relative; display: grid; padding: 20px 22px; border: 1px solid var(--border); border-radius: 15px; color: var(--navy-900); text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.contact-details a:hover { transform: translateX(4px); border-color: var(--gold-500); background: var(--sand-50); }
.contact-details small { color: var(--teal-600); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { margin-top: 5px; font-size: 16px; }
.contact-details a > span { position: absolute; right: 20px; bottom: 18px; color: var(--gold-500); font-size: 11px; font-weight: 800; }

.site-footer { background: #04111a; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 78px 0 62px; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; padding: 5px; background: var(--white); }
.footer-brand p { margin: 0; font-size: 18px; font-weight: 800; line-height: 1.4; }
.footer-brand span { color: rgba(255,255,255,.54); font-size: 12px; font-weight: 500; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 8px; color: var(--gold-300); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.66); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.48); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; }
.mobile-apply { display: none; }
.not-found { min-height: 100dvh; padding: 40px 0; display: grid; place-content: center; text-align: center; }
.not-found img { margin: 0 auto 28px; }
.not-found h1 { margin: 0; color: var(--navy-900); font-size: clamp(42px, 8vw, 78px); line-height: 1; }
.not-found > p:not(.kicker) { max-width: 540px; margin: 22px auto 30px; color: var(--muted); }
.not-found .button { width: max-content; margin: auto; }

.lightbox {
  width: min(1020px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
}
.lightbox::backdrop { background: rgba(2,10,16,.88); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 20px; background: #071622; }
.lightbox-close { position: absolute; z-index: 2; right: -12px; top: -12px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--white); color: var(--navy-950); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,.25); }

@media (max-width: 1040px) {
  :root { --section: min(100% - 36px, 920px); }
  .header-inner { width: calc(100% - 36px); }
  .menu-toggle { display: grid; width: 46px; height: 46px; padding: 12px; place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; background: rgba(255,255,255,.08); color: inherit; cursor: pointer; }
  .is-scrolled .menu-toggle, .is-menu-open .menu-toggle { border-color: var(--border); background: var(--white); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 84px 0 auto; max-height: calc(100dvh - 84px); padding: 18px; overflow: auto; display: grid; gap: 0; background: var(--sand-50); color: var(--navy-900); border-top: 1px solid var(--border); box-shadow: 0 30px 60px rgba(6,21,32,.18); transform: translateY(-130%); visibility: hidden; opacity: 0; transition: transform .25s ease, opacity .2s ease, visibility 0s linear .25s; }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; opacity: 1; transition-delay: 0s; }
  .primary-nav a { padding: 16px 8px; border-bottom: 1px solid var(--border); font-size: 16px; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 12px; border: 0; border-radius: 12px; background: var(--gold-500); text-align: center; }
  .hero-content { width: calc(100% - 36px); }
  .hero-note { display: none; }
  .intro, .safety-grid, .food-card, .application-grid, .contact-card { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .safety-seal { width: 190px; }
  .room-showcase { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); }
  .life-card-wide { grid-column: 1 / -1; grid-row: auto; min-height: 560px; }
  .service-ribbon { grid-template-columns: repeat(3, 1fr); }
  .service-ribbon p:nth-child(3) { border-right: 0; }
  .food-card { gap: 40px; }
  .food-stat { width: min(360px, 100%); }
  .contact-card { gap: 40px; }
}

@media (max-width: 720px) {
  :root { --section: calc(100% - 28px); --radius: 18px; }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 70px; }
  .site-header { min-height: 72px; }
  .header-inner { width: calc(100% - 28px); min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { display: none; }
  .primary-nav { inset: 72px 0 auto; max-height: calc(100dvh - 72px); }
  .hero { min-height: 740px; align-items: end; }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,18,28,.95) 10%, rgba(4,18,28,.52) 70%, rgba(4,18,28,.3)); }
  .hero-content { width: calc(100% - 28px); padding: 160px 0 72px; }
  .hero h1 { font-size: clamp(45px, 14vw, 68px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .fact-bar { width: calc(100% - 28px); margin-top: -24px; grid-template-columns: repeat(2, 1fr); }
  .fact { min-height: 94px; padding: 20px; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .fact strong { font-size: 27px; }
  .fact span { font-size: 9px; }
  .intro, .rooms, .food, .contact { padding: 92px 0; }
  .section-heading h2, .safety h2, .food h2, .application h2, .contact h2, .life-heading h2 { font-size: 39px; }
  .intro-copy p, .safety-copy > p:not(.kicker), .food-copy > p:last-child { font-size: 16px; }
  .safety, .application { padding: 92px 0; }
  .safety-grid { gap: 55px; }
  .safety-seal { width: 176px; margin-top: 35px; }
  .safety-seal strong { font-size: 58px; }
  .room-showcase { grid-template-columns: 1fr; }
  .room-card-copy { padding: 24px; }
  .amenity-list span { width: 100%; border-radius: 12px; }
  .life { padding: 92px 0 64px; }
  .life-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .life-card, .life-card-wide { grid-column: auto; min-height: 460px; }
  .life-card > div { inset: auto 22px 22px; }
  .service-ribbon { grid-template-columns: repeat(2, 1fr); }
  .service-ribbon p:nth-child(3) { border-right: 1px solid rgba(10,34,56,.15); }
  .service-ribbon p:nth-child(even) { border-right: 0; }
  .food-card, .contact-card { padding: 30px 22px; border-radius: 22px; }
  .food-stat { width: 240px; }
  .food-stat strong { font-size: 72px; }
  .application-grid { gap: 60px; }
  .application-steps li { grid-template-columns: 46px 1fr; }
  .contact-details strong { font-size: 14px; overflow-wrap: anywhere; }
  .contact-details a > span { position: static; margin-top: 10px; }
  .footer-main { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; }
  .mobile-apply { position: fixed; z-index: 90; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; background: var(--gold-500); color: var(--navy-950); box-shadow: 0 14px 36px rgba(6,21,32,.28); font-size: 14px; font-weight: 900; text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(calc(100% + 24px)); transition: opacity .22s ease, transform .22s ease; }
  .mobile-apply.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .lightbox-close { right: 4px; top: -52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (prefers-contrast: more) {
  :root { --border: rgba(10,34,56,.45); }
  .button, .nav-cta, .contact-details a { border-width: 2px; }
}
