/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --cream:        #FFF6EE;
  --cream-2:      #FBE9DD;
  --blush:        #F8D5DA;
  --blush-2:      #F2BAC2;
  --rose:         #B83C5E;
  --rose-deep:    #6E1F35;
  --sky:          #C8DEF1;
  --sky-2:        #9FC3E5;
  --gold:         #C9A567;
  --ink:          #2A1A1F;
  --ink-soft:     #5C4047;

  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --script: "Caveat", cursive;

  --pad-x: clamp(20px, 5vw, 88px);
  --section-y: clamp(70px, 9vw, 130px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(248,213,218,0.55) 0, transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(200,222,241,0.45) 0, transparent 38%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; }
::selection { background: var(--blush-2); color: var(--rose-deep); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.95em 1.6em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--rose);
  color: var(--cream);
}
.btn--primary:hover { background: var(--rose-deep); }
.btn--ghost {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}
.btn--ghost:hover { background: var(--rose); color: var(--cream); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--rose-deep); }
.btn--ink-ghost { color: var(--ink); border-color: var(--ink); }
.btn--ink-ghost:hover { background: var(--ink); color: var(--cream); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad-x);
  background: rgba(255, 246, 238, 0.78);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.nav.is-stuck {
  background: rgba(255, 246, 238, 0.92);
  border-bottom-color: rgba(184, 60, 94, 0.18);
}
.brand {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.02em;
}
.brand__bow {
  font-size: 24px; color: var(--rose); transform: translateY(2px);
}
.brand__wordmark { display: flex; gap: 8px; align-items: baseline; }
.brand em {
  font-family: var(--script);
  font-style: normal;
  color: var(--rose);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.brand__name {
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--ink-soft);
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav__links a { position: relative; padding: 4px 0; transition: color 0.2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--rose); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav { padding: 14px 20px; }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(40px, 6vw, 90px) var(--pad-x) clamp(60px, 7vw, 110px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "❀";
  position: absolute;
  font-size: clamp(280px, 30vw, 520px);
  color: var(--blush);
  opacity: 0.25;
  top: -8%; left: -6%;
  pointer-events: none;
  font-family: var(--serif);
  z-index: 0;
}
.hero__type { position: relative; z-index: 1; }
.hero__kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose);
  background: rgba(248, 213, 218, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 8.4vw, 134px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}
.hero__title-l1, .hero__title-l2, .hero__title-l3 { display: block; }
.hero__title-l2 { padding-left: clamp(20px, 5vw, 80px); }
.hero__title-l3 { padding-left: clamp(40px, 9vw, 140px); }
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 50ch;
  margin: 0 0 32px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.hero__meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__avail {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(184, 60, 94, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(184, 60, 94, 0); }
}
.hero__scribble {
  display: inline-block;
  font-family: var(--script);
  font-size: 32px;
  color: var(--rose);
  margin-top: 20px;
  transform: rotate(-3deg);
}
.hero__scribble em {
  font-style: italic;
  color: var(--gold);
}

.hero__image {
  position: relative; margin: 0;
  z-index: 1;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px 4px 220px 220px / 4px 4px 320px 320px;
  box-shadow: 0 30px 80px rgba(110, 31, 53, 0.18),
              0 6px 20px rgba(110, 31, 53, 0.08);
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: -16px -16px 60% -16px;
  border: 1px solid rgba(184, 60, 94, 0.28);
  border-radius: 6px;
  pointer-events: none;
}
.hero__image figcaption {
  position: absolute;
  bottom: 32px; left: -8px;
  background: var(--cream);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--rose-deep);
  box-shadow: 0 12px 28px rgba(110, 31, 53, 0.15);
  transform: rotate(-3deg);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero__title-l2, .hero__title-l3 { padding-left: 0; }
}

/* ─── Marquee ────────────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marq 35s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
}
.marquee__track span {
  display: inline-flex;
  align-items: center;
}
.marquee__track span::after {
  content: "❀";
  margin-left: 48px;
  color: var(--blush-2);
  font-style: normal;
}
@keyframes marq {
  to { transform: translateX(-50%); }
}

/* ─── Stats ──────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: clamp(50px, 6vw, 90px) var(--pad-x);
  border-bottom: 1px solid rgba(184, 60, 94, 0.15);
}
.stats__item {
  text-align: center;
  padding: 0 clamp(10px, 2vw, 30px);
  border-right: 1px dashed rgba(184, 60, 94, 0.22);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1;
  color: var(--rose-deep);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-style: italic;
}
.stats__lbl {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; gap: 36px; }
  .stats__item { border-right: none; border-bottom: 1px dashed rgba(184, 60, 94, 0.22); padding-bottom: 36px; }
  .stats__item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ─── About ──────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: var(--section-y) var(--pad-x);
  align-items: center;
}
.about__photo { position: relative; margin: 0; }
.about__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(110, 31, 53, 0.2);
}
.about__tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rose);
}
.about__copy { max-width: 60ch; }
.about__kicker {
  display: block;
  font-family: var(--script);
  font-size: 32px;
  color: var(--rose);
  margin-bottom: 4px;
}
.about__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.about__title em { font-style: italic; color: var(--rose-deep); }
.about__copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.about__script {
  font-family: var(--script);
  color: var(--rose);
  font-size: 22px;
  display: inline;
}
.link-arrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
  transition: color 0.2s, transform 0.25s;
  margin-top: 8px;
}
.link-arrow:hover { color: var(--rose); transform: translateX(4px); }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
}

/* ─── Featured ───────────────────────────────────────── */
.featured {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  padding: var(--section-y) var(--pad-x);
  background: linear-gradient(160deg, var(--cream-2), var(--cream));
  align-items: center;
  position: relative;
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(248, 213, 218, 0.2) 14px 15px);
  pointer-events: none;
}
.featured__caption { position: relative; z-index: 1; }
.featured__kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); font-weight: 600;
  display: inline-block; margin-bottom: 24px;
}
.featured__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.featured__title em {
  font-style: italic;
  color: var(--rose-deep);
}
.featured__caption p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 30px;
  line-height: 1.7;
}
.featured__meta { display: flex; gap: 14px; flex-wrap: wrap; }
.featured__photo { margin: 0; position: relative; z-index: 1; }
.featured__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(110, 31, 53, 0.22);
}
.featured__photo figcaption {
  margin-top: 12px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-soft); text-align: center;
}
@media (max-width: 860px) {
  .featured { grid-template-columns: 1fr; }
}

/* ─── Try-on info ────────────────────────────────────── */
.tryon-info {
  padding: var(--section-y) var(--pad-x);
  display: flex;
  justify-content: center;
  background:
    radial-gradient(ellipse at top, rgba(184, 60, 94, 0.06) 0, transparent 60%),
    var(--cream);
  position: relative;
  border-top: 1px solid rgba(184, 60, 94, 0.12);
  border-bottom: 1px solid rgba(184, 60, 94, 0.12);
}
.tryon-info__inner {
  max-width: 760px;
  text-align: center;
}
.tryon-info__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.tryon-info__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.tryon-info__title em { font-style: italic; color: var(--rose-deep); }
.tryon-info p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 32px;
}
.tryon-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.tryon-info__list li {
  background: rgba(248, 213, 218, 0.4);
  padding: 22px 24px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  border: 1px solid rgba(184, 60, 94, 0.15);
}
.tryon-info__list span {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.tryon-info__list em { color: var(--rose); font-weight: 600; font-style: normal; }
@media (max-width: 720px) {
  .tryon-info__list { grid-template-columns: 1fr; }
}

/* ─── Gallery ────────────────────────────────────────── */
.gallery {
  padding: var(--section-y) var(--pad-x);
}
.gallery__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.gallery__kicker {
  display: inline-block;
  font-family: var(--script);
  font-size: 36px;
  color: var(--rose);
  transform: rotate(-2deg);
}
.gallery__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}
.gallery__head h2 em {
  font-style: italic;
  color: var(--rose-deep);
}
.gallery__sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.gallery__sub em {
  font-style: italic;
  color: var(--rose);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-2);
  box-shadow: 0 8px 22px rgba(110, 31, 53, 0.08);
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.3s;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(110, 31, 53, 0.18);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.tile:hover img { transform: scale(1.04); }
.tile__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  color: var(--rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  pointer-events: none;
}
.tile__tryon {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--rose);
  color: var(--cream);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(110, 31, 53, 0.3);
}
.tile__tryon:hover { background: var(--rose-deep); transform: translateY(-1px); }
.tile__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(42, 26, 31, 0.85), transparent);
  padding: 60px 16px 16px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tile:hover .tile__caption { opacity: 1; }
.tile.has-tryon .tile__caption { padding-bottom: 50px; }

/* per-tile editorial layout · all portrait-friendly (source media is 4:5 or 9:16) */
.tile:nth-child(1)  { grid-column: span 7; aspect-ratio: 4/5; }
.tile:nth-child(2)  { grid-column: span 5; aspect-ratio: 4/5; }
.tile:nth-child(3)  { grid-column: span 4; aspect-ratio: 3/4; }
.tile:nth-child(4)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(5)  { grid-column: span 4; aspect-ratio: 3/4; }
.tile:nth-child(6)  { grid-column: span 5; aspect-ratio: 4/5; }
.tile:nth-child(7)  { grid-column: span 7; aspect-ratio: 4/5; }
.tile:nth-child(8)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(9)  { grid-column: span 4; aspect-ratio: 1/1; }
.tile:nth-child(10) { grid-column: span 4; aspect-ratio: 3/4; }
.tile:nth-child(11) { grid-column: span 6; aspect-ratio: 4/5; }
.tile:nth-child(12) { grid-column: span 6; aspect-ratio: 4/5; }

@media (max-width: 720px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .tile { grid-column: span 6 !important; aspect-ratio: 3/4 !important; }
  .tile:nth-child(odd) { grid-column: span 3 !important; }
  .tile:nth-child(even) { grid-column: span 3 !important; }
}

/* ─── Pull quote ─────────────────────────────────────── */
.pullquote {
  padding: clamp(70px, 9vw, 130px) var(--pad-x);
  text-align: center;
  background: var(--ink);
  color: var(--cream);
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 26ch;
  margin: 0 auto;
  position: relative;
}
.pullquote__mark {
  display: block;
  font-size: 80px;
  color: var(--rose);
  line-height: 0.6;
  margin-bottom: 18px;
}
.pullquote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--script);
  font-size: 26px;
  color: var(--blush-2);
}

/* ─── Collabs ────────────────────────────────────────── */
.collabs {
  padding: var(--section-y) var(--pad-x);
}
.collabs__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 50px;
  text-align: center;
}
.collabs__title::after {
  content: " ❀";
  color: var(--rose);
}
.collabs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(42, 26, 31, 0.12);
}
.collabs__list li {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(42, 26, 31, 0.12);
  align-items: baseline;
  transition: background 0.2s, padding 0.2s;
}
.collabs__list li:hover {
  background: rgba(248, 213, 218, 0.25);
  padding-left: 12px;
}
.collabs__list span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--rose);
  font-variation-settings: "opsz" 144;
}
.collabs__list strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.collabs__list em {
  font-family: var(--sans);
  font-style: normal;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .collabs__list li {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }
  .collabs__list em {
    grid-column: 2;
  }
}

/* ─── Visit / form ───────────────────────────────────── */
.visit {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 90px);
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  align-items: start;
}
.visit__copy { padding-top: 12px; }
.visit__kicker {
  font-family: var(--script);
  font-size: 32px;
  color: var(--rose);
  display: block;
  margin-bottom: 6px;
}
.visit__copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.visit__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 50ch;
}
.visit__deets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(42, 26, 31, 0.12);
}
.visit__deets li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(42, 26, 31, 0.12);
  align-items: center;
}
.visit__deets span {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.visit__deets strong, .visit__deets a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.visit__deets a { color: var(--rose); border-bottom: 1px solid currentColor; }

.visit__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(110, 31, 53, 0.12);
  border: 1px solid rgba(184, 60, 94, 0.12);
}
.visit__form-wide { grid-column: 1 / -1; }
.visit__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.visit__form span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-soft);
}
.visit__form input,
.visit__form select,
.visit__form textarea {
  font: inherit;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(42, 26, 31, 0.2);
  border-radius: 2px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.visit__form input:focus,
.visit__form select:focus,
.visit__form textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: rgba(248, 213, 218, 0.15);
}
.visit__form textarea { font-family: var(--sans); resize: vertical; }
.visit__submit { grid-column: 1 / -1; justify-self: start; }
.visit__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  color: var(--rose-deep);
}
@media (max-width: 860px) {
  .visit { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .visit__form { grid-template-columns: 1fr; }
  .visit__deets li { grid-template-columns: 1fr; gap: 4px; }
}

/* ─── Footer ─────────────────────────────────────────── */
.foot {
  padding: 50px var(--pad-x) 36px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(248, 213, 218, 0.18);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.foot__brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
}
.foot__brand em {
  font-family: var(--script);
  color: var(--blush-2);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  margin-right: 6px;
}
.foot__addr, .foot__ig {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-2);
}
.foot__ig { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.foot__fine {
  margin: 0;
  font-size: 12px;
  color: rgba(248, 213, 218, 0.6);
  letter-spacing: 0.1em;
}

/* ─── Lightbox ───────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 10, 14, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox__inner { margin: 0; max-width: 92vw; max-height: 92vh; }
.lightbox__inner img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__inner figcaption {
  margin-top: 14px;
  text-align: center;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--rose); border-color: var(--rose); }

/* ─── Try-on modal ───────────────────────────────────── */
.tryon {
  position: fixed; inset: 0;
  background: rgba(20, 10, 14, 0.85);
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  backdrop-filter: blur(6px);
}
.tryon.is-open { display: flex; }
.tryon__sheet {
  background: var(--cream);
  width: min(1100px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 6px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  padding: clamp(24px, 3vw, 44px);
  position: relative;
}
.tryon__close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 5;
}
.tryon__close:hover { background: var(--ink); color: var(--cream); }
.tryon__head { margin-bottom: 24px; text-align: center; }
.tryon__kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); font-weight: 600;
  display: inline-block; margin-bottom: 6px;
  background: rgba(248, 213, 218, 0.5);
  padding: 4px 12px;
  border-radius: 999px;
}
.tryon__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 0;
  line-height: 1;
  color: var(--rose-deep);
}
.tryon__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tryon__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tryon__lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.tryon__product {
  margin: 0;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid rgba(184, 60, 94, 0.18);
}
.tryon__product img { width: 100%; height: 100%; object-fit: cover; }
.tryon__product-cap {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}
.tryon__drop {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  border: 2px dashed rgba(184, 60, 94, 0.45);
  border-radius: 4px;
  background: rgba(248, 213, 218, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.tryon__drop:hover {
  background: rgba(248, 213, 218, 0.35);
  border-color: var(--rose);
}
.tryon__drop-empty {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 6px;
}
.tryon__drop-icon { font-size: 38px; }
.tryon__drop-empty strong {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--ink);
}
.tryon__drop-empty em {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-style: normal;
}
.tryon__drop-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tryon__drop.has-file .tryon__drop-empty { display: none; }
.tryon__go { margin-top: 4px; align-self: stretch; justify-content: center; }
.tryon__hint {
  margin: 0;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tryon__result {
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(248, 213, 218, 0.4), rgba(200, 222, 241, 0.25));
  border: 1px solid rgba(184, 60, 94, 0.18);
  overflow: hidden;
  display: grid; place-items: center;
  position: relative;
}
.tryon__result img { width: 100%; height: 100%; object-fit: cover; }
.tryon__result-empty {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  padding: 0 16px;
}
.tryon__result.is-loading::after {
  content: "✨ stitching…";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(255, 246, 238, 0.75);
  font-family: var(--script);
  font-size: 28px;
  color: var(--rose);
  animation: shimmer 1.6s ease-in-out infinite;
}
@keyframes shimmer {
  50% { opacity: 0.5; }
}
.tryon__result.is-error {
  background: rgba(184, 60, 94, 0.08);
}
.tryon__result.is-error .tryon__result-empty {
  color: var(--rose-deep);
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
.tryon__save { justify-content: center; }
@media (max-width: 860px) {
  .tryon__body { grid-template-columns: 1fr; }
  .tryon__sheet { padding: 24px 18px; }
}

/* ─── Tile fade-in only ──────────────────────────────── */
.tile.pre-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.tile.pre-reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tile.pre-reveal { opacity: 1; transform: none; transition: none; }
}
