@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Sans";
  src: url("../realtor/fonts/vietlinker-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-normal-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-normal-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-vietnamese.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0,
    U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Vietlinker Serif";
  src: url("../realtor/fonts/vietlinker-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --coral: #ef7568;
  --coral-deep: #a23c42;
  --butter: #f6d66a;
  --butter-pale: #fff1b8;
  --plum: #55264f;
  --plum-deep: #35152f;
  --mint: #bfe4d4;
  --mint-pale: #e8f5ef;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #281d29;
  --muted: #625764;
  --white: #fffdfa;
  --line: rgba(85, 38, 79, 0.18);
  --banner-height: 36px;
  --header-height: 84px;
  --gutter: clamp(22px, 4.8vw, 82px);
  --content-max: 1500px;
  --ease: cubic-bezier(0.2, 0.76, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-height) + var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Vietlinker Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  width: 100%;
}

img {
  height: auto;
}

button,
input,
select {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
address,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--plum-deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--plum-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.demo-banner {
  position: sticky;
  z-index: 220;
  top: 0;
  min-height: var(--banner-height);
  padding: 7px var(--gutter);
  color: var(--plum-deep);
  background: var(--butter);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
}

.demo-banner a {
  margin-left: auto;
  border-bottom: 1px solid rgba(53, 21, 47, 0.55);
}

.demo-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral-deep);
}

.site-header {
  position: sticky;
  z-index: 180;
  top: var(--banner-height);
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--white);
  background: rgba(53, 21, 47, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) auto minmax(310px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  backdrop-filter: blur(16px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-bloom {
  position: relative;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.brand-bloom i {
  position: absolute;
  top: 16px;
  left: 17px;
  width: 11px;
  height: 15px;
  border-radius: 100% 0 100% 0;
  background: var(--butter);
  transform-origin: 5px 7px;
}

.brand-bloom i:nth-child(2) {
  transform: rotate(120deg);
}

.brand-bloom i:nth-child(3) {
  transform: rotate(240deg);
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-copy small {
  color: var(--mint);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.27em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 38px);
  font-size: 12px;
  font-weight: 750;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--butter);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 17px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 850;
}

.lang-button {
  min-width: 37px;
  min-height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.lang-button[aria-pressed="true"] {
  color: var(--butter);
}

.header-book {
  min-height: 51px;
  padding: 0 18px;
  color: var(--plum-deep);
  background: var(--butter);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 850;
  transition: transform 200ms var(--ease), background 200ms ease;
}

.header-book:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.header-book b,
.button b,
.text-link b {
  font-weight: 500;
}

.menu-button,
.mobile-menu,
.mobile-dock {
  display: none;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100svh - var(--banner-height) - var(--header-height)));
  padding: clamp(90px, 12vh, 150px) var(--gutter) clamp(96px, 12vh, 150px);
  color: var(--white);
  background: var(--plum-deep);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  align-items: center;
  gap: clamp(46px, 8vw, 130px);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(53, 21, 47, 0.93) 0%, rgba(53, 21, 47, 0.74) 47%, rgba(53, 21, 47, 0.23) 78%, rgba(53, 21, 47, 0.47) 100%),
    linear-gradient(0deg, rgba(36, 13, 32, 0.8), transparent 54%);
}

@keyframes hero-breathe {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(0, -1%, 0); }
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(246, 214, 106, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 9%;
  right: -9vw;
  width: 42vw;
  height: 42vw;
}

.orbit-two {
  right: 18vw;
  bottom: -22vw;
  width: 32vw;
  height: 32vw;
}

.hero-copy,
.next-card,
.hero-social-proof {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 830px;
}

.eyebrow {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.eyebrow.light {
  color: var(--mint);
}

.eyebrow.plum {
  color: var(--plum);
}

.eyebrow.coral {
  color: var(--coral-deep);
}

.eyebrow.butter {
  color: var(--butter);
}

.hero h1 {
  max-width: 850px;
  margin-top: 22px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(64px, 7.4vw, 118px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 em,
.section-heading h2 em,
.availability h2 em,
.film-copy h2 em,
.groups h2 em,
.owner-copy h2 em,
.visit h2 em,
.booking h2 em {
  color: var(--butter);
  font-weight: 400;
}

.hero-lede {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.5vw, 22px);
}

.hero-actions,
.visit-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 58px;
  padding: 0 23px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 850;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-butter {
  color: var(--plum-deep);
  background: var(--butter);
}

.button-butter:hover {
  background: var(--mint);
}

.button-plum {
  color: var(--white);
  background: var(--plum);
}

.button-plum:hover {
  background: var(--plum-deep);
}

.text-link {
  min-height: 48px;
  padding: 11px 0 8px;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.light-link {
  color: var(--white);
}

.hero-note {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.next-card {
  align-self: end;
  width: min(100%, 390px);
  margin: 0 0 3vh auto;
  padding: clamp(30px, 3.3vw, 48px);
  color: var(--plum-deep);
  background: rgba(255, 248, 239, 0.94);
  border-top: 5px solid var(--coral);
  box-shadow: 0 28px 75px rgba(24, 8, 22, 0.28);
  backdrop-filter: blur(16px);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-deep);
  box-shadow: 0 0 0 5px rgba(162, 60, 66, 0.12);
}

.next-card > p {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.next-card > strong {
  display: block;
  margin-top: 2px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.next-card > small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.walkin-line {
  margin-top: 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
}

.walkin-line b {
  color: var(--coral-deep);
}

.next-card > a {
  min-height: 46px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--plum);
  font-size: 11px;
  font-weight: 850;
}

.hero-social-proof {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-faces {
  display: flex;
}

.mini-faces span {
  width: 35px;
  height: 35px;
  margin-left: -8px;
  border: 2px solid var(--plum-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--plum-deep);
  background: var(--mint);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 14px;
  font-weight: 800;
}

.mini-faces span:first-child {
  margin-left: 0;
  background: var(--coral);
}

.mini-faces span:last-child {
  background: var(--butter);
}

.hero-social-proof p {
  display: grid;
  gap: 1px;
  line-height: 1.35;
}

.hero-social-proof strong {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.hero-social-proof small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.mood-strip {
  min-height: 106px;
  padding: 0 var(--gutter);
  color: var(--plum-deep);
  background: var(--coral);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mood-strip p {
  padding: 24px clamp(14px, 2.2vw, 34px);
  border-left: 1px solid rgba(53, 21, 47, 0.23);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  letter-spacing: 0.11em;
}

.mood-strip p:last-child {
  border-right: 1px solid rgba(53, 21, 47, 0.23);
}

.mood-strip span {
  font-size: 17px;
}

.section {
  padding: clamp(92px, 10vw, 168px) var(--gutter);
}

.section-heading {
  max-width: 940px;
}

.section-heading.wide {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.section-heading h2,
.availability h2,
.film-copy h2,
.groups h2,
.owner-copy h2,
.visit h2,
.booking h2,
.disclosure h2 {
  margin-top: 16px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(45px, 5.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-heading h2 em {
  color: var(--coral-deep);
}

.section-heading > p,
.section-heading.wide > p,
.availability-copy > p:last-child,
.film-copy > p:last-child,
.groups .group-main > p,
.visit-copy > p,
.booking-copy > p {
  margin-top: 22px;
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.wide > p {
  margin: 0 0 5px;
}

.lookbook {
  background: var(--cream);
}

.reel-filters {
  max-width: var(--content-max);
  margin: clamp(44px, 5vw, 72px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel-filters button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--plum);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.reel-filters button.is-active {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
}

.look-grid {
  max-width: var(--content-max);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, 18vw);
  gap: 14px;
}

.look-card {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  overflow: hidden;
  background: var(--mint);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.look-card-tall {
  grid-row: span 2;
}

.look-card-wide {
  grid-column: span 8;
}

.look-card.is-filtered {
  display: none;
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}

.look-card:nth-child(2) img {
  object-position: 65% 48%;
}

.look-card:nth-child(3) img {
  object-position: 28% 48%;
}

.look-card:nth-child(4) img {
  object-position: 75% 50%;
}

.look-card:nth-child(5) img {
  object-position: 50% 72%;
}

.look-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.look-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  min-height: 74px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(53, 21, 47, 0.88);
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  backdrop-filter: blur(12px);
}

.look-card figcaption > span {
  color: var(--butter);
  font-size: 10px;
  font-weight: 850;
}

.look-card figcaption > div {
  display: grid;
  gap: 2px;
}

.look-card figcaption strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.look-card figcaption small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.availability {
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  color: var(--white);
  background: var(--plum);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.availability h2 em,
.film-copy h2 em,
.groups h2 em,
.booking h2 em {
  color: var(--butter);
}

.availability-copy > p:last-child,
.film-copy > p:last-child,
.groups .group-main > p,
.booking-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.studio-board {
  color: var(--plum-deep);
  background: var(--paper);
  box-shadow: 20px 20px 0 var(--coral);
}

.board-head {
  min-height: 62px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--plum-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.board-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.board-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.board-row {
  min-height: 118px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 22px;
}

.board-row time {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 650;
}

.board-row > div {
  display: grid;
  gap: 3px;
}

.board-row strong {
  font-size: 15px;
}

.board-row small {
  color: var(--muted);
  font-size: 12px;
}

.slot-status {
  min-width: 82px;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.slot-status.open {
  color: var(--plum-deep);
  background: var(--mint);
}

.slot-status.wait {
  color: var(--plum-deep);
  background: var(--butter);
}

.board-note {
  padding: 15px 24px 18px;
  color: var(--muted);
  font-size: 11px;
}

.artists {
  color: var(--ink);
  background: var(--mint-pale);
}

.artist-layout {
  max-width: var(--content-max);
  margin: clamp(56px, 7vw, 100px) auto 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(580px, 1.2fr);
  gap: 20px;
}

.team-photo {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(53, 21, 47, 0.88);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.artist-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 44px);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.artist-card:last-child {
  grid-column: 1 / -1;
}

.artist-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--plum-deep);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.coral-avatar { background: var(--coral); }
.mint-avatar { background: var(--mint); }
.butter-avatar { background: var(--butter); }

.artist-card > div:nth-child(2) {
  margin-top: 22px;
}

.artist-number {
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.artist-card h3 {
  margin-top: 4px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.artist-card > p:nth-of-type(2) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.artist-card ul {
  margin: 18px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.artist-card li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.artist-card button,
.service-card button,
.gift-card button,
.loyalty-card button,
.text-button {
  min-height: 44px;
  margin-top: auto;
  padding: 0 4px;
  color: var(--plum);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--plum);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 850;
}

.social-film {
  padding: clamp(96px, 11vw, 174px) var(--gutter);
  color: var(--white);
  background: var(--plum-deep);
}

.film-copy {
  max-width: 980px;
}

.film-frame {
  max-width: var(--content-max);
  margin: clamp(50px, 6vw, 86px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #160a14;
}

.film-frame video {
  aspect-ratio: 16 / 9;
  max-height: 78svh;
  object-fit: cover;
  background: #120810;
}

.film-frame figcaption {
  min-height: 64px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.film-frame figcaption b {
  color: var(--butter);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.film-comments {
  max-width: var(--content-max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.film-comments blockquote {
  min-height: 160px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px 12px;
}

.film-comments blockquote > span {
  color: var(--coral);
  font-size: 18px;
}

.film-comments p {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
}

.film-comments cite {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.services {
  background: var(--paper);
}

.service-grid {
  max-width: var(--content-max);
  margin: clamp(54px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 500px;
  padding: clamp(28px, 3vw, 46px);
  color: var(--plum-deep);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.coral-card { background: var(--coral); }
.butter-card { background: var(--butter); }
.mint-card { background: var(--mint); }
.plum-card { color: var(--white); background: var(--plum); }

.service-card > span {
  font-size: 10px;
  font-weight: 850;
}

.service-card > p:first-of-type {
  margin-top: 42px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-top: 9px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 650;
  line-height: 1.05;
}

.service-card > div {
  width: 100%;
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.service-card > div b {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 34px;
}

.service-card > div small {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-card > p:nth-of-type(2) {
  margin-top: 22px;
  font-size: 14px;
}

.service-card button {
  width: 100%;
  color: inherit;
  border-color: currentColor;
}

.pricing-note {
  max-width: var(--content-max);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.groups {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
}

.group-main {
  min-height: 760px;
  padding: clamp(80px, 9vw, 150px) var(--gutter);
  color: var(--white);
  background: var(--plum);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.group-main > p {
  max-width: 690px;
}

.group-main ul,
.booking-copy ul {
  width: min(100%, 680px);
  margin: 32px 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.group-main li,
.booking-copy li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.group-main li::before,
.booking-copy li::before {
  content: "✦";
  margin-left: -28px;
  margin-right: 12px;
  color: var(--butter);
}

.social-extras {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.gift-card,
.loyalty-card {
  min-height: 380px;
  padding: clamp(48px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.gift-card {
  color: var(--plum-deep);
  background: var(--butter-pale);
}

.loyalty-card {
  color: var(--white);
  background: var(--coral-deep);
}

.gift-card > span,
.loyalty-card > span {
  font-size: 30px;
}

.gift-card h3,
.loyalty-card h3 {
  max-width: 520px;
  margin-top: 12px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 650;
  line-height: 1.03;
}

.gift-card > p:nth-of-type(2),
.loyalty-card > p:nth-of-type(2) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 14px;
}

.loyalty-card > p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.84);
}

.loyalty-card button {
  color: var(--white);
  border-color: var(--white);
}

.owner-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.9fr);
  background: var(--mint-pale);
}

.owner-story figure {
  min-height: 760px;
  overflow: hidden;
}

.owner-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}

.owner-copy {
  padding: clamp(72px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-copy h2 {
  font-size: clamp(42px, 4.5vw, 70px);
}

.owner-copy h2 em {
  color: var(--coral-deep);
}

.owner-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
}

.owner-sign {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.owner-sign strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 24px;
}

.owner-sign span {
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feedback {
  background: var(--cream);
}

.feedback-grid {
  max-width: var(--content-max);
  margin: clamp(52px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feedback-grid figure {
  min-height: 390px;
  padding: clamp(30px, 3.2vw, 50px);
  color: var(--plum-deep);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.feedback-grid .featured-review {
  color: var(--white);
  background: var(--plum);
  transform: translateY(-18px);
}

.stars {
  color: var(--coral-deep);
  font-size: 13px;
  letter-spacing: 0.13em;
}

.featured-review .stars {
  color: var(--butter);
}

.feedback-grid blockquote {
  margin-top: 44px;
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.3;
}

.feedback-grid figcaption {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  gap: 5px;
}

.feedback-grid figcaption strong {
  font-size: 13px;
}

.feedback-grid figcaption small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.featured-review figcaption small {
  color: rgba(255, 255, 255, 0.74);
}

.visit {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(450px, 0.85fr) minmax(0, 1.15fr);
  color: var(--white);
  background: var(--plum-deep);
}

.visit-copy {
  padding: clamp(76px, 8vw, 130px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit h2 em {
  color: var(--butter);
}

.visit-copy address {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 5px;
  font-style: normal;
}

.visit-copy address strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 22px;
}

.visit-copy address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.visit .text-button {
  color: var(--white);
  border-color: var(--white);
}

.visit-copy dl {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visit-copy dl div {
  display: grid;
  gap: 7px;
}

.visit-copy dt {
  color: var(--butter);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.visit-copy dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.map-card {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--plum-deep);
  background:
    linear-gradient(rgba(85, 38, 79, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 38, 79, 0.07) 1px, transparent 1px),
    var(--mint);
  background-size: 54px 54px;
}

.map-street {
  position: absolute;
  display: block;
  background: var(--cream);
  border: 1px solid rgba(85, 38, 79, 0.16);
  box-shadow: 0 0 0 7px rgba(255, 248, 239, 0.55);
}

.street-a {
  top: 36%;
  right: -5%;
  left: -5%;
  height: 58px;
  transform: rotate(-8deg);
}

.street-b {
  top: -6%;
  bottom: -6%;
  left: 58%;
  width: 52px;
  transform: rotate(7deg);
}

.street-c {
  right: -4%;
  bottom: 19%;
  left: 12%;
  height: 34px;
  transform: rotate(16deg);
}

.street-name,
.map-place {
  position: absolute;
  z-index: 2;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.name-a { top: 33%; left: 9%; transform: rotate(-8deg); }
.name-b { top: 12%; left: 64%; transform: rotate(7deg); }
.place-one { top: 16%; left: 12%; }
.place-two { right: 13%; bottom: 11%; }

.map-pin {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 44%;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
}

.map-pin i {
  width: 78px;
  height: 78px;
  border: 9px solid var(--butter);
  border-radius: 50% 50% 50% 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--plum);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 0;
  font-style: normal;
  font-weight: 800;
  transform: rotate(-45deg);
  box-shadow: 0 14px 28px rgba(53, 21, 47, 0.22);
}

.map-pin i::before {
  content: "S";
  font-size: 28px;
  transform: rotate(45deg);
}

.map-pin b {
  padding: 8px 11px;
  text-align: center;
  background: var(--butter);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.map-card > small {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  padding: 12px;
  text-align: center;
  color: var(--white);
  background: var(--plum-deep);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.faq {
  background: var(--paper);
}

.faq-list {
  max-width: var(--content-max);
  margin: clamp(48px, 6vw, 88px) auto 0;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 98px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary strong {
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 650;
}

.faq summary span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 240ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 900px;
  padding: 0 0 32px;
  color: var(--muted);
}

.booking {
  padding: clamp(94px, 10vw, 160px) var(--gutter);
  color: var(--white);
  background: var(--plum);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(550px, 1.22fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.booking-copy ul {
  margin-top: 30px;
}

.booking-form {
  padding: clamp(30px, 4.2vw, 62px);
  color: var(--plum-deep);
  background: var(--cream);
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label:not(.consent) {
  display: grid;
  gap: 8px;
}

.booking-form label > span:first-child {
  font-size: 11px;
  font-weight: 850;
}

.booking-form input[type="text"],
.booking-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 14px;
  color: var(--plum-deep);
  background: var(--white);
  border: 1px solid rgba(85, 38, 79, 0.34);
  border-radius: 0;
}

.privacy-help {
  margin-top: -13px;
  color: var(--muted);
  font-size: 11px;
}

.consent {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  cursor: pointer;
}

.consent input {
  width: 23px;
  height: 23px;
  margin: 0;
  accent-color: var(--plum);
}

.booking-form .button {
  justify-self: start;
}

.form-status {
  min-height: 26px;
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 800;
}

.disclosure {
  padding: clamp(66px, 7vw, 100px) var(--gutter);
  color: var(--plum-deep);
  background: var(--butter-pale);
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.disclosure-mark {
  width: 70px;
  height: 70px;
  border: 1px solid var(--plum);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral-deep);
  font-family: "Vietlinker Serif", Georgia, serif;
  font-size: 35px;
}

.disclosure h2 {
  max-width: 1000px;
  font-size: clamp(33px, 3.5vw, 54px);
}

.disclosure div > p:last-child {
  max-width: 1200px;
  margin-top: 22px;
  color: #544657;
  font-size: 15px;
}

footer {
  padding: 58px var(--gutter) 28px;
  color: var(--white);
  background: var(--plum-deep);
  display: grid;
  grid-template-columns: 0.75fr 0.9fr 0.8fr;
  align-items: center;
  gap: 38px;
}

footer > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 25px;
  font-size: 12px;
  font-weight: 750;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.global-status {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100vw - 44px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--plum-deep);
  box-shadow: 0 12px 34px rgba(32, 10, 29, 0.24);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms;
}

.global-status.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-button {
    position: relative;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.36);
  }

  .menu-button span {
    width: 21px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 34px var(--gutter) 46px;
    color: var(--white);
    background: var(--plum-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 3px;
    box-shadow: 0 20px 50px rgba(27, 7, 24, 0.28);
  }

  .mobile-menu a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Vietlinker Serif", Georgia, serif;
    font-size: 25px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  }

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

  .mood-strip p:nth-child(3) {
    border-top: 1px solid rgba(53, 21, 47, 0.23);
  }

  .mood-strip p:nth-child(4) {
    border-top: 1px solid rgba(53, 21, 47, 0.23);
  }

  .artist-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card:last-child {
    grid-column: auto;
  }

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

  .groups,
  .owner-story {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
    --gutter: clamp(20px, 5vw, 42px);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 112px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 92px);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .next-card {
    margin: 0 0 0 auto;
  }

  .section-heading.wide,
  .availability,
  .artist-layout,
  .owner-story,
  .visit,
  .booking {
    grid-template-columns: 1fr;
  }

  .section-heading.wide {
    gap: 22px;
  }

  .section-heading.wide > p {
    margin: 0;
  }

  .look-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(300px, 54vw);
  }

  .look-card,
  .look-card-wide {
    grid-column: span 1;
  }

  .look-card-tall {
    grid-row: span 2;
  }

  .availability {
    gap: 56px;
  }

  .artist-layout {
    gap: 18px;
  }

  .team-photo {
    min-height: 560px;
  }

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

  .artist-card:last-child {
    grid-column: 1 / -1;
  }

  .film-comments,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .film-comments blockquote {
    min-height: 130px;
  }

  .feedback-grid .featured-review {
    transform: none;
  }

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

  .group-main {
    min-height: 680px;
  }

  .social-extras {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gift-card,
  .loyalty-card {
    min-height: 460px;
    padding: 52px 34px;
  }

  .owner-story figure,
  .map-card {
    min-height: 600px;
  }

  .owner-copy {
    padding: 84px var(--gutter);
  }

  .visit {
    min-height: 0;
  }

  .booking {
    gap: 52px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --banner-height: 34px;
    --header-height: 70px;
  }

  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .demo-banner {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .demo-banner a {
    display: none;
  }

  .demo-banner > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    padding-right: 14px;
  }

  .brand-bloom {
    width: 39px;
    height: 39px;
  }

  .brand-bloom i {
    top: 13px;
    left: 14px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-book {
    display: none;
  }

  .language-switch {
    gap: 0;
  }

  .lang-button {
    min-width: 30px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    max-height: calc(100svh - var(--banner-height) - var(--header-height));
    padding-top: 24px;
    padding-bottom: 30px;
    overflow-y: auto;
  }

  .mobile-menu a {
    min-height: 48px;
    font-size: 22px;
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 116px;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(53, 21, 47, 0.94), rgba(53, 21, 47, 0.54)),
      linear-gradient(0deg, rgba(36, 13, 32, 0.86), transparent 64%);
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions,
  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .next-card {
    width: 100%;
  }

  .hero-social-proof {
    right: var(--gutter);
    bottom: 24px;
  }

  .mood-strip {
    grid-template-columns: 1fr;
  }

  .mood-strip p {
    min-height: 76px;
    border-right: 1px solid rgba(53, 21, 47, 0.23);
    border-bottom: 1px solid rgba(53, 21, 47, 0.23);
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading h2,
  .availability h2,
  .film-copy h2,
  .groups h2,
  .owner-copy h2,
  .visit h2,
  .booking h2 {
    font-size: clamp(39px, 11.8vw, 55px);
  }

  .reel-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .look-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(360px, 112vw);
  }

  .look-card,
  .look-card-wide,
  .look-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .availability {
    padding-top: 82px;
    padding-bottom: 98px;
  }

  .studio-board {
    box-shadow: 10px 10px 0 var(--coral);
  }

  .board-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .board-row {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .slot-status {
    grid-column: 2;
    justify-self: start;
  }

  .team-photo {
    min-height: 430px;
  }

  .artist-grid,
  .social-extras,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .artist-card:last-child {
    grid-column: auto;
  }

  .artist-card {
    min-height: 310px;
  }

  .film-frame {
    margin-right: calc(var(--gutter) * -0.3);
    margin-left: calc(var(--gutter) * -0.3);
  }

  .film-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .service-card {
    min-height: 440px;
  }

  .group-main {
    min-height: 0;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .gift-card,
  .loyalty-card {
    min-height: 420px;
    padding: 58px var(--gutter);
  }

  .owner-story figure,
  .map-card {
    min-height: 450px;
  }

  .visit-copy,
  .owner-copy {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .visit-copy dl {
    grid-template-columns: 1fr;
  }

  .map-pin {
    left: 40%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    margin-right: calc(var(--gutter) * -0.25);
    margin-left: calc(var(--gutter) * -0.25);
    padding: 32px 19px;
  }

  .booking-form .button {
    width: 100%;
  }

  .disclosure {
    grid-template-columns: 1fr;
  }

  .disclosure-mark {
    width: 58px;
    height: 58px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    flex-direction: column;
    gap: 10px;
  }

  footer > small {
    grid-column: auto;
    line-height: 1.5;
  }

  .mobile-dock {
    position: fixed;
    z-index: 240;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--plum-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 -10px 30px rgba(34, 10, 30, 0.18);
  }

  .mobile-dock a,
  .mobile-dock button {
    min-height: 66px;
    padding: 7px 8px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    font-size: 11px;
  }

  .mobile-dock a {
    color: var(--plum-deep);
    background: var(--butter);
  }

  .mobile-dock span {
    font-size: 16px;
  }

  .global-status {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    max-width: none;
  }
}

@media (max-height: 620px) {
  .hero {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .hero h1 {
    font-size: clamp(48px, 9vw, 72px);
  }

  .next-card {
    align-self: center;
    padding: 26px;
  }

  .next-card > p {
    margin-top: 20px;
  }

  .next-card > strong {
    font-size: 48px;
  }

  .walkin-line {
    margin-top: 20px;
    padding: 12px 0;
  }

  .team-photo,
  .owner-story figure,
  .map-card {
    min-height: 420px;
  }

  .film-frame video {
    max-height: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-media img,
  .look-card:hover img {
    transform: none;
  }
}
