@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Nordique Pro';
  src: url('assets/Nordique-Pro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #43106e;
  --ink-deep: #2e084e;
  --lavender: #f0d9fa;
  --blush: #faeef5;
  --paper: #fffafd;
  --line: rgba(67, 16, 110, 0.16);
  --shadow: 0 18px 42px rgba(66, 21, 94, 0.18);
  --display: 'Nordique Pro', 'Montserrat', sans-serif;
  --body: 'Montserrat', sans-serif;
  /* Add your exported assets here. Paths are relative to this stylesheet. */
  --site-background: #fffaf0 url('Untitled-1Artboard-1.png') center top / cover fixed;
  --hero-image-left: none;
  --hero-image-right: none;
}

@keyframes fade-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes soft-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes soft-float-right {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

@keyframes ring-breathe {
  0%, 100% { opacity: .7; transform: translateY(14px) scale(1); }
  50% { opacity: 1; transform: translateY(14px) scale(1.025); }
}

@keyframes image-reveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes gallery-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes border-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes modal-rise {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.page-header,
.page-main,
.booking-main { animation: fade-rise .7s both; }

.hero-content { animation: fade-rise .8s .15s both; }
.hero-photo-left { animation: soft-float 5s ease-in-out infinite; }
.hero-photo-right { animation: soft-float-right 5.8s ease-in-out .3s infinite; }
.hero::before { animation: ring-breathe 6s ease-in-out infinite; }
.hero-lockup { animation: image-reveal 1s .2s both; }

.home-section .section-copy,
.home-section > .portrait-placeholder,
.home-section > .preview-grid,
.home-section > .process-list,
.home-section > .faq-list { animation: fade-rise .7s both; }
.home-section:nth-of-type(2) .section-copy { animation-delay: .08s; }
.home-section:nth-of-type(3) .section-copy { animation-delay: .14s; }
.home-section:nth-of-type(4) .section-copy { animation-delay: .2s; }
.home-section:nth-of-type(5) .section-copy { animation-delay: .26s; }
.offering-card { animation: fade-rise .7s both; }
.offering-card:nth-child(2) { animation-delay: .08s; }
.offering-card:nth-child(3) { animation-delay: .16s; }
.offering-card:nth-child(4) { animation-delay: .24s; }
.process-list article:nth-child(2) { animation-delay: .08s; }
.process-list article:nth-child(3) { animation-delay: .16s; }
.process-list article:nth-child(4) { animation-delay: .24s; }

.preview-tile,
.gallery-item { transition: transform .35s ease, box-shadow .35s ease; }
.preview-tile:hover,
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(66, 21, 94, 0.2); }
.preview-tile img,
.gallery-item img { transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .35s ease; }
.preview-tile:hover img,
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.04); }
.gallery-item { animation: gallery-reveal .7s both; animation-delay: var(--reveal-delay, 0s); }
.gallery-item.gallery-reveal-target { opacity: 0; transform: translateY(24px); animation: none; }
.gallery-item.gallery-reveal-target.is-visible { animation: gallery-reveal .7s var(--reveal-delay, 0s) both; }
.gallery-item:nth-child(2n) { --reveal-delay: .08s; }
.gallery-item:nth-child(3n) { --reveal-delay: .16s; }
.gallery-item:nth-child(4n) { --reveal-delay: .24s; }

button,
a,
summary,
.offering-card,
.info-card,
.booking-works figure { -webkit-tap-highlight-color: transparent; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.site-nav a,
.text-link,
.card-action,
.back-link { position: relative; }
.site-nav a::after,
.text-link::after,
.card-action::after,
.back-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current='page']::after,
.text-link:hover::after,
.card-action:hover::after,
.back-link:hover::after { transform: scaleX(1); transform-origin: left; }

.cta,
.light-cta { position: relative; overflow: hidden; transition: transform .3s cubic-bezier(.2, .8, .2, 1), background .3s ease, box-shadow .3s ease; }
.cta::after,
.light-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.3) 50%, transparent 75%);
  background-size: 220% 100%;
  transform: translateX(-100%);
  transition: transform .65s ease;
}
.cta:hover,
.light-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(46, 8, 78, .18); }
.cta:hover::after,
.light-cta:hover::after { transform: translateX(100%); }
.cta:active,
.light-cta:active { transform: translateY(-1px) scale(.98); }

.offering-card,
.info-card { position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .35s ease, box-shadow .35s ease; }
.offering-card::before,
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ink), #d99eaa, var(--ink));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.offering-card:hover,
.info-card:hover { transform: translateY(-7px); box-shadow: 0 18px 36px rgba(66, 21, 94, .12); }
.offering-card:hover::before,
.info-card:hover::before { transform: scaleX(1); animation: border-shimmer 1.5s linear infinite; }

.booking-works figure { transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease; }
.booking-works figure:hover { z-index: 1; transform: translateY(-10px) rotate(0deg) scale(1.03); box-shadow: 0 24px 44px rgba(66, 21, 94, .22); }
.booking-works img { transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.booking-works figure:hover img { transform: scale(1.07); }

summary { transition: color .25s ease, padding-left .25s ease; }
summary:hover { color: var(--ink-deep); padding-left: 5px; }
details p { animation: fade-rise .35s both; }
.booking-modal.open .booking-panel { animation: modal-rise .45s cubic-bezier(.2, .8, .2, 1) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.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; }

.site-shell { min-height: 100vh; overflow-x: hidden; background: var(--site-background); }
.container { width: min(1120px, calc(100% - 96px)); margin: 0 auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 58px 0 24px;
  position: relative;
  z-index: 2;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 26px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  letter-spacing: -0.05em;
  font-size: 13px;
  white-space: nowrap;
}

.site-header > .brand {
  margin-right: auto;
}

.back-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-radius: 0;
  font: 600 13px var(--body);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-left: 0;
  margin-right: auto;
}

.back-link:hover {
  opacity: 0.72;
  transform: translateX(-2px);
}

.back-link::before {
  content: '←';
  margin-right: 6px;
}

.site-logo { width: clamp(118px, 14vw, 142px); height: auto; }
.brand-logo { width: 82px; height: auto; }
.brand-mark { width: 24px; height: 18px; border: 2px solid var(--ink); border-right-color: transparent; border-radius: 100% 0 0 100%; transform: rotate(12deg); position: relative; }
.brand-mark::after { content: ''; position: absolute; width: 15px; height: 8px; border-top: 2px solid var(--ink); border-radius: 50%; left: 4px; top: 3px; }
.brand:not(:has(.site-logo)) .brand-mark { width: 0; height: 0; border: 0; margin: 0; background: none; }
.brand:not(:has(.site-logo)) .brand-mark::after { content: none; }
.brand:not(:has(.site-logo)) > span:last-child { display: block; width: 118px; height: 30px; font-size: 0; background: url('Layer 2.png') center / contain no-repeat; }
.site-nav { display: flex; flex-wrap: nowrap; gap: 18px; font-size: 10px; font-weight: 500; white-space: nowrap; }
.site-nav a { transition: opacity .2s ease; }
.site-nav a:hover, .site-nav a[aria-current='page'] { opacity: .58; }
.mobile-menu-toggle { display: none; }
.nav-menu { position: relative; }
.nav-menu summary { cursor: pointer; list-style: none; font-weight: 500; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary::after { content: '+'; display: inline-block; margin-left: 5px; font-size: 12px; }
.nav-menu[open] summary::after { content: '-'; }
.nav-dropdown { position: absolute; top: calc(100% + 12px); right: 0; z-index: 5; display: grid; min-width: 116px; padding: 8px; gap: 3px; border: 1px solid var(--line); background: rgba(255,250,253,.96); box-shadow: var(--shadow); }
.nav-dropdown a { padding: 8px 9px; font-size: 10px; }
.nav-dropdown a:hover { background: var(--blush); opacity: 1; }

.hero { min-height: 560px; display: grid; place-items: center; text-align: center; position: relative; padding: 20px 0 75px; transform: translateY(-55px); isolation: isolate; }
.hero-portraits { position: absolute; z-index: 1; inset: 4% 0 0; pointer-events: none; }
.hero-photo { position: absolute; width: clamp(145px, 19vw, 220px); height: auto; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(46,8,78,.18)); }
.hero-photo-left { left: 2%; top: 13%; transform: rotate(-4deg); }
.hero-photo-right { right: 2%; top: 8%; transform: rotate(4deg); }
.hero::before { content: ''; position: absolute; z-index: 0; width: min(58vw, 620px); aspect-ratio: 1; border: 1px solid rgba(67,16,110,.18); border-radius: 50%; transform: translateY(14px); }
.hero-content { position: relative; z-index: 2; display: grid; justify-items: center; }
.hero-lockup-frame { width: min(45vw, 370px); height: auto; margin: 0 auto 0; }
.hero-lockup { width: 100%; height: auto; }
.hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(68px, 8vw, 84px); line-height: .72; letter-spacing: -0.08em; margin: 30px 0 48px; max-width: 560px; }
.hero h1 span { display: block; font-size: .73em; margin-top: 34px; }
.cta { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.cta:hover { transform: translateY(-3px); background: var(--ink-deep); }
.hero-placeholder { position: absolute; width: 78px; aspect-ratio: .78; background: linear-gradient(145deg, #30202b, #bb887a 44%, #452052); box-shadow: var(--shadow); }
.hero-placeholder::after { content: ''; position: absolute; bottom: -1px; right: -1px; border-style: solid; border-width: 0 0 67px 65px; border-color: transparent transparent var(--blush) transparent; filter: drop-shadow(-3px -4px 4px rgba(0,0,0,.16)); }
.hero-placeholder.left { left: 8%; top: 40%; transform: rotate(-2deg); border-radius: 0 0 12px 0; background-image: var(--hero-image-left), linear-gradient(145deg, #30202b, #bb887a 44%, #452052); background-size: cover; background-position: center; }
.hero-placeholder.right { right: 8%; top: 33%; transform: rotate(3deg); border-radius: 0 0 0 12px; background-image: var(--hero-image-right), linear-gradient(145deg, #30202b, #bb887a 44%, #452052); background-size: cover; background-position: center; }

.home-section { display: grid; grid-template-columns: 70px minmax(0, 1fr) minmax(260px, .8fr); gap: 38px; align-items: start; padding-top: 120px; padding-bottom: 140px; }
.home-section { grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr); }
.home-section .section-number { display: none; }
.section-number { font-size: 11px; font-weight: 700; letter-spacing: .16em; padding-top: 7px; }
.section-copy h2 { margin-bottom: 30px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 24px; border-bottom: 1px solid var(--ink); padding-bottom: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.text-link span { font-size: 18px; font-weight: 400; }
.portrait-placeholder { min-height: 390px; display: grid; place-items: end start; padding: 22px; color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; background: linear-gradient(150deg, #4e315f, #d7a8a7 55%, #f4d4c5); box-shadow: var(--shadow); }
.portrait-placeholder.large { margin-top: 12px; }
.graduation-art { overflow: hidden; padding: 0; align-items: end; justify-items: center; }
.graduation-art img { width: 88%; height: 88%; object-fit: contain; object-position: center bottom; }
.home-band { background: rgba(255,255,255,.28); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offerings-section { padding-top: 110px; padding-bottom: 110px; }
.offering-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.offering-card { min-height: 220px; padding: 22px; color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.34); transition: transform .2s ease, background .2s ease; }
.offering-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.62); }
.card-price { display: inline-block; padding: 4px 12px; border-radius: 6px; color: #fff; background: linear-gradient(90deg, #75308c, #c26bdf); font-size: 11px; font-weight: 700; }
.offering-card h3 { margin: 27px 0 15px; font-family: var(--body); font-size: 20px; letter-spacing: -.06em; }
.offering-card p { margin: 0; font-family: var(--display); font-size: 19px; line-height: 1.18; letter-spacing: -.06em; }
.offering-card p strong { font-style: italic; }
.card-action { display: block; margin-top: 20px; font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.process-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-list article { padding: 22px 0; border-top: 1px solid var(--ink); }
.process-list span { font-size: 11px; font-weight: 700; }
.process-list h3 { margin: 35px 0 12px; font-size: 15px; }
.process-list p { margin: 0; font-size: 13px; line-height: 1.6; }
.faq-section { grid-template-columns: .8fr 1.2fr; }
.faq-section .faq-list { grid-column: 2; }
.gallery-section { grid-template-columns: .8fr 1.2fr; }
.preview-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.preview-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(67, 16, 110, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(66, 21, 94, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(160deg, rgba(67, 16, 110, 0.9), rgba(214, 159, 196, 0.72) 55%, rgba(255, 231, 226, 0.92));
}

.preview-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(66, 21, 94, 0.18);
}

.preview-tile.tall {
  grid-row: span 2;
  min-height: 500px;
  min-width: 0;
}

.preview-tile:not(.tall) {
  min-height: 210px;
}

.preview-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  background: #f7f1fa;
}

.preview-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 8, 40, 0.76) 0%, rgba(120, 73, 146, 0.44) 28%, rgba(202, 151, 188, 0.2) 50%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.preview-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 14, 47, 0.04), rgba(29, 14, 47, 0.46));
  pointer-events: none;
}
.booking-banner { background: var(--ink); color: #fff; }
.banner-inner { min-height: 390px; display: flex; justify-content: space-between; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.banner-inner h2 { margin-bottom: 0; }
.light-cta { background: #fff; color: var(--ink); }
.light-cta:hover { background: var(--blush); }

.page-main { padding: 80px 0 120px; }
.booking-main { padding: 60px 0 110px; }
.booking-intro { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.booking-intro h1 { margin: 0; font-family: var(--display); font-size: clamp(64px, 9vw, 118px); font-weight: 400; letter-spacing: -.08em; line-height: .76; }
.booking-intro .lede { max-width: 310px; margin: 0 0 5px; }
.booking-works { display: flex; align-items: end; gap: clamp(10px, 2vw, 24px); width: 100vw; min-width: 0; margin: 0 0 76px calc((100% - 100vw) / 2); padding: 0 max(48px, calc((100vw - 1120px) / 2)); overflow: hidden; }
.booking-works figure { flex: 1 1 0; min-width: 120px; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: var(--lavender); box-shadow: var(--shadow); transform: rotate(-2deg); }
.booking-works figure:nth-child(2) { aspect-ratio: 3 / 4; transform: rotate(2deg); }
.booking-works figure:nth-child(3) { aspect-ratio: 1 / 1; transform: rotate(-1deg); }
.booking-works figure:nth-child(4) { aspect-ratio: 4 / 5; transform: rotate(3deg); }
.booking-works figure:nth-child(5) { aspect-ratio: 3 / 4; transform: rotate(-3deg); }
.booking-works img { width: 100%; height: 100%; object-fit: cover; }
.booking-works figure:nth-child(4) img, .booking-works figure:nth-child(5) img { object-fit: contain; padding: 20px; }
.booking-content { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; max-width: 920px; }
.booking-note { padding-top: 8px; border-top: 1px solid var(--ink); }
.booking-note p { max-width: 250px; margin: 18px 0 0; font-family: var(--display); font-size: 24px; line-height: 1.12; letter-spacing: -.05em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(67, 16, 110, .14);
  border-top: 4px solid var(--ink);
  background: rgba(255, 255, 255, .38);
  box-shadow: 0 20px 50px rgba(66, 21, 94, .1);
}
.booking-form::before {
  content: 'YOUR SESSION DETAILS';
  display: block;
  margin-bottom: 2px;
  color: rgba(67, 16, 110, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.booking-form label { color: rgba(67, 16, 110, .82); }
.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 48px;
  border-radius: 10px;
  border-color: rgba(67, 16, 110, .18);
  background: rgba(255, 255, 255, .7);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .25s ease;
}
.booking-form textarea { min-height: 112px; }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(67, 16, 110, .42); }
.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover { background: rgba(255, 255, 255, .9); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(67, 16, 110, .08), 0 8px 18px rgba(66, 21, 94, .08);
  transform: translateY(-1px);
}
.booking-form .form-row:last-of-type,
.booking-form > label:has(select) {
  padding-top: 18px;
  border-top: 1px solid rgba(67, 16, 110, .12);
}
.booking-form .cta,
.booking-form button[type='submit'] {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  font-size: 11px;
  letter-spacing: .1em;
}
.page-intro { max-width: 680px; margin-bottom: 70px; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
h2 { font-family: var(--display); font-size: clamp(55px, 8vw, 100px); font-weight: 400; letter-spacing: -.07em; line-height: .82; margin: 0 0 24px; }
.lede { font-size: 17px; line-height: 1.7; max-width: 580px; }
.grid { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.two { grid-template-columns: repeat(2, 1fr); }
.info-card { padding: 30px; border-top: 1px solid var(--ink); background: rgba(255,255,255,.25); }
.info-card h3 { margin: 0 0 14px; font-size: 18px; }
.info-card p, .info-card li { font-size: 14px; line-height: 1.7; }
.info-card ul { padding-left: 17px; margin-bottom: 0; }
.price { font-size: 38px; margin: 28px 0 20px; font-weight: 600; letter-spacing: -.06em; }
.packages-page { min-height: 100vh; margin: 0; color: #3b006d; background: #fffaf0 url('Untitled-1Artboard-1.png') center / cover fixed; font-family: var(--display); }
.packages-sheet { width: min(100% - 48px, 680px); min-height: 100vh; margin: 0 auto; padding: 76px 0 58px; }
.packages-brand { display: flex; justify-content: center; margin-bottom: 45px; }
.packages-brand .brand { font-family: var(--body); font-size: 0; line-height: .75; gap: 0; color: #4c0b80; }
.packages-brand .brand-mark { width: 53px; height: 38px; border-width: 4px; }
.packages-brand .brand-mark::after { width: 32px; height: 15px; border-width: 3px; left: 7px; top: 7px; }
.packages-brand .brand > span:last-child { font-size: 27px; font-weight: 500; letter-spacing: -.08em; }
.packages-page h1 { margin: 0 0 32px; text-align: center; font-family: var(--body); font-size: clamp(42px, 7vw, 64px); letter-spacing: -.07em; line-height: 1; }
.package-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 76px; row-gap: 38px; }
.package-option { color: inherit; display: block; }
.package-price { display: inline-block; min-width: 64px; padding: 3px 13px 4px; border-radius: 6px; color: #fff; background: linear-gradient(90deg, #75308c, #c26bdf); font-family: var(--body); font-size: 12px; font-weight: 700; text-align: center; }
.package-option h2 { display: flex; align-items: center; gap: 9px; margin: 7px 0 10px; font-family: var(--body); font-size: 25px; font-weight: 700; letter-spacing: -.08em; line-height: 1; white-space: nowrap; }
.package-radio { width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid #a66bc5; border-radius: 50%; }
.package-option p { margin: 0 0 0 43px; font-size: 23px; line-height: 1.12; letter-spacing: -.08em; }
.package-option p strong { font-style: italic; font-weight: 700; }
.packages-footer { display: flex; justify-content: center; align-items: center; gap: 76px; margin-top: 72px; }
.signout-lockup { font-size: 54px; line-height: .72; letter-spacing: -.11em; }
.signout-lockup small { display: block; margin: 15px 0 0 42px; font-size: 32px; font-weight: 400; letter-spacing: -.1em; }
.qr-placeholder { width: 94px; height: 94px; display: grid; place-items: center; border: 5px solid #4b0877; color: #4b0877; font-family: var(--body); font-size: 11px; font-weight: 700; background: repeating-linear-gradient(45deg, transparent 0 5px, rgba(75,8,119,.18) 5px 8px); }
.booking-modal { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 18px; opacity: 0; pointer-events: none; background: rgba(46,8,78,.35); transition: opacity .2s ease; }
.booking-modal.open { opacity: 1; pointer-events: auto; }
.booking-panel { position: relative; width: min(100%, 560px); max-height: min(760px, 94vh); overflow-y: auto; scrollbar-width: none; padding: 38px; background: var(--paper); color: var(--ink); box-shadow: 0 24px 70px rgba(46,8,78,.3); }
.booking-panel::-webkit-scrollbar { display: none; }
.modal-close { position: absolute; top: 16px; right: 18px; border: 0; color: var(--ink); background: transparent; font-size: 28px; cursor: pointer; }
.booking-panel h2 { margin-bottom: 28px; }
.booking-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  font-size: 10px;
  white-space: nowrap;
  scrollbar-width: none;
}

.booking-progress::-webkit-scrollbar { display: none; }

.booking-progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  color: rgba(67, 16, 110, 0.6);
  font-weight: 600;
}

.booking-progress span.active {
  background: linear-gradient(135deg, rgba(67, 16, 110, 0.12), rgba(214, 159, 196, 0.22));
  border-color: rgba(67, 16, 110, 0.2);
  color: var(--ink);
  font-weight: 700;
}

.booking-step { display: none; gap: 18px; }
.booking-step.active { display: grid; }
.booking-step .cta { justify-self: start; margin-top: 8px; }
.booking-actions { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.booking-actions .cta { margin-top: 0; }
.back-step { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; font: 700 10px var(--body); letter-spacing: .12em; cursor: pointer; }
.booking-summary { display: grid; gap: 11px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; font-size: 14px; background: rgba(255,255,255,.26); }
.booking-summary b { margin-top: 8px; font-size: 18px; }
.booking-helper { margin: -6px 0 0; font-size: 11px; line-height: 1.6; color: rgba(67,16,110,.72); }
.booking-error { margin: 0; padding: 12px; border-left: 3px solid #a12855; color: #8a1d47; background: #fff0f5; font-size: 12px; line-height: 1.5; }
.success-mark { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 25px; }
body.modal-open { overflow: hidden; }
.ambassador-main { padding: 80px 0 110px; }
.ambassador-main:not(.authenticated) > :not(.ambassador-auth) { display: none; }
.ambassador-main.authenticated .ambassador-auth { display: none; }
.ambassador-auth { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; min-height: 560px; }
.auth-copy h1 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(70px, 10vw, 125px); font-weight: 400; letter-spacing: -.08em; line-height: .76; }
.auth-copy p { max-width: 430px; font-size: 16px; line-height: 1.7; }
.portal-note { margin: -8px 0 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(67, 16, 110, 0.7); }
.auth-card { padding: 34px; border-top: 1px solid var(--ink); background: rgba(255,255,255,.38); }
.auth-card > p:last-child { margin-bottom: 0; }
.auth-tabs { display: flex; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.auth-tab { padding: 0 0 12px; border: 0; color: var(--ink); background: transparent; font: 700 10px var(--body); letter-spacing: .1em; cursor: pointer; opacity: .45; }
.auth-tab.active { border-bottom: 2px solid var(--ink); opacity: 1; }
.auth-form { display: grid; gap: 20px; }
.auth-form .cta { justify-self: start; margin-top: 7px; }
.auth-message { margin: 0; color: #8a1d47; font-size: 12px; line-height: 1.5; }
.admin-main > .admin-card:not(.admin-auth-card) { position: relative; padding: 38px; border: 1px solid rgba(67,16,110,.16); border-top: 5px solid var(--ink); background: rgba(255,255,255,.56); box-shadow: 0 18px 45px rgba(67,16,110,.08); }
.admin-main > .admin-card:not(.admin-auth-card)::after { content: 'SET THE TERMS'; position: absolute; top: 24px; right: 38px; color: rgba(67,16,110,.5); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.admin-main > .admin-card:not(.admin-auth-card) .auth-form { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-main > .admin-card:not(.admin-auth-card) .auth-form label:nth-child(-n+2),
.admin-main > .admin-card:not(.admin-auth-card) .auth-form .auth-message,
#referral-amount-field { grid-column: 1 / -1; }
#referral-amount-field { padding: 16px; border: 1px solid rgba(67,16,110,.22); background: linear-gradient(135deg, rgba(214,159,196,.18), rgba(255,255,255,.55)); }
#referral-amount-field input { border-color: rgba(67,16,110,.3); background: rgba(255,255,255,.82); font-size: 18px; font-weight: 700; }
.admin-main > .admin-card:not(.admin-auth-card) .auth-form .cta { grid-column: 1 / -1; }
.admin-access { margin-top: 4px; color: var(--ink); font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }
.admin-main { display: grid; place-items: center; min-height: 650px; }
.admin-main:not(.authenticated) .admin-protected { display: none !important; }
.admin-main:not(.authenticated) { grid-template-columns: minmax(0, 560px); align-content: center; }
.admin-main.authenticated { display: block; }
.admin-main.authenticated .admin-auth-card { display: none; }
.admin-auth-card { width: min(100%, 560px); }
.admin-header, .admin-bookings { width: 100%; }
.admin-header { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 45px; }
.admin-header h1 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(65px, 9vw, 110px); font-weight: 400; letter-spacing: -.08em; line-height: .76; }
.admin-header p { max-width: 470px; margin: 0; font-size: 15px; line-height: 1.6; }
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: 100%; margin-bottom: 80px; }
.admin-metrics article { display: grid; gap: 11px; min-height: 135px; padding: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.admin-metrics .metric-primary, .metric-grid .metric-primary { color: #fff; border-color: var(--ink); background: var(--ink); box-shadow: 0 16px 30px rgba(67,16,110,.16); }
.admin-metrics .metric-primary span, .admin-metrics .metric-primary small, .metric-grid .metric-primary span, .metric-grid .metric-primary small { opacity: .78; }
.admin-metrics span, .admin-metrics small { font-size: 11px; opacity: .72; }
.admin-metrics strong { font-size: 34px; letter-spacing: -.07em; }
.dashboard-donut-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; margin: -46px 0 80px; padding: 24px 28px; border: 1px solid var(--line); background: rgba(255,255,255,.3); }
.dashboard-donut-panel h3 { margin: 6px 0 5px; font-family: var(--display); font-size: 34px; font-weight: 400; letter-spacing: -.04em; }
.dashboard-donut-panel p { margin: 0; font-size: 12px; opacity: .7; }
.donut-chart { --donut-value: 0%; position: relative; display: grid; flex: 0 0 116px; place-items: center; width: 116px; height: 116px; border-radius: 50%; background: conic-gradient(var(--ink) var(--donut-value), rgba(67,16,110,.12) 0); }
.donut-chart::after { content: ''; position: absolute; inset: 12px; border-radius: 50%; background: var(--paper); }
.donut-chart strong, .donut-chart span { position: relative; z-index: 1; grid-column: 1; grid-row: 1; }
.donut-chart strong { margin-top: -7px; font-size: 25px; letter-spacing: -.05em; }
.donut-chart span { margin-top: 37px; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .62; }
.ambassador-donut { margin: 0 0 28px; }
.admin-bookings { margin-bottom: 80px; }
.admin-bookings h2 { margin-bottom: 0; }
.admin-card { width: min(100%, 560px); }
.admin-card h1 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(55px, 8vw, 90px); font-weight: 400; letter-spacing: -.08em; line-height: .8; }
.admin-card > p { margin-bottom: 30px; font-size: 14px; line-height: 1.6; }
.section-heading > div:last-child { display: flex; align-items: center; gap: 14px; }
.logout-button { margin: 0; }
.ambassador-intro { max-width: 720px; margin-bottom: 65px; }
.ambassador-intro h1 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(70px, 10vw, 125px); font-weight: 400; letter-spacing: -.08em; line-height: .76; }
.ambassador-intro p { max-width: 500px; font-size: 16px; line-height: 1.7; }
.ambassador-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; margin-bottom: 110px; }
.ambassador-card { padding: 34px; border-top: 1px solid var(--ink); background: rgba(255,255,255,.34); }
.ambassador-card h2, .dashboard-section h2 { margin-bottom: 30px; font-size: clamp(46px, 6vw, 75px); }
.ambassador-card form, .referral-result { display: grid; gap: 20px; }
.referral-result { margin-top: 28px; }
.referral-actions { display: flex; gap: 18px; }
.text-button { display: inline-block; padding: 0 0 8px; border: 0; border-bottom: 1px solid var(--ink); color: var(--ink); background: transparent; font: 700 10px var(--body); letter-spacing: .1em; cursor: pointer; }
.qr-card { display: flex; flex-direction: column; }
.qr-stage { position: relative; min-height: 245px; display: grid; place-items: center; align-content: center; gap: 16px; border: 1px dashed var(--line); border-radius: 32px; background: rgba(255,255,255,.3); text-align: center; overflow: hidden; }
.qr-stage #qr-code { width: min(70%, 210px); height: auto; padding: 12px; border: 1px solid rgba(67,16,110,.12); border-radius: 32px; background: #fffafd; }
.qr-stage .qr-brand { position: absolute; width: 48px; height: 48px; padding: 8px; border: 4px solid var(--paper); border-radius: 50%; background: #fff; object-fit: contain; box-shadow: 0 4px 12px rgba(46,8,78,.18); }
.qr-stage span { max-width: 180px; font-size: 12px; line-height: 1.5; }
.qr-download { align-self: flex-start; margin-top: 22px; }
.dashboard-section { border-top: 1px solid var(--line); padding-top: 28px; }
.dashboard-section::before { content: 'PERFORMANCE SNAPSHOT'; display: block; margin-bottom: 16px; color: rgba(67,16,110,.55); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 0; }
.demo-label { padding: 7px 10px; color: var(--ink); border: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 38px; }
.metric-grid article { display: grid; gap: 12px; min-height: 140px; padding: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.metric-grid span, .metric-grid small { font-size: 11px; opacity: .72; }
.metric-grid strong { font-size: 35px; letter-spacing: -.07em; }
.dashboard-table { border-top: 1px solid var(--ink); }
.dashboard-table > div { display: grid; grid-template-columns: 1.5fr .7fr .4fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.dashboard-table b { color: #477b53; }
.gallery-tile { min-height: 340px; display: flex; align-items: end; padding: 24px; color: #fff; background: linear-gradient(145deg, #442958, #d99eaa 53%, #f3d8cc); box-shadow: var(--shadow); }
.gallery-tile:nth-child(2) { background: linear-gradient(145deg, #d9a8c3, #71439a 58%, #31144f); }
.gallery-tile:nth-child(3) { background: linear-gradient(145deg, #f0c7b6, #8a4f70 55%, #3b235c); }
.gallery-tile:nth-child(4) { background: linear-gradient(145deg, #6e3a68, #d5afb5 55%, #f4d8c7); }
.gallery-tile span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.editorial-gallery {
  column-count: 3;
  column-gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(67, 16, 110, 0.12);
  background: linear-gradient(160deg, rgba(240, 217, 250, 0.8), rgba(255, 255, 255, 0.9));
  box-shadow: 0 18px 42px rgba(66, 21, 94, 0.12);
  break-inside: avoid;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.gallery-item.tall img { aspect-ratio: 3 / 4; }
.gallery-item.medium img { aspect-ratio: 4 / 5; }
.gallery-item.short img { aspect-ratio: 1 / 1; }

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 14, 47, 0.08), rgba(29, 14, 47, 0.5));
  pointer-events: none;
}

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.gallery-photo { position: relative; min-height: 330px; margin: 0; overflow: hidden; background: var(--ink); box-shadow: var(--shadow); }
.gallery-photo-wide { grid-row: span 2; min-height: 680px; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.gallery-photo figcaption { position: absolute; right: 18px; bottom: 16px; left: 18px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.preview-tile {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(240, 217, 250, 0.85), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(67, 16, 110, 0.12);
  box-shadow: 0 18px 42px rgba(66, 21, 94, 0.12);
}

.preview-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #f7f1fa;
}

.preview-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 14, 47, 0.04), rgba(29, 14, 47, 0.48));
  pointer-events: none;
}

.preview-tile span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
}

@media (max-width: 900px) {
  .editorial-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .editorial-gallery {
    column-count: 1;
  }

  .gallery-item img,
  .gallery-item.tall img,
  .gallery-item.medium img,
  .gallery-item.short img {
    aspect-ratio: 4 / 5;
    height: auto;
  }
}
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 25px 0; }
summary { cursor: pointer; list-style: none; font-weight: 600; display: flex; justify-content: space-between; gap: 20px; }
summary::after { content: '+'; font-size: 20px; font-weight: 400; }
details[open] summary::after { content: '-'; }
details p { max-width: 670px; line-height: 1.7; font-size: 14px; padding-top: 12px; }
.booking-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.booking-form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(67, 16, 110, 0.18);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.password-control { position: relative; display: block; }
.password-control input { padding-right: 72px; }
.password-toggle { position: absolute; top: 50%; right: 12px; transform: translateY(-50%); padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; font: 700 9px var(--body); letter-spacing: .1em; cursor: pointer; }
.password-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
select {
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
input[type="date"] {
  appearance: none;
  position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.8;
  cursor: pointer;
  margin-left: 0;
  filter: invert(18%) sepia(73%) saturate(1593%) hue-rotate(262deg) brightness(55%) contrast(96%);
}
select:focus, input:focus, textarea:focus {
  border-color: rgba(67, 16, 110, 0.44);
  box-shadow: 0 0 0 3px rgba(67, 16, 110, 0.08);
}
option { color: var(--ink); background: var(--paper); }
textarea { min-height: 90px; resize: vertical; }
footer {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 42px 0 36px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
footer::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 calc((100vw - 100%) / -2);
  border-top: 1px solid rgba(67, 16, 110, .12);
  background: rgba(255, 255, 255, .3);
}
footer > span:first-child {
  font-weight: 700;
  letter-spacing: .04em;
}
footer > span:nth-child(2) {
  color: rgba(67, 16, 110, .66);
  font-size: 10px;
  letter-spacing: .04em;
}
footer > a {
  position: relative;
  padding-bottom: 6px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
footer > a::after,
.social-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
footer > a:hover::after,
.social-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.social-links { display: flex; gap: 18px; flex-wrap: wrap; }
.social-links a { position: relative; padding-bottom: 5px; color: rgba(67, 16, 110, .72); font-size: 10px; font-weight: 600; }

@media (max-width: 700px) {
  .container { width: min(100% - 40px, 720px); }
  .page-main,
  .booking-main,
  .home-section,
  .offerings-section,
  .faq-section,
  .gallery-section { text-align: center; }
  .page-intro,
  .page-intro .lede,
  .booking-intro .lede { margin-right: auto; margin-left: auto; }
  .booking-content,
  .faq-list { text-align: left; }
  .booking-form,
  .booking-note { text-align: center; }
  .booking-form label { text-align: center; }
  .booking-form input,
  .booking-form select,
  .booking-form textarea { text-align: center; }
  .booking-note { border-top-color: rgba(67, 16, 110, .35); }
  .section-copy .text-link { justify-content: center; }
  .process-list article { text-align: center; }
  .site-header { display: grid; grid-template-columns: 1fr auto; padding-top: 27px; align-items: center; gap: 0; }
  .site-header > .brand { margin-right: 0; }
  .mobile-menu-toggle { display: grid; gap: 4px; width: 38px; height: 38px; place-content: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.36); cursor: pointer; }
  .mobile-menu-toggle span { display: block; width: 14px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .mobile-menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(5px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .site-nav { grid-column: 1 / -1; display: none; gap: 0; width: 100%; margin-top: 18px; padding: 8px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 11px 0; font-size: 11px; }
  .hero { min-height: 555px; margin-top: 8px; padding: 35px 0 60px; transform: none; }
  .hero-lockup-frame { width: min(52vw, 220px); margin-bottom: 0; }
  .hero h1 span { margin-top: 23px; }
  .hero-portraits { inset: 14% 0 4%; }
  .hero::before { width: 76vw; transform: translateY(25px); }
  .hero-content { transform: translateY(58px); }
  .hero-photo-left { left: 4%; top: -5%; width: 22vw; max-width: 96px; transform: rotate(-5deg); }
  .hero-photo-right { right: 2%; top: 61%; width: 20vw; max-width: 88px; transform: rotate(5deg); }
  .three, .two, .booking-layout { grid-template-columns: 1fr; gap: 30px; }
  .home-section, .gallery-section { grid-template-columns: 1fr; gap: 24px; padding-top: 80px; padding-bottom: 85px; }
  .section-number { padding-top: 0; }
  .portrait-placeholder.large { min-height: 300px; margin-top: 15px; }
  .offerings-section { padding-top: 75px; padding-bottom: 80px; }
  .offering-list { grid-column: auto; grid-template-columns: 1fr; gap: 12px; }
  .offering-card { min-height: 0; padding: 22px; }
  .offering-card h3 { margin-top: 20px; font-size: 17px; }
  .offering-card p { font-size: 16px; }
  .process-list { grid-column: auto; grid-template-columns: 1fr; gap: 0; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-section .faq-list { grid-column: auto; }
  .booking-panel { padding: 30px 22px; }
  .booking-main { padding: 42px 0 75px; }
  .booking-intro { display: block; margin-bottom: 38px; }
  .booking-intro h1 { font-size: clamp(58px, 18vw, 90px); }
  .booking-intro .lede { margin-top: 28px; }
  .booking-works { gap: 12px; margin: 0 -20px 54px; padding: 0 20px 10px; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
  .booking-works::-webkit-scrollbar { display: none; }
  .booking-works figure, .booking-works figure:nth-child(n) { flex: 0 0 31vw; min-width: 112px; height: 170px; }
  .booking-works figure:nth-child(2) { height: 215px; }
  .booking-works figure:nth-child(3) { height: 150px; }
  .booking-works figure:nth-child(4) { height: 195px; }
  .booking-content { grid-template-columns: 1fr; gap: 42px; }
  .booking-note p { max-width: 330px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .ambassador-main { padding-top: 55px; }
  .ambassador-auth { grid-template-columns: 1fr; gap: 35px; min-height: auto; }
  .auth-card { padding: 24px; }
  .ambassador-grid { grid-template-columns: 1fr; margin-bottom: 75px; }
  .ambassador-card { padding: 24px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-table > div { grid-template-columns: 1fr .6fr .5fr; font-size: 10px; }
  .admin-main { display: block; min-height: auto; padding: 55px 0 80px; }
  .admin-header { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .admin-metrics { grid-template-columns: 1fr 1fr; margin-bottom: 60px; }
  .admin-bookings { margin-bottom: 60px; }
  .dashboard-donut-panel { align-items: flex-start; margin: -28px 0 60px; padding: 20px; }
  .dashboard-donut-panel h3 { font-size: 28px; }
  .donut-chart { flex-basis: 92px; width: 92px; height: 92px; }
  .donut-chart::after { inset: 10px; }
  .donut-chart strong { font-size: 21px; }
  .donut-chart span { margin-top: 31px; }
  .admin-main > .admin-card:not(.admin-auth-card) { padding: 28px 22px; }
  .admin-main > .admin-card:not(.admin-auth-card)::after { top: 19px; right: 22px; }
  .admin-main > .admin-card:not(.admin-auth-card) .auth-form { grid-template-columns: 1fr; }
  .admin-main > .admin-card:not(.admin-auth-card) .auth-form label:nth-child(-n+2),
  .admin-main > .admin-card:not(.admin-auth-card) .auth-form .auth-message,
  .admin-main > .admin-card:not(.admin-auth-card) .auth-form .cta,
  #referral-amount-field { grid-column: auto; }
  .preview-grid { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-photo, .gallery-photo-wide { min-height: 240px; }
  .gallery-photo-wide { grid-row: span 2; }
  .banner-inner { min-height: 420px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 40px; }
  .banner-inner > div { width: 100%; min-width: 0; }
  .banner-inner h2 { max-width: 100%; overflow-wrap: anywhere; }
  .page-main { padding: 60px 0 85px; }
  .page-intro { margin-bottom: 46px; }
  h2 { font-size: clamp(52px, 15.5vw, 78px); line-height: .88; }
  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 34px 0 30px;
    text-align: center;
  }
  footer > span:nth-child(2) { order: 3; }
  footer > a { order: 2; }
  .social-links { justify-content: center; order: 4; }
}
