:root {
  --ink: #10151b;
  --muted: #66727f;
  --paper: #f7f9fb;
  --panel: #ffffff;
  --navy: #12263c;
  --blue: #426f8f;
  --gold: #c9993f;
  --rose: #8d4052;
  --line: rgba(16, 21, 27, 0.12);
  --shadow: 0 24px 70px rgba(18, 38, 60, 0.16);
  --radius: 8px;
  --heading: "Playfair Display", Georgia, serif;
  --body: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

.why-section,
.open-city-section,
.reviews-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 1px 0 rgba(9, 27, 45, 0.08);
  animation: headerDropIn 520ms ease both;
}

.announcement-bar {
  max-height: 34px;
  min-height: 34px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: #101733;
  font-size: 13px;
  font-weight: 800;
  overflow: visible;
  transition:
    max-height 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.announcement-bar p {
  margin: 0;
  text-align: center;
}

body.has-scrolled .announcement-bar {
  height: 0;
  max-height: 0;
  min-height: 0;
  padding: 0 32px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

.contact-menu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.phone-link,
.quick-links,
.quick-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link,
.quick-links a,
.nav-links a,
.nav-tools button,
.apply-link,
.button {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.phone-link:hover,
.quick-links a:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.contact-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: min(390px, calc(100vw - 32px));
  padding: 38px 40px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  color: #101733;
  background: #fff;
  box-shadow: 0 28px 70px rgba(5, 11, 26, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-menu:hover .contact-panel,
.contact-menu:focus-within .contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-panel h2 {
  margin: 0 0 24px;
  color: #101733;
  font-family: var(--heading);
  font-size: 30px;
  line-height: 1;
}

.contact-option {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius);
  color: #101733;
  overflow: hidden;
  isolation: isolate;
  transition: color 180ms ease, background-color 180ms ease, transform 220ms ease;
}

.contact-option::before {
  content: "";
  position: absolute;
  inset: auto auto -52px -42px;
  z-index: -1;
  width: 128px;
  height: 128px;
  border-radius: 45%;
  background:
    radial-gradient(circle at 35% 35%, rgba(201, 153, 63, 0.2), transparent 38%),
    rgba(23, 62, 97, 0.08);
  opacity: 0;
  transform: translate(-18px, 18px) scale(0.55) rotate(0deg);
  transition: opacity 220ms ease, transform 520ms ease;
}

.contact-option::after {
  content: "";
  position: absolute;
  inset: auto -30px -58px auto;
  z-index: -1;
  width: 128px;
  height: 128px;
  border-radius: 42%;
  background: rgba(23, 62, 97, 0.07);
  opacity: 0;
  transform: translate(18px, 18px) scale(0.55) rotate(0deg);
  transition: opacity 220ms ease, transform 620ms ease;
}

.contact-option svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease, filter 220ms ease;
}

.contact-option > svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(16, 23, 51, 0.14);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 23, 51, 0.06);
}

.contact-option strong,
.contact-option small,
.contact-option em {
  display: block;
}

.contact-option strong {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 900;
}

.contact-option small {
  color: #5d6371;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.contact-option em {
  margin-top: 1px;
  color: #101733;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-option em::after {
  content: ">";
  margin-left: 8px;
  text-decoration: none;
}

.contact-option:hover {
  color: #173e61;
  background: rgba(23, 62, 97, 0.035);
  transform: translateX(3px);
}

.contact-option:hover::before,
.contact-option:focus-visible::before {
  opacity: 1;
  transform: translate(10px, -10px) scale(1.25) rotate(155deg);
  animation: contactWave 720ms ease both;
}

.contact-option:hover::after,
.contact-option:focus-visible::after {
  opacity: 1;
  transform: translate(-10px, -12px) scale(1.12) rotate(-145deg);
  animation: contactWaveReverse 820ms ease both;
}

.contact-option:hover > svg,
.contact-option:focus-visible > svg {
  color: #173e61;
  border-color: rgba(201, 153, 63, 0.48);
  box-shadow: 0 10px 22px rgba(23, 62, 97, 0.12);
  transform: translateY(-2px) scale(1.04);
}

.contact-page-link {
  min-height: 36px;
  margin-top: 20px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #101733;
  background: #f5f5f7;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.contact-page-link:hover {
  color: #173e61;
  background: #eef3f6;
}

@keyframes contactWave {
  0% {
    border-radius: 45%;
    transform: translate(-18px, 18px) scale(0.55) rotate(0deg);
  }

  50% {
    border-radius: 38% 46% 44% 40%;
  }

  100% {
    border-radius: 48% 42% 46% 38%;
    transform: translate(10px, -10px) scale(1.25) rotate(155deg);
  }
}

@keyframes contactWaveReverse {
  0% {
    border-radius: 42%;
    transform: translate(18px, 18px) scale(0.55) rotate(0deg);
  }

  50% {
    border-radius: 46% 39% 42% 48%;
  }

  100% {
    border-radius: 40% 48% 38% 46%;
    transform: translate(-10px, -12px) scale(1.12) rotate(-145deg);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerDropIn {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes contentLiftIn {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

.quick-links {
  justify-content: flex-end;
  gap: 16px;
}

.announcement-bar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  min-height: 82px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 238px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 205px;
  height: auto;
}

.nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.25vw, 24px);
  color: #030831;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #173e61;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #030831;
  min-width: 0;
}

.nav-tools button,
.apply-link {
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-tools button {
  width: 24px;
}

.apply-link {
  position: relative;
  min-height: 38px;
  padding: 0 14px;
  gap: 8px;
  border: 1px solid rgba(3, 8, 49, 0.14);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  flex: 0 0 auto;
}

.apply-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(23, 62, 97, 0.1) 45%, rgba(201, 153, 63, 0.22) 52%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.nav-tools svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-button {
  width: auto !important;
  gap: 8px;
  font-size: 12px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.apply-link svg {
  width: 21px;
  height: 21px;
  transition: transform 220ms ease, filter 220ms ease;
}

.nav-tools button:hover,
.nav-tools button:focus-visible {
  color: #173e61;
  transform: translateY(-2px);
}

.nav-tools button:hover svg,
.nav-tools button:focus-visible svg {
  filter: drop-shadow(0 5px 8px rgba(23, 62, 97, 0.18));
}

.apply-link:hover,
.apply-link:focus-visible {
  color: #173e61;
  border-color: rgba(201, 153, 63, 0.55);
  box-shadow: 0 10px 24px rgba(16, 23, 51, 0.12);
  transform: translateY(-2px);
}

.apply-link:hover::before,
.apply-link:focus-visible::before {
  transform: translateX(120%);
}

.apply-link:hover svg,
.apply-link:focus-visible svg {
  filter: drop-shadow(0 5px 8px rgba(201, 153, 63, 0.26));
  transform: translateX(2px) rotate(-4deg);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #101733;
  animation: contentLiftIn 640ms 80ms ease both;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.01);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 26, 0.78) 0%, rgba(5, 11, 26, 0.6) 34%, rgba(5, 11, 26, 0.18) 62%, rgba(5, 11, 26, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 11, 26, 0.1), rgba(5, 11, 26, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0 clamp(80px, 10vw, 132px);
}

.hero-brand {
  width: clamp(260px, 28vw, 460px);
  height: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.3));
}

.hero-kicker {
  margin: 0 0 16px;
  color: #e6c777;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--heading);
  line-height: 1;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 84px);
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-content > p:not(.hero-kicker),
.split-section p,
.notes p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 0 22px;
  border: 1px solid var(--line);
}

.button.primary {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.button.ghost,
.button.glass {
  background: #fff;
}

.button.glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 38, 60, 0.16);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #173e61;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(23, 62, 97, 0.28);
  color: #173e61;
}

.section,
.split-section,
.notes {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.why-section {
  width: min(100%, 1920px);
  margin: 0 auto;
  min-height: min(100vh, 900px);
  padding: clamp(36px, 4vw, 58px) clamp(18px, 4vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  animation: contentLiftIn 640ms 120ms ease both;
}

.why-heading {
  width: min(100%, 1480px);
  margin: 0 auto clamp(18px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(20px, 4vw, 72px);
}

.why-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #101733;
  font-family: var(--body);
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-heading > p {
  margin: 0;
  color: #3f4b5f;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 650;
  line-height: 1.55;
}

.why-grid {
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 28px);
}

.why-card {
  min-width: 0;
  border: 1px solid rgba(16, 23, 51, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 23, 51, 0.08);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 260ms ease;
}

.why-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eef3f6;
}

.why-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(16, 23, 51, 0), rgba(16, 23, 51, 0.22));
  pointer-events: none;
}

.why-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 380ms ease, filter 380ms ease;
}

.why-card-body {
  min-height: 178px;
  padding: clamp(16px, 1.35vw, 22px);
}

.why-card-body span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #173e61;
  background: #f4ead6;
  font-size: 12px;
  font-weight: 900;
}

.why-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: #101733;
  font-family: var(--body);
  font-size: clamp(17px, 1.12vw, 20px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  color: #485469;
  font-size: clamp(13px, 0.86vw, 14px);
  font-weight: 650;
  line-height: 1.48;
}

.why-card:hover,
.why-card:focus-within {
  border-color: rgba(201, 153, 63, 0.34);
  box-shadow: 0 26px 62px rgba(16, 23, 51, 0.13);
  transform: translateY(-6px);
}

.why-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.045);
}

.open-city-section {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #08111d;
}

.open-city-section > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.open-city-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 11, 26, 0.44), rgba(5, 11, 26, 0.18), rgba(5, 11, 26, 0.44)),
    linear-gradient(180deg, rgba(5, 11, 26, 0.18), rgba(5, 11, 26, 0.62));
}

.open-city-content {
  position: absolute;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  padding: clamp(30px, 4vw, 52px);
  text-align: center;
}

.open-city-content .eyebrow {
  margin-bottom: 14px;
  color: #f4c762;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.open-city-content h2 {
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(44px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}

.open-city-content > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 650;
  line-height: 1.62;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.open-city-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.open-city-actions .button {
  min-width: 210px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.open-city-actions .button.glass {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.open-city-actions .button.glass:hover,
.open-city-actions .button.glass:focus-visible {
  border-color: rgba(244, 199, 98, 0.78);
  color: #fff;
  background: rgba(244, 199, 98, 0.16);
}

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

.concept-grid article,
.notes,
.preview-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(18, 38, 60, 0.08);
}

.concept-grid article {
  min-height: 250px;
  padding: 28px;
}

.concept-grid p {
  color: var(--muted);
}

.number {
  width: 40px;
  height: 40px;
  margin-bottom: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
}

.event-showcase {
  padding: clamp(68px, 7vw, 112px) clamp(18px, 4vw, 72px);
  background:
    linear-gradient(180deg, #f7f9fb 0%, #fff 54%, #eef3f6 100%);
}

.event-showcase-head {
  width: min(100%, 1480px);
  margin: 0 auto clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(24px, 5vw, 78px);
}

.event-showcase-head h2 {
  max-width: 840px;
  margin: 0;
  color: #101733;
  font-family: var(--heading);
  font-size: clamp(36px, 4.4vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.event-showcase-head > p {
  margin: 0;
  color: #465366;
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 650;
  line-height: 1.68;
}

.event-showcase-grid {
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: stretch;
}

.event-feature,
.event-gallery article {
  border: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(18, 38, 60, 0.1);
  overflow: hidden;
}

.event-feature {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.event-video-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #08111d;
}

.event-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 26, 0.04), rgba(5, 11, 26, 0.5)),
    radial-gradient(circle at center, rgba(244, 199, 98, 0.1), transparent 34%);
}

.event-video-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.event-video-frame button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.event-video-frame button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 33px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #102536;
}

.event-video-frame button:hover,
.event-video-frame button:focus-visible {
  background: #f4c762;
  transform: translate(-50%, -50%) scale(1.06);
}

.event-feature-copy {
  padding: clamp(22px, 2vw, 32px);
}

.event-feature-copy span,
.event-gallery span,
.event-strip span {
  color: #b88426;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.event-feature-copy h3,
.event-gallery h3 {
  margin: 8px 0 0;
  color: #101733;
  font-size: clamp(21px, 1.8vw, 30px);
  line-height: 1.08;
}

.event-feature-copy p {
  max-width: 540px;
  margin: 12px 0 0;
  color: #526070;
  font-weight: 650;
  line-height: 1.58;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 20px);
}

.event-gallery article {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: end;
  isolation: isolate;
}

.event-gallery article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 11, 26, 0), rgba(5, 11, 26, 0.72));
}

.event-gallery img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.event-gallery div {
  padding: 22px;
}

.event-gallery h3 {
  color: #fff;
  font-size: clamp(18px, 1.3vw, 23px);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.event-gallery article:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.055);
}

.event-strip {
  width: min(100%, 1480px);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.event-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #173e61;
}

.reviews-section {
  padding: clamp(70px, 7vw, 118px) 0 clamp(76px, 7vw, 124px);
  overflow: hidden;
  background: #fbf8f3;
  border-top: 1px solid rgba(16, 23, 51, 0.08);
  border-bottom: 1px solid rgba(16, 23, 51, 0.08);
}

.reviews-head {
  width: min(100% - 72px, 1760px);
  margin: 0 auto clamp(34px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.reviews-head h2 {
  margin: 0;
  color: #101733;
  font-family: var(--body);
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-arrows {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-arrows button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 153, 63, 0.34);
  border-radius: 50%;
  color: #173e61;
  background: linear-gradient(145deg, #ffffff, #fff7e8);
  font-size: 28px;
  line-height: 1;
  box-shadow:
    0 12px 28px rgba(16, 23, 51, 0.09),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  cursor: pointer;
  overflow: hidden;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.review-arrows button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  transform: skewX(-18deg);
  animation: arrowShine 3.2s ease-in-out infinite;
}

.review-arrows button:hover,
.review-arrows button:focus-visible {
  border-color: rgba(201, 153, 63, 0.78);
  color: #101733;
  background: linear-gradient(145deg, #fff3d5, #f4c762);
  box-shadow:
    0 18px 38px rgba(201, 153, 63, 0.24),
    0 0 0 4px rgba(244, 199, 98, 0.14);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.review-arrows button:active {
  transform: translateY(0) scale(0.96);
}

.review-arrows button:first-child {
  color: #5d6d83;
}

.reviews-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-marquee::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: clamp(48px, 5vw, 92px);
  width: max-content;
  padding: 0 64px;
}

.review-card {
  flex: 0 0 clamp(270px, 19vw, 360px);
  color: #101733;
}

.stars {
  display: inline-flex;
  align-items: center;
  width: 110px;
  height: 22px;
  margin-bottom: 18px;
  color: #c9993f;
  font-size: 0;
  letter-spacing: 0;
  line-height: 1;
}

.stars::before {
  content: "";
  display: block;
  width: 110px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9993f' d='M12 2.6l2.8 5.7 6.3.9-4.6 4.5 1.1 6.3L12 17l-5.6 3 1.1-6.3-4.6-4.5 6.3-.9L12 2.6z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 22px 22px;
}

.review-card p {
  min-height: 120px;
  margin: 0;
  color: #18233a;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 650;
  line-height: 1.62;
}

.review-card span {
  display: block;
  margin-top: 24px;
  color: #101733;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

@keyframes arrowShine {
  0%,
  45% {
    left: -70%;
  }

  70%,
  100% {
    left: 120%;
  }
}

.site-footer {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  color: #101733;
  border-top: 1px solid rgba(16, 23, 51, 0.08);
}

.footer-main {
  width: min(100% - 64px, 1840px);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 92px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(160px, 0.56fr) minmax(180px, 0.64fr) minmax(170px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(26px, 4vw, 78px);
  align-items: start;
}

.footer-brand-block img {
  width: 220px;
  margin-bottom: 22px;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 0 0 24px;
  color: #4b5669;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list a,
.footer-contact-list address,
.footer-column a,
.footer-socials a,
.footer-bottom a {
  color: #101733;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.footer-contact-list a,
.footer-contact-list address {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  font-style: normal;
}

.footer-contact-list span {
  color: #b88426;
  font-weight: 900;
}

.footer-column,
.footer-newsletter {
  display: grid;
  gap: 14px;
}

.footer-column h3,
.footer-newsletter h3 {
  margin: 0 0 6px;
  color: #101733;
  font-size: 15px;
  font-weight: 900;
}

.footer-column a,
.footer-socials a,
.footer-bottom a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #b88426;
  transform: translateX(2px);
}

.footer-newsletter p {
  margin: 0;
  color: #101733;
  font-size: 14px;
  font-weight: 650;
}

.footer-newsletter form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  border-bottom: 1px solid rgba(16, 23, 51, 0.82);
}

.footer-newsletter label {
  display: grid;
  gap: 6px;
}

.footer-newsletter label span {
  color: #7b8493;
  font-size: 13px;
  font-weight: 650;
}

.footer-newsletter input {
  width: 100%;
  min-height: 40px;
  border: 0;
  color: #101733;
  background: transparent;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.footer-newsletter button {
  min-height: 40px;
  border: 0;
  color: #101733;
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  color: #b88426;
  transform: translateY(-1px);
  outline: none;
}

.footer-newsletter small {
  max-width: 520px;
  color: #3e485a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-socials {
  margin-top: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  transform: none;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.footer-socials a:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(244, 199, 98, 0.72);
  color: #f4c762;
  background: rgba(244, 199, 98, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.footer-bottom {
  min-height: 104px;
  padding: 24px 32px;
  border-top: 1px solid rgba(16, 23, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom strong {
  color: #101733;
  font-family: var(--heading);
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1;
}

.footer-bottom span {
  color: #101733;
  font-size: 13px;
  font-weight: 650;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 34px);
}

/* Final OneCaret footer treatment */
.site-footer {
  color: #f8fbfd;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 199, 98, 0.14), transparent 28%),
    linear-gradient(145deg, #08111d 0%, #102536 52%, #08111d 100%);
  border-top: 0;
}

.footer-cta {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(244, 199, 98, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(-34px);
}

.footer-cta .eyebrow {
  color: #f4c762;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 0.98;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-cta-actions .button.glass {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-main {
  padding-top: clamp(22px, 4vw, 46px);
}

.footer-brand-block,
.footer-column,
.footer-newsletter {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-brand-block img {
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.footer-brand-block p,
.footer-newsletter p,
.footer-newsletter small,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-list a,
.footer-contact-list address,
.footer-column a,
.footer-socials a,
.footer-bottom a,
.footer-newsletter h3,
.footer-column h3,
.footer-bottom strong {
  color: #fff;
}

.footer-contact-list span {
  min-width: 48px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #102536;
  background: #f4c762;
  font-size: 11px;
  text-align: center;
}

.footer-column a,
.footer-socials a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #f4c762;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
}

.footer-newsletter form {
  border-bottom-color: rgba(244, 199, 98, 0.72);
}

.footer-newsletter label span {
  color: rgba(255, 255, 255, 0.56);
}

.footer-newsletter input,
.footer-newsletter button {
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  color: #f4c762;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

/* Minimal footer override */
.site-footer {
  color: #101733;
  background: #fff;
  border-top: 1px solid rgba(16, 23, 51, 0.1);
}

.footer-cta {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
  padding: 42px 0 34px;
  border: 0;
  border-bottom: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.footer-cta .eyebrow {
  color: #b88426;
}

.footer-cta h2 {
  color: #101733;
  font-family: var(--body);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.05;
}

.footer-cta-actions .button.glass {
  border-color: rgba(16, 23, 51, 0.18);
  color: #101733;
  background: #fff;
}

.footer-main {
  width: min(100% - 64px, 1480px);
  padding: 42px 0 54px;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.72fr)) minmax(300px, 1fr);
  gap: clamp(26px, 3.6vw, 64px);
}

.footer-brand-block,
.footer-column,
.footer-newsletter {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand-block img {
  width: 190px;
  padding: 0;
  background: transparent;
}

.footer-brand-block p,
.footer-newsletter p,
.footer-newsletter small,
.footer-bottom span {
  color: #5a6574;
}

.footer-contact-list {
  gap: 10px;
}

.footer-contact-list a,
.footer-contact-list address,
.footer-column a,
.footer-socials a,
.footer-bottom a,
.footer-newsletter h3,
.footer-column h3,
.footer-bottom strong {
  color: #101733;
}

.footer-contact-list a,
.footer-contact-list address {
  display: block;
}

.footer-contact-list span {
  display: block;
  min-width: 0;
  margin-bottom: 2px;
  padding: 0;
  border-radius: 0;
  color: #b88426;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.footer-column {
  align-content: start;
}

.footer-column a,
.footer-socials a,
.footer-bottom a {
  color: #445064;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: #b88426;
}

.footer-newsletter form {
  border-bottom-color: rgba(16, 23, 51, 0.28);
}

.footer-newsletter label span {
  color: #7b8493;
}

.footer-newsletter input,
.footer-newsletter button {
  color: #101733;
}

.footer-newsletter input::placeholder {
  color: #7b8493;
}

.footer-socials {
  margin-top: 28px;
  justify-content: flex-start;
}

.footer-socials a {
  border-color: rgba(16, 23, 51, 0.12);
  color: #445064;
  background: #fff;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(184, 132, 38, 0.54);
  color: #b88426;
  background: #fff8e8;
}

.footer-bottom {
  min-height: auto;
  padding: 24px 32px;
  color: #101733;
  background: #f7f9fb;
  border-top: 1px solid rgba(16, 23, 51, 0.1);
}

.footer-bottom strong {
  color: #101733;
  font-family: var(--body);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .main-nav {
    grid-template-columns: 205px minmax(0, 1fr) 188px;
    gap: 16px;
  }

  .brand img {
    width: 180px;
  }

  .nav-links {
    gap: 13px;
    font-size: 11px;
  }

  .search-button span {
    display: none;
  }

  .nav-tools {
    gap: 12px;
  }

  .apply-link {
    min-height: 36px;
    padding: 0 11px;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .why-section,
  .inner-hero,
  .content-band,
  .module-grid,
  .about-profile-grid,
  .about-statement {
    animation: none;
  }

  .announcement-bar {
    padding: 8px 16px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }

  .quick-links {
    display: none;
  }

  .contact-menu {
    align-self: auto;
  }

  .contact-panel {
    left: 50%;
    width: min(390px, calc(100vw - 28px));
    padding: 30px 28px 18px;
    transform: translate(-50%, 10px);
  }

  .contact-menu:hover .contact-panel,
  .contact-menu:focus-within .contact-panel {
    transform: translate(-50%, 0) scale(1);
  }

  .contact-option {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 11px 8px;
  }

  .contact-option > svg {
    width: 32px;
    height: 32px;
  }

  .main-nav {
    min-height: 74px;
    padding: 0 16px;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-tools {
    gap: 12px;
  }

  .search-button span {
    display: none;
  }

  .apply-link {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 64% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 11, 26, 0.78), rgba(5, 11, 26, 0.38), rgba(5, 11, 26, 0.2)),
      linear-gradient(180deg, rgba(5, 11, 26, 0.12), rgba(5, 11, 26, 0.58));
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    padding: 86px 0 76px;
  }

  .hero-brand {
    width: min(340px, 78vw);
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .why-heading h2 {
    max-width: 720px;
  }

  .why-heading > p {
    max-width: 680px;
  }

  .concept-grid,
  .flow {
    grid-template-columns: 1fr;
  }

  .why-section {
    min-height: auto;
    padding: 44px 18px;
  }

  .why-card h3 {
    margin: 0 0 12px;
    min-height: 0;
  }

  .open-city-section {
    min-height: 0;
  }

  .open-city-section > img {
    width: 100%;
  }

  .event-showcase-head,
  .event-showcase-grid {
    grid-template-columns: 1fr;
  }

  .event-showcase-head > p {
    max-width: 720px;
  }

  .event-feature {
    grid-template-rows: auto auto;
  }

  .event-video-frame,
  .event-video-frame img {
    min-height: 360px;
  }

  .event-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-head {
    width: min(100% - 36px, 1480px);
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.8fr) minmax(280px, 1fr);
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-socials {
    margin-top: 28px;
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .section,
  .split-section,
  .notes {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .notes {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 132px;
  }

  .announcement-bar {
    font-size: 11px;
  }

  .phone-link {
    display: none;
  }

  .contact-panel {
    display: none;
  }

  .main-nav {
    grid-template-columns: minmax(128px, 1fr) auto;
    gap: 10px;
  }

  .nav-tools {
    display: none;
  }

  .search-button {
    display: none;
  }

  .apply-link {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .apply-link span {
    display: none;
  }

  .nav-tools svg {
    width: 19px;
    height: 19px;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero-media img {
    object-position: 70% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 11, 26, 0.1) 0%, rgba(5, 11, 26, 0.48) 42%, rgba(5, 11, 26, 0.86) 100%),
      linear-gradient(90deg, rgba(5, 11, 26, 0.36), rgba(5, 11, 26, 0.16));
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    padding: 240px 0 42px;
  }

  .hero-brand {
    width: min(280px, 82vw);
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-content > p:not(.hero-kicker) {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .why-section {
    padding: 42px 14px;
  }

  .why-heading {
    margin-bottom: 20px;
    gap: 14px;
  }

  .why-heading h2 {
    font-size: 30px;
    line-height: 1;
  }

  .why-heading > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card img {
    aspect-ratio: 1 / 0.62;
  }

  .why-card-body {
    min-height: 0;
    padding: 16px;
  }

  .why-card-body span {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .why-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .open-city-section {
    min-height: 0;
    place-items: end center;
  }

  .open-city-section > img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
  }

  .open-city-overlay {
    background:
      linear-gradient(180deg, rgba(5, 11, 26, 0.08) 0%, rgba(5, 11, 26, 0.44) 42%, rgba(5, 11, 26, 0.86) 100%),
      linear-gradient(90deg, rgba(5, 11, 26, 0.28), rgba(5, 11, 26, 0.12));
  }

  .open-city-content {
    width: min(100% - 28px, 520px);
    padding: 0 0 42px;
  }

  .open-city-content h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .open-city-content > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.52;
  }

  .open-city-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .open-city-actions .button {
    width: 100%;
    min-width: 0;
  }

  .event-showcase {
    padding: 52px 14px;
  }

  .event-showcase-head {
    margin-bottom: 24px;
    gap: 14px;
  }

  .event-showcase-head h2 {
    font-size: 36px;
    line-height: 1;
  }

  .event-showcase-head > p {
    font-size: 14px;
    line-height: 1.58;
  }

  .event-showcase-grid {
    gap: 14px;
  }

  .event-video-frame,
  .event-video-frame img {
    min-height: 280px;
  }

  .event-video-frame button {
    width: 66px;
    height: 66px;
  }

  .event-video-frame button span {
    margin-left: 26px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }

  .event-feature-copy {
    padding: 20px;
  }

  .event-feature-copy h3 {
    font-size: 24px;
  }

  .event-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-gallery article {
    min-height: 240px;
  }

  .event-gallery div {
    padding: 18px;
  }

  .event-strip {
    margin-top: 14px;
    grid-template-columns: 1fr;
  }

  .event-strip span {
    min-height: 48px;
  }

  .reviews-section {
    padding: 52px 0 58px;
  }

  .reviews-head {
    width: calc(100% - 28px);
    margin-bottom: 28px;
  }

  .review-arrows button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .reviews-track {
    gap: 30px;
    padding: 0 22px;
    animation-duration: 70s;
  }

  .review-card {
    flex-basis: min(78vw, 310px);
  }

  .stars {
    width: 100px;
    height: 20px;
    margin-bottom: 14px;
  }

  .stars::before {
    width: 100px;
    height: 20px;
    background-size: 20px 20px;
  }

  .review-card p {
    min-height: 150px;
    font-size: 14px;
  }

  .footer-main {
    width: calc(100% - 28px);
    padding: 46px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-cta {
    width: calc(100% - 28px);
    padding: 26px;
    transform: translateY(-22px);
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .button {
    width: 100%;
  }

  .footer-brand-block img {
    width: 176px;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-newsletter form {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .footer-socials {
    gap: 18px;
  }

  .footer-bottom {
    min-height: auto;
    padding: 26px 14px 34px;
  }

  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom strong {
    font-size: 30px;
  }

  .footer-bottom nav {
    gap: 14px 20px;
  }
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.8fr));
  }

  .footer-newsletter {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .footer-cta,
  .footer-main {
    width: calc(100% - 28px);
  }

  .footer-main {
    padding: 34px 0 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta {
    padding: 32px 0 26px;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .button {
    width: 100%;
  }

  .footer-bottom {
    padding: 22px 14px 28px;
  }
}

/* Focused inner pages */
.inner-page {
  background: #f7f9fb;
}

.inner-hero {
  padding: clamp(72px, 8vw, 132px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 84px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 17, 29, 0.92), rgba(16, 37, 54, 0.72)),
    url("assets/open-onecaret-store-city.png") center / cover;
  animation: contentLiftIn 640ms 80ms ease both;
}

.inner-hero-content,
.content-band,
.module-grid,
.detail-grid,
.steps-grid,
.theme-showcase {
  width: min(calc(100% - 36px), 1480px);
  margin: 0 auto;
}

.inner-hero-content {
  width: min(calc(100% - 72px), 1180px);
  margin-left: auto;
  margin-right: auto;
}

.inner-hero h1 {
  width: 100%;
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(30px, 5.8vw, 92px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.inner-hero p {
  width: 100%;
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 650;
  line-height: 1.65;
}

.content-band {
  padding: clamp(58px, 7vw, 104px) 0;
  animation: contentLiftIn 640ms 140ms ease both;
}

.content-band h2 {
  max-width: 820px;
  margin: 0;
  color: #101733;
  font-family: var(--heading);
  font-size: clamp(30px, 3.8vw, 66px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.content-band .lead {
  max-width: 850px;
  margin: 18px 0 0;
  color: #4d5969;
  font-weight: 650;
  line-height: 1.7;
}

.module-grid {
  padding-bottom: clamp(64px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  animation: contentLiftIn 640ms 190ms ease both;
}

.module-card,
.detail-card,
.step-card {
  border: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 23, 51, 0.08);
}

.module-card {
  min-height: 420px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.module-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #102536;
  background: #f4c762;
  font-weight: 900;
}

.module-card small {
  margin-top: 22px;
  color: #b88426;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 8px 0 0;
  color: #101733;
  font-size: clamp(21px, 1.6vw, 30px);
  line-height: 1.05;
}

.module-price {
  margin: 18px 0 14px;
  color: #102536;
  font-family: var(--heading);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.module-card p {
  margin: 0;
  color: #4f5b6b;
  font-weight: 650;
  line-height: 1.56;
}

.module-facts {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  gap: 10px;
}

.module-facts span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #173e61;
  background: #f3f7fa;
  font-size: 13px;
  font-weight: 800;
}

.detail-grid,
.steps-grid,
.theme-showcase {
  padding: 0 0 clamp(64px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card,
.step-card {
  padding: 28px;
}

.detail-card h3,
.step-card h3 {
  margin: 0 0 10px;
  color: #101733;
  font-size: 23px;
}

.detail-card p,
.step-card p {
  margin: 0;
  color: #4f5b6b;
  font-weight: 650;
  line-height: 1.65;
}

.theme-showcase {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.theme-showcase img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 23, 51, 0.14);
}

.about-profile-grid {
  width: min(100% - 36px, 1280px);
  margin: 0 auto;
  padding: 0 0 clamp(64px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  animation: contentLiftIn 640ms 190ms ease both;
}

.about-profile-card {
  min-width: 0;
  border: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 23, 51, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-profile-card img {
  width: 100%;
  height: clamp(300px, 24vw, 390px);
  object-fit: cover;
  object-position: center top;
  padding: 0;
  background: #eef3f6;
  border-bottom: 1px solid rgba(16, 23, 51, 0.08);
}

.about-profile-card div {
  padding: 18px 20px 22px;
  min-height: 104px;
  display: grid;
  align-content: start;
}

.about-profile-card span {
  display: block;
  margin-bottom: 7px;
  color: #b88426;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-profile-card h3 {
  margin: 0;
  color: #101733;
  font-size: clamp(20px, 1.4vw, 27px);
  line-height: 1.05;
}

.about-profile-card:hover,
.about-profile-card:focus-within {
  border-color: rgba(201, 153, 63, 0.38);
  box-shadow: 0 26px 62px rgba(16, 23, 51, 0.13);
  transform: translateY(-5px);
}

.about-page .about-profile-card img {
  height: clamp(300px, 24vw, 390px) !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.about-statement {
  width: min(100% - 36px, 1180px);
  margin: 0 auto clamp(64px, 7vw, 110px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(16, 23, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 23, 51, 0.08);
  animation: contentLiftIn 640ms 230ms ease both;
}

.about-statement p {
  margin: 0;
  color: #4f5b6b;
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 650;
  line-height: 1.72;
}

.inner-cta {
  width: min(100% - 36px, 1180px);
  margin: 0 auto clamp(64px, 7vw, 110px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #102536, #173e61);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.inner-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1;
}

.inner-cta p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

@media (max-width: 1180px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .inner-hero-content,
  .content-band,
  .module-grid,
  .detail-grid,
  .steps-grid,
  .theme-showcase,
  .about-profile-grid,
  .about-statement,
  .inner-cta {
    width: min(calc(100% - 36px), 330px);
    max-width: calc(100% - 28px);
  }

  .inner-hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 3.6vw, 30px);
    line-height: 1.08;
  }

  .content-band h2 {
    max-width: 100%;
    font-size: clamp(27px, 3.6vw, 30px);
    line-height: 1.06;
  }

  .inner-hero p,
  .content-band .lead {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .inner-page {
    overflow-x: hidden;
  }

  .inner-hero {
    padding: 56px 14px 46px;
  }

  .inner-hero-content {
    width: 100%;
  }

  .inner-hero-content,
  .content-band,
  .module-grid,
  .detail-grid,
  .steps-grid,
  .theme-showcase,
  .about-profile-grid,
  .about-statement,
  .inner-cta {
    width: min(calc(100% - 28px), 330px);
    max-width: 100%;
  }

  .module-grid,
  .detail-grid,
  .steps-grid,
  .theme-showcase,
  .about-profile-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero h1,
  .content-band h2,
  .inner-cta h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .inner-hero p,
  .content-band .lead {
    max-width: 100%;
  }

  .inner-hero h1 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.08;
  }

  .content-band h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.06;
  }

  .module-card {
    min-height: 0;
  }

  .inner-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .inner-cta .button {
    width: 100%;
  }
}

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