@font-face { font-family: "Cormorant Garamond"; src: url("/public/fonts/cormorant-garamond-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("/public/fonts/cormorant-garamond-500-italic.woff2") format("woff2"); font-style: italic; font-weight: 500; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/public/fonts/ibm-plex-mono-400.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/public/fonts/ibm-plex-mono-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/public/fonts/manrope-400-600.woff2") format("woff2"); font-style: normal; font-weight: 400 600; font-display: swap; }

:root {
  --bg: #f2f2ef;
  --surface: #ffffff;
  --fg: #111111;
  --muted: #666661;
  --border: #d7d7d1;
  --dark: #171817;
  --accent: #b79a68;
  --accent-hover: #9b7d4f;
  --accent-ink: #72552c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.dialog-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--surface); outline-offset: 2px; box-shadow: 0 0 0 4px var(--fg); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 12px 18px; background: var(--fg); color: var(--surface); transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 var(--gutter); background: color-mix(in srgb, var(--bg) 90%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent); backdrop-filter: blur(18px); }
.wordmark { min-height: 44px; justify-self: start; display: flex; align-items: center; gap: 12px; }
.wordmark > span { font-family: var(--font-display); font-size: 25px; letter-spacing: .18em; line-height: 1; }
.wordmark small { font-family: var(--font-mono); color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; gap: clamp(22px, 3vw, 46px); }
.site-nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-size: 13px; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--fg); transition: right .3s var(--ease); }
.site-nav a:hover { color: var(--fg); }
.site-nav a:hover::after { right: 0; }
.header-utilities { justify-self: end; display: flex; align-items: center; gap: 14px; }
.instagram-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; transition: color .25s; }
.instagram-link:hover { color: var(--fg); }
.ig-mark { width: 30px; height: 30px; display: inline-grid; place-items: center; border: 1px solid var(--fg); border-radius: 50%; color: var(--fg); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0; }
.header-book { justify-self: end; }
.menu-toggle { min-width: 44px; min-height: 44px; display: none; border: 0; background: transparent; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--fg); color: var(--surface); border-color: var(--fg); }
.button-dark:hover { background: var(--dark); }
.button-outline { background: transparent; border-color: var(--fg); }
.button-outline:hover { background: var(--fg); color: var(--surface); }
.button-champagne { background: var(--accent); color: var(--fg); }
.button-champagne:hover { background: var(--accent-hover); color: var(--fg); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 12px; line-height: 2; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link.light { color: var(--surface); }
.eyebrow { margin-bottom: 24px; color: var(--accent-ink); font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.section-pad { max-width: var(--container); margin-inline: auto; padding: clamp(88px, 10vw, 150px) var(--gutter); }

.hero { height: 100dvh; min-height: 720px; display: grid; grid-template-columns: 45% 55%; padding-top: 78px; overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 8vw, 140px) clamp(28px, 6vw, 104px) 64px var(--gutter); }
.hero h1 { margin: 0 0 30px; font-family: var(--font-display); font-size: clamp(64px, 8.3vw, 128px); font-weight: 500; letter-spacing: -.055em; line-height: .78; }
.hero h1 em, .bridal h2 em { color: var(--accent-hover); font-weight: 500; }
.hero-lead { max-width: 440px; margin-bottom: 34px; color: var(--muted); font-size: clamp(15px, 1.2vw, 18px); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-meta { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: 24px; max-width: 440px; margin: auto 0 0; padding-top: 50px; border-top: 1px solid var(--border); }
.hero-meta dt { margin-bottom: 6px; color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.hero-meta dd { margin: 0; font-size: 12px; }
.hero-visual { position: relative; min-height: 0; overflow: hidden; background: var(--dark); }
.hero-visual img { height: 100%; object-fit: cover; object-position: 53% 46%; }
.hero-visual::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(to top, color-mix(in srgb, var(--dark) 78%, transparent), transparent); pointer-events: none; }
.vertical-note { position: absolute; right: 22px; top: 50%; z-index: 2; color: var(--surface); font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em; writing-mode: vertical-rl; }
.hero-caption { position: absolute; z-index: 2; left: 28px; right: 50px; bottom: 26px; display: flex; justify-content: space-between; color: var(--surface); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.service-intro { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(520px, 1.45fr); column-gap: clamp(70px, 10vw, 150px); }
.section-heading { position: sticky; top: 130px; align-self: start; }
.section-heading h2, .bridal h2, .experience h2, .closing h2 { margin-bottom: 28px; font-family: var(--font-display); font-size: clamp(54px, 6.2vw, 92px); font-weight: 500; line-height: .88; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 410px; color: var(--muted); font-size: 14px; }
.service-index { border-top: 1px solid var(--fg); }
.service-line { width: 100%; display: grid; grid-template-columns: 44px 1fr 1.3fr auto 24px; gap: 18px; align-items: center; padding: 28px 0; border: 0; border-bottom: 1px solid var(--border); background: transparent; text-align: left; cursor: pointer; transition: background .3s; }
.service-line:hover { background: color-mix(in srgb, var(--surface) 55%, transparent); }
.service-line .index { color: var(--muted); font-family: var(--font-mono); font-size: 10px; }
.service-line strong { font-family: var(--font-display); font-size: 32px; font-weight: 500; }
.service-line > span:nth-child(3) { color: var(--muted); font-size: 12px; }
.service-line i { font-family: var(--font-mono); font-size: 10px; font-style: normal; white-space: nowrap; }
.service-line b { font-weight: 400; transition: transform .25s var(--ease); }
.service-line:hover b { transform: translate(3px, -3px); }
.services-cta { grid-column: 2; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 42px; }
.services-cta span { max-width: 280px; color: var(--muted); font-size: 11px; }

.campaign-grid { display: grid; grid-template-columns: 58% 42%; min-height: 830px; background: var(--dark); }
.campaign { position: relative; min-height: 620px; overflow: hidden; }
.campaign img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.campaign:hover img { transform: scale(1.025); }
.campaign > div { position: absolute; inset: auto 0 0; padding: clamp(28px, 4vw, 58px); }
.campaign > div > span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.campaign h3 { margin: 16px 0 30px; font-family: var(--font-display); font-size: clamp(42px, 4.4vw, 68px); font-weight: 500; line-height: .9; letter-spacing: -.04em; }
.campaign-hair { color: var(--surface); }
.campaign-hair::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--dark) 82%, transparent), transparent 60%); pointer-events: none; }
.campaign-hair > div { z-index: 1; }
.campaign-nails { color: var(--fg); }
.campaign-nails img { filter: saturate(.96) contrast(1.02); }
.campaign-nails > div { max-width: 520px; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(12px); }

.proof { background: var(--bg); }
.proof-intro { display: grid; grid-template-columns: auto 1.1fr .7fr; gap: clamp(28px, 5vw, 76px); align-items: end; }
.proof-intro.section-pad, .client-voices.section-pad { padding-block: clamp(72px, 7vw, 104px); }
.proof-intro > .eyebrow { align-self: start; margin-top: 8px; writing-mode: vertical-rl; transform: rotate(180deg); }
.proof-intro h2, .voices-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6vw, 86px); font-weight: 500; line-height: .86; letter-spacing: -.04em; }
.proof-intro > div { max-width: 500px; padding-bottom: 8px; }
.proof-intro p, .voices-heading p { margin-bottom: 26px; color: var(--muted); font-size: 14px; }
.reel-field { padding: 0 var(--gutter) clamp(56px, 6vw, 84px); background: var(--dark); color: var(--surface); }
.reel-rail { max-width: var(--container); height: clamp(500px, 42vw, 590px); display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr); grid-template-rows: repeat(3, 1fr); gap: 10px; margin: 0 auto; }
.reel-card { position: relative; min-height: 0; overflow: hidden; background: var(--fg); isolation: isolate; }
.reel-feature { grid-row: 1 / -1; }
.reel-card img { height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s var(--ease); }
.reel-keratin img { object-position: 58% center; }
.reel-facial img { object-position: 48% center; }
.reel-card:hover img { transform: scale(1.025); filter: saturate(1.06); }
.reel-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--dark) 88%, transparent), transparent 62%); }
.reel-source { position: absolute; z-index: 2; inset: 16px auto auto 16px; font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.reel-play { position: absolute; z-index: 2; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--surface) 72%, transparent); border-radius: 50%; background: color-mix(in srgb, var(--dark) 42%, transparent); transition: background .25s, transform .25s var(--ease); }
.reel-play svg { width: 20px; fill: currentColor; }
.reel-card:hover .reel-play { background: var(--accent); color: var(--fg); transform: translate(2px, -2px); }
.reel-copy { position: absolute; z-index: 2; inset: auto 16px 17px; display: flex; flex-direction: column; gap: 4px; }
.reel-copy strong { font-family: var(--font-display); font-size: clamp(22px, 2vw, 34px); font-weight: 500; line-height: .94; }
.reel-feature .reel-copy { inset: auto 26px 28px; }
.reel-feature .reel-copy strong { font-size: clamp(36px, 3.4vw, 52px); }
.reel-copy small { color: color-mix(in srgb, var(--surface) 72%, transparent); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.client-voices { display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(48px, 7vw, 110px); }
.voices-heading { align-self: start; }
.voices-heading h2 { margin-bottom: 28px; }
.voices-heading p { max-width: 400px; }
.voice-list { display: grid; grid-template-columns: 1.08fr .92fr; border-top: 1px solid var(--fg); border-bottom: 1px solid var(--fg); }
.voice { min-width: 0; margin: 0; padding: clamp(30px, 3vw, 46px); }
.voice + .voice { border-left: 1px solid var(--border); }
.voice blockquote { margin: 0 0 42px; font-family: var(--font-display); font-size: clamp(28px, 2.6vw, 40px); font-weight: 500; line-height: 1.04; letter-spacing: -.025em; }
.voice figcaption { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: center; }
.voice figcaption img { width: 54px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; }
.voice figcaption span { display: flex; flex-direction: column; }
.voice figcaption strong { font-size: 12px; font-weight: 600; }
.voice figcaption small { color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.proof-book { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 22px; border-top: 1px solid var(--fg); }
.proof-book > span { font-family: var(--font-display); font-size: 28px; }

.bridal { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(360px, 1.1fr); gap: clamp(60px, 11vw, 170px); align-items: center; }
.bridal-image { position: relative; }
.bridal-image img { aspect-ratio: 4 / 5; object-fit: cover; }
.bridal-image span { position: absolute; left: -28px; bottom: 40px; padding: 12px 16px; background: var(--bg); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; transform: rotate(-90deg); transform-origin: left bottom; }
.bridal-copy { padding-right: clamp(0px, 5vw, 70px); }
.bridal-copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 42px; color: var(--muted); font-size: 15px; }
.bridal-prices { margin-bottom: 38px; border-top: 1px solid var(--fg); }
.bridal-prices div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.bridal-prices strong { font-family: var(--font-mono); font-size: 10px; font-weight: 500; }

.experience { position: relative; min-height: min(84vw, 900px); overflow: hidden; background: var(--dark); color: var(--surface); }
.experience > img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.88); }
.experience::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, color-mix(in srgb, var(--dark) 68%, transparent), transparent 67%); }
.experience-overlay { position: relative; z-index: 1; max-width: 820px; padding: clamp(100px, 14vw, 210px) var(--gutter); }
.experience-overlay .eyebrow { color: var(--accent); }
.experience-overlay p:last-child { max-width: 500px; color: color-mix(in srgb, var(--surface) 70%, transparent); }
.experience-notes { position: absolute; z-index: 2; inset: auto var(--gutter) 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--surface) 34%, transparent); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.locations { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(500px, 1.3fr); gap: 40px 100px; }
.locations .section-heading { grid-row: span 2; }
.city-tabs { display: flex; gap: 8px; flex-wrap: wrap; align-self: end; }
.city-tabs button, .filter-row button { min-height: 44px; padding: 0 17px; border: 1px solid var(--border); border-radius: 999px; background: transparent; font-size: 10px; cursor: pointer; }
.city-tabs button.active, .filter-row button.active { background: var(--fg); color: var(--surface); border-color: var(--fg); }
.location-list { border-top: 1px solid var(--fg); }
.location-card { display: grid; grid-template-columns: 32px minmax(130px, .5fr) 1.2fr auto; gap: 18px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.location-card .location-index { color: var(--muted); font-family: var(--font-mono); font-size: 9px; }
.location-card h3 { margin: 0; font-family: var(--font-display); font-size: 26px; font-weight: 500; line-height: 1; }
.location-card address { color: var(--muted); font-size: 11px; font-style: normal; }
.location-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; font-family: var(--font-mono); font-size: 9px; }
.location-actions a:hover { color: var(--accent-hover); }

.closing { min-height: 680px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px var(--gutter); background: var(--dark); color: var(--surface); text-align: center; }
.closing .eyebrow { color: var(--accent); }
.closing h2 { margin-bottom: 26px; font-size: clamp(68px, 9vw, 128px); }
.closing > p:not(.eyebrow) { max-width: 520px; color: color-mix(in srgb, var(--surface) 68%, transparent); }
.closing .button { margin: 20px 0 24px; }
.closing > a { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; }

.site-footer { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding: 70px var(--gutter) 24px; background: var(--fg); color: var(--surface); }
.footer-brand > span { display: block; font-family: var(--font-display); font-size: clamp(44px, 6vw, 82px); letter-spacing: .12em; line-height: .8; }
.footer-brand small, .site-footer > div > span { color: color-mix(in srgb, var(--surface) 55%, transparent); font-size: 10px; }
.site-footer h3 { margin-bottom: 15px; color: var(--accent); font-family: var(--font-mono); font-size: 9px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; }
.site-footer > div:not(.footer-brand):not(.footer-bottom) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; font-size: 11px; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 45px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--surface) 20%, transparent); color: color-mix(in srgb, var(--surface) 50%, transparent); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-book { display: none; }

dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: var(--bg); color: var(--fg); }
dialog::backdrop { background: color-mix(in srgb, var(--dark) 80%, transparent); }
dialog[open] { animation: dialogIn .45s var(--ease); }
.dialog-shell, .booking-form { max-width: var(--container); margin: 0 auto; padding: clamp(28px, 5vw, 70px) var(--gutter); }
.dialog-header { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid var(--fg); }
.dialog-header h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 7vw, 86px); font-weight: 500; line-height: .86; }
.close-button { min-width: 70px; min-height: 44px; border: 0; border-bottom: 1px solid var(--fg); background: transparent; font-size: 10px; text-transform: uppercase; cursor: pointer; }
.catalog-tools { display: grid; grid-template-columns: minmax(260px, .8fr) 1.7fr; gap: 38px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.search-field { display: flex; flex-direction: column; gap: 8px; }
.search-field span, .booking-form label span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.search-field input, .booking-form input, .booking-form select, .booking-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 2px; background: var(--surface); color: var(--fg); }
.search-field input { border-width: 0 0 1px; background: transparent; font-family: var(--font-display); font-size: 24px; }
.filter-row { display: flex; align-items: center; gap: 7px; overflow-x: auto; padding-bottom: 5px; }
.filter-row button { flex: none; }
.catalog-count { padding: 18px 0; color: var(--muted); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }
.catalog-results { padding-bottom: 80px; }
.catalog-section { margin-top: 38px; }
.catalog-section h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 34px; font-weight: 500; }
.catalog-row { display: grid; grid-template-columns: minmax(260px, 1fr) auto auto 148px; gap: 24px; align-items: center; min-height: 72px; border-top: 1px solid var(--border); font-size: 12px; }
.catalog-row:last-child { border-bottom: 1px solid var(--border); }
.catalog-row strong { justify-self: end; display: inline-grid; grid-template-columns: auto auto; align-items: baseline; gap: 7px; padding-top: 7px; border-top: 1px solid var(--fg); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .01em; white-space: nowrap; }
.catalog-row strong small { color: var(--muted); font-size: 8px; font-weight: 400; letter-spacing: .12em; }
.catalog-duration { display: inline-grid; grid-template-columns: auto auto; align-items: baseline; gap: 7px; padding-top: 7px; border-top: 1px solid var(--border); color: var(--muted); font-family: var(--font-mono); font-size: 9px; white-space: nowrap; }
.catalog-duration small { font-size: 8px; letter-spacing: .12em; }
.catalog-row button { min-width: 148px; min-height: 44px; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 15px; border: 1px solid var(--fg); border-radius: 2px; background: transparent; color: var(--fg); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s, transform .25s var(--ease); }
.catalog-row button::after { content: "↗"; font-size: 15px; font-weight: 400; line-height: 1; transition: transform .25s var(--ease); }
.catalog-row button:hover, .catalog-row button:focus-visible { background: var(--fg); color: var(--surface); transform: translateY(-1px); }
.catalog-row button:hover::after, .catalog-row button:focus-visible::after { transform: translate(2px, -2px); }
.catalog-row button:active { transform: translateY(0); }
.empty-state { padding: 70px 0; color: var(--muted); font-family: var(--font-display); font-size: 30px; }

.booking-dialog { background: var(--surface); }
.booking-form { max-width: 1060px; }
.form-intro { max-width: 530px; margin: 30px 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.booking-form label { display: flex; flex-direction: column; gap: 8px; }
.booking-form textarea { resize: vertical; }
.full-field { margin-top: 22px; }
.submit-booking { margin-top: 28px; }
.privacy-note { margin-top: 14px; color: var(--muted); font-size: 9px; }
.privacy-note a { text-decoration: underline; text-underline-offset: 3px; }

/* Search landing pages preserve the editorial system while exposing indexable content. */
.seo-page main { padding-top: 78px; }
.breadcrumb { max-width: var(--container); display: flex; gap: 10px; margin: 0 auto; padding: 26px var(--gutter); border-bottom: 1px solid var(--border); color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--fg); }
.seo-hero { max-width: var(--container); min-height: 710px; display: grid; grid-template-columns: 1.02fr .98fr; margin: 0 auto; }
.seo-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 8vw, 120px) clamp(42px, 7vw, 110px) clamp(72px, 8vw, 120px) var(--gutter); }
.seo-hero h1, .seo-title h1, .seo-story h1, .contact-layout h1, .policy h1 { margin: 0 0 30px; font-family: var(--font-display); font-size: clamp(64px, 7.5vw, 112px); font-weight: 500; letter-spacing: -.05em; line-height: .84; }
.seo-hero-copy > p:not(.eyebrow), .seo-title > p:last-child, .seo-story > div > p:not(.eyebrow), .contact-layout > div > p:not(.eyebrow), .policy header p:last-child { max-width: 620px; margin-bottom: 36px; color: var(--muted); font-size: 15px; }
.seo-hero figure, .seo-story figure { position: relative; min-height: 0; margin: 0; overflow: hidden; background: var(--dark); }
.seo-hero figure img, .seo-story figure img { height: 100%; object-fit: cover; }
.seo-hero figure figcaption, .seo-story figcaption { position: absolute; inset: auto 24px 22px; color: var(--surface); font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.seo-menu { padding-top: clamp(80px, 8vw, 120px); }
.seo-menu-intro { max-width: 790px; margin-bottom: 72px; }
.seo-menu-intro h2, .seo-related > h2, .seo-cta h2 { margin: 0 0 24px; font-family: var(--font-display); font-size: clamp(50px, 5.5vw, 82px); font-weight: 500; line-height: .88; letter-spacing: -.04em; }
.seo-menu-intro > p:last-child { max-width: 650px; color: var(--muted); font-size: 13px; }
.service-context { display: grid; grid-template-columns: minmax(260px, .72fr) 1.28fr; gap: clamp(48px, 8vw, 120px); margin: 0 0 76px; padding: 34px 0 38px; border-top: 1px solid var(--fg); border-bottom: 1px solid var(--border); }
.service-context h2 { max-width: 460px; margin: 0; font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 50px); font-weight: 500; letter-spacing: -.035em; line-height: .94; }
.service-context div { max-width: 700px; columns: 2; column-gap: 40px; }
.service-context p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; break-inside: avoid; }
.service-context p + p { margin-top: 18px; }
.seo-menu-group { margin-top: 68px; scroll-margin-top: 110px; }
.seo-menu-group > header { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--fg); }
.seo-menu-group > header h2 { margin: 0; font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 500; line-height: 1; }
.seo-menu-group > header span { color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.seo-service-row { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(150px, auto) minmax(150px, auto) 150px; gap: 26px; align-items: center; min-height: 86px; border-bottom: 1px solid var(--border); }
.seo-service-row h3 { margin: 0; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: -.01em; }
.seo-price, .seo-time { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.seo-price small, .seo-time small { color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.seo-price strong { font-family: var(--font-mono); font-size: 11px; font-weight: 500; white-space: nowrap; }
.seo-price strong > span { margin-right: 5px; color: var(--accent-ink); font-size: 8px; letter-spacing: .1em; }
.seo-time > span { color: var(--muted); font-family: var(--font-mono); font-size: 9px; white-space: nowrap; }
.seo-service-row button { min-height: 44px; display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 14px; border: 1px solid var(--fg); border-radius: 2px; background: transparent; font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s, transform .25s var(--ease); }
.seo-service-row button:hover { background: var(--fg); color: var(--surface); transform: translateY(-1px); }
.seo-related { padding-top: 20px; }
.seo-related > div { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--fg); }
.seo-related a { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 90px; padding: 0 22px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 27px; transition: background .25s; }
.seo-related a:nth-child(odd) { border-right: 1px solid var(--border); }
.seo-related a:hover { background: var(--surface); }
.seo-related b { font-family: var(--font-body); font-size: 15px; font-weight: 400; }
.seo-cta { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px var(--gutter); background: var(--dark); color: var(--surface); text-align: center; }
.seo-cta > p:not(.eyebrow) { max-width: 570px; margin-bottom: 30px; color: color-mix(in srgb, var(--surface) 70%, transparent); }
.seo-cta .eyebrow { color: var(--accent); }
.seo-title { padding-bottom: 72px; }
.services-title { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); column-gap: clamp(56px, 8vw, 130px); align-items: end; padding-block: clamp(72px, 7vw, 108px) clamp(58px, 6vw, 82px); }
.services-title > .eyebrow { grid-column: 1 / -1; }
.services-title h1 { grid-column: 1; margin-bottom: 0; }
.services-title > p:last-child { grid-column: 2; margin: 0 0 4px; }
.seo-title h1 em { color: var(--accent-hover); font-weight: 500; }
.seo-title.compact { padding-bottom: 30px; }
.service-directory { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; padding-top: 0; }
.service-directory > a { min-height: 310px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto 1fr auto; gap: 16px; padding: clamp(30px, 4vw, 54px); border-top: 1px solid var(--border); transition: background .3s var(--ease); }
.service-directory > a:nth-child(odd) { border-right: 1px solid var(--border); }
.service-directory > a:hover { background: var(--surface); }
.service-directory > a > span { color: var(--muted); font-family: var(--font-mono); font-size: 9px; }
.service-directory h2 { margin: 0; font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: .92; }
.service-directory p { grid-column: 2; max-width: 480px; color: var(--muted); font-size: 12px; }
.service-directory b { grid-column: 2; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.branch-directory { padding-top: 0; }
.branch-card { display: grid; grid-template-columns: 40px .8fr 1.35fr .7fr; gap: 28px; align-items: start; padding: 30px 0; border-top: 1px solid var(--border); }
.branch-card:last-child { border-bottom: 1px solid var(--border); }
.branch-card > span, .branch-card p { color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.branch-card p { margin-bottom: 6px; }
.branch-card h2 { margin: 0; font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 1; }
.branch-card address { color: var(--muted); font-size: 12px; font-style: normal; }
.branch-card > div:last-child { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--font-mono); font-size: 9px; }
.branch-card > div:last-child a:last-child { margin-top: 10px; color: var(--accent-ink); }
.seo-story { max-width: var(--container); min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; margin: 0 auto; }
.seo-story > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 8vw, 120px) clamp(42px, 7vw, 110px) clamp(72px, 8vw, 120px) var(--gutter); }
.seo-story .button { align-self: flex-start; margin-top: 8px; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 140px); }
.contact-options { border-top: 1px solid var(--fg); }
.contact-options > a { display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: center; min-height: 100px; border-bottom: 1px solid var(--border); transition: background .3s; }
.contact-options > a:hover { background: var(--surface); }
.contact-options small { color: var(--muted); font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.contact-options strong { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.contact-options span { color: var(--muted); font-size: 10px; }
.booking-page { padding-top: 0; }
.seo-booking-form { padding: clamp(30px, 5vw, 70px); background: var(--surface); }
.policy { max-width: 980px; }
.policy header { margin-bottom: 70px; padding-bottom: 44px; border-bottom: 1px solid var(--fg); }
.policy section { display: grid; grid-template-columns: minmax(220px, .45fr) 1fr; gap: 60px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.policy section h2 { margin: 0; font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.policy section p { margin: 0; color: var(--muted); font-size: 13px; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding-top: 0; }
.resource-grid a { min-height: 340px; padding: clamp(30px, 4vw, 54px); border-top: 1px solid var(--border); transition: background .3s; }
.resource-grid a:nth-child(odd) { border-right: 1px solid var(--border); }
.resource-grid a:hover { background: var(--surface); }
.resource-grid span { color: var(--accent-ink); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.resource-grid h2 { margin: 80px 0 20px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: .9; }
.resource-grid p { max-width: 480px; color: var(--muted); font-size: 12px; }
.thank-you { min-height: calc(100dvh - 78px); }
.thank-you h1 { margin: 0 0 20px; font-family: var(--font-display); font-size: clamp(76px, 10vw, 144px); font-weight: 500; line-height: .8; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .site-nav { position: fixed; inset: 78px 0 auto; display: none; padding: 30px var(--gutter); background: var(--bg); border-bottom: 1px solid var(--border); }
  .site-nav.open { display: grid; gap: 20px; }
  .menu-toggle { display: block; justify-self: end; }
  .ig-label { display: none; }
  .hero { grid-template-columns: 48% 52%; }
  .hero-copy { padding-right: 36px; }
  .service-intro, .locations { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .service-index, .city-tabs, .location-list { grid-column: 1; }
  .services-cta { grid-column: 1; }
  .locations .section-heading { grid-row: auto; }
  .campaign-grid { min-height: 700px; }
  .reel-rail { height: auto; grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .reel-card, .reel-feature { grid-row: auto; min-height: 440px; }
  .client-voices { grid-template-columns: 1fr; }
  .proof-book { grid-column: 1; }
  .seo-service-row { grid-template-columns: minmax(240px, 1fr) auto auto; }
  .seo-service-row button { grid-column: 1 / -1; justify-content: center; margin-bottom: 18px; }
}

@media (max-width: 900px) {
  .catalog-row { grid-template-columns: minmax(240px, 1fr) auto auto; }
  .catalog-row button { grid-column: 1 / -1; width: 100%; justify-content: center; }
}

@media (min-width: 1081px) and (max-height: 900px) {
  .hero-visual img { object-position: 53% 52%; }
}

@media (max-width: 760px) {
  .seo-page main { padding-top: 66px; }
  .site-header { height: 66px; }
  .header-book { display: none; }
  .wordmark small { display: none; }
  .wordmark > span { font-size: 21px; }
  .site-nav { top: 66px; }
  .hero { height: auto; min-height: auto; grid-template-columns: 1fr; padding-top: 66px; }
  .hero-copy { min-height: 650px; padding: 90px var(--gutter) 44px; }
  .hero h1 { font-size: clamp(66px, 21vw, 94px); }
  .hero-meta { margin-top: 70px; }
  .hero-visual { min-height: 76dvh; }
  .hero-visual img { object-position: 53% 50%; }
  .hero-caption { left: 20px; right: 35px; }
  .section-pad { padding-block: 88px; }
  .service-intro { gap: 48px; }
  .service-line { grid-template-columns: 30px 1fr auto 18px; gap: 10px; }
  .service-line > span:nth-child(3) { display: none; }
  .service-line strong { font-size: 27px; }
  .service-line i { font-size: 8px; }
  .services-cta { align-items: flex-start; flex-direction: column; }
  .campaign-grid { grid-template-columns: 1fr; min-height: auto; }
  .campaign { min-height: 630px; }
  .campaign-nails { min-height: 520px; }
  .proof-intro { grid-template-columns: 1fr; gap: 28px; }
  .proof-intro > .eyebrow { writing-mode: initial; transform: none; }
  .proof-intro h2, .voices-heading h2 { font-size: clamp(54px, 16vw, 74px); }
  .reel-field { padding-inline: 0; overflow: hidden; }
  .reel-rail { display: flex; gap: 10px; overflow-x: auto; padding: 0 var(--gutter) 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .reel-card, .reel-feature { min-width: 82vw; min-height: 520px; scroll-snap-align: start; }
  .client-voices { gap: 54px; }
  .voice-list { grid-template-columns: 1fr; }
  .voice { padding: 30px 0; }
  .voice + .voice { border-left: 0; border-top: 1px solid var(--border); }
  .voice figcaption { grid-template-columns: 48px 1fr; }
  .voice figcaption img { width: 48px; }
  .proof-book { align-items: flex-start; flex-direction: column; }
  .bridal { grid-template-columns: 1fr; }
  .bridal-image { margin-right: 28px; }
  .bridal-copy { padding: 20px 0 0; }
  .experience { min-height: 820px; }
  .experience::after { background: linear-gradient(to top, color-mix(in srgb, var(--dark) 80%, transparent), transparent); }
  .experience-overlay { position: absolute; inset: auto 0 110px; padding: 40px var(--gutter); }
  .experience-notes { grid-template-columns: 1fr; gap: 8px; bottom: 30px; }
  .location-card { grid-template-columns: 24px 1fr auto; }
  .location-card address { grid-column: 2 / -1; }
  .closing { min-height: 620px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); padding-bottom: 90px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-book { position: fixed; z-index: 90; display: flex; align-items: center; justify-content: center; inset: auto 12px 12px; width: calc(100% - 24px); min-height: 52px; border: 0; border-radius: 2px; background: var(--accent); color: var(--fg); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-align: center; text-transform: uppercase; box-shadow: 0 10px 40px color-mix(in srgb, var(--dark) 28%, transparent); }
  .catalog-tools { grid-template-columns: 1fr; }
  .dialog-header { align-items: flex-start; }
  .catalog-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .catalog-row strong { justify-self: start; }
  .catalog-duration { justify-self: start; }
  .catalog-row button { width: 100%; margin-top: 8px; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding-block: 18px; }
  .seo-hero, .seo-story { min-height: auto; grid-template-columns: 1fr; }
  .seo-hero-copy, .seo-story > div { padding: 78px var(--gutter); }
  .seo-hero h1, .seo-title h1, .seo-story h1, .contact-layout h1, .policy h1 { font-size: clamp(58px, 18vw, 82px); }
  .seo-hero figure, .seo-story figure { min-height: 70dvh; }
  .seo-service-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 0; }
  .seo-service-row h3 { grid-column: 1 / -1; font-size: 14px; }
  .seo-service-row button { grid-column: 1 / -1; margin: 8px 0 0; }
  .service-context { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; padding-block: 28px; }
  .service-context div { columns: 1; }
  .services-title { grid-template-columns: 1fr; gap: 26px; padding-block: 78px; }
  .services-title > .eyebrow, .services-title h1, .services-title > p:last-child { grid-column: 1; }
  .seo-related > div, .service-directory, .resource-grid { grid-template-columns: 1fr; }
  .seo-related a:nth-child(odd), .service-directory > a:nth-child(odd), .resource-grid a:nth-child(odd) { border-right: 0; }
  .service-directory > a { min-height: 270px; }
  .branch-card { grid-template-columns: 28px 1fr; }
  .branch-card address, .branch-card > div:last-child { grid-column: 2; }
  .branch-card > div:last-child { align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-options > a { grid-template-columns: 1fr; gap: 3px; padding: 22px 0; }
  .policy section { grid-template-columns: 1fr; gap: 12px; }
  .resource-grid a { min-height: 290px; }
  .resource-grid h2 { margin-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
