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

html {
  scroll-behavior: smooth;
}

:root {
  --paper: #f9eceb;
  --paper-strong: #f2d2d8;
  --cream: #fdf7f5;
  --ink: #261317;
  --soft-ink: #6f4b53;
  --line: rgba(38, 19, 23, 0.12);
  --rose: #e2adb8;
  --rose-deep: #bc6478;
  --berry: #8f455c;
  --berry-deep: #5d2337;
  --clay: #d3a0a9;
  --sand: #efd1d5;
  --panel: rgba(255, 251, 246, 0.7);
  --shadow: 0 28px 80px rgba(86, 43, 57, 0.14);
  --display: "Bodoni Moda", serif;
  --serif: "Cormorant Garamond", serif;
  --script: "Allura", cursive;
  --sans: "Manrope", sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(226, 173, 184, 0.34), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(205, 133, 158, 0.2), transparent 24%),
    linear-gradient(180deg, #fff8f8 0%, var(--paper) 52%, #f4dde2 100%);
  min-height: 100vh;
}

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");
}

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(255, 250, 245, 0.82);
  background: linear-gradient(90deg, #401d29 0%, #5a2436 100%);
  position: relative;
  z-index: 10;
}

.sample-bar a {
  color: #ffe5ea;
  border-bottom: 1px solid rgba(255, 229, 234, 0.5);
}

.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: min(1240px, calc(100% - 48px));
  margin: 20px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(191, 150, 160, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 245, 247, 0.2)),
    rgba(255, 248, 245, 0.8);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 16px;
  z-index: 20;
  overflow: hidden;
  box-shadow:
    0 18px 50px rgba(70, 49, 41, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04) 46%, rgba(255, 228, 235, 0.1)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.46), transparent 28%);
  opacity: 0.92;
}

.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: #813f58;
  text-shadow: 0 10px 22px rgba(185, 115, 120, 0.12);
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f5d64;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(206, 158, 171, 0), rgba(214, 156, 175, 0.96), rgba(206, 158, 171, 0));
  transform: scaleX(0.35);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-links a:hover {
  color: #9f5f77;
  transform: translateY(-1px);
}

.nav-links a.active {
  color: #9f5f77;
}

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

.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 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;
  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 {
  background: linear-gradient(135deg, #b9788d 0%, #d6a3b2 100%);
  color: #fffaf7;
  box-shadow:
    0 12px 26px rgba(185, 115, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

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

.nav-toggle {
  min-width: 136px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(191, 150, 160, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 236, 239, 0.6));
  color: #7c4d61;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.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(251, 228, 234, 0.88), rgba(245, 214, 223, 0.72));
  border-color: rgba(191, 120, 140, 0.28);
  color: #9f5f77;
}

.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.5rem;
  padding: 0.7rem;
  border: 1px solid rgba(191, 150, 160, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 244, 247, 0.92)),
    rgba(251, 247, 242, 0.96);
  box-shadow:
    0 20px 44px rgba(70, 49, 41, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

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

.mobile-nav a {
  min-height: 52px;
  justify-content: space-between;
  padding: 0 1rem;
  color: #6f5d64;
  border-bottom: 1px solid rgba(191, 150, 160, 0.12);
}

.mobile-nav a::after {
  content: "•";
  color: rgba(201, 146, 164, 0.9);
  font-size: 0.95rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #9f5f77;
  background: rgba(226, 188, 198, 0.18);
}

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

.mobile-nav-cta {
  margin-top: 0.55rem;
  background: linear-gradient(135deg, #b9788d 0%, #d6a3b2 100%);
  color: #fffaf7;
  box-shadow:
    0 12px 26px rgba(185, 115, 120, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

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

.btn:hover,
.nav-toggle:hover,
.nav-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(185, 115, 120, 0.18);
}

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

.hero {
  min-height: calc(100vh - 120px);
  padding: 64px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 3.5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px -18px 24px 36%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(145deg, rgba(240, 197, 210, 0.78), rgba(186, 97, 129, 0.32));
  border-radius: 44px;
  z-index: -1;
  animation: heroGlow 14s ease-in-out infinite alternate;
}

.hero-copy {
  padding: 2rem 0;
}

.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;
}

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

.hero h1 {
  font-size: clamp(3.3rem, 5.8vw, 6.2rem);
  line-height: 0.92;
  font-style: normal;
  max-width: 8.2ch;
  margin: 1rem 0 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--berry);
}

.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;
}

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

.btn-dark {
  color: var(--cream);
  background: linear-gradient(135deg, #5a2238 0%, #8b425d 100%);
}

.btn-light {
  color: var(--ink);
  border: 1px solid rgba(36, 25, 22, 0.14);
  background: rgba(255, 252, 248, 0.72);
}

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

.hero-facts div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.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 {
  position: relative;
  min-height: 720px;
}

.hero-frame,
.look-media,
.social-tile,
.reserve-panel,
.form-card,
.stat-card,
.aside-card {
  border: 1px solid rgba(36, 25, 22, 0.08);
  background: rgba(255, 247, 245, 0.72);
  box-shadow: var(--shadow);
}

.hero-frame {
  position: absolute;
}

.hero-frame-main {
  inset: 0 74px 78px 0;
  padding: 18px;
  background: rgba(255, 242, 241, 0.84);
  animation: floatFrame 8s ease-in-out infinite;
}

.hero-frame-note {
  right: 0;
  top: 78px;
  width: 220px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(104, 40, 63, 0.96), rgba(70, 22, 41, 0.96));
  color: rgba(255, 249, 244, 0.82);
  box-shadow: 0 18px 50px rgba(77, 20, 46, 0.28);
}

.hero-frame-note p {
  line-height: 1.8;
  font-size: 0.96rem;
}

.hero-frame-detail {
  right: 36px;
  bottom: 0;
  width: 250px;
  height: 290px;
  padding: 14px;
}

.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: 0 auto 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 32px 28px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(234, 204, 212, 0.64), rgba(255, 249, 246, 0));
  border-radius: 28px 28px 0 0;
}

.section {
  padding: 88px 0;
}

.lookbook {
  background: linear-gradient(180deg, rgba(243, 214, 223, 0.78), 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-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;
}

.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(255, 250, 251, 0.98), rgba(247, 231, 236, 0.92));
  border: 1px solid rgba(191, 150, 160, 0.16);
  border-radius: 30px;
  box-shadow:
    0 24px 60px rgba(121, 73, 73, 0.08),
    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(247, 220, 228, 0.08));
}

.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(191, 150, 160, 0.14);
}

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

.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.58);
  border: 1px solid rgba(191, 150, 160, 0.16);
  color: #8d5c70;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.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(191, 150, 160, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 248, 0.88));
  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(111, 93, 100, 0.72);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(185, 115, 120, 0.28);
  background: rgba(255, 252, 250, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 0 0 4px rgba(226, 188, 198, 0.22);
  transform: translateY(-1px);
}

.form-foot {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(191, 150, 160, 0.14);
}

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

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

.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 {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(57, 33, 28, 0.1), rgba(57, 33, 28, 0.2)),
    linear-gradient(145deg, #f1d5d8 0%, #dea7b0 55%, #a56d72 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.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);
  }
}

.nav-links a:focus-visible,
.nav-chip:focus-visible,
.nav-toggle:focus-visible,
.mobile-nav a: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;
  }
}

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

  .hero {
    min-height: auto;
  }

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

  .hero-visual {
    min-height: 620px;
  }

  .aside-card {
    position: static;
  }

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

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

  .site-nav {
    border-radius: 26px;
    padding: 18px;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .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: 44px;
  }

  .hero::before {
    inset: 90px 0 0 0;
  }

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

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

  .hero-visual {
    min-height: 560px;
  }

  .hero-frame-main {
    inset: 0 36px 84px 0;
  }

  .hero-frame-note {
    top: auto;
    bottom: 168px;
    right: 0;
    width: 200px;
  }

  .hero-frame-detail {
    width: 210px;
    height: 230px;
    right: 18px;
  }

  .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;
  }
}

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

  .site-nav {
    padding: 14px 16px;
  }

  .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(3rem, 15vw, 4.4rem);
  }

  .section {
    padding: 68px 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-frame-main {
    inset: 0 18px 74px 0;
  }

  .hero-frame-note {
    width: 180px;
    padding: 18px;
    bottom: 138px;
  }

  .hero-frame-detail {
    width: 170px;
    height: 180px;
    right: 10px;
  }

  .lookbook,
  .manifesto,
  .proof,
  .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%;
  }
}
