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

html {
  scroll-behavior: smooth;
  scrollbar-color: #ff5ca0 rgba(245, 241, 230, 0.92);
  scrollbar-width: thin;
}

:root {
  --paper: #f5f1e6;
  --paper-strong: #efe4d9;
  --cream: #fbf7ef;
  --ink: #2c1b22;
  --soft-ink: #72525d;
  --line: rgba(169, 98, 128, 0.22);
  --rose: #f9a8bb;
  --rose-deep: #d97495;
  --berry: #b65b80;
  --berry-deep: #6c2f49;
  --clay: #efb4c6;
  --sand: #f7dde1;
  --panel: rgba(255, 250, 243, 0.74);
  --shadow: 0 30px 84px rgba(176, 103, 135, 0.22);
  --display: "Bodoni Moda", serif;
  --serif: "Cormorant Garamond", serif;
  --script: "Allura", cursive;
  --sans: "Manrope", sans-serif;
  --hero-wght: 600;
  --hero-opsz: 34;
}

body {
  position: relative;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(249, 168, 187, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(233, 150, 182, 0.2), transparent 24%),
    linear-gradient(180deg, #faf6ef 0%, #f7efe8 38%, #f2e3df 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -16%;
  pointer-events: none;
  opacity: 0.52;
  background:
    radial-gradient(48% 42% at 14% 16%, rgba(255, 199, 218, 0.42), transparent 72%),
    radial-gradient(42% 38% at 88% 22%, rgba(233, 185, 255, 0.28), transparent 74%),
    radial-gradient(36% 34% at 30% 84%, rgba(255, 225, 205, 0.28), transparent 72%),
    conic-gradient(from 210deg at 68% 58%, rgba(255, 193, 220, 0.36), rgba(255, 236, 210, 0.22), rgba(220, 195, 255, 0.3), rgba(255, 193, 220, 0.36));
  mix-blend-mode: soft-light;
  filter: blur(20px) saturate(1.02);
  transform: translate3d(0, 0, 0);
  animation: meshDrift 24s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%2369534c' stroke-opacity='0.18'%3E%3Cpath d='M0 70h140'/%3E%3Cpath d='M70 0v140'/%3E%3Ccircle cx='70' cy='70' r='34'/%3E%3C/g%3E%3C/svg%3E");
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 14px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(247, 231, 226, 0.96));
  border-left: 1px solid rgba(223, 109, 154, 0.22);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffc4d8 0%, #ff78ae 36%, #ff4f95 62%, #cf2d74 100%);
  border: 2px solid rgba(250, 247, 239, 0.94);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 8px 14px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(234, 80, 145, 0.32);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffd0e0 0%, #ff86b8 34%, #ff4a92 62%, #c9226a 100%);
}

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

.sample-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.84);
  background:
    linear-gradient(90deg, #7a204b 0%, #c83275 48%, #ff5ca0 100%);
  position: relative;
  z-index: 10;
  box-shadow:
    inset 0 -1px 0 rgba(255, 217, 229, 0.3),
    0 8px 18px rgba(200, 50, 117, 0.18);
}

.sample-bar a {
  color: #f8e6ea;
  border-bottom: 1px solid rgba(248, 230, 234, 0.46);
}

.sample-bar-brand {
  display: inline-flex;
  align-items: center;
  border-bottom: none !important;
}

.sample-bar-mark {
  display: block;
  width: 120px;
  height: auto;
}

.sample-bar .sep {
  opacity: 0.35;
}

.site-nav {
  width: 100%;
  margin: 0;
  padding: 14px max(24px, calc((100vw - 1240px) / 2 + 24px));
  border: none;
  border-bottom: 1px solid rgba(255, 219, 232, 0.3);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(130, 39, 78, 0.96) 0%, rgba(190, 79, 127, 0.94) 46%, rgba(242, 120, 170, 0.9) 100%);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: hidden;
  transition:
    padding 0.3s ease,
    top 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow:
    0 16px 34px rgba(133, 42, 82, 0.2),
    inset 0 1px 0 rgba(255, 225, 236, 0.3);
}

.site-nav.is-scrolled {
  top: 0;
  padding: 11px max(22px, calc((100vw - 1240px) / 2 + 22px));
  background:
    linear-gradient(90deg, rgba(122, 34, 73, 0.92) 0%, rgba(183, 71, 121, 0.9) 48%, rgba(235, 109, 160, 0.86) 100%);
  backdrop-filter: blur(22px);
  box-shadow:
    0 18px 40px rgba(132, 46, 84, 0.18),
    0 2px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 225, 236, 0.24);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 44%, rgba(255, 209, 223, 0.12)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.24), transparent 28%);
  opacity: 1;
}

.site-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 229, 237, 0.34), rgba(255, 229, 237, 0.12)) left 24px bottom 0 / calc(100% - 48px) 1px no-repeat;
  opacity: 0.88;
  animation: none;
}

.site-nav > * {
  position: relative;
  z-index: 1;
}

.nav-logo {
  font-family: var(--script);
  font-size: 2.18rem;
  letter-spacing: 0.015em;
  line-height: 0.9;
  color: rgba(255, 248, 243, 0.98);
  opacity: 0;
  transform: translateY(6px);
  animation: navLogoReveal 0.8s ease 0.08s forwards;
  transition: transform 0.3s ease;
  text-shadow:
    0 12px 28px rgba(103, 31, 63, 0.32),
    0 0 18px rgba(255, 246, 243, 0.18);
}

.site-nav.is-scrolled .nav-logo {
  transform: translateY(0) scale(0.96);
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 239, 0.82);
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-nav.is-scrolled .nav-links {
  transform: translateY(-1px);
  background: none;
  box-shadow: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  position: relative;
  padding: 0.8rem 1.28rem 0.72rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease, letter-spacing 0.2s ease, opacity 0.2s ease;
  isolation: isolate;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 240, 246, 0.28), rgba(255, 221, 232, 0.12)),
    rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 225, 236, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 20px rgba(118, 33, 68, 0.16);
  opacity: 0;
  transform: translateY(3px) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: -1;
}

.nav-links a:not(:hover):not(.active) {
  opacity: 0.84;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 240, 246, 0.84), rgba(255, 255, 255, 1));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.9;
  transition: transform 0.24s ease;
}

.nav-links a:hover {
  color: rgba(255, 250, 246, 1);
  transform: translateY(-2px);
  letter-spacing: 0.12em;
  text-shadow: 0 10px 20px rgba(99, 28, 59, 0.24);
}

.nav-links a.active {
  color: #7c2b51;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-shadow: none;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-links a.active::before {
  background:
    linear-gradient(180deg, rgba(255, 248, 250, 0.98), rgba(255, 222, 233, 0.9)),
    linear-gradient(135deg, rgba(255, 236, 243, 1), rgba(255, 194, 216, 0.92));
  border-color: rgba(255, 232, 240, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(118, 33, 68, 0.22);
}

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

.nav-chip,
.nav-toggle,
.mobile-nav a,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-chip {
  border: 1px solid rgba(255, 246, 249, 0.72);
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(255, 233, 240, 0.94));
  color: #b23869;
  border-radius: 999px;
  box-shadow:
    0 16px 30px rgba(106, 24, 57, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  position: relative;
  overflow: hidden;
  animation: navCtaPulse 4.8s ease-in-out infinite;
}

.nav-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 46%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 34%, transparent 52%);
  animation: navShimmer 4.5s ease-in-out infinite;
}

.site-nav.is-scrolled .nav-chip {
  transform: scale(0.97);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.nav-toggle {
  min-width: 136px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 233, 240, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(255, 248, 243, 0.96);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 28px rgba(109, 29, 62, 0.18);
}

.nav-toggle-text {
  display: inline-flex;
  align-items: center;
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-toggle-bars span {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav.menu-open .nav-toggle {
  background: linear-gradient(180deg, rgba(255, 248, 251, 0.96), rgba(255, 221, 232, 0.92));
  border-color: rgba(255, 235, 241, 0.72);
  color: #a63263;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.78rem;
  border: 1px solid rgba(255, 228, 237, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 247, 250, 0.92), rgba(255, 228, 237, 0.84)),
    rgba(255, 242, 246, 0.9);
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 42px rgba(109, 29, 62, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

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

.mobile-nav a {
  min-height: 52px;
  justify-content: space-between;
  padding: 0 1rem;
  color: #8d3b63;
  border-bottom: 1px solid rgba(217, 130, 165, 0.16);
  border-radius: 18px;
}

.mobile-nav a::after {
  content: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fdf8f1;
  background:
    linear-gradient(180deg, rgba(255, 205, 220, 0.98), rgba(255, 112, 165, 0.94) 44%, rgba(214, 70, 132, 0.96)),
    rgba(236, 209, 216, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 30px rgba(204, 100, 143, 0.24);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: 0.65rem;
  border: 1px solid rgba(255, 215, 228, 0.78);
  background: linear-gradient(135deg, #ffd2df 0%, #ff79ae 38%, #ff4f95 62%, #d92d7a 100%);
  color: #fffaf2;
  box-shadow:
    0 16px 32px rgba(214, 91, 143, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.mobile-nav-cta::after {
  content: none;
}

.btn:hover,
.nav-toggle:hover,
.nav-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(214, 91, 143, 0.3);
}

.hero,
.section,
.site-footer {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  padding: 24px 0 54px;
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 52px 4% 118px 12%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(145deg, rgba(249, 168, 187, 0.48), rgba(227, 199, 187, 0.38));
  border-radius: 58px;
  z-index: -1;
  animation: heroGlow 14s ease-in-out infinite alternate;
}

.hero-overlay-copy {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 1rem;
  max-width: min(470px, calc(100% - 68px));
}

.hero-aside {
  position: absolute;
  top: 34px;
  right: 34px;
  width: min(310px, calc(100% - 68px));
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(217, 120, 157, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 224, 231, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 34px rgba(199, 114, 149, 0.16);
  z-index: 2;
}

.hero-aside-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.hero-aside p {
  color: var(--soft-ink);
  line-height: 1.75;
  font-size: 0.98rem;
}

.overline,
.eyebrow,
.intro-kicker,
.look-index,
.menu-group-label,
.panel-title,
.form-intro {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.overline,
.eyebrow,
.intro-kicker,
.look-index,
.menu-group-label,
.panel-title {
  color: var(--rose-deep);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

@supports (font-variation-settings: normal) {
  .hero h1 {
    font-variation-settings: "wght" var(--hero-wght), "opsz" var(--hero-opsz);
    transition: font-variation-settings 0.45s ease, letter-spacing 0.45s ease, text-shadow 0.45s ease;
  }

  .hero:hover h1 {
    letter-spacing: 0.016em;
  }
}

.section h2,
.proof-quote blockquote {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3.8rem, 6vw, 6.3rem);
  line-height: 0.88;
  font-style: normal;
  max-width: 6ch;
  margin: 0;
  color: rgba(255, 248, 243, 0.96);
  text-shadow:
    0 18px 48px rgba(64, 33, 47, 0.26),
    0 0 26px rgba(255, 170, 204, 0.16),
    0 0 52px rgba(255, 115, 168, 0.1);
}

.hero-lead,
.intro-copy,
.manifesto-copy p,
.menu-item p,
.reserve-copy p,
.social-copy p,
.footer-note,
.look-copy p {
  color: var(--soft-ink);
  line-height: 1.9;
  font-size: 1rem;
}

.hero-lead {
  max-width: 34rem;
  margin: 0;
  font-size: 1.03rem;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: end;
  position: relative;
  padding: 1.4rem 1.45rem 1.5rem;
  border: 1px solid rgba(212, 126, 160, 0.26);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.86), rgba(251, 240, 236, 0.7)),
    rgba(255, 248, 244, 0.72);
  box-shadow:
    0 22px 48px rgba(183, 111, 143, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.hero-bottom::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 214, 225, 0.82), rgba(255, 113, 167, 0.96) 48%, rgba(191, 59, 115, 0.92));
}

.hero-bottom::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% 42%;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 173, 198, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-bottom > * {
  position: relative;
  z-index: 1;
}

.hero-bottom-panel {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 0;
  flex-wrap: wrap;
}

.btn-dark {
  color: var(--cream);
  background: linear-gradient(135deg, #6c344a 0%, #b45e86 52%, #da7aa2 100%);
  box-shadow:
    0 16px 30px rgba(176, 82, 126, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-light {
  color: var(--ink);
  border: 1px solid rgba(191, 104, 139, 0.28);
  background: rgba(255, 251, 246, 0.84);
  box-shadow:
    0 14px 26px rgba(201, 123, 155, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
}

.hero-facts div {
  padding: 1.05rem 1rem 1rem;
  border: 1px solid rgba(217, 120, 157, 0.28);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 229, 234, 0.6));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(200, 120, 153, 0.12);
}

.hero-facts dt {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-ink);
  margin-bottom: 0.45rem;
}

.hero-facts dd {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--berry-deep);
}

.hero-visual {
  display: block;
}

.hero-main-photo,
.look-media,
.social-tile,
.reserve-panel,
.form-card,
.stat-card,
.aside-card {
  border: 1px solid rgba(205, 133, 162, 0.22);
  background: rgba(255, 247, 245, 0.78);
  box-shadow: var(--shadow);
}

.hero-main-photo {
  position: relative;
  min-height: clamp(540px, 62vw, 760px);
  width: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: linear-gradient(145deg, #f9e5e3 0%, #f7b4c7 48%, #c8658d 100%);
}

.hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(65, 34, 46, 0.42) 0%, rgba(65, 34, 46, 0.18) 34%, rgba(65, 34, 46, 0) 62%),
    linear-gradient(180deg, rgba(255, 247, 243, 0.08), rgba(65, 34, 46, 0.12));
  pointer-events: none;
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}

.hero-overlay-copy .overline {
  color: rgba(255, 237, 242, 0.8);
  text-shadow: 0 8px 28px rgba(64, 33, 47, 0.24);
}

.frame-fill,
.look-media,
.social-tile {
  position: relative;
  overflow: hidden;
}

.frame-fill::before,
.look-media::before,
.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 48%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.44), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
}

.frame-fill {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.blush {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(35, 23, 19, 0.08), rgba(35, 23, 19, 0.18)),
    linear-gradient(145deg, #f2d4da 0%, #dda7b4 52%, #aa6970 100%);
}

.sand {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(52, 31, 25, 0.05), rgba(52, 31, 25, 0.2)),
    linear-gradient(145deg, #f3dfdc 0%, #e3bfc0 60%, #c28f8c 100%);
}

.rose {
  background:
    linear-gradient(180deg, rgba(59, 34, 28, 0.12), rgba(59, 34, 28, 0.22)),
    linear-gradient(145deg, #ebcbd2 0%, #d99eaa 62%, #9e636b 100%);
}

.cream {
  background:
    linear-gradient(180deg, rgba(59, 34, 28, 0.08), rgba(59, 34, 28, 0.18)),
    linear-gradient(145deg, #faece7 0%, #ebcacc 62%, #c89b99 100%);
}

.cocoa {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(32, 18, 14, 0.18)),
    linear-gradient(145deg, #e4c9c6 0%, #c99398 58%, #7d4d52 100%);
}

.frame-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.76);
}

.intro-band {
  width: min(1240px, calc(100% - 48px));
  margin: -8px auto 22px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 34px 30px 26px;
  border: 1px solid rgba(217, 120, 157, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 251, 247, 0.94), rgba(245, 221, 227, 0.78) 40%, rgba(255, 249, 246, 0.4));
  border-radius: 30px;
  box-shadow:
    0 18px 42px rgba(183, 111, 143, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 160px;
  background: linear-gradient(180deg, rgba(255, 195, 216, 0.26), rgba(255, 195, 216, 0));
  pointer-events: none;
}

.intro-band > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: 88px 0;
}

.lookbook {
  background: linear-gradient(180deg, rgba(244, 217, 225, 0.62), rgba(255, 248, 245, 0));
  border-radius: 38px;
  padding-inline: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  max-width: 13ch;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.look-card {
  background: rgba(255, 251, 246, 0.52);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.look-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(121, 73, 73, 0.12);
}

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

.look-media {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.look-card.tall .look-media {
  min-height: 720px;
}

.look-media-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.look-card:nth-child(1) .look-media-photo {
  object-position: 68% center;
}

.look-card:nth-child(2) .look-media-photo {
  object-position: center center;
}

.look-card:nth-child(3) .look-media-photo {
  object-position: center center;
}

.look-card:hover .look-media {
  transform: scale(1.018);
  filter: saturate(1.05);
}

.look-copy {
  padding: 22px 8px 0;
}

.look-copy h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  margin: 0.5rem 0 0.85rem;
  color: var(--berry-deep);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 320px;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 244, 247, 0.76), rgba(236, 201, 212, 0.54));
  border-radius: 38px;
  padding-inline: 28px;
}

.manifesto-copy h2 {
  margin-bottom: 1.25rem;
}

.artist {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr) 280px;
  gap: 1.75rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 247, 248, 0.86), rgba(240, 214, 221, 0.72));
  border-radius: 38px;
  padding-inline: 28px;
}

.artist-image,
.artist-note,
.experience-card,
.policy-card {
  border: 1px solid rgba(36, 25, 22, 0.08);
  box-shadow: var(--shadow);
}

.artist-image {
  min-height: 460px;
  display: flex;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(59, 34, 28, 0.12), rgba(59, 34, 28, 0.24)),
    linear-gradient(145deg, #f5d9dc 0%, #dba7b1 58%, #8d5568 100%);
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-copy h2 {
  margin-bottom: 1.15rem;
}

.artist-copy p + p {
  margin-top: 1rem;
}

.artist-notes {
  display: grid;
  gap: 1rem;
}

.artist-note {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 248, 249, 0.94), rgba(246, 228, 233, 0.86));
}

.artist-note-label,
.policy-title,
.experience-index {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.artist-note h3,
.experience-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 0.98;
  color: var(--berry-deep);
  margin: 0.7rem 0 0.7rem;
}

.artist-note p,
.experience-card p,
.policy-card p {
  color: var(--soft-ink);
  line-height: 1.85;
}

.experience {
  background: linear-gradient(135deg, rgba(241, 212, 219, 0.72), rgba(255, 250, 247, 0.84));
  border-radius: 38px;
  padding-inline: 28px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.experience-media {
  margin-bottom: 1.4rem;
  border: 1px solid rgba(36, 25, 22, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-media img {
  width: 100%;
  height: min(36vw, 480px);
  object-fit: cover;
  display: block;
}

.experience-card {
  padding: 24px;
  background: rgba(255, 250, 248, 0.74);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover,
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(121, 73, 73, 0.12);
}

.policies {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 247, 248, 0.9), rgba(236, 204, 213, 0.62));
  border-radius: 38px;
  padding-inline: 28px;
}

.policies-copy h2 {
  margin: 0.8rem 0 1rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.policy-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 250, 0.92), rgba(245, 228, 233, 0.86));
}

.policy-title {
  margin-bottom: 0.8rem;
}

.aside-card {
  padding: 28px;
  position: sticky;
  top: 110px;
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.92), rgba(242, 220, 226, 0.82));
}

.aside-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

.aside-card ul {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.aside-card li {
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.menu-group {
  padding-top: 0.25rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.menu-item h3 {
  font-family: var(--serif);
  font-size: 1.95rem;
  line-height: 0.98;
  margin-bottom: 0.35rem;
  color: var(--berry-deep);
}

.menu-item span {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1.5rem;
  padding-top: 0.25rem;
  color: var(--berry);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: end;
  background: linear-gradient(135deg, rgba(192, 101, 129, 0.22), rgba(248, 217, 225, 0.9) 34%, rgba(255, 248, 245, 0.82));
  border-radius: 38px;
  padding-inline: 28px;
}

.proof-quote blockquote {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.98;
  max-width: 12ch;
  margin: 0.8rem 0 1rem;
}

.proof-quote cite {
  color: var(--soft-ink);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.proof-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 26px 28px;
  background:
    linear-gradient(180deg, rgba(255, 245, 247, 0.96), rgba(242, 221, 227, 0.9));
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  margin-bottom: 0.3rem;
  color: var(--berry-deep);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--soft-ink);
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 2rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 248, 249, 0.84), rgba(236, 203, 213, 0.6));
  border-radius: 38px;
  padding-inline: 28px;
}

.reserve-copy h2 {
  margin-bottom: 1.2rem;
}

.reserve-panel {
  margin-top: 2rem;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.reserve-panel p {
  color: var(--soft-ink);
  line-height: 1.8;
  margin-top: 0.45rem;
}

.form-card {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(246, 234, 228, 0.94));
  border: 1px solid rgba(217, 120, 157, 0.28);
  border-radius: 30px;
  box-shadow:
    0 26px 64px rgba(183, 111, 143, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.48), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 38%, rgba(245, 222, 227, 0.1));
}

.form-head,
.form-grid,
.form-foot {
  position: relative;
  z-index: 1;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(217, 120, 157, 0.2);
}

.form-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c85f86;
}

.form-intro {
  max-width: 28rem;
  color: var(--soft-ink);
  line-height: 1.8;
}

.form-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 120, 157, 0.22);
  color: #b25a7d;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.booking-step-marker {
  min-height: 56px;
  border: 1px solid rgba(217, 120, 157, 0.24);
  border-radius: 18px;
  background: rgba(255, 247, 243, 0.56);
  color: rgba(135, 90, 110, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.booking-step-marker.is-active {
  border-color: rgba(208, 84, 137, 0.42);
  color: #aa3f6e;
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.94), rgba(249, 224, 232, 0.86));
  transform: translateY(-1px);
}

.booking-step-marker.is-complete {
  border-color: rgba(203, 96, 140, 0.3);
  color: rgba(154, 72, 105, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 243, 248, 0.86), rgba(244, 219, 227, 0.84));
}

.booking-step-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(202, 116, 153, 0.36);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.booking-stage {
  min-height: 194px;
}

.booking-step {
  display: none;
  animation: bookingStepIn 0.36s ease;
}

.booking-step.is-active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.55rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(217, 120, 157, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 243, 238, 0.9));
  min-height: 54px;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.form-row textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(123, 97, 104, 0.72);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(219, 96, 145, 0.52);
  background: rgba(252, 248, 241, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 4px rgba(248, 174, 200, 0.34),
    0 14px 28px rgba(199, 114, 149, 0.12);
  transform: translateY(-1px);
}

.form-foot {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(217, 120, 157, 0.2);
}

.form-note {
  color: var(--soft-ink);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.form-submit {
  width: auto;
  min-width: 220px;
}

.booking-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.booking-send,
.booking-next,
.booking-prev {
  min-width: 174px;
}

.booking-success {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(213, 121, 157, 0.28);
  border-radius: 24px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 251, 249, 0.94), rgba(245, 226, 232, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(193, 108, 145, 0.14);
}

.booking-success h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.96;
  margin-bottom: 0.8rem;
  color: var(--berry-deep);
}

.booking-success p {
  color: var(--soft-ink);
  line-height: 1.8;
}

.booking-reset {
  margin-top: 1rem;
}

.social {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(180deg, rgba(234, 194, 207, 0.58), rgba(255, 248, 246, 0));
  border-radius: 38px;
  padding-inline: 28px;
}

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

.social-tile {
  border: 1px solid rgba(205, 133, 162, 0.22);
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  text-align: left;
  background: rgba(255, 248, 246, 0.72);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-tile::before {
  display: none;
}

.social-hover {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 243, 0.92);
  border: 1px solid rgba(255, 234, 243, 0.54);
  border-radius: 999px;
  padding: 0.5rem 0.74rem;
  background: rgba(92, 41, 66, 0.56);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.social-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(121, 73, 73, 0.14);
}

.social-tile:hover .social-hover,
.social-tile:focus-visible .social-hover {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(32, 10, 24, 0.76);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 222, 236, 0.44);
  border-radius: 999px;
  color: rgba(255, 244, 240, 0.96);
  background: rgba(87, 39, 63, 0.52);
  min-height: 46px;
  padding: 0 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease;
}

.lightbox-close {
  position: absolute;
  top: -58px;
  right: 0;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-1px);
  background: rgba(129, 57, 93, 0.68);
}

.lightbox-figure {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 233, 0.28);
  background: rgba(45, 20, 33, 0.68);
  box-shadow: 0 24px 56px rgba(9, 3, 6, 0.45);
}

.lightbox-figure img {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  background: linear-gradient(180deg, rgba(48, 22, 36, 0.88), rgba(35, 14, 26, 0.96));
}

.lightbox-figure figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: rgba(255, 237, 243, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

body.lightbox-open {
  overflow: hidden;
}

.site-footer {
  padding: 0 0 52px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.footer-brand {
  font-family: var(--script);
  font-size: 2.7rem;
  line-height: 0.88;
  margin-bottom: 0.5rem;
  color: var(--berry-deep);
}

.footer-note {
  max-width: 44rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.footer-mark {
  display: block;
  width: 170px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatFrame {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0% {
    opacity: 0.82;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes navSparkle {
  0% {
    transform: translateX(-2%);
    opacity: 0.54;
  }

  50% {
    transform: translateX(2%);
    opacity: 0.78;
  }

  100% {
    transform: translateX(-2%);
    opacity: 0.54;
  }
}

@keyframes navLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navCtaPulse {
  0%,
  100% {
    box-shadow:
      0 18px 38px rgba(214, 91, 143, 0.28),
      0 0 0 1px rgba(255, 244, 240, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow:
      0 20px 42px rgba(233, 77, 148, 0.4),
      0 0 0 1px rgba(255, 244, 240, 0.24),
      0 0 22px rgba(255, 102, 170, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }
}

@keyframes navShimmer {
  0% {
    transform: translateX(-38%);
    opacity: 0.3;
  }

  45% {
    transform: translateX(10%);
    opacity: 0.52;
  }

  100% {
    transform: translateX(54%);
    opacity: 0.2;
  }
}

@keyframes meshDrift {
  0% {
    transform: translate3d(-1.2%, -0.6%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.1%, 0.9%, 0) scale(1.03);
  }
}

@keyframes bookingStepIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links a:focus-visible,
.nav-chip:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav a:focus-visible,
.social-tile:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.btn:focus-visible {
  outline: 1px solid rgba(109, 48, 69, 0.72);
  outline-offset: 4px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  body::before {
    opacity: 0.22;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .artist,
  .manifesto,
  .proof,
  .policies,
  .reserve,
  .social,
  .section-heading,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.25rem 1.35rem;
  }

  .hero h1,
  .section h2,
  .proof-quote blockquote {
    max-width: none;
  }

  .hero-main-photo {
    min-height: clamp(500px, 70vw, 680px);
  }

  .hero-overlay-copy {
    max-width: min(420px, calc(100% - 60px));
  }

  .hero-aside {
    width: min(280px, calc(100% - 60px));
  }

  .aside-card {
    position: static;
  }

  .artist-image {
    min-height: 360px;
  }

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

  .social-copy {
    max-width: 42rem;
  }

  .gallery-lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .lightbox-close {
    position: static;
    justify-self: end;
    margin-bottom: 0.35rem;
  }

  .lightbox-nav {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero,
  .section,
  .site-footer,
  .intro-band {
    width: min(100% - 28px, 1240px);
  }

  .site-nav {
    width: 100%;
    padding: 16px 18px;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    border-radius: 0;
  }

  .nav-links,
  .nav-chip {
    display: none;
  }

  .nav-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 16px;
  }

  .hero::before {
    inset: 44px 0 84px 0;
  }

  .hero-actions,
  .hero-facts,
  .policies-grid,
  .menu-layout,
  .reserve-panel,
  .social-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-bottom {
    gap: 1.35rem;
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .hero-main-photo {
    min-height: 560px;
  }

  .hero-aside {
    top: 18px;
    right: 18px;
    width: min(240px, calc(100% - 36px));
    padding: 18px;
  }

  .hero-overlay-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: min(390px, calc(100% - 48px));
  }

  .look-card.tall .look-media,
  .look-media,
  .social-tile {
    min-height: 280px;
  }

  .menu-item {
    flex-direction: column;
  }

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

  .booking-nav .form-submit {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .sample-bar {
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    padding-inline: 0.75rem;
  }

  .site-nav {
    width: 100%;
    padding: 14px 16px;
    border-radius: 0;
  }

  .nav-logo {
    font-size: 1.64rem;
  }

  .nav-toggle,
  .mobile-nav a,
  .mobile-nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .nav-toggle {
    min-width: 116px;
    padding: 0 14px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
    max-width: 5.4ch;
  }

  .section {
    padding: 68px 0;
  }

  .hero-main-photo {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
    border-radius: 30px;
    padding-bottom: 1.1rem;
  }

  .hero-main-photo::after {
    inset: 0 0 auto 0;
    height: 290px;
  }

  .hero-bottom {
    padding: 1rem;
    border-radius: 26px;
  }

  .hero-bottom::before {
    left: 16px;
    right: 16px;
  }

  .hero-main-photo img {
    height: 290px;
    object-fit: cover;
    object-position: 61% 22%;
  }

  .hero-overlay-copy {
    order: 3;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    gap: 0.75rem;
    max-width: none;
    padding: 0 16px;
  }

  .hero-aside {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    width: min(188px, calc(100% - 24px));
    padding: 14px 15px;
    border-radius: 22px;
    margin: -96px 16px 0 auto;
  }

  .intro-band {
    margin-top: -4px;
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .lookbook,
  .artist,
  .experience,
  .manifesto,
  .proof,
  .policies,
  .reserve,
  .social {
    padding-inline: 18px;
    border-radius: 28px;
  }

  .form-card,
  .reserve-panel,
  .stat-card,
  .aside-card {
    padding: 22px;
  }

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

  .form-head {
    flex-direction: column;
  }

  .form-chip,
  .form-submit {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .lightbox-figure {
    border-radius: 20px;
  }

  .lightbox-figure img {
    max-height: 70vh;
  }
}
