:root {
  --seo-black: #08090a;
  --seo-panel: #111315;
  --seo-panel-soft: #17191b;
  --seo-white: #f2f4f3;
  --seo-muted: #aeb3b3;
  --seo-line: rgba(242, 244, 243, 0.23);
  --seo-red: #9f1023;
  --seo-red-hot: #dc3b50;
  --seo-max: 1440px;
  --seo-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --seo-condensed: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --seo-serif: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  --seo-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  background: var(--seo-black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--seo-black);
  color: var(--seo-white);
  font-family: var(--seo-sans);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  background-image: repeating-radial-gradient(
    circle at 30% 10%,
    rgba(255, 255, 255, 0.12) 0 0.45px,
    transparent 0.7px 4px
  );
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.12;
  pointer-events: none;
}

body,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

::selection {
  background: var(--seo-red);
  color: white;
}

.seo-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--seo-white);
  color: var(--seo-black);
  transform: translateY(-160%);
}

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

.seo-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  min-height: 82px;
  padding: 0 clamp(20px, 3.2vw, 54px);
  grid-template-columns: minmax(230px, 1fr) auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--seo-line);
  background: rgba(8, 9, 10, 0.89);
  backdrop-filter: blur(18px);
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  text-decoration: none;
}

.seo-brand-seal {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  object-fit: cover;
  filter: grayscale(1) contrast(1.25);
}

.seo-brand-name {
  color: var(--seo-white);
  font-family: var(--seo-condensed);
  font-size: 25px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.seo-brand-name span {
  display: block;
  margin-left: 36px;
  color: var(--seo-red-hot);
}

.seo-header-issue {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 16px;
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.seo-header-issue::before,
.seo-header-issue::after {
  width: 44px;
  height: 1px;
  background: var(--seo-red-hot);
  content: "";
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(15px, 1.8vw, 28px);
}

.seo-nav > a:not(.seo-nav-booking) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.seo-nav-booking {
  display: inline-flex;
  min-height: 44px;
  padding: 0 17px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--seo-red-hot);
  color: var(--seo-white);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 140ms var(--seo-ease-out);
}

.seo-nav > a:hover,
.seo-nav > a:focus-visible {
  color: var(--seo-white);
}

.seo-nav-booking:hover,
.seo-nav-booking:focus-visible {
  background: var(--seo-white);
  color: var(--seo-black);
}

.seo-breadcrumbs {
  display: flex;
  width: min(calc(100% - 48px), var(--seo-max));
  min-height: 60px;
  margin: 0 auto;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: var(--seo-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-breadcrumbs a {
  color: var(--seo-white);
}

.seo-breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.seo-hero {
  display: grid;
  width: min(calc(100% - 48px), var(--seo-max));
  min-height: 640px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  border-right: 1px solid var(--seo-line);
  border-left: 1px solid var(--seo-line);
}

.seo-hero-copy {
  display: flex;
  min-width: 0;
  padding: clamp(54px, 7vw, 96px) clamp(30px, 4.4vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.seo-kicker,
.seo-card-label,
.seo-final-cta > p {
  margin: 0 0 24px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-kicker {
  display: flex;
  margin-bottom: clamp(24px, 4vw, 40px);
  align-items: center;
  gap: 14px;
  color: rgba(242, 244, 243, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.seo-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seo-red-hot);
  box-shadow: 0 0 0 5px rgba(195, 23, 47, 0.14);
  content: "";
  flex: 0 0 8px;
}

.seo-section-index {
  margin: 0 0 24px;
  color: var(--seo-red-hot);
  font-family: var(--seo-serif);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.seo-card-label {
  color: var(--seo-muted);
}

.seo-final-cta > p {
  color: rgba(255, 255, 255, 0.78);
}

.seo-hero h1 {
  max-width: 100%;
  min-width: 0;
  margin: 0;
  font-family: var(--seo-condensed);
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.84;
  text-transform: uppercase;
  text-wrap: balance;
}

.seo-lead {
  max-width: 650px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: rgba(242, 244, 243, 0.86);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.62;
}

.seo-cta-row {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.seo-primary-cta {
  position: relative;
  display: inline-flex;
  width: min(100%, 360px);
  min-height: 66px;
  padding: 0 24px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--seo-red);
  color: white;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 140ms var(--seo-ease-out);
}

.seo-primary-cta::before {
  position: absolute;
  inset: 0;
  background: var(--seo-white);
  content: "";
  transform: translateX(-102%);
  transition: transform 240ms var(--seo-ease-out);
}

.seo-primary-cta > span {
  position: relative;
  z-index: 1;
}

.seo-primary-cta:hover,
.seo-primary-cta:focus-visible {
  color: var(--seo-black);
  transform: translateY(-2px);
}

.seo-primary-cta:hover::before,
.seo-primary-cta:focus-visible::before {
  transform: translateX(0);
}

.seo-phone-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-booking-note {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--seo-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.seo-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--seo-panel);
}

.seo-visual::before {
  position: absolute;
  z-index: 1;
  top: -16%;
  right: 12%;
  width: 14px;
  height: 138%;
  background: var(--seo-red-hot);
  content: "";
  opacity: 0.92;
  transform: rotate(18deg);
}

.seo-visual picture,
.seo-visual img {
  width: 100%;
  height: 100%;
}

.seo-visual img {
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.88) contrast(1.08) brightness(0.84);
}

.seo-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 9, 10, 0.78));
  content: "";
  pointer-events: none;
}

.seo-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.seo-visual figcaption span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.seo-visual figcaption strong {
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.seo-facts {
  display: grid;
  width: min(calc(100% - 48px), var(--seo-max));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--seo-line);
}

.seo-facts > div {
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid var(--seo-line);
}

.seo-facts > div:last-child {
  border-right: 0;
}

.seo-facts span {
  color: var(--seo-red);
  font-size: 0.72rem;
  font-weight: 800;
}

.seo-facts p {
  max-width: 300px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 720;
  line-height: 1.24;
}

.seo-copy-section {
  display: grid;
  width: min(calc(100% - 48px), var(--seo-max));
  margin: clamp(80px, 12vw, 150px) auto;
  grid-template-columns: 0.35fr 1.2fr 0.75fr;
  gap: clamp(28px, 5vw, 70px);
}

.seo-copy-section h2,
.seo-directory h2,
.seo-final-cta h2 {
  margin: 0;
  font-family: var(--seo-condensed);
  font-size: clamp(2.2rem, 5vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.seo-copy-section > div > p {
  margin: 28px 0 0;
  color: rgba(242, 244, 243, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.seo-contact-card {
  align-self: start;
  padding: 28px;
  border-top: 4px solid var(--seo-red);
  background: var(--seo-panel);
}

.seo-contact-card address {
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.seo-contact-card dl {
  margin: 0;
}

.seo-contact-card dl > div {
  display: grid;
  padding: 15px 0;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 14px;
  border-top: 1px solid var(--seo-line);
}

.seo-contact-card dt {
  color: var(--seo-muted);
  font-size: 0.75rem;
}

.seo-contact-card dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.seo-directory {
  width: min(calc(100% - 48px), var(--seo-max));
  margin: 0 auto clamp(90px, 12vw, 150px);
}

.seo-directory-heading {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 0.35fr 1.65fr;
  gap: clamp(28px, 5vw, 70px);
}

.seo-directory-heading > div {
  max-width: 780px;
}

.seo-directory-lead {
  margin: 18px 0 0;
  color: var(--seo-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.seo-directory-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--seo-line);
}

.seo-directory-group {
  display: grid;
  align-content: start;
  gap: 28px;
  min-width: 0;
  padding: 28px 28px 0;
  border-right: 1px solid var(--seo-line);
}

.seo-directory-group:last-child {
  border-right: 0;
}

.seo-directory-group-copy p:last-child {
  margin: 16px 0 0;
  color: var(--seo-muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.seo-directory-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--seo-line);
  list-style: none;
}

.seo-directory-list li {
  border-bottom: 1px solid var(--seo-line);
}

.seo-directory-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  min-height: 92px;
  padding: 18px 0 20px;
  color: var(--seo-white);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 140ms ease;
}

.seo-directory-list span {
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.16;
}

.seo-directory-list strong {
  align-self: start;
  color: var(--seo-red);
  font-family: var(--seo-condensed);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-directory-list small {
  grid-column: 1 / -1;
  color: var(--seo-muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.seo-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--seo-line);
}

.seo-route-grid a {
  display: grid;
  min-width: 0;
  min-height: 154px;
  padding: 28px;
  grid-template-columns: 0.3fr 1fr auto;
  align-items: start;
  gap: 20px;
  border-right: 1px solid var(--seo-line);
  border-bottom: 1px solid var(--seo-line);
  color: var(--seo-white);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.seo-route-grid a:nth-child(even) {
  border-right: 0;
}

.seo-route-grid a:hover,
.seo-route-grid a:focus-visible,
.seo-route-grid a[aria-current="page"] {
  background: var(--seo-panel);
}

.seo-route-grid a[aria-current="page"] {
  outline: 1px solid rgba(220, 59, 80, 0.62);
  outline-offset: -1px;
}

.seo-route-grid span,
.seo-route-grid small {
  color: var(--seo-muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-route-grid strong {
  min-width: 0;
  max-width: 330px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.seo-route-grid small {
  color: var(--seo-white);
  font-weight: 750;
  text-align: right;
  white-space: nowrap;
}

.seo-directory-footer {
  margin: 22px 0 0;
  color: var(--seo-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-directory-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--seo-white);
  text-decoration: none;
}

.seo-directory-list a:hover,
.seo-directory-list a:focus-visible,
.seo-directory-footer a:hover,
.seo-directory-footer a:focus-visible {
  color: #fff;
}

.seo-final-cta {
  display: grid;
  width: min(calc(100% - 48px), var(--seo-max));
  min-height: 400px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px);
  place-items: center;
  background: var(--seo-red);
  text-align: center;
}

.seo-final-cta > p {
  color: white;
}

.seo-final-cta h2 {
  max-width: 800px;
}

.seo-primary-cta--light {
  margin-top: 38px;
  background: var(--seo-white);
  color: var(--seo-black);
}

.seo-primary-cta--light::before {
  background: var(--seo-black);
}

.seo-primary-cta--light:hover,
.seo-primary-cta--light:focus-visible {
  color: var(--seo-white);
}

.seo-footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--seo-white);
  font-family: var(--seo-condensed);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-footer-brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  object-fit: cover;
  filter: grayscale(1) contrast(1.25);
}

.seo-footer {
  display: grid;
  width: min(calc(100% - 48px), var(--seo-max));
  min-height: 190px;
  margin: 0 auto;
  grid-template-columns: 0.7fr 1.4fr 0.7fr auto;
  align-items: center;
  gap: 28px;
  color: var(--seo-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.seo-footer p {
  margin: 0;
}

.seo-footer > a:last-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--seo-white);
}

:focus-visible {
  outline: 3px solid var(--seo-white);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .seo-hero h1 {
    font-size: clamp(2.95rem, 4.55vw, 5.15rem);
  }
}

@media (max-width: 1120px) {
  .seo-header-issue {
    display: none;
  }

  .seo-header {
    grid-template-columns: 1fr auto;
  }

  .seo-hero {
    grid-template-columns: minmax(0, 1.14fr) minmax(310px, 0.86fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }

  .seo-header {
    min-height: 70px;
    padding-inline: 18px;
    grid-template-columns: 1fr;
  }

  .seo-brand-seal {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .seo-brand-name {
    font-size: 20px;
  }

  .seo-brand-name span {
    margin-left: 28px;
  }

  .seo-nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .seo-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  }

  .seo-copy-section {
    grid-template-columns: 1fr 2fr;
  }

  .seo-contact-card {
    grid-column: 2;
  }

  .seo-route-grid a {
    grid-template-columns: 1fr auto;
  }

  .seo-route-grid span {
    grid-column: 1 / -1;
  }

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

  .seo-directory-group:nth-child(even) {
    border-right: 0;
  }

  .seo-directory-group:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .seo-breadcrumbs,
  .seo-hero,
  .seo-facts,
  .seo-copy-section,
  .seo-directory,
  .seo-final-cta,
  .seo-footer {
    width: min(calc(100% - 28px), var(--seo-max));
  }

  .seo-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-top: 1px solid var(--seo-line);
  }

  .seo-hero-copy {
    padding: 54px 22px 46px;
  }

  .seo-kicker {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .seo-hero h1 {
    font-size: clamp(2.5rem, 12.5vw, 4.8rem);
    overflow-wrap: normal;
  }

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

  .seo-primary-cta {
    width: 100%;
  }

  .seo-phone-link {
    justify-content: center;
  }

  .seo-visual,
  .seo-visual img {
    min-height: 470px;
  }

  .seo-facts {
    grid-template-columns: 1fr;
  }

  .seo-facts > div {
    display: grid;
    min-height: 104px;
    padding: 22px;
    grid-template-columns: 40px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--seo-line);
  }

  .seo-facts > div:last-child {
    border-bottom: 0;
  }

  .seo-facts p {
    margin: 0;
  }

  .seo-copy-section,
  .seo-directory-heading {
    grid-template-columns: 1fr;
  }

  .seo-contact-card {
    grid-column: auto;
  }

  .seo-route-grid {
    grid-template-columns: 1fr;
  }

  .seo-route-grid a,
  .seo-route-grid a:nth-child(even) {
    min-height: 136px;
    padding: 22px;
    border-right: 0;
  }

  .seo-directory-groups {
    grid-template-columns: 1fr;
  }

  .seo-directory-group,
  .seo-directory-group:nth-child(even),
  .seo-directory-group:last-child {
    grid-column: auto;
    padding: 24px 0 0;
    border-right: 0;
  }

  .seo-directory-list a {
    min-height: 82px;
  }

  .seo-final-cta {
    min-height: 360px;
    padding: 48px 22px;
  }

  .seo-footer {
    padding: 52px 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .seo-hero h1 {
    font-size: clamp(2.25rem, 11.5vw, 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
