@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap");

:root {
  --navy: #f2eee6;
  --navy-2: #e5dfd4;
  --ocean: #d4c7b0;
  --ocean-2: #c3b8a5;
  --sky: #353637;
  --foam: #232425;
  --sand: #292a2b;
  --coral: #eee9df;
  --coral-dark: #d8cebe;
  --ink: #e8e3da;
  --muted: #bebbb5;
  --line: #4a4b4b;
  --white: #f2eee6;
  --surface: #2d2e2f;
  --surface-raised: #353637;
  --display-font: "DM Serif Display", Georgia, serif;
  --body-font: "DM Sans", "Segoe UI", sans-serif;
  color-scheme: dark;
  --shadow: 0 22px 60px rgba(31, 55, 72, 0.11);
  --shadow-soft: 0 8px 30px rgba(31, 55, 72, 0.045);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: var(--body-font);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  text-align: center;
  padding: 8px 16px;
  font-size: .86rem;
  letter-spacing: .01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(217,230,235,.85);
  background: rgba(247,252,253,.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.035em;
  color: var(--navy);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--ocean));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.brand-mark svg { width: 26px; height: 26px; }

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.03;
}

.brand-copy strong { font-size: 1.02rem; }

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button, .icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(8,38,60,.04);
}

.menu-button:hover, .icon-button:hover { border-color: #b8cdd6; }

.menu-bars {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-bars span {
  display: block;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 820;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(240,111,95,.25);
}

.btn-primary:hover { background: var(--coral-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.desktop-cta { display: inline-flex; }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  background: rgba(4,24,37,.45);
  transition: opacity .25s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  z-index: 99;
  inset: 0 0 0 auto;
  width: min(92vw, 410px);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(8,38,60,.2);
  transform: translateX(105%);
  transition: transform .28s ease;
  padding: 22px;
  overflow-y: auto;
}

.menu-drawer.open { transform: translateX(0); }

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.drawer-title {
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
}

.drawer-nav { display: grid; gap: 7px; }

.drawer-nav a {
  text-decoration: none;
  padding: 14px 15px;
  border-radius: 13px;
  color: var(--ink);
  font-weight: 760;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-nav a::after {
  content: "→";
  color: var(--ocean);
}

.drawer-nav a:hover, .drawer-nav a.active {
  background: var(--sky);
  color: var(--navy);
}

.drawer-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  color: var(--white);
}

.drawer-card p { margin: 6px 0 14px; color: rgba(255,255,255,.8); }

main { min-height: 60vh; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 78% 18%, rgba(26,160,199,.18), transparent 25%),
    radial-gradient(circle at 10% 0%, rgba(240,111,95,.13), transparent 25%),
    linear-gradient(180deg, #f7fcfd 0%, #edf9fc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -55px;
  height: 100px;
  background: var(--foam);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocean);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero h1, .page-hero h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  letter-spacing: -.06em;
  line-height: .98;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.hero .lead, .page-hero .lead {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  max-width: 700px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.hero-note span::before {
  content: "✓";
  color: var(--ocean);
  font-weight: 900;
  margin-right: 6px;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(155deg, var(--navy), #0d4d6c 65%, var(--ocean));
  color: var(--white);
  box-shadow: 0 30px 70px rgba(8,38,60,.22);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  right: -95px;
  top: -85px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  right: -55px;
  top: -35px;
}

.panel-label {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .7rem;
  font-weight: 850;
  color: #9fdced;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  letter-spacing: -.04em;
  margin: 8px 0 18px;
  line-height: 1.1;
}

.quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-tile {
  min-height: 118px;
  padding: 15px;
  border-radius: 17px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s ease, transform .2s ease;
}

.quick-tile:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

.quick-tile strong { font-size: .96rem; }
.quick-tile span { font-size: .78rem; color: rgba(255,255,255,.7); }

.section { padding: 82px 0; }
.section-tight { padding: 58px 0; }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 6px 0 0;
  color: var(--navy);
  letter-spacing: -.045em;
  line-height: 1.06;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.section-navy .section-heading h2 { color: var(--white); }
.section-navy .section-heading p { color: rgba(255,255,255,.72); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.card h3 {
  margin: 9px 0 8px;
  color: var(--navy);
  letter-spacing: -.025em;
  line-height: 1.18;
}

.card p { margin: 0; color: var(--muted); }

.card-link {
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sky);
  color: var(--ocean);
  font-size: 1.2rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--ocean);
  font-weight: 850;
  text-decoration: none;
  margin-top: 18px;
}

.kicker {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--coral);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.step {
  counter-increment: step;
  padding: 26px;
  border-top: 1px solid var(--line);
}

.step::before {
  content: "0" counter(step);
  display: block;
  color: var(--ocean);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 28px;
}

.step h3 { color: var(--navy); margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.port-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--white);
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(8,38,60,.05), rgba(8,38,60,.86)),
    linear-gradient(135deg, #38a5bc, #0d3d5a);
  box-shadow: var(--shadow-soft);
}

.port-card:nth-child(3n+2) {
  background:
    linear-gradient(180deg, rgba(8,38,60,.04), rgba(8,38,60,.86)),
    linear-gradient(135deg, #e79a75, #0b4d67);
}

.port-card:nth-child(3n+3) {
  background:
    linear-gradient(180deg, rgba(8,38,60,.04), rgba(8,38,60,.86)),
    linear-gradient(135deg, #6ac4ad, #0b4863);
}

.port-card h3 { margin: 8px 0 0; font-size: 1.35rem; }
.port-card p { margin: 2px 0 0; color: rgba(255,255,255,.76); font-size: .9rem; }

.port-card .coming {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cta-panel {
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--ocean));
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.cta-panel p { margin: 0; color: rgba(255,255,255,.76); max-width: 660px; }

.page-hero {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 85% 0%, rgba(26,160,199,.18), transparent 30%),
    linear-gradient(180deg, #f7fcfd, #eef9fc);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: .86rem;
}

.breadcrumb a { color: var(--ocean); text-decoration: none; font-weight: 800; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.sidebar-card {
  position: sticky;
  top: 112px;
  padding: 22px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
}

.sidebar-card h3 { margin: 0 0 8px; }
.sidebar-card p { margin: 0 0 18px; color: rgba(255,255,255,.72); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
  padding: 30px;
}

.form-section + .form-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-section h2 {
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -.03em;
}

.form-section > p { margin: 0 0 20px; color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: .86rem;
  color: var(--navy);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbdce3;
  background: #fbfeff;
  color: var(--ink);
  border-radius: 13px;
  min-height: 49px;
  padding: 11px 13px;
  outline: none;
}

.form-field textarea { min-height: 125px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(15,124,166,.1);
}

.helper {
  color: var(--muted);
  font-size: .78rem;
}

.form-status {
  display: none;
  margin-top: 15px;
  padding: 13px 15px;
  border-radius: 13px;
  background: var(--sky);
  color: var(--navy);
  font-weight: 700;
}

.form-status.show { display: block; }
.booking-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.booking-group-heading { margin: 0 0 13px; color: var(--navy); font-size: 1.05rem; }
.booking-group { margin: 18px 0; padding: 19px; border: 1px solid var(--line); border-radius: 12px; background: #f6fafb; }
.booking-group-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.booking-group-top h3 { margin: 0; color: var(--navy); font-size: 1.05rem; }
.booking-remove-group { border: 0; padding: 5px 0; background: none; color: var(--ocean); font: inherit; font-size: .85rem; font-weight: 800; cursor: pointer; }
.booking-remove-group:hover { text-decoration: underline; }
.booking-add-group { margin-top: 18px; }
.booking-add-group:disabled { opacity: .55; cursor: not-allowed; }
.booking-room-request { border: 0; margin: 0; padding: 0; }
.booking-room-request legend { color: var(--navy); font-weight: 800; font-size: .86rem; padding: 0; margin-bottom: 9px; }
.form-field .booking-check { display: flex; align-items: center; gap: 9px; width: fit-content; margin-bottom: 8px; font-weight: 500; cursor: pointer; }
.form-field .booking-check input { appearance: auto; width: 18px; height: 18px; min-height: 0; padding: 0; margin: 0; accent-color: var(--ocean); }
[data-turnstile-container] { margin: 0 0 16px; }

.search-bar {
  display: flex;
  gap: 10px;
  margin: 0 0 28px;
}

.search-bar input {
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--white);
  outline: none;
}

.search-bar input:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(15,124,166,.1);
}

.guide-card[hidden] { display: none; }

.resource-list { display: grid; gap: 13px; }

.resource-row {
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.resource-row strong { color: var(--navy); }
.resource-row span { color: var(--muted); font-size: .88rem; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.social-card.disabled { cursor: default; opacity: .86; }
.social-card .social-name { font-size: 1.35rem; font-weight: 900; color: var(--navy); }
.social-card .social-status { color: var(--muted); font-size: .86rem; }

.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font-weight: 850;
  text-align: left;
}

.faq-question span:last-child { color: var(--ocean); font-size: 1.25rem; }

.faq-answer {
  display: none;
  padding: 0 20px 19px;
  color: var(--muted);
}

.faq-item.open .faq-answer { display: block; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.callout {
  padding: 25px;
  border-radius: 22px;
  background: var(--sky);
  border: 1px solid #ccecf4;
}

.callout h3 { margin: 0 0 8px; color: var(--navy); }
.callout p { margin: 0; color: var(--muted); }

.notice {
  border-left: 4px solid var(--coral);
  padding: 14px 16px;
  background: #fff5f2;
  color: #6d493f;
  border-radius: 0 13px 13px 0;
  font-size: .9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #061f31;
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .7fr);
  gap: 34px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255,255,255,.63);
  margin: 15px 0 0;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #90cddd;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.73);
  text-decoration: none;
  margin: 8px 0;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font-size: .78rem;
}

.empty-state {
  padding: 42px;
  text-align: center;
  border: 1px dashed #bfd4dc;
  border-radius: 24px;
  background: rgba(255,255,255,.55);
}

.empty-state h2 { color: var(--navy); margin: 0 0 8px; }
.empty-state p { color: var(--muted); max-width: 600px; margin: 0 auto 20px; }

@media (max-width: 940px) {
  .hero-grid, .content-grid, .two-col { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .hero-panel { max-width: 650px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3, .port-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .desktop-cta { display: none; }
  .header-inner { min-height: 68px; }
  .brand-copy span { display: none; }
  .hero { padding: 54px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .section { padding: 62px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 13px; }
  .grid-3, .grid-4, .port-grid, .steps, .social-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .cta-panel { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .resource-row { align-items: flex-start; flex-direction: column; }
}

/* Port Perfect's slate-and-sea identity. Shared across every page. */
body { background: var(--foam); }
::selection { background: #c9d9e0; color: var(--navy); }
:focus-visible { outline: 2px solid #516e82; outline-offset: 3px; }

.announcement {
  background: #273d4e;
  color: #e7edef;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.announcement span { padding: 0 12px; color: #a7b9c3; }
.site-header {
  background: rgba(250, 251, 250, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 86px; }
.brand { gap: 11px; letter-spacing: 0; }
.brand-mark {
  width: 47px;
  height: 47px;
  border: 1px solid #9aafb9;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
}
.brand-mark svg { width: 32px; height: 32px; }
.brand-copy { gap: 4px; line-height: 1; }
.brand-copy strong {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.brand-copy em { font-style: normal; font-weight: 450; }
.brand-copy span {
  margin-top: 0;
  color: #647b88;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .115em;
  white-space: nowrap;
}
.menu-button, .icon-button {
  border-color: #cbd7db;
  border-radius: 7px;
  box-shadow: none;
  font-size: .83rem;
  letter-spacing: .04em;
  font-weight: 700;
}
.menu-button:hover, .icon-button:hover { background: #edf2f3; border-color: #9eb3be; }
.btn {
  border-radius: 7px;
  font-size: .87rem;
  letter-spacing: .015em;
  font-weight: 750;
}
.btn-primary { box-shadow: none; }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(39,61,78,.16); }
.btn-secondary { background: rgba(255,255,255,.74); }
.menu-overlay { background: rgba(23, 39, 51, .52); }
.menu-drawer { box-shadow: -16px 0 60px rgba(25,44,57,.19); }
.drawer-title { font-weight: 750; }
.drawer-nav a { border-radius: 7px; }
.drawer-card {
  border-radius: 10px;
  background: linear-gradient(140deg, #2a4254, #617d91);
}
.drawer-card .btn-primary { background: #f6f8f8; color: var(--navy); }

.hero {
  padding: 112px 0 116px;
  background:
    radial-gradient(circle at 88% 16%, rgba(143,169,183,.23), transparent 30%),
    linear-gradient(112deg, #f7f8f7 0%, #e9eff1 100%);
  border-bottom: 1px solid #dce5e7;
}
.hero::before {
  content: "";
  position: absolute;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  top: -50%;
  right: -20%;
  border: 1px solid rgba(69,100,119,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,.045), 0 0 0 101px rgba(69,100,119,.08), 0 0 0 220px rgba(255,255,255,.04), 0 0 0 221px rgba(69,100,119,.055);
  pointer-events: none;
}
.hero::after { display: none; }
.hero-grid { gap: clamp(32px, 6vw, 88px); grid-template-columns: 1.08fr .92fr; }
.eyebrow, .kicker, .panel-label {
  color: var(--ocean);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
}
.eyebrow::before { width: 35px; height: 1px; }
.hero h1, .page-hero h1, .section-heading h2, .cta-panel h2 {
  font-weight: 560;
  letter-spacing: -.055em;
}
.hero h1 {
  max-width: 740px;
  margin: 21px 0 24px;
  font-size: clamp(3.5rem, 6.5vw, 6.5rem);
  line-height: 1.04;
}
.hero h1 span { color: #6e899a; }
.hero .lead, .page-hero .lead { color: #566d79; line-height: 1.75; }
.hero .lead { max-width: 570px; }
.hero-actions { margin-top: 33px; }
.hero-note {
  margin-top: 28px;
  gap: 8px 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .015em;
}
.hero-note span::before { content: "—"; color: #8299a5; margin-right: 8px; }
.hero-panel {
  padding: 35px;
  border: 1px solid #c9d7dd;
  border-radius: 11px;
  background: rgba(249,251,251,.91);
  color: var(--navy);
  box-shadow: 0 28px 65px rgba(35,62,78,.11);
}
.hero-panel::before {
  width: 220px;
  height: 220px;
  top: -115px;
  right: -80px;
  border-color: rgba(65,98,117,.15);
}
.hero-panel::after {
  width: 280px;
  height: 280px;
  top: -145px;
  right: -110px;
  border-color: rgba(65,98,117,.09);
}
.panel-label { color: #5e7b8d; }
.hero-panel h2 {
  max-width: 400px;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 550;
  line-height: 1.19;
  margin: 13px 0 26px;
}
.quick-grid { gap: 9px; }
.quick-tile {
  min-height: 135px;
  border: 1px solid #d7e1e4;
  border-radius: 6px;
  background: #fff;
  padding: 19px;
}
.quick-tile:hover { background: #ebf1f3; }
.quick-tile strong { font-size: .9rem; font-weight: 750; }
.quick-tile span { color: #6d808a; }
.section { padding: 95px 0; }
.section-tight { padding: 60px 0; }
.section-white { background: #fff; }
.section-sand { background: #ecf0f0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2 { line-height: 1.13; }
.section-heading p { line-height: 1.75; }
.kicker { color: #667f8f; }
.card, .form-card, .social-card, .faq-item, .resource-row {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.card { padding: 27px; }
.card h3 { font-weight: 670; }
.card-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #d6e1e5;
  border-radius: 50%;
  background: #f0f4f5;
  color: var(--ocean);
  font-weight: 650;
}
.text-link { font-weight: 750; }
.port-card {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(29,51,66,.03), rgba(24,45,59,.87)), linear-gradient(135deg, #a4b9bf, #456277);
}
.port-card:nth-child(3n+2) { background: linear-gradient(180deg, rgba(29,51,66,.03), rgba(24,45,59,.87)), linear-gradient(135deg, #c4d1d1, #52748a); }
.port-card:nth-child(3n+3) { background: linear-gradient(180deg, rgba(29,51,66,.03), rgba(24,45,59,.87)), linear-gradient(135deg, #93acb6, #3e5c70); }
.port-card .coming { border-radius: 5px; }
.step { border-top-color: #bbcbd2; }
.step::before { font-weight: 750; }
.cta-panel {
  border-radius: 12px;
  background: linear-gradient(125deg, #263d4f, #617e90);
}
.page-hero {
  background: radial-gradient(circle at 85% 0%, rgba(132,160,175,.2), transparent 32%), linear-gradient(110deg, #f7f8f7, #e9eff1);
}
.page-hero h1 { line-height: 1.05; }
.sidebar-card, .callout, .empty-state { border-radius: 10px; }
.form-field input, .form-field select, .form-field textarea { border-radius: 6px; background: #fcfdfd; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .search-bar input:focus { box-shadow: 0 0 0 3px rgba(81,110,130,.14); }
.notice { background: #eaf0f2; color: var(--navy); border-left-color: #6d8999; border-radius: 0 5px 5px 0; }
.search-bar input { border-radius: 7px; }
.site-footer { background: #203443; border-top: 0; }
.site-footer .brand { color: white; }
.site-footer .brand-mark { border-color: #a3b8c2; color: #eaf0f1; }
.site-footer .brand-copy span { color: #b4c6cf; }
.footer-col h4 { color: #b8cbd3; }
.footer-bottom { color: rgba(255,255,255,.62); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 700px; }
}
@media (max-width: 680px) {
  .announcement { font-size: .59rem; letter-spacing: .07em; }
  .announcement span { padding: 0 5px; }
  .header-inner { min-height: 75px; gap: 8px; }
  .brand { gap: 7px; }
  .brand-mark { width: 36px; height: 36px; flex: 0 0 36px; }
  .brand-mark svg { width: 26px; height: 26px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy span { display: block; font-size: .48rem; letter-spacing: .045em; }
  .menu-button { min-height: 40px; padding: 0 9px; font-size: .76rem; }
  .menu-bars { width: 15px; }
  .hero { padding: 65px 0 70px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.8rem); }
  .hero-panel { padding: 22px; }
  .quick-tile { min-height: 120px; padding: 12px; }
  .quick-tile strong { font-size: .82rem; }
  .section { padding: 65px 0; }
}
@media (max-width: 370px) {
  .brand-copy strong { font-size: .83rem; }
  .brand-copy span { font-size: .43rem; }
  .hero-note { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Trip planning assistant */
.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; }
.travel-chat { position: fixed; z-index: 1100; right: 22px; bottom: 20px; font-family: inherit; }
.chat-launch { cursor: pointer; padding: 14px 20px; border: 1px solid #cedbe0; border-radius: 999px; background: #263d4f; color: #fff; box-shadow: 0 10px 28px rgba(20,40,55,.24); font-family: inherit; font-size: .9rem; font-weight: 700; }
.chat-launch:hover, .chat-launch:focus-visible { background: #3d6176; }

.daily-preview { display: grid; grid-template-columns: 140px 1fr; gap: 30px; align-items: center; padding: clamp(24px, 5vw, 48px); border: 1px solid #d4e0e4; border-radius: 12px; background: linear-gradient(120deg, #edf3f4, #fff); }
.daily-preview-icon { display: grid; place-items: center; width: 118px; height: 118px; border-radius: 50%; background: #263d4f; color: #fff; font-size: 2.1rem; box-shadow: 0 15px 35px rgba(38,61,79,.2); }
.daily-preview h3 { margin: 5px 0 8px; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.daily-preview p { margin: 0 0 22px; max-width: 58ch; color: var(--muted); }
.daily-hero .kicker { display: block; margin: 18px 0 8px; }
.daily-video-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.daily-video-heading h2 { margin: 3px 0 0; }
.daily-video-heading .text-link { white-space: nowrap; }
.daily-video-shell { position: relative; width: 100%; max-width: 980px; min-height: 220px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #203443; box-shadow: var(--shadow); }
.daily-video-shell iframe { display: block; width: 100%; height: 100%; border: 0; visibility: hidden; }
.daily-video-shell.ready iframe { visibility: visible; }
.daily-video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; text-align: center; color: #fff; background: radial-gradient(circle at 75% 15%, #647e8c, #203443 75%); }
.daily-video-placeholder[hidden] { display: none; }
.daily-video-placeholder h3 { margin: 14px 0 6px; font-size: clamp(1.2rem, 3vw, 2rem); }
.daily-video-placeholder p { margin: 0 0 12px; color: #d4e1e6; }
.daily-video-placeholder a { color: #fff; font-weight: 700; }
.daily-play-symbol { display: grid; place-items: center; width: 58px; height: 58px; margin: auto; border: 1px solid #b7cbd3; border-radius: 50%; }
.daily-video-note { margin: 15px 0 0; color: var(--muted); font-size: .9rem; }
.daily-deal-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 45px; padding: clamp(24px, 5vw, 42px); border-radius: 12px; background: #e8f0f2; }
.daily-deal-cta h2 { margin: 4px 0 8px; }
.daily-deal-cta p { margin: 0; max-width: 64ch; }
.daily-deal-cta .btn { flex-shrink: 0; }
@media (max-width: 680px) {
  .daily-preview { grid-template-columns: 1fr; gap: 18px; }
  .daily-preview-icon { width: 76px; height: 76px; font-size: 1.4rem; }
  .daily-video-heading { align-items: start; flex-direction: column; }
  .daily-video-heading .text-link { white-space: normal; }
  .daily-deal-cta { align-items: start; flex-direction: column; }
}
.chat-panel { position: absolute; right: 0; bottom: 66px; width: min(380px, calc(100vw - 28px)); height: min(560px, calc(100dvh - 110px)); display: flex; flex-direction: column; overflow: hidden; border: 1px solid #c9d7de; border-radius: 16px; background: #f9fbfb; box-shadow: 0 20px 65px rgba(21,42,57,.26); color: #263d4f; }
.chat-panel[hidden], .chat-use[hidden] { display: none; }
.chat-heading { display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; background: #263d4f; color: #fff; }
.chat-heading strong, .chat-heading span { display: block; }
.chat-heading strong { font-size: 1rem; }
.chat-heading span { font-size: .75rem; color: #bfd0d9; }
.chat-close { cursor: pointer; border: 0; background: transparent; color: #fff; font-size: 1.6rem; line-height: 1; }
.chat-thread { flex: 1; overflow: auto; padding: 16px; }
.chat-bubble { max-width: 91%; padding: 11px 13px; margin: 0 0 12px; border-radius: 12px; white-space: pre-wrap; overflow-wrap: anywhere; font-size: .89rem; line-height: 1.45; }
.chat-bubble.assistant { background: #e6eff2; color: #263d4f; border-bottom-left-radius: 3px; }
.chat-bubble.visitor { margin-left: auto; background: #365a70; color: white; border-bottom-right-radius: 3px; }
.chat-actions { padding: 0 14px 8px; }
.chat-use { cursor: pointer; border: 0; padding: 6px 0; background: none; color: #204e6b; font-size: .82rem; font-weight: 750; text-decoration: underline; }
.chat-entry { display: flex; gap: 8px; padding: 9px 12px; border-top: 1px solid #d5e0e4; }
.chat-entry input { flex: 1; min-width: 0; padding: 10px; border: 1px solid #c9d7de; border-radius: 6px; background: #fff; font: inherit; font-size: .83rem; }
.chat-entry button { cursor: pointer; padding: 0 12px; border: 0; border-radius: 6px; background: #263d4f; color: white; font: inherit; font-size: .83rem; font-weight: 700; }
.chat-entry button:disabled { opacity: .5; cursor: wait; }
.chat-disclaimer { margin: 0; padding: 0 13px 11px; color: #546c79; font-size: .69rem; line-height: 1.35; }
.chat-prefill-note { padding: 12px; border-left: 3px solid #607f92; background: #eaf0f2; color: #263d4f; }
@media (max-width: 680px) {
  .travel-chat { right: 12px; bottom: 12px; }
  .chat-panel { bottom: 60px; height: min(560px, calc(100dvh - 95px)); }
}


/* Charcoal & ivory: the shared premium theme, including interactive surfaces. */
::selection { background: #d4c7b0; color: #232425; }
:focus-visible { outline-color: var(--ocean); }
h1, h2, h3 { font-family: var(--display-font); font-weight: 400; letter-spacing: -.02em; }
.announcement { background: #191a1b; color: var(--white); padding: 11px 16px; font-size: .72rem; letter-spacing: .2em; }
.announcement span { color: var(--ocean); padding: 0 22px; }
.site-header { background: rgba(35,36,37,.97); }
.brand-mark, .site-footer .brand-mark { border-color: #8b8478; color: var(--ocean); }
.brand-copy strong { font-family: var(--display-font); font-weight: 400; font-size: 1.4rem; letter-spacing: -.025em; }
.brand-copy em { font-style: italic; font-weight: 400; }
.brand-copy span, .site-footer .brand-copy span { color: var(--muted); font-weight: 500; }
.menu-button, .icon-button { background: transparent; border-color: var(--line); color: var(--white); }
.menu-button:hover, .icon-button:hover { background: var(--surface-raised); border-color: var(--ocean); }
.btn { font-weight: 600; border-radius: 5px; }
.btn-primary, .btn-dark, .drawer-card .btn-primary { background: var(--white); color: #232425; }
.btn-primary:hover, .btn-dark:hover { background: #d8cebe; box-shadow: 0 8px 20px #0003; }
.btn-secondary { background: transparent; border-color: #77756f; color: var(--white); }
.btn-secondary:hover { background: var(--surface-raised); }
.skip-link { background: var(--white); color: #232425; }
.menu-overlay { background: #0009; }
.menu-drawer { background: #272829; box-shadow: -16px 0 60px #0005; }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--surface-raised); }
.drawer-card { background: #363738; border: 1px solid var(--line); }
.hero, .page-hero { background: radial-gradient(ellipse at 90% 5%, #42413d66, transparent 48%), linear-gradient(115deg, #232425, #2e2f30); border-color: var(--line); }
.hero::before { border-color: #eee9df12; box-shadow: 0 0 0 100px #ffffff02, 0 0 0 101px #eee9df0b, 0 0 0 220px #ffffff02, 0 0 0 221px #eee9df08; }
.hero h1, .page-hero h1, .section-heading h2, .cta-panel h2 { font-weight: 400; letter-spacing: -.035em; }
.hero h1 { font-size: clamp(3.5rem, 6.3vw, 6rem); line-height: 1.07; }
.hero h1 span { color: var(--ocean); font-style: italic; }
.hero .lead, .page-hero .lead { color: var(--muted); }
.eyebrow, .kicker, .panel-label { color: var(--ocean); font-weight: 600; }
.hero-note span::before { color: var(--ocean); }
.hero-panel { background: #303132; border-color: #55534e; box-shadow: 0 28px 65px #0003; }
.hero-panel::before, .hero-panel::after { border-color: #d4c7b01a; }
.hero-panel h2 { font-weight: 400; letter-spacing: -.02em; font-size: clamp(1.9rem, 2.8vw, 2.6rem); }
.quick-tile { background: #38393a; border-color: #535352; }
.quick-tile:hover { background: #414242; border-color: #898174; }
.quick-tile strong { font-weight: 600; }
.quick-tile span { color: #c6c2ba; }
.section-white { background: #292a2b; }
.section-sand { background: #303132; }
.section-navy { background: #1c1d1e; }
.card, .form-card, .social-card, .faq-item, .resource-row { background: var(--surface); }
.card h3 { font-size: 1.5rem; font-weight: 400; }
.card-icon { border-color: #646057; background: #3c3c3a; color: var(--ocean); }
.text-link { font-weight: 600; }
.port-card, .port-card:nth-child(3n+2), .port-card:nth-child(3n+3) { background: linear-gradient(150deg, #52514d, #252627); border: 1px solid #5b5953; }
.port-card:nth-child(3n+2) { background: linear-gradient(150deg, #47494a, #232425); }
.port-card:nth-child(3n+3) { background: linear-gradient(150deg, #575248, #282827); }
.port-card .coming { background: var(--white); color: #303132; }
.step { border-color: #777166; }
.step h3 { font-size: 1.6rem; }
.cta-panel { background: linear-gradient(125deg, #373839, #454440); border: 1px solid #6c665b; }
.sidebar-card { background: #353637; border: 1px solid #5b5851; }
.callout, .empty-state { background: var(--surface); border-color: var(--line); }
.notice, .chat-prefill-note { background: #393934; color: var(--ink); border-left-color: var(--ocean); }
.form-field input, .form-field select, .form-field textarea, .search-bar input, .chat-entry input { background: #222324; color: var(--ink); border-color: #686761; }
input::placeholder, textarea::placeholder { color: #aaa7a0; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .search-bar input:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px #d4c7b026; }
.booking-group { background: #353637; }
.site-footer { background: #1b1c1d; border-top: 1px solid var(--line); }
.site-footer .brand { color: var(--white); }
.footer-col h4 { color: var(--ocean); }
.footer-brand p, .footer-col a, .footer-bottom { color: var(--muted); }
.daily-preview { background: linear-gradient(120deg, #373839, #2c2d2e); border-color: #5c5953; }
.daily-preview-icon { background: var(--white); color: #2b2c2d; box-shadow: none; }
.daily-video-shell { background: #202122; }
.daily-video-placeholder { background: radial-gradient(circle at 75% 15%, #58564f, #242526 75%); }
.daily-video-placeholder p { color: var(--muted); }
.daily-play-symbol { border-color: var(--ocean); }
.daily-deal-cta { background: var(--surface-raised); border: 1px solid var(--line); }
.chat-launch { background: var(--white); color: #232425; border-color: #c8bda9; box-shadow: 0 10px 28px #0004; }
.chat-launch:hover, .chat-launch:focus-visible { background: #d8cebe; }
.chat-panel { background: #272829; color: var(--ink); border-color: #716b60; box-shadow: 0 20px 65px #0006; }
.chat-heading { background: #363738; }
.chat-heading span { color: var(--muted); }
.chat-bubble.assistant { background: #393a3b; color: var(--ink); }
.chat-bubble.visitor { background: #e1d8c9; color: #232425; }
.chat-use { color: var(--ocean); }
.chat-entry { border-color: var(--line); }
.chat-entry button { background: var(--white); color: #232425; }
.chat-disclaimer { color: var(--muted); }
@media (max-width: 680px) {
  .brand-copy strong { font-size: 1.13rem; }
  .brand-copy span { font-size: .48rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.8rem); }
  .announcement { font-size: .64rem; letter-spacing: .16em; }
  .announcement span { padding: 0 14px; }
}
@media (max-width: 370px) { .brand-copy strong { font-size: 1rem; } }


/* Cinematic homepage hero */
.hero.hero-video {
  isolation: isolate;
  background: #202122;
  color: var(--white);
}

.hero-video-media,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-media {
  z-index: 0;
  overflow: hidden;
}

.hero-video-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  display: block;
  filter: saturate(.72) contrast(1.06) brightness(.78);
}

.hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28,29,30,.93) 0%, rgba(28,29,30,.78) 46%, rgba(28,29,30,.54) 100%),
    linear-gradient(180deg, rgba(20,21,22,.18) 0%, rgba(20,21,22,.42) 100%);
}

.hero.hero-video .hero-grid {
  z-index: 2;
}

.hero.hero-video::after {
  z-index: 4;
}

.hero.hero-video .eyebrow {
  color: rgba(242,238,230,.82);
}

.hero.hero-video h1 {
  color: #f7f3eb;
  text-shadow: 0 4px 34px rgba(0,0,0,.26);
}

.hero.hero-video .lead,
.hero.hero-video .hero-note {
  color: rgba(247,243,235,.82);
}

.hero.hero-video .hero-note span::before {
  color: #f2eee6;
}

.hero.hero-video .hero-panel {
  background: rgba(38,39,40,.72);
  border-color: rgba(242,238,230,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero.hero-video .hero-panel h2,
.hero.hero-video .panel-label,
.hero.hero-video .quick-tile strong {
  color: #f7f3eb;
}

.hero.hero-video .quick-tile {
  background: rgba(242,238,230,.08);
  border-color: rgba(242,238,230,.13);
}

.hero.hero-video .quick-tile:hover {
  background: rgba(242,238,230,.14);
  border-color: rgba(242,238,230,.24);
}

.hero.hero-video .quick-tile span {
  color: rgba(247,243,235,.7);
}

.hero-media-credit {
  position: absolute;
  z-index: 3;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  font-size: .64rem;
  letter-spacing: .01em;
  color: rgba(247,243,235,.54);
}

.hero-media-credit a {
  color: inherit;
  text-underline-offset: 2px;
}

.hero-media-credit a:hover {
  color: rgba(247,243,235,.9);
}

.coming.live {
  background: rgba(242,238,230,.1);
  color: var(--ink);
  border-color: rgba(242,238,230,.2);
}

@media (max-width: 760px) {
  .hero-video-media video {
    object-position: 62% center;
  }

  .hero-video-overlay {
    background: linear-gradient(180deg, rgba(28,29,30,.78) 0%, rgba(28,29,30,.9) 72%, rgba(28,29,30,.96) 100%);
  }

  .hero-media-credit {
    right: 18px;
    bottom: 52px;
    max-width: calc(100% - 36px);
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-media video {
    display: none;
  }

  .hero.hero-video {
    background:
      radial-gradient(circle at 78% 18%, rgba(242,238,230,.08), transparent 28%),
      linear-gradient(135deg, #242526 0%, #303132 100%);
  }
}
