* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
em { font-weight: 400; }
.wrap { width: var(--content); margin-inline: auto; }
.section { padding-block: var(--section-pad); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--black); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.global-announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .55rem 1rem;
  background: var(--pink);
  color: var(--ink);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.global-announcement:hover, .global-announcement:focus-visible { background: var(--pink-deep); }
.eyebrow, .section-index, .card-kicker, .footer-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-index { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: var(--accent-dark); color: var(--accent-ink); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--black); }
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-block: .2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: opacity .3s ease;
}
.text-link:hover, .text-link:focus-visible { opacity: .58; }

.site-header {
  position: fixed;
  inset: 38px 0 auto 0;
  z-index: 80;
  transition: background-color .35s ease, border-color .35s ease;
}
.site-header.scrolled { background: rgba(253, 238, 246, .94); border-bottom: 1px solid var(--border); backdrop-filter: blur(14px); }
.nav-inner {
  width: min(95vw, 1450px);
  height: 90px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { width: 102px; height: auto; }
.brand span { border-left: 1px solid currentColor; padding-left: .65rem; font-family: var(--font-display); font-size: .95rem; font-style: italic; }
.nav-links { display: flex; justify-content: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.nav-links a, .nav-social { position: relative; font-family: var(--font-display); font-size: .88rem; letter-spacing: .035em; }
.nav-links a::after, .nav-social::after { content: ""; position: absolute; left: 0; bottom: -.3rem; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-social:hover::after, .nav-social:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.menu-button { display: none; border: 0; background: transparent; color: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }

.hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 48%) minmax(0, 52%); background: var(--pink); position: relative; overflow: hidden; }
.hero-copy { position: relative; display: grid; grid-template-columns: 56px 1fr; min-height: 100svh; padding-top: 128px; }
.issue-label { border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 2rem 0 3rem; color: var(--ink-soft); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-copy-inner { display: flex; flex-direction: column; justify-content: flex-start; padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 5vw, 6rem) 2rem; position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: clamp(1rem, 2vh, 1.75rem); }
.hero h1 { font-size: var(--h1); max-width: none; }
.hero h1 em { display: inline; font-style: italic; color: var(--accent-dark); }
.hero-lede { max-width: 540px; margin-top: clamp(1.25rem, 2.5vh, 2.2rem); color: var(--ink-soft); font-size: clamp(.95rem, 1.25vw, 1.08rem); }
.hero-tagline { max-width: 420px; margin-top: .85rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(1rem, 1.4vw, 1.2rem); font-style: italic; line-height: 1.45; }
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: clamp(1.25rem, 3vh, 2.4rem); }
.hero-visual { position: relative; min-height: 100svh; background: var(--surface); overflow: visible; }
.hero-main-img { position: absolute; inset: 0; background: linear-gradient(150deg, var(--pink), var(--surface-2)); overflow: hidden; }
.hero-main-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(50, 25, 31, .1), transparent 45%), linear-gradient(0deg, rgba(36, 15, 20, .16), transparent 35%); }
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(.84) contrast(.96) brightness(1.05); }
.hero-collage { position: absolute; left: -9%; bottom: 7%; width: min(68%, 470px); aspect-ratio: 4/5; z-index: 3; }
.hero-look { position: absolute; margin: 0; background: var(--surface); padding: .5rem; box-shadow: var(--shadow); }
.hero-look img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--pink); }
.hero-look-primary { inset: 0 auto auto 0; width: 64%; aspect-ratio: 4/5; transform: rotate(-1.4deg); }
.hero-look-primary img { object-position: center 42%; }
.hero-word { position: absolute; right: -1rem; bottom: -1rem; z-index: 2; color: rgba(255,255,255,.72); font-family: var(--font-display); font-size: clamp(5rem, 11vw, 11rem); letter-spacing: -.04em; line-height: .8; writing-mode: vertical-rl; }
.scroll-cue { position: absolute; left: 28px; bottom: 1rem; z-index: 4; transform: translateX(-50%); font-size: 1.25rem; }

.intro { background: var(--surface); }
.intro-grid { display: grid; grid-template-columns: minmax(160px, 1fr) minmax(0, 3fr); gap: 2rem; }
.intro-copy { max-width: 920px; }
.intro-copy .eyebrow { margin-bottom: 2rem; color: var(--accent); }
.intro h2 { font-size: var(--h2); }
.intro h2 em { color: var(--accent); }
.intro .dropcap { max-width: 820px; margin: 2.2rem 0 0 auto; font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.55; }
.intro .dropcap::first-letter { float: left; margin: .1em .16em 0 0; color: var(--accent); font-family: var(--font-display); font-size: 4.6em; line-height: .72; }
.holistic-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.holistic-notes div { display: grid; align-content: start; gap: .75rem; min-height: 180px; padding: 1.4rem 1.25rem; border-right: 1px solid var(--border); }
.holistic-notes div:last-child { border-right: 0; }
.holistic-notes span { color: var(--accent); font-size: .62rem; letter-spacing: .12em; }
.holistic-notes strong { font-family: var(--font-display); font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 500; line-height: 1.25; }
.holistic-notes small { color: var(--ink-soft); font-size: .78rem; line-height: 1.6; }

.collection { background: var(--black); color: var(--surface); }
.collection-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 4rem; margin-bottom: clamp(3rem, 6vw, 6rem); }
.collection h2 { font-size: var(--h2); margin-top: 1.4rem; }
.collection h2 em { color: var(--pink); }
.collection-copy { max-width: 540px; display: grid; gap: 1.1rem; }
.collection-intro { color: var(--pink); font-family: var(--font-display); font-size: clamp(1rem, 1.5vw, 1.3rem); }
.collection-copy p:not(.collection-intro) { color: #cdbec1; font-size: .92rem; line-height: 1.7; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.25); }
.edit-card { min-height: 300px; position: relative; padding: clamp(1.4rem, 3vw, 3rem); background: var(--black); }
.edit-card > span { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .7rem; letter-spacing: .15em; }
.edit-card h3 { margin-top: auto; font-size: var(--h3); }
.edit-card p { color: #d4c7ca; }
.edit-card-image { grid-column: 1 / -1; min-height: 0; aspect-ratio: 1024 / 681; padding: 0; overflow: hidden; }
.edit-card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(.94); }
.edit-card-caption { position: absolute; inset: auto 0 0; padding: 4rem 2rem 2rem; background: linear-gradient(transparent, rgba(20,11,13,.82)); }
.edit-card-caption span { display: block; margin-bottom: 1rem; font-size: .7rem; letter-spacing: .16em; }
.edit-card-caption h3 { margin-bottom: .75rem; }
.edit-card-text, .edit-card-pink, .edit-card-cream { display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; }
.edit-card .card-kicker { margin-bottom: 1.1rem; color: inherit; }
.edit-card-text h3, .edit-card-pink h3, .edit-card-cream h3 { margin-bottom: .9rem; }
.edit-card-text .text-link, .edit-card-pink .text-link { align-self: flex-start; margin-top: 1.4rem; }
.edit-card-pink { background: var(--pink); color: var(--ink); }
.edit-card-pink p { color: #5a4248; }
.edit-card-cream { background: var(--surface-2); color: var(--ink); }
.edit-card-cream p { color: var(--ink-soft); }

.story { position: relative; background: var(--pink); overflow: hidden; }
.story-word { position: absolute; left: -1.5vw; top: -4rem; color: rgba(255,255,255,.42); font-family: var(--font-display); font-size: clamp(8rem, 22vw, 22rem); line-height: 1; letter-spacing: -.08em; }
.story-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.founder-image { width: min(100%, 500px); margin-top: 5rem; }
.founder-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(.75) contrast(.95); box-shadow: var(--shadow); }
.founder-image figcaption { margin-top: .8rem; font-family: var(--font-display); font-size: .75rem; font-style: italic; }
.story-copy { padding-top: 3rem; }
.story h2 { margin-top: 1.5rem; font-size: var(--h2); }
.story h2 em { color: var(--accent-dark); }
.story-copy > p:not(.section-index) { max-width: 690px; margin-top: 1.35rem; font-size: 1rem; }
.story-copy .story-close { margin-bottom: 2rem; }
.story-copy .text-link { margin-top: .4rem; }
.story-notes { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.story-notes div { display: grid; gap: .8rem; padding: 1.25rem .8rem; border-right: 1px solid var(--border); }
.story-notes div:last-child { border-right: 0; }
.story-notes span { color: var(--accent); font-size: .62rem; }
.story-notes strong { font-family: var(--font-display); font-size: clamp(.9rem, 1.4vw, 1.2rem); font-style: italic; font-weight: 400; }

.styling { background: var(--surface-2); }
.styling-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.styling h2 { margin-top: 1.1rem; font-size: var(--h2); }
.styling h2 em { color: var(--accent); }
.styling-copy .eyebrow { margin-top: 1.1rem; color: var(--accent); }
.styling-copy > p:not(.section-index) { max-width: 620px; margin-top: 1.35rem; }
.styling-copy .bottega-lead { font-family: var(--font-display); font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.45; }
.styling-copy .bottega-close { max-width: 540px; }
.styling-copy .bottega-offer { max-width: 420px; }
.styling-list { margin-top: 3rem; border-top: 1px solid var(--border); }
.styling-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.styling-list > div > span { color: var(--accent); font-size: .65rem; padding-top: .2rem; }
.styling-list p { display: grid; gap: .25rem; }
.styling-list strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.styling-list small { color: var(--ink-soft); font-size: .8rem; }
.opening-image { position: relative; background: var(--pink); padding: .8rem; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.opening-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; filter: saturate(.8); }
.opening-image figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem .25rem .15rem; font-family: var(--font-display); font-size: .72rem; }

.location { background: var(--pink); }
.location-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.location h2 { max-width: 7.5ch; margin-top: 1.5rem; font-size: clamp(3.3rem, 6.3vw, 6.4rem); }
.location h2 em { color: var(--accent-dark); }
.location address { margin-top: 2.4rem; font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-style: normal; line-height: 1.55; }
.location-copy { max-width: 460px; margin-top: 1.25rem; color: var(--ink-soft); }
.location-title .btn { margin-top: 2rem; }
.map-showcase { position: relative; min-height: clamp(580px, 53vw, 690px); overflow: hidden; border: 1px solid var(--border); background: var(--surface-2); box-shadow: var(--shadow); }
.map-canvas { position: absolute; inset: 0; overflow: hidden; background: #f4ece7; }
.map-canvas-image { position: absolute; inset: -4%; width: 108%; max-width: none; height: 108%; object-fit: cover; filter: grayscale(1) sepia(.32) saturate(.55) contrast(.8); opacity: .22; }
.map-canvas::before { content: ""; position: absolute; inset: -15%; z-index: 1; background: linear-gradient(71deg, transparent 38%, rgba(183, 156, 142, .22) 38.4%, rgba(183, 156, 142, .22) 40.2%, transparent 40.6%), linear-gradient(103deg, transparent 55%, rgba(183, 156, 142, .2) 55.4%, rgba(183, 156, 142, .2) 57%, transparent 57.4%), linear-gradient(166deg, transparent 33%, rgba(183, 156, 142, .18) 33.5%, rgba(183, 156, 142, .18) 35.5%, transparent 36%); }
.map-canvas::after { content: ""; position: absolute; left: -12%; top: 48%; z-index: 1; width: 128%; height: 10%; border-block: 1px solid rgba(102, 173, 185, .22); background: rgba(200, 231, 233, .7); transform: rotate(-7deg); }
.map-search { position: absolute; top: 4%; left: 4%; right: 4%; z-index: 5; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .9rem; min-height: 58px; padding: .8rem 1.1rem; background: rgba(255,255,255,.96); box-shadow: 0 14px 36px rgba(64, 44, 48, .12); font-size: .88rem; }
.google-mark { display: grid; place-items: center; width: 23px; height: 23px; border: 2px solid #4285f4; border-radius: 50%; color: #4285f4; font-size: .72rem; font-weight: 800; line-height: 1; }
.map-search-arrow { color: var(--accent-dark); font-size: 1rem; }
.map-pin { position: absolute; left: 54%; top: 45%; z-index: 3; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50% 50% 50% 8px; background: var(--accent-dark); color: white; box-shadow: 0 10px 24px rgba(77, 37, 47, .24); font-family: var(--font-display); font-size: 1.15rem; transform: translate(-50%, -50%) rotate(-45deg); }
.map-pin { color: transparent; }
.map-pin::after { content: "S"; color: white; transform: rotate(45deg); }
.map-city { position: absolute; left: 54%; top: 53%; z-index: 3; color: var(--accent-dark); font-size: .62rem; font-weight: 700; letter-spacing: .23em; transform: translateX(-50%); }
.map-business-card { position: absolute; left: 4%; right: 4%; bottom: 4%; z-index: 5; display: grid; grid-template-columns: 112px 1fr; gap: 1rem; align-items: center; min-height: 128px; padding: .85rem; background: rgba(255,255,255,.97); box-shadow: 0 14px 36px rgba(64, 44, 48, .13); }
.map-business-card > img { width: 112px; height: 100px; object-fit: cover; object-position: center; }
.map-business-card > .map-business-logo { object-fit: contain; padding: 1rem; background: var(--pink); }
.map-business-copy { display: grid; gap: .22rem; min-width: 0; }
.map-business-kicker { color: var(--accent); font-size: .56rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.map-business-copy strong { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 400; line-height: 1.08; }
.map-business-copy > span:not(.map-business-kicker) { color: var(--ink-soft); font-size: .72rem; }
.map-business-copy small { margin-top: .25rem; color: var(--accent-dark); font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.map-search:hover, .map-search:focus-visible, .map-business-card:hover, .map-business-card:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: -2px; }

.closing { background: var(--accent-dark); color: var(--surface); text-align: center; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing h2 { margin-top: 1.5rem; font-size: var(--h2); }
.closing h2 em { color: var(--pink); }
.closing-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.btn-light { background: var(--pink); color: var(--ink); }
.btn-light:hover, .btn-light:focus-visible { background: var(--surface); }
.light-link { color: var(--surface); }

.site-footer { position: relative; overflow: hidden; background: var(--black); color: #e9dfe1; padding: 7rem 0 2rem; }
.footer-word { position: absolute; top: -3rem; left: -1rem; color: rgba(250,209,214,.08); font-family: var(--font-display); font-size: clamp(10rem, 28vw, 28rem); line-height: 1; letter-spacing: -.08em; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-top: 7rem; }
.footer-grid img { width: 115px; height: auto; filter: invert(1); margin-bottom: 1rem; }
.footer-grid p, .footer-grid a { font-size: .8rem; }
.footer-grid > div > p:not(.footer-label) { color: #a99a9e; max-width: 280px; }
.footer-label { color: var(--pink); margin-bottom: .9rem; }
.footer-grid a { border-bottom: 1px solid rgba(255,255,255,.3); }
.footer-base { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 2rem; margin-top: 5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); color: #8c7f82; font-size: .68rem; }
.footer-base p:last-child { max-width: 600px; text-align: right; }
.reveal { opacity: 0; transform: translateY(var(--reveal-rise)); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease); }
.reveal.from-left { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * var(--stagger)); }
.clip-ready { clip-path: inset(0 100% 0 0); transition: clip-path 1.15s var(--ease); }
.clip-ready.in { clip-path: inset(0 0 0 0); }
.kb img { animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1) translate(-1.5%, -1%); } }

@media (min-width: 781px) {
  .hero { height: 100svh; max-height: 100svh; }
  .hero-copy, .hero-visual { min-height: 0; height: 100%; }
  .hero-copy-inner { min-height: 0; justify-content: center; padding: clamp(1rem, 3.4vh, 2.6rem) clamp(1.5rem, 5vw, 5.5rem) clamp(1.2rem, 3vh, 2rem); }
  .hero h1 { font-size: clamp(3.2rem, min(8.4vw, 10vh), 7.6rem); max-width: none; }
  .hero-lede { margin-top: clamp(1rem, 2.2vh, 1.8rem); }
  .hero-tagline { margin-top: .7rem; }
  .hero-ctas { margin-top: clamp(1rem, 2.4vh, 1.8rem); }
}

@media (min-width: 781px) and (max-height: 820px) {
  .nav-inner { height: 72px; }
  .hero-copy { padding-top: 110px; }
  .hero-copy-inner { padding-top: 1rem; padding-bottom: 1rem; }
  .hero-copy .eyebrow { margin-bottom: .75rem; }
  .hero h1 { font-size: clamp(3.4rem, 9.6vh, 5.4rem); }
  .hero-lede { margin-top: 1rem; font-size: .9rem; line-height: 1.5; }
  .hero-tagline { margin-top: .55rem; font-size: 1rem; }
  .hero-ctas { margin-top: 1rem; }
  .hero-ctas .btn { min-height: 46px; }
  .issue-label { padding-block: 1.25rem 2rem; }
}

@media (min-width: 781px) and (max-height: 680px) {
  .hero-copy { padding-top: 104px; }
  .hero-copy-inner { padding-block: .7rem .8rem; }
  .hero h1 { font-size: clamp(2.9rem, 8.4vh, 4.2rem); }
  .hero-lede { margin-top: .7rem; }
  .hero-tagline { margin-top: .4rem; }
  .hero-ctas { margin-top: .7rem; }
}

@media (min-width: 781px) and (max-height: 650px) {
  .hero-collage { width: min(56%, 360px); bottom: 6%; }
}

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-actions { justify-self: end; }
  .hero { grid-template-columns: 53% 47%; }
  .hero-copy { grid-template-columns: 40px 1fr; }
  .hero-copy-inner { padding-inline: clamp(1.2rem, 4vw, 3rem); }
  .hero-collage { left: -15%; width: 78%; }
  .story-grid, .styling-grid { gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { grid-column: 2; }
}

@media (max-width: 780px) {
  .section { padding-block: clamp(4.5rem, 18vw, 7rem); }
  .nav-inner { height: 72px; width: 91vw; }
  .brand img { width: 86px; }
  .brand span { font-size: .78rem; }
  .nav-social { display: none; }
  .global-announcement { min-height: 42px; font-size: .63rem; }
  .site-header { top: 42px; }
  .hero { min-height: auto; display: block; padding-top: 114px; }
  .hero-copy { min-height: auto; grid-template-columns: 1fr; padding-top: 0; }
  .issue-label { display: none; }
  .hero-copy-inner { min-height: 63svh; justify-content: flex-start; padding: 2rem 5vw 3.5rem; }
  .hero h1 { font-size: clamp(2.7rem, 12.4vw, 4.4rem); max-width: none; }
  .hero-lede { font-size: .92rem; line-height: 1.65; }
  .hero-ctas { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .text-link { align-self: flex-start; }
  .hero-visual { min-height: 78svh; overflow: visible; }
  .hero-main-img { inset: 0; }
  .hero-main-img img { object-position: center 48%; }
  .hero-collage { left: 5vw; bottom: 2%; width: min(70vw, 330px); }
  .hero-look { padding: .38rem; }
  .hero-word { right: -2rem; bottom: .5rem; font-size: 6rem; }
  .scroll-cue { display: none; }
  .intro { padding-top: 6rem; }
  .intro-grid, .collection-head, .story-grid, .styling-grid, .location-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 2.5rem; }
  .intro h2, .collection h2, .story h2, .styling h2, .location h2, .closing h2 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .intro .dropcap { margin-left: 0; font-size: 1.12rem; }
  .intro .dropcap::first-letter { float: none; margin: 0; color: inherit; font-size: 1em; line-height: inherit; }
  .holistic-notes { grid-template-columns: 1fr; margin-top: 2.5rem; }
  .holistic-notes div { min-height: 0; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .holistic-notes div:last-child { border-bottom: 0; }
  .reveal.from-left, .reveal.from-right { transform: translateY(var(--reveal-rise)); }
  .collection-head { gap: 2rem; }
  .editorial-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .edit-card { min-height: 440px; }
  .edit-card-image { grid-column: auto; grid-row: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .edit-card-text, .edit-card-pink, .edit-card-cream { min-height: 360px; }
  .story-word { top: 1rem; }
  .founder-image { width: 82%; margin: 2rem 0 0 auto; }
  .story-copy { padding-top: 0; }
  .story-notes { grid-template-columns: 1fr 1fr; }
  .story-notes div:nth-child(2) { border-right: 0; }
  .story-notes div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .styling-grid { display: flex; flex-direction: column; }
  .opening-image { width: 91%; align-self: flex-end; margin-top: 1rem; }
  .location-grid { gap: 2.5rem; }
  .location h2 { max-width: 8.5ch; font-size: clamp(3rem, 14vw, 4.7rem); }
  .location-title .btn { width: 100%; }
  .map-showcase { min-height: 560px; margin-inline: -1.5vw; }
  .map-search { top: 1rem; left: 1rem; right: 1rem; min-height: 56px; }
  .map-business-card { left: 1rem; right: 1rem; bottom: 1rem; grid-template-columns: 84px 1fr; gap: .8rem; min-height: 116px; padding: .7rem; }
  .map-business-card > img { width: 84px; height: 92px; }
  .map-business-copy strong { font-size: 1.25rem; }
  .map-business-copy > span:not(.map-business-kicker) { font-size: .66rem; line-height: 1.4; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 4rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(4) { grid-column: auto; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .footer-base p:last-child { text-align: left; }
}

@media (max-width: 430px) {
  .nav-actions { gap: .5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .practical-list div { grid-template-columns: 95px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .clip-ready { clip-path: none; }
}

/* Multi-page Firenze extension */
.page-hero { padding: clamp(8rem, 12vw, 11rem) 0 clamp(5rem, 8vw, 8rem); background: var(--pink); overflow: hidden; }
.page-hero-grid { min-height: min(680px, 72vh); display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); }
.page-hero-grid-reverse .page-hero-image { order: -1; }
.page-hero-copy { position: relative; z-index: 2; }
.page-hero-copy h1 { max-width: 9.5ch; margin: 1.5rem 0 2rem; font-size: clamp(4rem, 7.7vw, 8rem); }
.page-hero-copy h1 em { color: var(--accent-dark); }
.page-hero-copy address { margin: 0 0 2rem; font-family: var(--font-display); font-size: clamp(1.15rem, 1.7vw, 1.5rem); font-style: normal; line-height: 1.5; }
.page-lede, .large-copy { max-width: 590px; margin-bottom: 2rem; color: var(--ink-soft); font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.45rem); line-height: 1.55; }
.page-hero-image { position: relative; min-height: 560px; margin: 0; background: var(--surface); box-shadow: var(--shadow); }
.page-hero-image::before { content: ""; position: absolute; inset: -1rem 1.2rem 1rem -1.2rem; border: 1px solid rgba(98,93,102,.38); pointer-events: none; }
.page-hero-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.page-hero-image figcaption, .look-image figcaption { position: absolute; right: 0; bottom: 0; padding: .8rem 1rem; background: var(--surface); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.page-hero-portrait img { object-position: center 20%; }
.page-hero-boutique img { object-position: center; }
.page-hero-collection { background: var(--surface-2); }
.page-hero-boutique { background: var(--surface); }
.page-hero-firenze { background: var(--pink); }
.page-hero-candidatura { background: var(--surface-2); }
.section-heading-split { display: grid; grid-template-columns: minmax(160px, .7fr) minmax(0, 2fr); gap: 3rem; margin-bottom: 4rem; }
.section-heading-split h2, .personal-note h2, .look-section h2, .collection-feature h2, .visit-details h2, .home-location h2 { margin: 1.2rem 0 2rem; font-size: var(--h2); }
.process-section { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid-four { grid-template-columns: repeat(2, 1fr); }
.process-card { min-height: 330px; padding: 2rem; border-right: 1px solid var(--border); }
.process-card:last-child { border-right: 0; }
.process-grid-four .process-card:nth-child(2n) { border-right: 0; }
.process-grid-four .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.process-card > span { color: var(--accent); font-size: .7rem; letter-spacing: .14em; }
.process-card h3 { margin: 5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.process-card p { color: var(--ink-soft); }
.personal-note { background: var(--bg); }
.personal-note-grid, .look-grid, .collection-feature-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.personal-note-image, .look-image, .collection-feature-image { position: relative; margin: 0; }
.personal-note-image img, .look-image img, .collection-feature-image img { width: 100%; max-height: 760px; object-fit: cover; }
.service-note { margin: 2rem 0; padding: 1.4rem 1.5rem; border-left: 3px solid var(--accent); background: rgba(255,250,248,.68); }
.service-note strong { display: block; margin-bottom: .4rem; font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.service-note p { color: var(--ink-soft); font-size: .86rem; }
.look-section { background: var(--surface-2); }
.detail-list { margin: 2rem 0; border-top: 1px solid var(--border); }
.detail-list div { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.detail-list strong { font-family: var(--font-display); font-weight: 500; }
.detail-list span { color: var(--ink-soft); }
.collection-feature { background: var(--surface); }
.collection-feature-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.home-location { background: var(--pink); }
.home-location-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.home-location-copy address { margin: 1.5rem 0; font-family: var(--font-display); font-size: 1.3rem; font-style: normal; }
.home-location-copy .location-kicker { margin: 0 0 .4rem; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-style: italic; line-height: 1.45; }
.home-location-copy > p:not(.section-index):not(.location-kicker) { margin-bottom: 2rem; color: var(--ink-soft); }
.home-map-preview { position: relative; min-height: 520px; overflow: hidden; background: #e7ddd6; box-shadow: var(--shadow); }
.home-map-preview > img { width: 100%; height: 520px; object-fit: cover; filter: sepia(.16) saturate(.72) contrast(.95); }
.home-map-preview > strong { position: absolute; right: 1rem; bottom: 1rem; padding: .8rem 1rem; background: var(--surface); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.home-map-preview .map-pin { position: absolute; left: 50%; top: 45%; }
.visit-details { background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5rem; }
.visit-facts { border-top: 1px solid var(--border); }
.visit-facts > div { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.visit-facts span { color: var(--accent); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.visit-facts strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; line-height: 1.45; }
.visit-note { margin-top: 4rem; }
.page-collection .editorial-grid { grid-template-columns: repeat(4, 1fr); }
.page-collection .edit-card-image { grid-column: 1 / -1; }

.tiktok-guides { background: var(--surface); }
.tiktok-guides-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.tiktok-guides h2, .firenze-story h2, .application-intro h2 { margin-top: 1.2rem; font-size: var(--h2); }
.tiktok-guides h2 em, .firenze-story h2 em, .application-intro h2 em { color: var(--accent); }
.tiktok-guides-intro { max-width: 520px; }
.tiktok-guides-intro p { margin-bottom: 1.5rem; color: var(--ink-soft); }
.tiktok-placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 2.5rem); }
.tiktok-placeholder { position: relative; }
.tiktok-number { position: absolute; top: 1rem; right: 1rem; z-index: 2; color: var(--pink); font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.tiktok-frame { aspect-ratio: 9 / 16; display: flex; flex-direction: column; justify-content: space-between; padding: 1.2rem; background: linear-gradient(165deg, var(--black), var(--accent-dark)); color: var(--pink); border: 1px solid var(--border); }
.tiktok-frame span { font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.tiktok-frame strong { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); font-style: italic; font-weight: 400; line-height: .9; }
.tiktok-placeholder h3 { margin-top: 1.25rem; font-size: clamp(1.45rem, 2.5vw, 2.2rem); }
.tiktok-placeholder p { margin-top: .4rem; color: var(--ink-soft); font-size: .82rem; }

.firenze-story { background: var(--surface-2); }
.firenze-story-grid { display: grid; grid-template-columns: minmax(170px, .6fr) minmax(0, 2fr); gap: 4rem; }
.firenze-story-copy { max-width: 960px; }
.firenze-story-copy .large-copy { margin-top: 2rem; }
.firenze-story-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.firenze-story-notes article { min-height: 250px; padding: 1.6rem; border-right: 1px solid var(--border); }
.firenze-story-notes article:last-child { border-right: 0; }
.firenze-story-notes span { color: var(--accent); font-size: .65rem; letter-spacing: .12em; }
.firenze-story-notes h3 { margin: 3rem 0 1rem; font-size: clamp(1.45rem, 2.3vw, 2rem); }
.firenze-story-notes p { color: var(--ink-soft); font-size: .85rem; }

.language-switcher { display: inline-flex; gap: .35rem; margin-bottom: 2rem; padding: .25rem; border: 1px solid var(--border); }
.language-button { min-width: 44px; min-height: 38px; border: 0; background: transparent; color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .1em; cursor: pointer; }
.language-button.active, .language-button:hover, .language-button:focus-visible { background: var(--accent-dark); color: var(--pink); }
.role-brief { background: var(--surface-2); }
.role-brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem) clamp(3rem, 7vw, 7rem); }
.role-profile {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.role-profile-image { position: relative; margin: 0; background: var(--surface); box-shadow: var(--shadow); }
.role-profile-image::before { content: ""; position: absolute; inset: -1rem 1.2rem 1rem -1.2rem; border: 1px solid rgba(98,93,102,.38); pointer-events: none; }
.role-profile-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center top; }
.role-profile-image figcaption { position: absolute; right: 0; bottom: 0; padding: .8rem 1rem; background: var(--surface); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.role-block h2 {
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.role-block p {
  margin: 0 0 1.35rem;
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.65;
}
.role-block p:last-child { margin-bottom: 0; }
.role-list { margin: .4rem 0 0; padding: 0; list-style: none; }
.role-list li {
  position: relative;
  margin: 0;
  padding: .85rem 0 .85rem 1.3rem;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.55;
}
.role-list li:last-child { border-bottom: 1px solid var(--border); }
.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: .45rem;
  height: .45rem;
  background: var(--accent-dark);
}

.application-section { background: var(--surface); }
.application-layout { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.application-intro { position: sticky; top: 160px; }
.application-intro > p:not(.section-index) { margin-top: 2rem; color: var(--ink-soft); }
.application-contact { display: grid; gap: .3rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.application-contact span { color: var(--accent); font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.application-contact strong { font-family: var(--font-display); font-size: clamp(1rem, 1.7vw, 1.25rem); font-weight: 500; overflow-wrap: anywhere; }
.application-form { display: grid; gap: 1.5rem; padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--pink); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { display: grid; gap: .55rem; }
.form-field label { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: rgba(255,255,255,.42);
  color: var(--ink);
  font: inherit;
  padding: .9rem 1rem;
}
.form-field textarea { resize: vertical; min-height: 150px; }
.form-field input:focus-visible, .form-field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.file-picker { position: relative; min-height: 58px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; padding: .55rem; border: 1px dashed var(--accent); background: var(--surface); overflow: hidden; }
.file-picker input { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-picker:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }
.file-picker-action { padding: .7rem .9rem; background: var(--accent-dark); color: var(--pink); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.file-picker-name { min-width: 0; color: var(--ink-soft); font-size: .76rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-field small, .form-note { color: var(--ink-soft); font-size: .7rem; }
.consent-field { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; color: var(--ink-soft); font-size: .76rem; line-height: 1.55; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--accent-dark); }
.application-submit { justify-self: start; min-width: 220px; cursor: pointer; }
.botcheck { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-status { display: grid; gap: .25rem; padding: 1rem 1.1rem; border-left: 3px solid var(--accent); background: var(--surface); font-size: .83rem; }
.success-status strong { color: var(--accent-dark); }
.error-status { border-left-color: #9b1c1c; color: #7d1717; }
.not-found { min-height: 75svh; display: grid; place-items: center; padding: 9rem 0 5rem; background: var(--surface-2); text-align: center; }
.not-found h1 { margin: 1.5rem 0 2rem; font-size: var(--h1); }
.not-found h1 em { color: var(--accent); }
.not-found p:not(.section-index) { margin-bottom: 2rem; }

@media (max-width: 1050px) {
  .menu-button { display: inline-flex; justify-self: end; position: relative; z-index: 2; }
  .nav-links { position: absolute; top: 90px; left: 0; right: 0; display: grid; gap: 0; padding: .5rem 5vw 1.4rem; background: rgba(253,238,246,.98); border-bottom: 1px solid var(--border); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .3s var(--ease), opacity .3s ease, visibility .3s; }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .site-header:has(.nav-links.open) { background: rgba(253,238,246,.98); }
}

@media (max-width: 780px) {
  .nav-links { top: 72px; }
  .page-hero { padding: 7.3rem 0 5rem; }
  .page-hero-grid, .section-heading-split, .personal-note-grid, .look-grid, .collection-feature-grid, .home-location-grid, .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-grid { min-height: 0; }
  .page-hero-grid-reverse .page-hero-image { order: 0; }
  .page-hero-copy h1 { font-size: clamp(3.5rem, 15vw, 5.2rem); }
  .page-hero-image, .page-hero-image img { min-height: 430px; }
  .page-hero-image::before { inset: -.6rem .6rem .6rem -.6rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .process-card:last-child { border-bottom: 0; }
  .process-card h3 { margin-top: 2.5rem; }
  .personal-note-image img, .look-image img, .collection-feature-image img { max-height: 620px; }
  .home-map-preview, .home-map-preview > img { min-height: 420px; height: 420px; }
  .visit-facts > div { grid-template-columns: 90px 1fr; }
  .detail-list div { grid-template-columns: 110px 1fr; }
  .tiktok-guides-head, .firenze-story-grid, .application-layout, .role-brief-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .role-profile { grid-template-columns: 1fr; }
  .role-profile-image::before { inset: -.6rem .6rem .6rem -.6rem; }
  .role-profile-image img { min-height: 430px; }
  .role-block p, .role-list li { font-size: 1rem; }
  .tiktok-placeholder-grid { grid-template-columns: 1fr; }
  .tiktok-placeholder { width: min(82vw, 340px); }
  .tiktok-placeholder:nth-child(2) { margin-left: auto; }
  .firenze-story-notes { grid-template-columns: 1fr; }
  .firenze-story-notes article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .firenze-story-notes article:last-child { border-bottom: 0; }
  .firenze-story-notes h3 { margin-top: 2rem; }
  .application-intro { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .application-submit { width: 100%; }
  .page-collection .editorial-grid { grid-template-columns: 1fr; }
}
