:root {
  --ivory: #f7f2eb;
  --paper: #fcf9f4;
  --sand: #ece3d6;
  --ink: #1e1815;
  --ink-soft: #4a403a;
  --muted: #8a7d72;
  --maroon: #7a2434;
  --maroon-deep: #5a1a27;
  --gold: #b3915c;
  --gold-soft: #d9c39a;
  --line: rgba(30, 24, 21, 0.12);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --max: 1280px;
  --gutter: clamp(16px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
::selection { background: var(--maroon); color: var(--ivory); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 400;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}
.serif-i { font-family: var(--serif); font-style: italic; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  color: var(--ivory);
  transition: background .4s ease, color .4s ease, padding .4s ease, box-shadow .4s ease;
  mix-blend-mode: normal;
}
.site-header.solid, .site-header.always-solid {
  background: rgba(252, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 14px var(--gutter);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  margin-top: 6px;
  opacity: .75;
  font-weight: 400;
}
.nav { display: flex; gap: 34px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; }
.nav a { position: relative; padding: 4px 0; opacity: .85; transition: opacity .3s; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width .35s ease; }
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; color: inherit; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; transition: transform .3s, opacity .3s; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; background: var(--maroon-deep); color: var(--ivory);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    font-size: 15px; transform: translateY(-100%); transition: transform .45s cubic-bezier(.77,0,.18,1);
  }
  .nav.open { transform: translateY(0); }
  /* backdrop-filter on the header would make it the containing block for the
     fixed nav overlay, clipping it to the header's height — drop it while open */
  .site-header.menu-open { color: var(--ivory); background: transparent; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header.menu-open .nav-toggle { position: relative; z-index: 2; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,10,.86) 0%, rgba(20,12,10,.42) 45%, rgba(20,12,10,.15) 100%);
}
@media (max-width: 700px) {
  .hero-media img { object-position: 50% 0%; }
  .hero-media::after { background: linear-gradient(to top, rgba(20,12,10,.94) 0%, rgba(20,12,10,.72) 50%, rgba(20,12,10,.2) 100%); }
}
.hero-content { position: relative; padding: 0 var(--gutter) clamp(48px, 8vh, 96px); max-width: var(--max); width: 100%; margin: 0 auto; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 22px; }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-size: clamp(64px, 12vw, 168px);
  letter-spacing: 0.06em;
  line-height: .9;
  font-weight: 300;
  text-transform: uppercase;
}
.hero h1 em { font-style: italic; text-transform: none; letter-spacing: 0; font-weight: 300; }
.hero-logo { margin: 0; line-height: 0; }
.hero-logo img {
  width: clamp(190px, 26vw, 330px); height: auto;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, .55));
  animation: markIn 1.4s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes markIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero p.lede {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  opacity: .92;
}
.hero-actions { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
  padding: 16px 28px; border: 1px solid currentColor; transition: background .3s, color .3s, border-color .3s;
}
.btn:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn.solid { background: var(--maroon); border-color: var(--maroon); color: var(--ivory); }
.btn.solid:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); color: var(--ivory); }
.btn.dark { color: var(--ink); }
.btn.dark:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 40px; writing-mode: vertical-rl; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; opacity: .7; display: flex; align-items: center; gap: 12px; }
.scroll-cue::after { content: ''; width: 1px; height: 48px; background: currentColor; animation: cue 2.2s infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* ---------- Ticker ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 40s linear infinite; padding: 14px 0; }
.ticker span { font-family: var(--serif); font-size: 18px; letter-spacing: .12em; text-transform: uppercase; padding: 0 30px; color: var(--ink-soft); }
.ticker span i { color: var(--gold); font-style: normal; padding-left: 30px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: clamp(72px, 10vw, 140px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(40px, 5.5vw, 76px); margin-top: 18px; letter-spacing: -0.01em; }
.section-head h2 em { font-style: italic; color: var(--maroon); }
.section-head p { margin-top: 18px; color: var(--ink-soft); max-width: 560px; font-size: 17px; }

/* Story */
.story { background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.story-media { position: sticky; top: 100px; }
.story-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 15%; }
.story-media figcaption { margin-top: 14px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.story-media .stamp {
  position: absolute; right: 18px; bottom: 18px; width: 116px; height: 116px; border-radius: 50%;
  background: var(--maroon); color: var(--ivory); display: grid; place-items: center; text-align: center;
  font-family: var(--serif); font-size: 15px; line-height: 1.15; letter-spacing: .06em; padding: 12px;
  animation: spin 24s linear infinite;
}
.story-media .stamp b { display: block; font-size: 28px; font-weight: 400; }
@keyframes spin { to { transform: rotate(360deg); } }
.story-text h2 { font-size: clamp(38px, 4.6vw, 62px); margin: 18px 0 30px; }
.story-text h2 em { font-style: italic; color: var(--maroon); }
.story-text p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 22px; max-width: 60ch; }
.story-text p.first::first-letter {
  font-family: var(--serif); font-size: 4.2em; float: left; line-height: .8; padding: 6px 10px 0 0; color: var(--maroon);
}
.pull { border-left: 1px solid var(--gold); padding: 6px 0 6px 26px; margin: 36px 0; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 32px); font-style: italic; line-height: 1.3; color: var(--ink); }
.pull small { display: block; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.ri-ne-stu { display: flex; gap: 6px; align-items: baseline; font-family: var(--serif); font-size: clamp(44px, 6vw, 80px); line-height: 1; margin: 30px 0 10px; letter-spacing: .02em; }
.ri-ne-stu b { font-weight: 400; color: var(--maroon); }
.ri-ne-stu span { color: var(--gold); font-size: .5em; align-self: center; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { position: static; }
  .story-media .stamp { right: 12px; bottom: 12px; width: 96px; height: 96px; font-size: 13px; }
  .story-media .stamp b { font-size: 22px; }
}

/* Values strip */
.values { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value h3 { font-size: 26px; margin-bottom: 8px; }
.value h3 em { color: var(--maroon); font-style: italic; }
.value p { font-size: 15px; color: var(--ink-soft); }
.value .num { font-family: var(--serif); font-size: 13px; letter-spacing: .3em; color: var(--gold); margin-bottom: 14px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

/* Collection */
.collection { background: var(--ivory); }
.collection .section-head { display: flex; flex-direction: column; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 32px) clamp(12px, 2vw, 24px);
}
.card { position: relative; display: block; }
.card .frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--sand); }
.card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), opacity .6s ease; }
.card img.alt { position: absolute; inset: 0; opacity: 0; }
.card:hover img.main { transform: scale(1.05); }
.card:hover img.alt { opacity: 1; transform: scale(1.05); }
.card .num { position: absolute; top: 12px; left: 12px; font-family: var(--serif); font-size: 13px; letter-spacing: .2em; color: var(--ivory); background: rgba(30,24,21,.55); padding: 4px 10px; backdrop-filter: blur(4px); }
.card .meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; }
.card h3 { font-size: 24px; letter-spacing: .02em; }
.card .meta span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.card:hover .meta span { color: var(--maroon); }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } .card h3 { font-size: 20px; } .card .meta span { display: none; } }

/* Rinestu band */
.rinestu { background: var(--maroon-deep); color: var(--ivory); position: relative; overflow: hidden; }
.rinestu::before {
  content: ''; position: absolute; right: -6vw; top: 50%; transform: translateY(-50%);
  width: clamp(320px, 46vw, 620px); aspect-ratio: 1; opacity: .045; pointer-events: none;
  background: url('../img/rinestu-logo-light.png') center / contain no-repeat;
}
.rinestu-mark { width: clamp(84px, 9vw, 116px); height: auto; margin-bottom: 26px; opacity: .95; }
.rinestu .wrap { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.rinestu .eyebrow { color: var(--gold-soft); }
.rinestu .eyebrow::before { background: var(--gold-soft); }
.rinestu h2 { font-size: clamp(40px, 5vw, 70px); margin: 18px 0 24px; }
.rinestu h2 em { font-style: italic; color: var(--gold-soft); }
.rinestu p { font-size: 17px; opacity: .88; margin-bottom: 18px; max-width: 54ch; }
.rinestu .letters { display: flex; gap: 22px; margin-top: 30px; }
.rinestu .letters div { border: 1px solid rgba(255,255,255,.22); padding: 18px 22px; min-width: 110px; }
.rinestu .letters b { display: block; font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 1; color: var(--gold-soft); }
.rinestu .letters span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; opacity: .75; }
.rinestu figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 10%; }
@media (max-width: 900px) { .rinestu .wrap { grid-template-columns: 1fr; } .rinestu figure { order: -1; } .rinestu .letters { flex-wrap: wrap; gap: 12px; } .rinestu .letters div { min-width: 90px; flex: 1; } }

/* Women */
.women { background: var(--paper); }
.women-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.person { text-align: center; }
.person .photo { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 50%; margin: 0 auto 22px; max-width: 320px; border: 1px solid var(--line); padding: 10px; background: var(--ivory); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: saturate(.92); transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s; }
.person h3 { font-size: 30px; }
.person .role { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.person p { font-size: 15px; color: var(--ink-soft); margin-top: 14px; max-width: 34ch; margin-left: auto; margin-right: auto; }
.person .cta { display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--maroon); border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
a.person:hover .photo img { transform: scale(1.06); filter: saturate(1); }
a.person .photo::after {
  content: 'Read her story'; position: absolute; inset: 10px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(90,26,39,.55); color: var(--ivory); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; opacity: 0; transition: opacity .4s;
}
a.person:hover .photo::after { opacity: 1; }
@media (max-width: 760px) { .women-grid { grid-template-columns: 1fr; gap: 48px; } .person .photo { max-width: 240px; } }

/* Visit */
.visit { background: var(--ivory); }
.visit .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.visit h2 { font-size: clamp(40px, 5vw, 70px); margin-top: 18px; }
.visit h2 em { font-style: italic; color: var(--maroon); }
.visit dl { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 10px; }
.visit dt { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.visit dd { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); line-height: 1.35; }
.visit dd a { border-bottom: 1px solid var(--gold-soft); transition: border-color .3s, color .3s; }
.visit dd a:hover { border-color: var(--maroon); color: var(--maroon); }
.visit dd small { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.visit .ig { display: inline-flex; align-items: center; gap: 12px; }
.visit .ig svg { width: 22px; height: 22px; }
.visit .map { aspect-ratio: 1; background: var(--sand); border: 1px solid var(--line); position: relative; overflow: hidden; }
.visit .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(.25) contrast(.95); }
@media (max-width: 900px) { .visit .wrap { grid-template-columns: 1fr; } .visit .map { aspect-ratio: 4 / 3; } }

/* Footer */
footer { background: var(--ink); color: var(--ivory); padding: 56px 0 28px; }
footer .wrap { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
footer .brand { font-size: 34px; }
footer .fine { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .55; margin-top: 14px; }
footer .links { display: flex; gap: 26px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; opacity: .8; }

/* ---------- Dress page ---------- */
.dress-page { padding-top: 88px; background: var(--ivory); }
.crumbs { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); padding: 20px 0 10px; display: flex; gap: 12px; align-items: center; }
.crumbs a:hover { color: var(--maroon); }
.dress-layout { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(30px, 5vw, 80px); align-items: start; padding-bottom: 100px; }
.dress-gallery { display: grid; gap: 14px; }
.dress-gallery figure { overflow: hidden; background: var(--sand); cursor: zoom-in; }
.dress-gallery img { width: 100%; height: auto; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.dress-gallery figure:hover img { transform: scale(1.02); }
.dress-info { position: sticky; top: 96px; }
.dress-info .num { font-family: var(--sans); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.dress-info h1 { font-size: clamp(56px, 7vw, 104px); line-height: .95; letter-spacing: -.01em; }
.dress-info h1::after { content: ''; display: block; width: 56px; height: 1px; background: var(--gold); margin: 26px 0; }
.dress-info .line { font-size: 18px; color: var(--ink-soft); max-width: 44ch; }
.dress-info .facts { margin-top: 30px; display: grid; gap: 14px; }
.dress-info .facts div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 12px; font-size: 13px; letter-spacing: .1em; }
.dress-info .facts span:first-child { text-transform: uppercase; letter-spacing: .26em; font-size: 11px; color: var(--muted); }
.dress-info .actions { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.dress-info .actions .btn { justify-content: center; }
.dress-nav { display: flex; justify-content: space-between; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; }
.dress-nav a { display: flex; flex-direction: column; gap: 6px; color: var(--muted); transition: color .3s; }
.dress-nav a:hover { color: var(--maroon); }
.dress-nav a b { font-family: var(--serif); font-size: 26px; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--ink); }
.dress-nav a.next { text-align: right; align-items: flex-end; }
@media (max-width: 900px) {
  .dress-layout { grid-template-columns: 1fr; }
  .dress-info { position: static; }
  .dress-gallery { grid-template-columns: 1fr 1fr; }
  .dress-gallery figure:first-child { grid-column: 1 / -1; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20,12,10,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox button { position: absolute; background: none; border: 0; color: var(--ivory); cursor: pointer; font-size: 14px; letter-spacing: .3em; text-transform: uppercase; padding: 14px; opacity: .8; transition: opacity .3s; }
.lightbox button:hover { opacity: 1; }
.lightbox .close { top: 18px; right: 18px; }
.lightbox .prev { left: 6px; top: 50%; transform: translateY(-50%); font-size: 34px; }
.lightbox .next { right: 6px; top: 50%; transform: translateY(-50%); font-size: 34px; }
.lightbox .count { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-family: var(--serif); letter-spacing: .3em; color: var(--ivory); opacity: .7; font-size: 13px; }

/* ---------- Profile page ---------- */
.profile-page { padding-top: 88px; }
.profile-hero { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 6vw, 100px); align-items: center; padding: clamp(40px, 6vw, 90px) 0; }
.profile-hero .photo { position: relative; }
.profile-hero .photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; }
.profile-hero .photo::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold-soft); z-index: -1; }
.profile-hero h1 { font-size: clamp(52px, 7vw, 100px); line-height: .95; margin-top: 18px; }
.profile-hero h1 em { font-style: italic; color: var(--maroon); }
.profile-hero .role { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-top: 20px; }
.profile-hero .intro { margin-top: 26px; font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; font-style: italic; color: var(--ink-soft); }
.profile-body { max-width: 720px; margin: 0 auto; padding: 0 0 clamp(72px, 10vw, 140px); }
.profile-body p { font-size: 18px; color: var(--ink-soft); margin-bottom: 24px; }
.profile-body p.first::first-letter { font-family: var(--serif); font-size: 4.2em; float: left; line-height: .8; padding: 6px 10px 0 0; color: var(--maroon); }
.profile-body h2 { font-size: clamp(30px, 3.4vw, 42px); margin: 48px 0 18px; }
.profile-body h2 em { font-style: italic; color: var(--maroon); }
.profile-body .sig { font-family: var(--serif); font-style: italic; font-size: 32px; margin-top: 36px; color: var(--maroon); }
.profile-body .sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
@media (max-width: 800px) { .profile-hero { grid-template-columns: 1fr; } .profile-hero .photo { max-width: 360px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img, .ticker-track, .story-media .stamp { animation: none; }
}

/* ---------- Order block (dress page) ---------- */
.order { margin-top: 34px; }
.order-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.order-label { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.size-link { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--maroon); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; cursor: pointer; }
.size-link:hover { border-color: var(--maroon); }
.size-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.size-opt {
  font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 300;
  padding: 11px 16px; min-width: 52px; background: none; cursor: pointer;
  border: 1px solid var(--line); color: var(--ink-soft);
  transition: border-color .25s, background .25s, color .25s;
}
.size-opt:hover { border-color: var(--maroon); color: var(--maroon); }
.size-opt.selected { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.order .actions { margin-top: 22px; }
.order-note { margin-top: 16px; font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ---------- Size guide modal ---------- */
.size-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(20,12,10,.6); backdrop-filter: blur(3px); }
.size-modal.open { display: flex; }
.size-panel {
  position: relative; background: var(--paper); max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(0,0,0,.28);
}
.size-close { position: absolute; top: 14px; right: 14px; background: none; border: 0; font-size: 15px; color: var(--muted); cursor: pointer; padding: 10px; line-height: 1; }
.size-close:hover { color: var(--maroon); }
.size-panel h2 { font-size: clamp(32px, 4vw, 44px); margin: 14px 0 18px; }
.size-panel h2 em { font-style: italic; color: var(--maroon); }
.size-panel h3 { font-size: 24px; margin: 34px 0 14px; }
.size-intro { font-size: 15px; color: var(--ink-soft); }
.size-table-wrap { margin-top: 24px; overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 340px; }
.size-table th, .size-table td { padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.size-table th { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.size-table td { font-family: var(--serif); font-size: 19px; }
.size-table tbody tr:hover { background: var(--sand); }
.size-howto { display: grid; gap: 14px; }
.size-howto dt { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--maroon); margin-bottom: 3px; }
.size-howto dd { font-size: 15px; color: var(--ink-soft); }
.size-foot { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--maroon); color: var(--ivory); padding: 13px 20px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(90,26,39,.32); transition: background .3s, transform .3s;
}
.wa-float:hover { background: var(--maroon-deep); transform: translateY(-2px); }
.wa-float svg { width: 19px; height: 19px; flex: none; }
@media (max-width: 640px) {
  .wa-float { right: 14px; bottom: 14px; padding: 14px; border-radius: 50%; }
  .wa-float span { display: none; }
  .wa-float svg { width: 22px; height: 22px; }
}
@media print { .wa-float, .site-header { display: none; } }
@media (max-width: 520px) {
  .size-panel { padding: 30px 20px; }
  .size-table { min-width: 0; }
  .size-table th, .size-table td { padding: 11px 4px; }
  .size-table td { font-size: 17px; }
  .size-table th { letter-spacing: .12em; }
}
