:root {
  --cream: #f5eedf;
  --cream-light: #f5eedf;
  --ink: #16110e;
  --muted: #675b50;
  --purple: #173c2d;
  --purple-deep: #0b231a;
  --rose: #a96558;
  --sage: #777a58;
  --gold: #a77b37;
  --line: rgba(22, 17, 14, 0.14);
  --line-light: rgba(245, 234, 217, 0.22);
  --serif: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(169, 101, 88, 0.12), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(23, 60, 45, 0.13), transparent 28%),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  color: var(--cream-light);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.45;
}

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

a,
button,
select,
label,
input,
textarea {
  cursor: inherit;
}

@media (pointer: fine) {
  html,
  html * {
    cursor: none !important;
  }

  .tie-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    display: block;
    width: 40px;
    height: 44px;
    opacity: 0;
    pointer-events: none;
    background: url("assets/tie-cursor.svg") center / contain no-repeat;
    transform: translate3d(calc(var(--cursor-x, -80px) - 5px), calc(var(--cursor-y, -80px) - 4px), 0);
    transition: opacity 80ms ease;
    will-change: transform;
  }

  html.has-tie-cursor .tie-cursor {
    opacity: 1;
  }
}

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

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: center;
  min-height: 82px;
  padding: 12px clamp(18px, 3vw, 42px);
  color: var(--cream-light);
  background: linear-gradient(180deg, rgba(22, 17, 14, 0.78), rgba(22, 17, 14, 0.12) 92%, transparent);
  transition: min-height 280ms ease, background 280ms ease, padding 280ms ease;
}

.top-bar::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(245, 234, 217, 0.22);
}

.mobile-menu-toggle,
.mobile-book-link,
.nav-follow {
  display: none;
}

.header-socials {
  grid-column: 1;
  justify-self: start;
  position: relative;
  z-index: 2;
}

.header-follow,
nav a,
.button,
label span,
.form-note,
figcaption,
.pullquote span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-follow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(245, 234, 217, 0.35);
  border-radius: 999px;
  color: var(--cream-light);
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.header-follow:hover {
  background: var(--cream-light);
  color: #000;
}

.logo {
  display: grid;
  grid-column: 2;
  justify-items: center;
  justify-self: center;
  transform: translateY(0);
  transform-origin: top center;
  transition: transform 360ms ease;
  z-index: 1;
}

.logo img {
  display: block;
  width: clamp(150px, 15vw, 224px);
  height: auto;
  filter: none;
  transition: width 360ms ease;
  will-change: width;
}

.top-bar:not(.is-scrolled) {
  min-height: 74px;
  background: transparent;
}

.top-bar.is-scrolled {
  background: var(--purple);
  box-shadow: 0 10px 30px rgba(11, 35, 26, 0.34);
}

.top-bar.is-scrolled::after {
  background: rgba(245, 238, 223, 0.18);
}

.top-bar:not(.is-scrolled)::after {
  background: transparent;
}

.top-bar .header-socials,
.top-bar nav {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

.top-bar.is-scrolled .nav-book,
.top-bar.is-scrolled .mobile-book-link {
  background: var(--cream-light);
  color: var(--purple);
}

.top-bar.is-scrolled .nav-book:hover,
.top-bar.is-scrolled .mobile-book-link:hover {
  background: var(--cream-light);
  color: var(--purple-deep);
}

.top-bar:not(.is-scrolled) .logo {
  transform: translateY(clamp(0px, 1vh, 10px));
}

.top-bar:not(.is-scrolled) .logo img {
  width: clamp(280px, min(34vw, 27vh), 410px);
}

nav {
  display: flex;
  grid-column: 3;
  justify-self: end;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  position: relative;
  z-index: 2;
}

nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--cream-light);
  line-height: 1;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

nav a:hover {
  background: rgba(245, 238, 223, 0.14);
  color: var(--cream-light);
}

.nav-book {
  margin-left: 4px;
  min-width: 144px;
  padding: 0 22px;
  background: var(--purple);
  color: var(--cream-light);
}

.nav-book:hover {
  background: var(--purple-deep);
  color: var(--cream-light);
}

@media (max-width: 1500px) and (min-width: 1401px) {
  .top-bar {
    padding-inline: 18px;
  }

  .logo img {
    width: clamp(138px, 13vw, 178px);
  }

  .header-follow,
  nav a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .nav-book {
    min-width: 124px;
    padding-inline: 16px;
  }
}

.hero {
  --hero-image-top: clamp(150px, 20vh, 210px);
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(132px, 12vw, 176px) clamp(18px, 6vw, 88px) clamp(42px, 7vw, 92px);
  color: var(--cream-light);
  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 17, 14, 0.88) 0%, rgba(22, 17, 14, 0.64) 28%, rgba(22, 17, 14, 0.16) 58%, rgba(22, 17, 14, 0) 100%),
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(22, 17, 14, 0.36) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: calc(var(--hero-image-top) + 72px);
  background: linear-gradient(180deg, #000 0%, #000 calc(var(--hero-image-top) - 28px), rgba(0, 0, 0, 0.72) var(--hero-image-top), transparent 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  transform: translateY(0);
  transition: transform 360ms ease;
}

.top-bar:not(.is-scrolled) + main .hero-copy {
  transform: translateY(clamp(28px, 4vh, 48px));
}

.hero-image-card {
  position: absolute;
  inset: var(--hero-image-top) 0 0;
  z-index: 0;
  margin: 0;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  filter: grayscale(0.72) sepia(0.08) contrast(1.08) brightness(0.96);
}

.hero-image-card figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 4;
  color: rgba(245, 238, 223, 0.76);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 860px;
  font-size: clamp(38px, 5.4vw, 82px);
}

.hero-copy h1 {
  max-width: 700px;
  font-family: var(--sans);
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 1.12;
}

.mobile-title {
  display: none;
}

.hero-dash {
  display: inline-block;
  width: 0.48em;
  height: 0.055em;
  margin: 0 0.16em;
  background: currentColor;
  vertical-align: 0.18em;
}

h2 {
  color: var(--cream-light);
  font-size: clamp(38px, 5vw, 82px);
}

.lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--cream-light);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.actions .button {
  min-width: 168px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.primary,
.submit {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--cream-light);
}

.loud {
  border-color: var(--cream-light);
  background: var(--cream-light);
  color: #000;
}

.fine-print {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--cream-light);
  font-size: 17px;
  font-weight: 600;
}

.brand-marquee {
  overflow: hidden;
  background: var(--purple);
  color: var(--cream-light);
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding: 10px;
  animation: brand-roll 26s linear infinite;
}

.brand-mark {
  display: inline-flex;
  box-sizing: border-box;
  width: 150px;
  height: 80px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 8px;
  opacity: 1;
}

.brand-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(93%) sepia(17%) saturate(359%) hue-rotate(343deg) brightness(105%) contrast(92%);
}

.brand-armani,
.brand-dior,
.brand-versace,
.brand-ralph,
.brand-brooks,
.brand-jpress {
  width: 136px;
}

.brand-ysl,
.brand-corneliani,
.brand-levis,
.brand-burberry,
.brand-gucci,
.brand-brioni {
  width: 156px;
}

.brand-canali,
.brand-zegna,
.brand-valentino,
.brand-hermes,
.brand-etro {
  width: 184px;
}

.brand-kiton {
  width: 168px;
}

.brand-chipp {
  width: 140px;
}

.brand-armani img,
.brand-dior img,
.brand-versace img,
.brand-ralph img,
.brand-brooks img,
.brand-jpress img {
  max-height: 62px;
}

.brand-burberry img,
.brand-levis img {
  max-height: 58px;
}

.brand-armani img {
  max-height: 64px;
}

.brand-canali img,
.brand-zegna img,
.brand-gucci img,
.brand-brioni img,
.brand-kiton img {
  max-height: 48px;
}

.brand-zegna img,
.brand-levis img {
  max-height: 44px;
}

.brand-valentino img,
.brand-hermes img,
.brand-etro img,
.brand-ysl img,
.brand-corneliani img {
  max-height: 54px;
}

.brand-chipp img {
  max-height: 74px;
}

@keyframes brand-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(54px, 7vw, 104px) clamp(18px, 6vw, 88px);
  background: var(--purple);
}

.label-card {
  width: fit-content;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(44px, 4vw, 66px);
  font-weight: 700;
  line-height: 0.92;
}

.editorial-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  justify-items: center;
  overflow: visible;
}

.what {
  min-height: auto;
  overflow: hidden;
  background: var(--ink);
}

.what .section-heading {
  position: relative;
  top: auto;
  align-self: start;
  justify-self: center;
  z-index: 4;
}

.what .section-body {
  position: relative;
  z-index: 3;
}

.how-it-works {
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 62px);
  background: var(--purple);
  min-height: auto;
  align-items: center;
}

.how-it-works .section-heading {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  top: auto;
  align-self: center;
  justify-self: center;
  z-index: 4;
}

.how-it-works .framed-title {
  max-width: 720px;
  text-align: center;
}

.how-it-works .section-body {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: min(100%, 920px);
}

.editorial-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-light);
}

.section-kicker {
  margin-bottom: clamp(22px, 4vw, 46px);
  color: rgba(245, 238, 223, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  justify-items: center;
}

.section-heading {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  justify-items: center;
  width: min(100%, 860px);
  text-align: center;
}

.section-heading-photo {
  display: block;
  width: min(100%, 300px);
  margin-top: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(245, 238, 223, 0.28);
  filter: grayscale(0.1) contrast(1.04);
}

.how-photo-anchor {
  position: relative;
  grid-column: 1;
  grid-row: 3;
  align-self: center;
  justify-self: center;
  z-index: 1;
  display: flex;
  width: min(100%, 560px);
  margin-top: 0;
  justify-content: center;
  pointer-events: auto;
  isolation: isolate;
  max-height: none;
  transform: none;
}

.how-photo-anchor::before,
.how-photo-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: min(100%, 420px);
  border-radius: 22px;
  transform: translateX(-50%);
  pointer-events: none;
}

.how-photo-anchor::before {
  background:
    linear-gradient(140deg, rgba(245, 238, 223, 0.34), rgba(245, 238, 223, 0) 42%),
    radial-gradient(circle at 24% 18%, rgba(245, 238, 223, 0.26), transparent 20%),
    repeating-linear-gradient(0deg, rgba(245, 238, 223, 0.09) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.how-photo-anchor::after {
  background:
    repeating-radial-gradient(circle at 0 0, rgba(27, 22, 12, 0.22) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.how-section-photo {
  display: block;
  width: min(100%, 520px);
  max-height: 100%;
  margin-top: 0;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  filter: grayscale(0.38) sepia(0.6) saturate(0.74) contrast(1.14) brightness(0.9);
  transform: none;
  mix-blend-mode: normal;
  object-fit: contain;
}

.ig-profile-card {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1.55fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  aspect-ratio: 1414 / 552;
  background: #fff;
  color: #111318;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  filter: grayscale(0.38) sepia(0.6) saturate(0.74) contrast(1.14) brightness(0.9);
}

.ig-profile-avatar {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid #dedede;
  border-radius: 50%;
  background: #fff;
}

.ig-profile-avatar img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.ig-profile-info {
  display: grid;
  gap: clamp(7px, 1.2vw, 14px);
  min-width: 0;
}

.ig-profile-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1;
}

.ig-profile-top strong {
  font-weight: 800;
}

.ig-profile-top span {
  font-size: 0.78em;
  line-height: 0.8;
}

.ig-profile-name,
.ig-profile-stats,
.ig-profile-bio {
  font-size: clamp(13px, 2.1vw, 23px);
  line-height: 1.18;
}

.ig-profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 30px);
}

.ig-profile-stats strong {
  font-weight: 800;
}

.ig-profile-bio {
  display: grid;
  gap: 1px;
}

.ig-profile-bio b {
  color: #315cff;
  font-weight: 500;
}

.dm-badge {
  position: absolute;
  top: clamp(10px, 1.4vw, 18px);
  left: clamp(18px, 2.5vw, 34px);
  z-index: 4;
  display: grid;
  width: clamp(38px, 4vw, 54px);
  height: clamp(38px, 4vw, 54px);
  place-items: center;
  border: 1px solid rgba(23, 60, 45, 0.2);
  border-radius: 999px;
  background: var(--cream-light);
  color: var(--purple);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dm-badge svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-photo-anchor:hover .dm-badge {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.framed-title {
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 0;
  color: var(--cream-light);
  font-size: clamp(44px, 4vw, 66px);
  line-height: 0.92;
  text-align: center;
  white-space: normal;
}

.section-caption {
  max-width: 760px;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  color: var(--cream-light);
  font-family: var(--sans);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}

.section .button,
.booking .button {
  width: min(100%, 320px);
  min-height: 62px;
  padding: 0 30px;
  justify-self: center;
}

.editorial-copy {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  max-width: 920px;
}

.editorial-copy h2 {
  color: var(--cream-light);
  font-size: clamp(52px, 7vw, 122px);
}

.editorial-copy p {
  margin: 0;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 700;
  line-height: 1.12;
}

.editorial-copy p strong {
  display: block;
}

.how-it-works .editorial-copy p {
  display: grid;
  max-width: none;
  min-height: 0;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--cream-light);
  font-family: var(--sans);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}

.showroom-placeholder {
  width: 100%;
  margin: 0;
}

.showroom-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(245, 238, 223, 0.24);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  filter: contrast(1.03) brightness(0.96);
}

.big-copy {
  display: grid;
  gap: clamp(26px, 5vw, 58px);
  font-family: var(--serif);
  font-size: clamp(38px, 5.2vw, 88px);
  font-weight: 700;
  line-height: 1.02;
}

.big-copy p {
  margin: 0;
  padding: 0 0 clamp(26px, 4vw, 46px);
  border-bottom: 1px solid var(--line-light);
}

.bad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--purple);
  color: var(--cream-light);
}

.bad-grid article {
  min-height: clamp(320px, 40vw, 520px);
  padding: clamp(28px, 5vw, 64px);
  border-right: 1px solid var(--line-light);
}

.bad-grid article:last-child {
  border-right: 0;
}

.bad-grid span {
  display: block;
  margin-bottom: clamp(70px, 12vw, 150px);
  color: rgba(245, 238, 223, 0.56);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1;
}

.bad-grid h2 {
  color: var(--cream-light);
  margin-bottom: 18px;
}

.bad-grid p {
  max-width: 320px;
  color: rgba(245, 238, 223, 0.78);
  font-weight: 600;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  justify-items: center;
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.why-heading {
  position: relative;
  top: auto;
  display: grid;
  justify-items: center;
  width: min(100%, 860px);
  text-align: center;
}

.why-heading .section-kicker {
  margin-bottom: 22px;
}

.reasons {
  display: grid;
  width: min(100%, 1120px);
  border-top: 1px solid var(--line-light);
}

.reasons p {
  display: grid;
  grid-template-columns: 64px minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 30px);
  align-items: baseline;
  margin: 0;
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(245, 238, 223, 0.78);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
}

.reason-number {
  color: rgba(245, 238, 223, 0.42);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.reason-text {
  color: rgba(245, 238, 223, 0.78);
  min-width: 0;
}

.reasons b {
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 44px);
  line-height: 1;
  white-space: nowrap;
}

.pullquote {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.22fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  overflow: hidden;
  padding: clamp(78px, 11vw, 156px) clamp(18px, 6vw, 88px);
  background: var(--purple);
  color: var(--cream-light);
}

.quote-copy,
.quote-credit {
  position: relative;
  z-index: 1;
}

.pullquote p {
  max-width: 700px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 1.12;
}

.pullquote .quote-mark {
  display: inline;
  color: rgba(245, 238, 223, 0.82);
  font: inherit;
  line-height: inherit;
}

.quote-credit {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(245, 238, 223, 0.72);
  text-align: center;
}

.quote-credit img {
  width: clamp(120px, 13vw, 190px);
  height: clamp(120px, 13vw, 190px);
  flex: 0 0 auto;
  border: 2px solid rgba(245, 238, 223, 0.7);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 8%;
}

.quote-credit span {
  display: inline-flex;
  margin: 0;
  color: rgba(245, 238, 223, 0.72);
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0;
  text-transform: none;
}

.quote-credit span:first-of-type {
  color: var(--cream-light);
}

.quote-credit span:last-child {
  color: rgba(245, 238, 223, 0.72);
  font-weight: 800;
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: center;
  justify-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 6vw, 88px);
  background: #f2e2c3;
  color: var(--ink);
  border-top: 1px solid rgba(22, 17, 14, 0.18);
  border-bottom: 1px solid rgba(22, 17, 14, 0.18);
}

.booking-header {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 760px;
  text-align: center;
}

.stamp {
  display: inline-flex;
  margin: 0 0 24px;
  color: var(--rose);
}

.booking-header h2 {
  max-width: 720px;
  color: var(--ink);
}

.booking-header p:not(.stamp) {
  max-width: 760px;
  margin: 0;
  color: rgba(22, 17, 14, 0.74);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}

.booking-cta {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  justify-self: center;
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 760px;
}

.booking-cta p {
  margin: 0;
  max-width: 520px;
  color: rgba(22, 17, 14, 0.68);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.24;
  text-align: center;
}

.booking-cta .button {
  flex: 0 0 auto;
  border-color: var(--purple);
  background: var(--purple);
  color: var(--cream-light);
  font-size: 14px;
}

.buy-vintage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
  justify-items: center;
  background: var(--purple);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.buy-vintage .section-body {
  width: min(100%, 860px);
  max-width: 860px;
}

.buy-vintage .section-heading {
  position: relative;
  top: auto;
}

.buy-vintage .editorial-copy {
  justify-items: center;
  gap: clamp(24px, 3vw, 38px);
}

.buy-vintage .editorial-copy p {
  max-width: 760px;
  color: var(--cream-light);
  font-family: var(--sans);
  font-size: clamp(19px, 1.9vw, 28px);
  font-weight: 600;
  line-height: 1.24;
}

.buy-vintage .button {
  border-color: var(--cream-light);
  background: var(--cream-light);
  color: var(--purple);
}

.booking-modal {
  width: min(1120px, calc(100vw - 28px));
  max-height: min(900px, calc(100vh - 28px));
  margin: auto;
  padding: 0;
  border: 1px solid rgba(245, 238, 223, 0.34);
  background: var(--ink);
  color: var(--cream-light);
}

.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.booking-modal-panel {
  position: relative;
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  max-height: min(900px, calc(100vh - 28px));
  overflow: auto;
  padding: clamp(28px, 5vw, 64px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(245, 238, 223, 0.38);
  background: transparent;
  color: var(--cream-light);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.modal-close:hover {
  background: var(--cream-light);
  color: var(--ink);
}

.modal-intro {
  max-width: 720px;
  padding-right: 82px;
}

.modal-intro h2 {
  font-size: clamp(44px, 7vw, 96px);
}

.modal-intro p:not(.stamp) {
  margin: 12px 0 0;
  color: rgba(245, 238, 223, 0.72);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.schedule-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(300px, 1fr) minmax(220px, 0.56fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(245, 238, 223, 0.24);
  background:
    linear-gradient(135deg, rgba(245, 238, 223, 0.1), transparent 44%),
    var(--purple-deep);
}

.picker-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-picker h3 {
  margin: 0;
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 0.95;
}

.calendar-shell,
.time-shell {
  display: grid;
  gap: 14px;
}

.calendar-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.calendar-header strong {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
}

.calendar-nav,
.calendar-day,
.time-option {
  border: 1px solid rgba(245, 238, 223, 0.3);
  background: transparent;
  color: var(--cream-light);
  font: inherit;
}

.calendar-nav {
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.calendar-nav:disabled,
.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.25;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-weekdays span {
  color: rgba(245, 238, 223, 0.55);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0;
  font-size: 15px;
  font-weight: 900;
}

.calendar-day.is-available {
  border-color: rgba(245, 238, 223, 0.72);
  background: rgba(245, 238, 223, 0.08);
}

.calendar-day.is-selected,
.time-option.is-selected {
  border-color: var(--cream-light);
  background: var(--cream-light);
  color: var(--ink);
}

.calendar-day:not(:disabled):hover,
.time-option:not(:disabled):hover,
.calendar-nav:not(:disabled):hover {
  border-color: var(--cream-light);
  background: rgba(245, 238, 223, 0.12);
}

.time-grid {
  display: grid;
  gap: 10px;
}

.time-option {
  min-height: 44px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
}

.selected-slot {
  min-height: 22px;
  margin: 0;
  color: rgba(245, 238, 223, 0.68);
  font-size: 14px;
  font-weight: 800;
}

label {
  display: grid;
  gap: 9px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(245, 238, 223, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--cream-light);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 0 10px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-bottom-color: var(--cream-light);
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 238, 223, 0.48);
}

.wide,
.form-note {
  grid-column: 1 / -1;
}

.submit {
  width: fit-content;
  min-width: 240px;
  border-color: var(--purple);
  background: var(--purple);
  color: var(--cream-light);
}

.form-note {
  margin: 0;
  color: rgba(245, 238, 223, 0.62);
}

.socials {
  padding: clamp(72px, 10vw, 144px) clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
}

#socials-title {
  max-width: 360px;
  margin: 0 auto clamp(28px, 4vw, 54px);
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 34px);
}

.social-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.social-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}

.social-card strong {
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1;
  transition: transform 220ms ease;
}

.social-card:hover strong {
  transform: translateY(2px);
}

.ig-icon {
  position: relative;
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--purple);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.social-card:hover .ig-icon {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 0 0 2px rgba(245, 238, 223, 0.28);
}

.ig-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.38) sepia(0.16) contrast(1.04);
  transition: filter 260ms ease, transform 260ms ease;
}

.social-card:hover .ig-icon img {
  filter: grayscale(0.18) sepia(0.16) contrast(1.08);
  transform: scale(1.03);
}

.ig-icon > span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(23, 60, 45, 0.24));
  pointer-events: none;
}

.ig-crayon img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 50% 22%;
}

.ig-crayon span,
.ig-sketch span,
.ig-sticker span {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--purple);
  color: var(--cream-light);
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.site-footer p {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.site-footer .footer-hours {
  margin-top: -2px;
}

.dc-flag {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 12px);
  justify-content: center;
  gap: 6px;
  width: 72px;
  height: 27px;
}

.dc-flag + span {
  margin-top: 18px;
}

.dc-flag::before,
.dc-flag::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: #f5eadf;
}

.dc-flag::before {
  bottom: 8px;
}

.dc-flag::after {
  bottom: 0;
}

.dc-flag span {
  width: 12px;
  height: 12px;
  background: #f5eadf;
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.footer-logo {
  justify-self: start;
}

.footer-logo img {
  display: block;
  width: clamp(160px, 17vw, 248px);
  height: auto;
}

.footer-book {
  justify-self: end;
}

.footer-book {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(245, 234, 217, 0.52);
  border-radius: 999px;
  background: var(--purple);
  color: var(--cream-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact {
  color: var(--cream-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.panic-button {
  display: none;
}

.accent-burgundy {
  color: var(--cream-light);
}

.accent-green {
  color: var(--cream-light);
}

@media (max-width: 1400px) {
  .top-bar {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 8px;
    min-height: 76px;
    padding: 10px 12px;
  }

  .top-bar.is-scrolled {
    min-height: 72px;
  }

  .header-socials {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    grid-column: 1;
    justify-self: start;
    gap: 4px;
    width: 44px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(245, 234, 217, 0.28);
    border-radius: 999px;
    background: var(--purple);
    color: var(--cream-light);
    cursor: pointer;
  }

  .mobile-menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-book-link {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    min-width: 58px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--purple);
    color: var(--cream-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .logo img {
    width: 145px;
  }

  .top-bar:not(.is-scrolled) .logo {
    transform: translateY(clamp(4px, 1.4vh, 12px));
  }

  .top-bar:not(.is-scrolled) .logo img {
    width: clamp(190px, min(58vw, 27vh), 260px);
  }

  .top-bar:not(.is-scrolled) .mobile-book-link,
  .top-bar:not(.is-scrolled) .mobile-menu-toggle {
    opacity: 1;
    pointer-events: auto;
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: auto;
    z-index: 40;
    grid-column: 1 / -1;
    justify-self: start;
    display: none;
    width: min(270px, calc(100vw - 24px));
    overflow: hidden;
    border: 1px solid rgba(23, 60, 45, 0.16);
    border-radius: 18px;
    background: var(--cream-light);
    box-shadow: 0 20px 60px rgba(22, 17, 14, 0.22);
  }

  .top-bar.menu-open nav {
    display: grid;
  }

  .top-bar.menu-open nav {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-follow {
    display: grid;
    order: 5;
  }

  nav a {
    min-height: 52px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(23, 60, 45, 0.12);
    border-radius: 0;
    color: var(--ink);
  }

  nav a:last-child {
    border-bottom: 0;
  }

  .nav-book {
    margin: 0;
    background: var(--purple);
    color: var(--cream-light);
    order: 1;
  }

  nav a[href="#what"] {
    order: 2;
  }

  nav a[href="#why"] {
    order: 3;
  }

  nav a[href="#we-buy"] {
    order: 4;
  }

  .what,
  .why,
  .editorial-section,
  .editorial-layout,
  .booking,
  .buy-vintage,
  .bad-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .booking {
    align-items: start;
    gap: 28px;
  }

  .booking-cta {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    justify-items: center;
    gap: 18px;
  }

  .why-heading,
  .section-heading {
    position: static;
  }

  .how-it-works .section-heading,
  .how-it-works .section-body {
    grid-column: auto;
    grid-row: auto;
  }

  .how-it-works .section-heading {
    min-height: auto;
    padding-bottom: 0;
  }

  .how-it-works {
    min-height: auto;
  }

  .what .section-heading {
    position: relative;
    top: auto;
    z-index: 4;
  }

  .how-photo-anchor {
    position: relative;
    top: auto;
    width: 100%;
    max-height: none;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .how-photo-anchor::before,
  .how-photo-anchor::after {
    top: 28px;
    width: min(100%, 340px);
  }

  .how-section-photo {
    width: min(100%, 390px);
    margin-top: 28px;
  }

  .ig-profile-card {
    gap: 14px;
    padding: 22px;
  }

  .ig-profile-name,
  .ig-profile-stats,
  .ig-profile-bio {
    font-size: 12px;
  }

  .how-it-works .editorial-copy p {
    max-width: none;
    min-height: 0;
    gap: 24px;
  }

  .schedule-picker {
    grid-template-columns: 1fr;
  }

  .booking-modal {
    width: min(760px, calc(100vw - 18px));
    max-height: calc(100vh - 18px);
  }

  .booking-modal-panel {
    max-height: calc(100vh - 18px);
  }

  .bad-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .bad-grid article:last-child {
    border-bottom: 0;
  }

  .reasons p {
    grid-template-columns: 52px 1fr;
  }

  .reasons p b {
    grid-column: 2;
  }

  .reason-text {
    grid-column: 2;
  }

  .reasons p {
    align-items: start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 112px;
  }

  [id] {
    scroll-margin-top: 112px;
  }

  body {
    font-size: 17px;
  }

  .hero {
    --hero-image-top: clamp(118px, 18vh, 160px);
    min-height: auto;
    align-items: start;
    padding: clamp(112px, 18.5svh, 146px) 16px 26px;
  }

  .top-bar:not(.is-scrolled) + main .hero-copy {
    transform: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 17, 14, 0.72), rgba(22, 17, 14, 0.54) 42%, rgba(22, 17, 14, 0.84)),
      linear-gradient(90deg, rgba(22, 17, 14, 0.58), rgba(22, 17, 14, 0.16));
  }

  .hero-image-card img {
    object-position: 82% 0%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 52px);
    line-height: 0.95;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  h2 {
    font-size: 44px;
  }

  .lede {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.36;
  }

  .actions {
    margin-top: 22px;
    justify-content: center;
  }

  .button {
    min-height: 44px;
    padding: 12px 14px;
  }

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

  .booking-modal-panel {
    padding: 26px 16px;
  }

  .modal-intro {
    padding-right: 60px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day {
    min-height: 38px;
    font-size: 13px;
  }

  .button {
    width: 100%;
  }

  .section .button,
  .booking .button {
    width: min(calc(100% - 44px), 320px);
    min-height: 62px;
    padding: 0 30px;
  }

  .actions .button {
    width: min(calc(100% - 44px), 260px);
  }

  .hero-image-card figcaption {
    display: none;
  }

  .section,
  .booking,
  .socials {
    padding: 46px 16px;
  }

  .editorial-copy h2 {
    font-size: 48px;
  }

  .framed-title,
  .label-card {
    max-width: calc(100vw - 32px);
    font-size: clamp(34px, 10vw, 48px);
  }

  .editorial-copy p {
    font-size: 24px;
  }

  .showroom-placeholder img {
    aspect-ratio: 4 / 3;
  }

  .big-copy {
    font-size: 34px;
  }

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

  .pullquote p {
    font-size: 32px;
    line-height: 1.12;
  }

  .quote-credit {
    justify-items: start;
    text-align: left;
  }

  .bad-grid article {
    padding: 34px 18px;
  }

  .bad-grid span {
    margin-bottom: 46px;
  }

  .appointment-form {
    gap: 24px;
  }

  .submit {
    width: 100%;
  }

  .ig-icon {
    width: min(100%, 250px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-book {
    justify-self: center;
  }

  .footer-logo img {
    width: 150px;
  }
}

@media (min-width: 621px) and (max-height: 780px) {
  .hero {
    --hero-image-top: clamp(140px, 20vh, 190px);
  }

  .top-bar:not(.is-scrolled) .logo img {
    width: clamp(260px, min(32vw, 25vh), 360px);
  }

  .top-bar:not(.is-scrolled) + main .hero-copy {
    transform: translateY(clamp(16px, 3vh, 32px));
  }

  .hero {
    padding-bottom: clamp(32px, 5vw, 56px);
  }

  h1 {
    font-size: clamp(44px, 6.2vw, 78px);
  }

  .hero-copy h1 {
    font-size: clamp(32px, 2.9vw, 42px);
  }

  .lede {
    font-size: clamp(17px, 1.45vw, 21px);
  }

  .actions {
    margin-top: 24px;
  }

  .fine-print {
    margin-top: 14px;
    font-size: 16px;
  }
}

@media (min-width: 1400px) and (min-height: 860px) {
  .top-bar:not(.is-scrolled) .logo {
    transform: translateY(0);
  }

  .top-bar:not(.is-scrolled) .logo img {
    width: clamp(300px, 24vw, 380px);
  }
}
