:root {
  --espresso: #342824;
  --espresso-2: #463630;
  --ink: #2e2522;
  --ivory: #f6f0e7;
  --paper: #fbf7f1;
  --sand: #dcc7ad;
  --rose: #d7b1aa;
  --terracotta: #a85f49;
  --lilac: #aaa0ac;
  --line: rgba(52, 40, 36, .18);
  --white: #fffaf4;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(80px, 11vw, 150px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
body.menu-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .95; }
p { margin-bottom: 1.25em; }
::selection { background: var(--rose); color: var(--espresso); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10002;
  transform: translateY(-160%);
  padding: 11px 16px;
  color: var(--white);
  background: var(--espresso);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
.container { width: min(var(--container), calc(100% - (2 * var(--gutter)))); margin-inline: auto; }
.section { position: relative; padding-block: var(--section); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--terracotta);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-title { font-size: clamp(3rem, 6vw, 6.4rem); letter-spacing: -.045em; }
.section-copy { max-width: 630px; font-size: clamp(1rem, 1.5vw, 1.18rem); color: #665650; }
.section-number {
  position: absolute;
  top: 30px;
  right: var(--gutter);
  color: rgba(52, 40, 36, .07);
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 13rem);
  line-height: 1;
  pointer-events: none;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .11em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}
.button { padding: 14px 22px; border: 1px solid var(--espresso); background: var(--espresso); color: var(--white); }
.button:hover { background: var(--terracotta); border-color: var(--terracotta); }
.button--light { background: var(--white); color: var(--espresso); border-color: var(--white); }
.button--outline { color: var(--espresso); background: transparent; }
.button--outline:hover { color: var(--white); }
.text-link { min-height: 44px; border-bottom: 1px solid currentColor; }
.arrow { transition: transform .25s ease; }
a:hover .arrow { transform: translateX(5px); }

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: 78px;
  color: var(--espresso);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, color .3s ease, height .3s ease;
}
.site-header.is-scrolled,
.site-header.header-solid {
  height: 70px;
  background: rgba(246, 240, 231, .96);
  border-bottom-color: var(--line);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 8px; min-width: max-content; text-decoration: none; }
.brand-mark { width: 62px; height: 42px; object-fit: contain; object-position: center; }
.brand-name { font-family: var(--serif); font-size: 1.24rem; font-weight: 600; letter-spacing: .01em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); }
.desktop-nav a:not(.nav-book) {
  position: relative;
  padding-block: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.nav-book { padding: 11px 16px; color: var(--white); background: var(--espresso); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after { content: ""; display: block; width: 25px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; }
.noscript-nav { margin-top: 70px; padding: 12px var(--gutter); color: var(--white); background: var(--espresso); text-align: center; }
.noscript-nav a { display: inline-block; padding: 8px 10px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* Homepage hero */
.home-hero { min-height: 760px; padding: 150px 0 92px; background: var(--ivory); overflow: hidden; }
.home-hero::after { content: "HR"; position: absolute; right: 0; bottom: -12vw; color: rgba(168, 95, 73, .07); font: 500 clamp(15rem, 32vw, 34rem)/.7 var(--serif); letter-spacing: -.1em; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr); gap: clamp(45px, 7vw, 105px); align-items: center; }
.hero-copy { padding-top: 24px; }
.hero-copy h1 { max-width: 740px; margin-bottom: 30px; font-size: clamp(4.2rem, 7.4vw, 8.2rem); letter-spacing: -.06em; }
.hero-copy > p { max-width: 570px; color: #665650; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 34px; }
.hero-art { position: relative; height: 590px; isolation: isolate; }
.hero-cover { position: absolute; inset: 22px 52px 55px 0; margin: 0; overflow: hidden; border-radius: 45% 45% 22px 22px / 22% 22% 22px 22px; }
.hero-cover::after { content: ""; position: absolute; inset: 0; background: rgba(52,40,36,.08); }
.hero-cover img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-monogram { position: absolute; z-index: 3; right: -5px; bottom: 2px; color: rgba(168,95,73,.55); font: 500 clamp(9rem, 14vw, 14rem)/.7 var(--serif); letter-spacing: -.12em; }
.hero-caption { position: absolute; z-index: 4; top: 7%; right: -8px; writing-mode: vertical-rl; font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-botanical { position: absolute; z-index: 4; left: -74px; top: 5px; width: 150px; color: var(--terracotta); }
.hero-botanical path { fill: none; stroke: currentColor; stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.hair-line { position: absolute; z-index: 4; left: -35px; bottom: 42px; width: 78%; color: var(--terracotta); pointer-events: none; }
.hair-line path { fill: none; stroke: currentColor; stroke-width: 1.2; }
.hero-seal { position: absolute; z-index: 5; right: 20px; top: 46px; width: 78px; height: 78px; display: grid; place-content: center; border: 1px solid rgba(255,250,244,.75); border-radius: 50%; color: var(--white); font-size: .54rem; font-weight: 700; letter-spacing: .13em; line-height: 1.35; text-align: center; text-transform: uppercase; }
.hero-seal strong { font: 500 1.35rem/1 var(--serif); letter-spacing: .02em; }

.trust-strip { position: relative; z-index: 5; padding: 26px 0; color: var(--white); background: var(--espresso); }
.trust-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: baseline; justify-content: center; gap: 9px; padding: 6px 18px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-list li:last-child { border: 0; }
.trust-value { font: 500 clamp(2.1rem, 3.2vw, 3.3rem)/1 var(--serif); color: var(--sand); }
.trust-label { max-width: 130px; font-size: .64rem; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }

/* Services */
.services-section { background: var(--paper); }
.services-intro { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; margin-bottom: 68px; }
.services-menu { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 7vw, 110px); padding: clamp(48px, 7vw, 82px) 0; border-bottom: 1px solid var(--line); }
.service-head { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-content: start; }
.service-no { color: var(--terracotta); font-size: .68rem; font-weight: 750; letter-spacing: .15em; }
.service-title { grid-column: 2; margin: -9px 0 0; font: 500 clamp(2.8rem, 5vw, 5.4rem)/.92 var(--serif); letter-spacing: -.045em; }
.service-meta { grid-column: 2; margin-top: 18px; color: var(--terracotta); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(24px, 5vw, 70px); align-items: start; }
.service-note { color: #6d5e58; font-family: var(--serif); font-size: 1.5rem; font-style: italic; line-height: 1.3; }
.price-list { margin: 0; padding: 0; list-style: none; }
.price-list li { display: flex; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px dotted rgba(52,40,36,.25); }
.price-list li:last-child { border: 0; }
.price-list .name { flex: 0 1 auto; }
.price-list .dots { flex: 1; }
.price-list .price { flex: 0 0 auto; font-weight: 700; white-space: nowrap; }
@media (min-width: 861px) { .services-menu .price-list:not(.price-list--names) { padding-right: 72px; } }
.price-list--names { columns: 2; column-gap: 30px; }
.price-list--names li { break-inside: avoid; }
.services-footnote { margin: 34px 0 0; color: #75645e; font-size: .8rem; }
.service-gesture { position: relative; min-height: 190px; display: flex; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.service-gesture span { position: relative; z-index: 2; max-width: 250px; color: var(--terracotta); font-size: .65rem; font-weight: 750; letter-spacing: .15em; line-height: 1.6; text-transform: uppercase; }
.service-gesture svg { position: absolute; inset: 10px 0 auto; width: 100%; height: 170px; }
.service-gesture path { fill: none; stroke: var(--terracotta); stroke-width: 1.1; }
.service-gesture .gesture-leaf { stroke: var(--lilac); }

/* About */
.about-section { color: var(--white); background: var(--espresso); overflow: hidden; }
.about-section .section-number { color: rgba(255,255,255,.045); }
.about-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.about-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.about-emblem { position: relative; width: min(100%, 400px); height: 560px; display: grid; place-items: center; color: var(--white); }
.about-emblem svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-emblem path { fill: none; stroke: rgba(255,250,244,.62); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.about-emblem .emblem-branch { stroke: var(--rose); }
.about-emblem-hr { font: 500 clamp(8rem, 15vw, 13rem)/1 var(--serif); letter-spacing: -.12em; }
.about-emblem-year { position: absolute; top: 58px; left: 50%; transform: translateX(-50%); color: var(--rose); font-size: .64rem; font-weight: 750; letter-spacing: .2em; }
.about-emblem-place { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); font-size: .62rem; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
.about-side-word { position: absolute; left: -18px; bottom: 6px; color: rgba(255,250,244,.5); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.about-copy .eyebrow { color: var(--rose); }
.about-copy h2 { margin-bottom: 30px; font-size: clamp(3.6rem, 6vw, 6.7rem); letter-spacing: -.045em; }
.about-copy p { color: #e1d7ce; }
.brand-quote { margin: 40px 0; padding: 28px 0 26px 30px; border-left: 1px solid var(--rose); color: var(--sand); font: italic 500 clamp(1.6rem, 3vw, 2.55rem)/1.1 var(--serif); }
.team-list { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.team-list li { font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

/* Selected work */
.selected-work { background: #eadfd5; overflow: hidden; }
.work-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 62px; }
.work-heading .section-title { max-width: 720px; margin-bottom: 0; }
.editorial-grid { display: grid; grid-template-columns: 1.05fr .65fr .75fr .85fr; grid-template-rows: 310px 220px; gap: 18px; }
.work-tile { position: relative; overflow: hidden; background: var(--sand); }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.work-tile:hover img { transform: scale(1.025); }
.work-tile:nth-child(1) { grid-column: 1; grid-row: 1 / 3; border-radius: 150px 150px 0 0; }
.work-tile:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
.work-tile:nth-child(3) { grid-column: 2 / 4; grid-row: 2; }
.work-tile:nth-child(4) { grid-column: 3 / 5; grid-row: 1; border-radius: 0 0 120px 0; }
.work-tile:nth-child(5) { grid-column: 4; grid-row: 2; }
.work-label { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; color: var(--espresso); background: rgba(255,250,244,.92); font-size: .62rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }

/* Reviews */
.reviews-home { background: var(--ivory); }
.review-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 140px); align-items: start; }
.rating-block { position: sticky; top: 120px; display: flex; align-items: flex-start; flex-direction: column; }
.rating-number { display: block; font: 500 clamp(8rem, 16vw, 15rem)/.72 var(--serif); letter-spacing: -.08em; }
.stars { display: block; color: var(--terracotta); letter-spacing: .15em; line-height: 1; }
.rating-block > .stars { margin-top: 58px; }
.rating-label { margin-top: 24px; font-size: .72rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.review-stream { border-top: 1px solid var(--line); }
.review-quote { position: relative; padding: 42px 0 45px 74px; border-bottom: 1px solid var(--line); }
.review-quote::before { content: "“"; position: absolute; top: 22px; left: 0; color: var(--rose); font: 500 6rem/1 var(--serif); }
.review-quote blockquote { margin: 0 0 20px; font: 500 clamp(1.5rem, 2.5vw, 2.25rem)/1.25 var(--serif); }
.review-quote cite { font-size: .68rem; font-style: normal; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.review-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* Values */
.values-section { background: var(--paper); }
.values-heading { max-width: 760px; margin-bottom: 70px; }
.values-route { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5vw; margin: 0; padding: 0; list-style: none; }
.values-route::before { content: ""; position: absolute; top: 16px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.values-route li { position: relative; padding-top: 55px; }
.values-route li::before { content: attr(data-no); position: absolute; top: 0; left: 0; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: var(--terracotta); border-radius: 50%; font-size: .64rem; font-weight: 750; }
.values-route h3 { margin-bottom: 14px; font-size: clamp(2rem, 3.2vw, 3rem); }
.values-route p { color: #6d5e58; }

/* Contact & footer */
.contact-section { position: relative; padding-block: clamp(90px, 12vw, 150px) 70px; color: var(--white); background: var(--espresso); overflow: hidden; }
.contact-section::after { content: "HR"; position: absolute; right: 0; bottom: -60px; color: rgba(255,255,255,.045); font: 500 clamp(15rem, 30vw, 31rem)/.7 var(--serif); letter-spacing: -.1em; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); }
.contact-main h2 { max-width: 650px; margin-bottom: 32px; font-size: clamp(4rem, 7vw, 7rem); letter-spacing: -.05em; }
.contact-main p { color: #dfd4cb; font-size: 1.08rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.contact-details { display: grid; gap: 0; align-content: center; }
.contact-row { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-row:first-child { border-top: 1px solid rgba(255,255,255,.17); }
.contact-kicker { display: block; margin-bottom: 8px; color: var(--rose); font-size: .65rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.contact-row a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hours { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; margin: 0; }
.site-footer { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 30px; margin-top: 90px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); color: #cbbeb5; font-size: .7rem; letter-spacing: .05em; }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 700; width: 56px; height: 56px; display: grid; place-items: center; color: var(--white); background: #26755b; border-radius: 50%; box-shadow: 0 8px 24px rgba(26,70,54,.22); }
.whatsapp-float svg { width: 25px; fill: currentColor; }

/* Inner page shared */
.inner-page { padding-top: 70px; }
.page-hero { position: relative; min-height: 600px; padding: 95px 0 75px; background: var(--ivory); overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(5rem, 10vw, 10rem); letter-spacing: -.065em; }
.page-hero p { max-width: 520px; color: #685852; font-size: 1.08rem; }
.page-hero-art { position: relative; height: 430px; }
.page-hero-art img { position: absolute; width: 55%; height: 75%; object-fit: cover; }
.page-hero-art img:first-child { left: 0; top: 0; border-radius: 50% 50% 0 0; }
.page-hero-art img:nth-of-type(2) { right: 0; bottom: 0; }
.page-hero-monogram { position: absolute; left: 33%; top: 23%; z-index: 2; color: rgba(168,95,73,.5); font: 500 11rem/.7 var(--serif); letter-spacing: -.1em; }
.gallery-hero-graphic { color: var(--terracotta); }
.gallery-hero-graphic .page-hero-monogram { left: 16%; top: 27%; z-index: 2; color: rgba(168,95,73,.72); }
.gallery-graphic-word { position: absolute; z-index: 2; right: 8%; bottom: 11%; color: var(--espresso); font: italic 500 2rem/1 var(--serif); text-align: right; }
.gallery-hero-graphic svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-hero-graphic path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.gallery-hero-graphic .graphic-frame { stroke: rgba(52,40,36,.28); stroke-width: 1.1; }
.gallery-hero-graphic .graphic-flow { stroke: var(--terracotta); stroke-width: 1.25; }
.gallery-hero-graphic .graphic-leaves { stroke: var(--lilac); stroke-width: 1.15; }
.reviews-page-hero { min-height: 630px; background: #eadfd5; }
.reviews-page-hero h1 { font-size: clamp(4.8rem, 8.5vw, 9rem); }
.reviews-hero-mark { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--white); background: var(--espresso); border-radius: 48% 48% 12px 12px / 24% 24% 12px 12px; overflow: hidden; }
.reviews-hero-mark > span:first-child { font: 500 clamp(7rem, 14vw, 12rem)/.7 var(--serif); color: var(--sand); letter-spacing: -.07em; }
.reviews-hero-mark .stars { position: relative; z-index: 2; margin-top: 52px; }
.reviews-hero-mark small { position: relative; z-index: 2; margin-top: 12px; font-size: .64rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.reviews-hero-mark svg { position: absolute; inset: auto -8% 4%; width: 116%; }
.reviews-hero-mark path { fill: none; stroke: rgba(215,177,170,.5); stroke-width: 1.2; }

/* Gallery */
.gallery-section { padding-block: 90px var(--section); background: var(--paper); }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.gallery-toolbar p { margin: 0; color: #75645e; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 44px; padding: 9px 16px; border: 1px solid var(--line); color: var(--espresso); background: transparent; cursor: pointer; font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.filter-button[aria-pressed="true"], .filter-button:hover { color: var(--white); background: var(--espresso); }
.masonry { columns: 3; column-gap: 18px; }
.gallery-card { position: relative; break-inside: avoid; margin: 0 0 18px; overflow: hidden; background: #eadfd5; cursor: zoom-in; }
.gallery-card[hidden] { display: none; }
.gallery-card button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery-card img { width: 100%; height: auto; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery-card:hover img { transform: scale(1.018); }
.gallery-card figcaption { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; color: var(--espresso); background: rgba(255,250,244,.92); font-size: .6rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.gallery-cta { margin-top: 65px; padding: 55px; display: flex; justify-content: space-between; align-items: center; gap: 40px; color: var(--white); background: var(--espresso); }
.gallery-cta h2 { max-width: 550px; margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.gallery-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 32px; background: rgba(34,25,22,.95); }
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: min(1000px, calc(100vw - 120px)); max-height: 88vh; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox figcaption { padding-top: 12px; color: var(--white); text-align: center; font-size: .75rem; letter-spacing: .1em; }
.lightbox-control { position: absolute; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); color: var(--white); background: transparent; cursor: pointer; font-size: 1.4rem; }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; }
.lightbox-next { right: 22px; top: 50%; }

/* Reviews page */
.reviews-wall-section { padding-block: 95px var(--section); background: var(--paper); }
.reviews-summary { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; margin-bottom: 80px; }
.reviews-summary-score { padding: 45px; color: var(--white); background: var(--espresso); }
.reviews-summary-score .rating-number { display: block; color: var(--sand); }
.reviews-summary-score .stars { margin-top: 52px; }
.reviews-summary-copy { align-self: center; }
.reviews-summary-copy h2 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 6rem); }
.testimonial-wall { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.testimonial { position: relative; min-height: 260px; padding: clamp(28px, 4vw, 50px); border-top: 1px solid var(--line); background: var(--ivory); }
.testimonial:nth-child(1) { grid-column: span 7; min-height: 390px; background: #eadfd5; }
.testimonial:nth-child(2) { grid-column: span 5; }
.testimonial:nth-child(3) { grid-column: span 4; color: var(--white); background: var(--terracotta); }
.testimonial:nth-child(4) { grid-column: span 8; }
.testimonial:nth-child(5) { grid-column: span 5; }
.testimonial:nth-child(6) { grid-column: span 7; background: #ded6df; }
.testimonial:nth-child(7), .testimonial:nth-child(8) { grid-column: span 6; }
.testimonial::before { content: "“"; position: absolute; top: 12px; right: 22px; color: rgba(168,95,73,.22); font: 500 6rem/1 var(--serif); }
.testimonial:nth-child(3)::before { color: rgba(255,255,255,.28); }
.testimonial blockquote { position: relative; z-index: 1; margin: 35px 0 28px; font: 500 clamp(1.45rem, 2.5vw, 2.35rem)/1.25 var(--serif); }
.testimonial:nth-child(1) blockquote { font-size: clamp(2rem, 3.7vw, 3.6rem); }
.testimonial cite { font-size: .66rem; font-style: normal; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.review-page-cta { margin-top: 70px; text-align: center; }
.review-page-cta h2 { margin-bottom: 30px; font-size: clamp(3rem, 6vw, 5.8rem); }
.review-page-cta .review-actions { justify-content: center; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.mask-reveal { clip-path: inset(0 100% 0 0); transition: clip-path .9s cubic-bezier(.2,.75,.2,1); }
.mask-reveal.is-visible { clip-path: inset(0); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 17px; }
  .desktop-nav a:not(.nav-book) { font-size: .64rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(4rem, 8vw, 6.5rem); }
  .hero-art { height: 520px; }
  .service-item { gap: 40px; }
}

@media (max-width: 860px) {
  :root { --gutter: 24px; --section: 90px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: 850; display: grid; grid-template-columns: minmax(0, 1fr) min(86vw, 390px); visibility: hidden; pointer-events: none; }
  .mobile-menu.is-open { visibility: visible; pointer-events: auto; }
  .menu-scrim { border: 0; background: rgba(36,27,24,.5); opacity: 0; transition: opacity .25s; }
  .mobile-menu.is-open .menu-scrim { opacity: 1; }
  .menu-panel { display: flex; flex-direction: column; padding: 105px 30px 34px; background: var(--ivory); transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.75,.2,1); }
  .mobile-menu.is-open .menu-panel { transform: none; }
  .mobile-links { display: grid; margin: 0; padding: 0; list-style: none; }
  .mobile-links a { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font: 500 2.2rem/1.15 var(--serif); text-decoration: none; }
  .mobile-links a::after { content: "↗"; font: 400 1rem var(--sans); }
  .mobile-menu .button { margin-top: auto; }
  .mobile-contact { margin: 22px 0; font-size: .76rem; }
  .home-hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-art { height: min(620px, 85vw); margin-top: 22px; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li:nth-child(2) { border-right: 0; }
  .trust-list li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .services-intro, .about-grid, .review-layout, .contact-grid, .page-hero-grid, .reviews-summary { grid-template-columns: 1fr; }
  .services-intro { gap: 18px; }
  .service-item { grid-template-columns: 1fr; gap: 32px; }
  .service-panel { padding-left: 60px; }
  .about-visual { min-height: 560px; }
  .rating-block { position: static; }
  .editorial-grid { grid-template-columns: 1.1fr .9fr; grid-template-rows: 280px 200px 240px 190px; }
  .work-tile:nth-child(1) { grid-row: 1 / 3; }
  .work-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
  .work-tile:nth-child(3) { grid-column: 1 / 3; grid-row: 3; }
  .work-tile:nth-child(4) { grid-column: 2; grid-row: 2; }
  .work-tile:nth-child(5) { grid-column: 1 / 3; grid-row: 4; }
  .page-hero { min-height: auto; }
  .page-hero-grid { gap: 35px; }
  .page-hero-art { height: 390px; }
  .reviews-hero-mark { min-height: 360px; }
  .masonry { columns: 2; }
  .testimonial:nth-child(n) { grid-column: span 6; }
  .testimonial:nth-child(1) { grid-column: span 12; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; --section: 76px; }
  html { scroll-padding-top: 74px; }
  .site-header, .site-header.is-scrolled, .site-header.header-solid { height: 64px; }
  .brand-mark { width: 52px; height: 35px; }
  .brand-name { font-size: 1.05rem; }
  .home-hero { min-height: 0; padding: 105px 0 60px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { margin-bottom: 22px; font-size: clamp(3.65rem, 17vw, 5.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; margin-top: 27px; }
  .hero-art { height: 430px; margin-top: 30px; }
  .hero-cover { inset: 0 24px 32px 0; border-radius: 42% 42% 18px 18px / 20% 20% 18px 18px; }
  .hero-monogram { right: 0; bottom: 0; font-size: 8rem; }
  .hero-botanical { left: -38px; width: 110px; }
  .hero-seal { right: 35px; top: 24px; width: 68px; height: 68px; }
  .hero-caption { right: 5px; }
  .hair-line { left: -15px; bottom: 24px; }
  .trust-strip { padding: 17px 0; }
  .trust-list li { display: block; padding: 15px 10px; text-align: center; }
  .trust-value { display: block; font-size: 2rem; }
  .trust-label { display: block; margin: 5px auto 0; font-size: .55rem; }
  .section-title { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .section-number { top: 18px; font-size: 7rem; }
  .service-item { padding: 48px 0; gap: 24px; }
  .service-head { grid-template-columns: 34px 1fr; }
  .service-title { font-size: 2.7rem; }
  .service-meta { margin-top: 12px; }
  .service-panel { grid-template-columns: 1fr; gap: 14px; padding: 0 0 0 46px; }
  .service-note { margin-bottom: 5px; font-size: 1.25rem; }
  .price-list li { gap: 9px; font-size: .88rem; }
  .price-list--names { columns: 1; }
  .services-footnote { margin-left: 0; }
  .service-gesture { min-height: 145px; }
  .service-gesture svg { height: 135px; }
  .about-visual { min-height: 440px; }
  .about-emblem { height: 430px; max-width: 310px; }
  .about-emblem-year { top: 44px; }
  .about-emblem-place { bottom: 38px; }
  .about-side-word { left: 0; }
  .about-copy h2 { font-size: 3.9rem; }
  .brand-quote { padding-left: 20px; }
  .work-heading { display: block; margin-bottom: 36px; }
  .work-heading .text-link { margin-top: 22px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 170px 210px 160px; gap: 10px; }
  .work-tile:nth-child(1) { grid-row: 1 / 3; border-radius: 100px 100px 0 0; }
  .work-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
  .work-tile:nth-child(4) { grid-column: 2; grid-row: 2; border-radius: 0; }
  .work-tile:nth-child(3) { grid-column: 1 / 3; grid-row: 3; }
  .work-tile:nth-child(5) { grid-column: 1 / 3; grid-row: 4; }
  .review-quote { padding-left: 52px; }
  .review-quote::before { font-size: 4.5rem; }
  .values-route { grid-template-columns: 1fr; gap: 10px; }
  .values-route::before { top: 0; bottom: 0; left: 16px; right: auto; width: 1px; height: auto; }
  .values-route li { padding: 8px 0 28px 58px; }
  .values-route li::before { top: 3px; }
  .contact-main h2 { font-size: 4rem; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .hours { font-size: .88rem; }
  .site-footer { flex-direction: column; margin-top: 60px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .page-hero { padding: 70px 0 55px; }
  .page-hero h1 { font-size: clamp(4.4rem, 21vw, 7rem); }
  .page-hero-art { height: 330px; }
  .page-hero-monogram { font-size: 7.5rem; }
  .reviews-hero-mark { min-height: 310px; }
  .gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .masonry { columns: 1; }
  .gallery-cta { align-items: flex-start; flex-direction: column; padding: 36px 24px; }
  .gallery-cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .lightbox { padding: 60px 12px 22px; }
  .lightbox-figure { max-width: 100%; }
  .lightbox-control { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .reviews-summary-score { padding: 30px; }
  .testimonial-wall { display: block; }
  .testimonial { min-height: 0; margin-bottom: 12px; }
  .testimonial:nth-child(1) { min-height: 0; }
  .testimonial blockquote, .testimonial:nth-child(1) blockquote { font-size: 1.8rem; }
  .rating-block > .stars { margin-top: 38px; }
}

@media (max-width: 350px) {
  .brand-name { font-size: .92rem; }
  .hero-copy h1 { font-size: 3.3rem; }
  .button { width: 100%; }
  .hero-art { height: 370px; }
  .service-title { font-size: 1.65rem; }
}

@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; }
  .mask-reveal { clip-path: inset(0); }
}
