:root {
  --ink: #020f16;
  --navy: #071f42;
  --navy-deep: #001d44;
  --purple: #5b2d82;
  --paper: #fdf3ee;
  --paper-soft: #fff8f4;
  --line: #eadcd0;
  --gold: #c19a5f;
  --red: #e8474e;
  --shadow: 0 18px 48px rgba(37, 24, 17, 0.08);
  --header-height: 156px;
  --page-pad: clamp(2rem, 3.7vw, 4rem);
  --content-max: 1550px;
  --font-text: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-display: Didot, "Bodoni 72", "Bodoni 72 Oldstyle", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--navy);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 30rem),
    var(--paper);
  font-family: var(--font-text);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 60;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem var(--page-pad);
}

.brand-link {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  width: clamp(8.5rem, 8.9vw, 10.1rem);
  transform: translateX(-50%);
}

.brand-link img {
  width: 100%;
  border-radius: 50%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.65vw, 3.25rem);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}

.header-nav a,
.footer-nav a {
  position: relative;
}

.header-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.58rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 150ms ease, transform 150ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.header-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-nav-right {
  margin-left: auto;
  gap: clamp(0.75rem, 1.2vw, 1.2rem);
}

.franchise-link,
.selection-link,
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.franchise-link,
.selection-link {
  min-width: 16rem;
  padding: 0.85rem 1.35rem;
  gap: 0.65rem;
  font-weight: 400;
}

.franchise-link {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.franchise-link::after,
.selection-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1.35rem;
}

.icon-link {
  display: grid;
  width: 2.05rem;
  height: 2.05rem;
  place-items: center;
  color: var(--navy);
}

.icon-link svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
}

.pill-button {
  width: fit-content;
  min-width: 19rem;
  padding: 0.95rem 1.65rem;
  gap: 1.2rem;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
}

.franchise-link span,
.pill-button span,
.selection-link span {
  font-size: 1.35em;
  line-height: 1;
}

.pill-button:hover,
.selection-link:hover,
.pill-button:focus-visible,
.selection-link:focus-visible {
  background: var(--navy-deep);
}

.franchise-link:hover,
.franchise-link:focus-visible {
  background: rgba(2, 15, 22, 0.04);
}

.home-hero,
.universe-hero,
.universe-showcase,
.universe-features,
.site-footer {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(24rem, 0.76fr) minmax(34rem, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(1.2rem, 2.2vw, 2.5rem);
  padding-bottom: clamp(2rem, 3vw, 3.4rem);
  overflow: hidden;
}

.home-copy {
  position: relative;
  z-index: 2;
}

.home-copy h1,
.universe-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
}

.home-copy h1 {
  max-width: 42rem;
  color: var(--ink);
  font-size: clamp(5.3rem, 6.9vw, 7.25rem);
  line-height: 0.9;
}

.home-copy em,
.universe-copy em {
  font-style: italic;
}

.home-copy em {
  color: var(--purple);
}

.home-copy p {
  max-width: 25rem;
  margin: 1.8rem 0 2rem;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
  line-height: 1.5;
}

.home-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  justify-self: end;
  width: min(76vw, 74rem);
  transform: translateX(12rem);
}

.home-visual img {
  width: 100%;
}

.home-benefits {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  width: min(45rem, 100%);
  padding: 0;
  margin: clamp(3rem, 5vw, 4.5rem) 0 0;
  list-style: none;
}

.home-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 650;
  line-height: 1.25;
}

.home-benefits img {
  max-width: 2.7rem;
  max-height: 3.05rem;
}

.universe-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(28rem, 0.84fr) minmax(36rem, 1.35fr);
  gap: clamp(2rem, 3.6vw, 4.4rem);
  align-items: center;
  padding-top: clamp(2.2rem, 4vw, 4.3rem);
  padding-bottom: 1.9rem;
}

.universe-copy {
  position: relative;
  z-index: 2;
  max-width: 37rem;
}

.eyebrow {
  display: inline-grid;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
  color: rgba(7, 31, 66, 0.68);
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 4.6rem;
  height: 0.14rem;
  background: linear-gradient(90deg, var(--navy) 0 36%, transparent 36% 64%, var(--red) 64% 100%);
  content: "";
}

.universe-copy h1 {
  color: var(--navy);
  font-size: clamp(3.25rem, 3.2vw, 3.7rem);
  line-height: 1.04;
  white-space: nowrap;
}

.universe-copy .ornament {
  position: relative;
  width: min(18rem, 64%);
  height: 1px;
  margin: 1.9rem 0 1.9rem;
  background: var(--gold);
}

.universe-copy .ornament::before,
.universe-copy .ornament::after {
  position: absolute;
  top: 50%;
  content: "";
}

.universe-copy .ornament::before {
  right: 38%;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.universe-copy .ornament::after {
  right: 0;
  width: 34%;
  height: 1px;
  background: var(--paper);
  box-shadow: -5.7rem 0 0 var(--paper);
}

.universe-copy p {
  max-width: 32rem;
  margin: 0 0 2rem;
  color: var(--navy);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.65;
}

.botanical {
  position: absolute;
  z-index: 1;
  bottom: 2.2rem;
  left: 30%;
  width: 13.5rem;
  opacity: 0.78;
  pointer-events: none;
}

.universe-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  grid-template-rows: 17.9rem 10.45rem;
  gap: 1rem;
}

.universe-gallery picture,
.universe-gallery img {
  width: 100%;
  height: 100%;
}

.universe-gallery img {
  border-radius: 1.05rem;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(31, 18, 10, 0.05);
}

.gallery-main {
  grid-row: 1 / span 2;
}

.gallery-detail,
.gallery-wall {
  align-self: stretch;
}

.gallery-detail {
  width: calc(42% - 0.5rem);
}

.gallery-wall {
  width: calc(58% - 0.5rem);
}

.gallery-detail,
.gallery-wall {
  grid-row: 2;
}

.gallery-detail {
  grid-column: 2;
  justify-self: start;
}

.gallery-wall {
  grid-column: 2;
  justify-self: end;
}

.universe-showcase {
  display: grid;
  grid-template-columns: minmax(38rem, 1fr) minmax(20rem, 0.42fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-top: clamp(1.4rem, 2.8vw, 2.8rem);
  padding-bottom: clamp(2rem, 3vw, 3.2rem);
}

.showcase-copy {
  grid-column: 2;
  max-width: 26rem;
  padding-top: 0.65rem;
}

.showcase-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 2.9vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.showcase-copy p {
  margin: 1.35rem 0 0;
  color: var(--navy);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.6;
}

.showcase-frame {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  border: 1px solid rgba(192, 154, 95, 0.2);
  border-radius: 1.1rem;
  background: rgba(255, 249, 246, 0.72);
  box-shadow: 0 20px 52px rgba(37, 24, 17, 0.1);
  overflow: hidden;
}

.showcase-frame::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 154, 95, 0.62), transparent);
  content: "";
}

.showcase-frame img {
  width: 100%;
  aspect-ratio: 1448 / 1086;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.universe-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.3rem;
  margin-bottom: 3rem;
  padding-top: 1.65rem;
  padding-bottom: 1.65rem;
  border: 1px solid rgba(192, 154, 95, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 249, 246, 0.78);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 1.25rem;
  align-items: center;
  min-height: 8.2rem;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card img {
  width: 5.4rem;
  height: 5.4rem;
}

.feature-card h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-size: clamp(0.93rem, 1vw, 1.05rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.88rem, 0.92vw, 0.98rem);
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-top: 1.7rem;
  padding-bottom: 1.9rem;
  border-top: 1px solid rgba(192, 154, 95, 0.18);
  color: var(--navy);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 13rem;
  border-radius: 0;
}

.footer-brand img.footer-logo-type {
  width: clamp(11rem, 16vw, 16rem);
  max-height: 6rem;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-brand span,
.site-footer p {
  color: rgba(7, 31, 66, 0.7);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: start stretch;
  background: rgba(2, 15, 22, 0.18);
  backdrop-filter: blur(10px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-panel {
  width: min(84vw, 26rem);
  min-height: 100svh;
  padding: 5.7rem 2rem 2rem;
  background: rgba(253, 243, 238, 0.96);
  box-shadow: 1.2rem 0 3rem rgba(2, 15, 22, 0.1);
}

.mobile-menu-panel a {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 4px;
}

@media (max-width: 1180px) and (orientation: landscape) {
  .header-nav-left {
    gap: 1.15rem;
  }

  .header-nav {
    font-size: 0.78rem;
  }

  .franchise-link,
  .selection-link {
    min-width: 13.5rem;
  }

  .home-hero {
    grid-template-columns: minmax(22rem, 0.74fr) minmax(28rem, 1fr);
  }

  .home-copy h1 {
    font-size: clamp(4.7rem, 6.8vw, 6.1rem);
  }
}

@media (max-width: 900px), (orientation: portrait) {
  :root {
    --header-height: 10.8rem;
    --page-pad: clamp(1.55rem, 6.7vw, 4rem);
  }

  body {
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 26rem),
      var(--paper);
  }

  .site-header {
    min-height: var(--header-height);
    padding-top: 1.2rem;
    padding-bottom: 1rem;
  }

  .brand-link {
    top: 1rem;
    width: clamp(8.4rem, 17vw, 10rem);
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 0.47rem;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem 0.25rem;
    border: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 2.05rem;
    height: 0.18rem;
    border-radius: 999px;
    background: currentColor;
  }

  .header-actions {
    margin-left: auto;
    gap: 1.25rem;
  }

  .icon-link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .icon-link svg {
    width: 2.25rem;
    height: 2.25rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 2.4rem;
  }

  .home-copy h1 {
    max-width: 48rem;
    font-size: clamp(4.1rem, 12.5vw, 7.35rem);
    line-height: 0.93;
  }

  .home-copy p {
    max-width: 33rem;
    margin-top: 1.75rem;
    margin-bottom: 1.85rem;
    font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  }

  .pill-button {
    min-width: min(21rem, 100%);
    min-height: 3.25rem;
    padding-right: 1.45rem;
    padding-left: 1.45rem;
  }

  .home-visual {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(100%, 51rem);
    margin-top: 0.35rem;
    transform: none;
  }

  .home-benefits {
    grid-column: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.45rem;
  }

  .home-benefits li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    text-align: center;
    font-size: clamp(0.82rem, 2.4vw, 1rem);
  }

  .home-benefits img {
    max-width: 2.5rem;
    max-height: 2.8rem;
  }

  .universe-hero {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    padding-top: 0.9rem;
    padding-bottom: 1.6rem;
  }

  .universe-copy {
    max-width: 51rem;
  }

  .eyebrow {
    margin-bottom: 1.55rem;
    font-size: clamp(0.96rem, 2.3vw, 1.14rem);
  }

  .universe-copy h1 {
    font-size: clamp(3.8rem, 8.4vw, 4.9rem);
    line-height: 1.03;
    white-space: normal;
  }

  .universe-copy .ornament {
    width: min(20.5rem, 72%);
    margin: 1.8rem 0 1.7rem;
  }

  .universe-copy p {
    max-width: 47rem;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.56;
  }

  .botanical {
    top: 5.5rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(28vw, 13rem);
    opacity: 0.66;
  }

  .universe-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 1.15rem;
  }

  .universe-gallery img {
    border-radius: 1rem;
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-main img {
    aspect-ratio: 804 / 319;
  }

  .gallery-lounge,
  .gallery-detail {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .gallery-lounge img,
  .gallery-detail img {
    aspect-ratio: 399 / 194;
  }

  .gallery-wall {
    display: none;
  }

  .universe-showcase {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 0.85rem;
    padding-bottom: 2.3rem;
  }

  .showcase-copy {
    grid-column: auto;
    max-width: 43rem;
    padding-top: 0;
  }

  .showcase-frame {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-copy h2 {
    font-size: clamp(2.85rem, 7.4vw, 4rem);
  }

  .showcase-copy p {
    max-width: 38rem;
    font-size: clamp(0.98rem, 2.25vw, 1.14rem);
  }

  .showcase-frame {
    border-radius: 1rem;
  }

  .universe-features {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 2.7rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-radius: 1rem;
  }

  .feature-card {
    position: relative;
    grid-template-columns: 6rem 1fr 1.6rem;
    gap: 1.15rem;
    min-height: 7.25rem;
    padding: 0.95rem 1.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card::after {
    width: 0.72rem;
    height: 0.72rem;
    border-top: 2px solid var(--navy);
    border-right: 2px solid var(--navy);
    content: "";
    transform: rotate(45deg);
  }

  .feature-card img {
    width: 5.6rem;
    height: 5.6rem;
  }

  .feature-card h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(0.94rem, 2.6vw, 1.08rem);
  }

  .feature-card p {
    font-size: clamp(0.88rem, 2.2vw, 1rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-top: 1.6rem;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .site-footer p {
    text-align: center;
  }
}

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

  .home-copy h1 {
    font-size: clamp(3.9rem, 17vw, 5.1rem);
  }

  .universe-copy h1 {
    font-size: clamp(3.15rem, 12vw, 4.15rem);
  }

  .universe-gallery {
    gap: 0.8rem;
  }

  .showcase-copy h2 {
    font-size: clamp(2.5rem, 9.4vw, 3.25rem);
  }

  .feature-card {
    grid-template-columns: 4.75rem 1fr 1.2rem;
    padding: 0.85rem 1rem;
  }

  .feature-card img {
    width: 4.35rem;
    height: 4.35rem;
  }
}

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