


@font-face { font-family: "Montserrat"; src: url("../fonts/Montserrat-VF.woff2") format("woff2-variations"), url("../fonts/Montserrat-VF.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Bebas Neue"; src: url("../fonts/BebasNeue-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --black: #0f0f0f;
  --ink: #171717;
  --ink-2: #202020;
  --white: #ffffff;
  --paper: #f3f1ec;
  --paper-2: #e9e6df;
  
  --accent: #d96028;
  --accent-ink: #b8490f;
  --accent-dark: #8f3a0c;
  --accent-soft: rgba(217, 96, 40, .14);
  --muted: #6d6a66;
  --muted-dark: #a9a49c;
  --line: rgba(0, 0, 0, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --condensed: "Bebas Neue", "Oswald", Impact, "Arial Narrow", sans-serif;
  --tear-h: 96px;
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1280px;
  --header-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--accent); color: #fff; padding: 10px 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.skip-link:focus { top: 12px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gutter), 900px); margin-inline: auto; }


h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 900; line-height: 1.02; letter-spacing: -.01em; text-transform: uppercase; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 6.2vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--condensed); font-size: 1.25rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 14px; }
.dark .eyebrow { color: var(--accent); }
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--accent); }
.cond { font-family: var(--condensed); font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }
.accent { color: var(--accent-ink); }
.dark .accent { color: var(--accent); }
.muted { color: var(--muted); }
.dark .muted { color: var(--muted-dark); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 16px; }


.btn {
  max-width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 14px 32px;
  background: var(--accent-ink); color: #fff; text-decoration: none; border: 2px solid var(--accent-ink);
  font-weight: 800; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; text-align: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease), box-shadow .25s;
  box-shadow: 0 0 0 0 rgba(217, 96, 40, 0);
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(217, 96, 40, .8); }
.btn:active { transform: translateY(0); }
.btn--outline { background: transparent; color: var(--accent-ink); }
.btn--outline:hover { background: var(--accent-ink); color: #fff; }
.dark .btn--outline { color: #fff; }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: none; }
.dark .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .78rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-link { color: var(--accent-ink); font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; border-bottom: 2px solid transparent; transition: border-color .2s; }
.text-link:hover { border-bottom-color: currentColor; }
.dark .text-link, .owner__source .text-link, .lightbox .text-link { color: var(--accent); }


section { position: relative; }
.sec { position: relative; padding-block: clamp(64px, 9vw, 120px); overflow-x: clip; }
.dark { background: var(--black); color: #fff; }
.paper { background: var(--paper); }
.has-tear-top { padding-top: calc(clamp(64px, 9vw, 120px) + var(--tear-h) * .5); }
.has-tear-bottom { padding-bottom: calc(clamp(64px, 9vw, 120px) + var(--tear-h) * .5); }

.tear {
  position: absolute; left: 0; right: 0; width: 100%; height: var(--tear-h);
  pointer-events: none; z-index: 3;
}
.tear--bottom { top: calc(100% - 1px); }
.tear--top { bottom: calc(100% - 1px); transform: scaleY(-1); }
.tear--flip { transform: scaleX(-1); }
.tear--top.tear--flip { transform: scale(-1, -1); }
.tear svg { width: 100%; height: 100%; display: block; }
.tear.c-black { color: var(--black); }
.tear.c-white { color: var(--white); }
.tear.c-paper { color: var(--paper); }
.tear.c-ink { color: var(--ink-2); }


.stroke { position: absolute; pointer-events: none; z-index: 0; }
.stroke svg { width: 100%; height: 100%; }
.corner { position: absolute; width: 46px; height: 46px; border: 3px solid var(--accent); pointer-events: none; }
.corner--tl { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.corner--tr { top: -12px; right: -12px; border-left: 0; border-bottom: 0; }
.corner--bl { bottom: -12px; left: -12px; border-right: 0; border-top: 0; }
.corner--br { bottom: -12px; right: -12px; border-left: 0; border-top: 0; }
.big-num { font-family: var(--condensed); font-size: clamp(5rem, 11vw, 9rem); line-height: .85; color: var(--accent); letter-spacing: .02em; }
.splat { position: absolute; color: var(--accent); pointer-events: none; opacity: .9; }
.splat svg { width: 100%; height: 100%; }
.ghost-word { position: absolute; font-family: var(--condensed); font-size: clamp(6rem, 18vw, 16rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .12); pointer-events: none; user-select: none; white-space: nowrap; }
.paper .ghost-word, .light .ghost-word { -webkit-text-stroke: 1px rgba(0, 0, 0, .1); }


.header {
  position: sticky; top: 0; z-index: 50; overflow-x: clip;
  background: var(--black); color: #fff; border-bottom: 1px solid var(--line-dark);
}
.header__in { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 28px); min-height: var(--header-h); flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: #fff; }
.brand__logo { width: 86px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; }
.brand__tag { display: none; font-family: var(--condensed); letter-spacing: .18em; font-size: .85rem; color: var(--accent); white-space: nowrap; }
.nav { display: flex; gap: 2px; margin-left: 6px; }
.nav a { color: #fff; text-decoration: none; font-weight: 700; font-size: .9rem; padding: 10px 10px; position: relative; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover::after { transform: scaleX(1); }
.header__meta { display: flex; gap: 18px; margin-left: auto; }
.meta { display: flex; flex-direction: column; gap: 3px; font-size: .8rem; }
.meta__label { color: var(--muted-dark); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.meta a { display: flex; gap: 6px; align-items: center; color: #fff; text-decoration: none; font-weight: 700; white-space: nowrap; }
.meta svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.header .btn { margin-left: auto; flex: none; }
.header__meta + .btn { margin-left: 0; }
.header .btn .short { display: none; }
.burger { display: none; width: 48px; height: 48px; background: none; border: 0; color: #fff; padding: 8px; margin-left: -8px; }
.burger span { display: block; height: 3px; background: #fff; margin: 6px 0; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--black); color: #fff; padding: calc(var(--header-h) + 8px) var(--gutter) 32px; overflow-y: auto; transform: translateY(-100%); transition: transform .4s var(--ease); visibility: hidden; }
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu .cond { font-size: 1.6rem; color: var(--accent); margin: 18px 0 6px; }
.mobile-menu nav a { display: block; font-size: 1.6rem; font-weight: 900; text-transform: uppercase; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu__contacts a { display: flex; gap: 10px; align-items: center; padding: 10px 0; text-decoration: none; font-weight: 700; }
.mobile-menu__contacts svg { width: 18px; height: 18px; color: var(--accent); }
.mobile-menu .btn { width: 100%; margin-top: 22px; }
.mobile-menu__close { position: absolute; top: 14px; right: var(--gutter); width: 48px; height: 48px; background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; }


.hero { position: relative; overflow-x: clip; min-height: calc(100svh - var(--header-h)); display: flex; align-items: center; background: var(--black); color: #fff; padding-block: clamp(56px, 8vw, 110px) calc(clamp(56px, 8vw, 110px) + var(--tear-h) * .6); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; filter: saturate(.85) contrast(1.05); }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .78) 42%, rgba(10, 10, 10, .35) 75%, rgba(10, 10, 10, .55) 100%); }
.hero__in { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 32px; align-items: end; }
.hero h1 { max-width: 12ch; margin: 8px 0 18px; }
.hero .lead { max-width: 52ch; color: rgba(255, 255, 255, .86); }
.hero__support { margin-top: 22px; display: flex; gap: 10px; align-items: center; font-weight: 700; font-size: .9rem; color: rgba(255, 255, 255, .8); }
.hero__support svg { width: 18px; height: 18px; color: var(--accent); }
.hero__badges { display: grid; gap: 14px; justify-self: end; max-width: 380px; width: 100%; }
.badge { display: flex; gap: 16px; align-items: center; padding: 16px 18px; background: rgba(255, 255, 255, .06); border: 1px solid var(--line-dark); backdrop-filter: blur(6px); }
.badge svg { width: 38px; height: 38px; color: var(--accent); flex: none; }
.badge b { display: block; font-family: var(--condensed); font-size: 1.5rem; letter-spacing: .04em; line-height: 1; }
.badge small { display: block; color: rgba(255, 255, 255, .72); font-size: .82rem; margin-top: 4px; }
.hero .splat { width: 180px; height: 180px; right: 6%; top: 8%; opacity: .6; }


.situations .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.situation { position: relative; padding-top: 12px; }
.situation .big-num { margin-bottom: 2px; position: relative; z-index: 1; }
.situation h3 { font-family: var(--condensed); font-weight: 400; font-size: 1.9rem; letter-spacing: .04em; color: var(--accent); position: relative; z-index: 2; }
.situation p { color: var(--muted); max-width: 34ch; }
.situation .splat { width: 120px; height: 120px; right: 10%; top: -10px; opacity: .55; }


.booking { }
.booking__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.checklist { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.checklist svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.checklist small { display: block; text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted-dark); }
.phone-wrap { position: relative; display: grid; place-items: center; padding: 30px 0; }
.phone-wrap .stroke { width: 120%; height: 160px; left: -10%; bottom: -10px; color: var(--accent); opacity: .85; }
.phone { position: relative; z-index: 1; width: min(300px, 80vw); aspect-ratio: 9 / 18.5; background: #111; border: 8px solid #2a2a2a; border-radius: 40px; box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .9), 0 0 0 1px #000; overflow: hidden; transform: rotate(-4deg); }
.phone__screen { background: #fff; color: var(--ink); height: 100%; padding: 26px 16px 16px; display: flex; flex-direction: column; gap: 10px; font-size: .78rem; }
.phone__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 90px; height: 8px; background: #2a2a2a; border-radius: 6px; }
.phone__title { font-weight: 900; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; }
.phone__step { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; }
.phone__step b { display: block; font-size: .8rem; }
.phone__step small { color: var(--muted); font-size: .7rem; }
.phone__step .n { width: 24px; height: 24px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--accent-ink); color: #fff; font-family: var(--condensed); font-size: 1rem; }
.phone__cta { margin-top: auto; background: var(--accent-ink); color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; }
.phone__powered { text-align: center; color: var(--muted); font-size: .65rem; }


.proof { position: relative; }
.proof__bg { position: absolute; inset: 0; z-index: 0; }
.proof__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); opacity: .28; }
.proof__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 15, 15, .6), rgba(15, 15, 15, .95)); }
.proof .wrap { position: relative; z-index: 1; }
.proof__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.laurel { text-align: center; }
.laurel__ring { position: relative; width: 176px; height: 152px; margin: 0 auto 14px; display: grid; place-items: center; }
.laurel__ring > div { transform: translateY(-6px); }
.laurel__ring svg.wreath { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--accent); }
.laurel__val { font-family: var(--condensed); font-size: 3rem; line-height: .9; }
.laurel__unit { font-family: var(--condensed); font-size: 1.05rem; letter-spacing: .1em; color: var(--accent); }
.laurel p { color: rgba(255, 255, 255, .78); font-size: .9rem; max-width: 20ch; margin: 0 auto; }


.team { }
.team__tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 10px; }
.tab-btn { min-height: 52px; padding: 10px 26px; border: 2px solid var(--accent-ink); background: transparent; color: var(--accent-ink); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; transition: background .2s, color .2s; }
.tab-btn:hover, .tab-btn[aria-selected="true"] { background: var(--accent-ink); color: #fff; }
.team__stage { position: relative; margin-top: 26px; padding-bottom: 44px; }
.team__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 0; position: relative; z-index: 1; }
.portrait { position: relative; flex: 1 1 0; min-width: 0; background: none; border: 0; padding: 0; display: block; cursor: pointer; transition: transform .35s var(--ease), filter .35s var(--ease); filter: grayscale(1) contrast(1.05); }
.portrait img { width: calc(122% * var(--s, 1)); max-width: none; height: auto; margin: 0 auto; transform: translateX(calc((1 - 1.22 * var(--s, 1)) * 50%)); }
.portrait:hover, .portrait[aria-selected="true"] { filter: none; transform: translateY(-10px); z-index: 2; }
.portrait[aria-selected="true"] { transform: translateY(-16px) scale(1.06); }
.portrait__name { position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%); font-family: var(--condensed); font-size: 1.1rem; letter-spacing: .14em; color: #fff; background: var(--accent-ink); padding: 3px 12px 2px; opacity: 0; transition: opacity .3s; white-space: nowrap; z-index: 3; }
.portrait:hover .portrait__name, .portrait[aria-selected="true"] .portrait__name { opacity: 1; }
.team__ground { position: absolute; left: -4%; right: -4%; bottom: 8px; height: 96px; color: var(--ink); z-index: 0; }
.team__ground svg { width: 100%; height: 100%; }
.team__ground--accent { color: var(--accent); bottom: 22px; left: 8%; right: 20%; height: 70px; opacity: .9; }
.team__panel { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(20px, 4vw, 60px); align-items: start; margin-top: 56px; padding-top: 30px; border-top: 3px solid var(--ink); }
.team__panel h3 { font-size: clamp(2rem, 4vw, 3.2rem); }
.team__role { font-family: var(--condensed); font-size: 1.3rem; letter-spacing: .14em; color: var(--accent-ink); margin-top: 6px; }
.team__bio { font-size: 1.05rem; line-height: 1.6; max-width: 68ch; margin: 0 0 12px; }
.team__note { color: var(--muted); max-width: 60ch; font-size: .9rem; }
.team__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.ig-link { display: inline-flex; align-items: center; gap: 8px; }
.ig-link svg { width: 18px; height: 18px; }
.team__fade { animation: fadeUp .45s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }




.values { padding-block: clamp(48px, 6vw, 84px); }
.values.has-tear-top { padding-top: calc(clamp(48px, 6vw, 84px) + var(--tear-h) * .5); }
.values.has-tear-bottom { padding-bottom: calc(clamp(48px, 6vw, 84px) + var(--tear-h) * .5); }
.values__bg { position: absolute; inset: 0; z-index: 0; background: var(--black); overflow: hidden; }
.values__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.1); opacity: .32; }
.values__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 15, 15, .55), rgba(15, 15, 15, .35) 40%, rgba(15, 15, 15, .85)), radial-gradient(60% 80% at 25% 60%, rgba(217, 96, 40, .16), transparent 60%); }
.values__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.values__figure { position: relative; align-self: end; margin-bottom: calc(-1 * clamp(48px, 6vw, 84px) - var(--tear-h) * .5); }
.values__figure img { position: relative; z-index: 1; width: min(380px, 100%); height: auto; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .7)); }
.values__figure .stroke { width: 110%; height: 180px; left: -6%; bottom: 8%; color: var(--accent); opacity: .95; }
.values__figure .stroke--black { display: none; }
.values__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
.values__list h3 { font-family: var(--condensed); font-weight: 400; font-size: 1.65rem; letter-spacing: .05em; color: var(--accent); }
.values__list p { color: rgba(255, 255, 255, .8); max-width: 44ch; margin: 3px 0 0; }


.services { position: relative; overflow: hidden; }
.services__bg { position: absolute; inset: 0; z-index: 0; }
.services__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .12; filter: grayscale(1); }
.services__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(243, 241, 236, .35), rgba(243, 241, 236, .92) 40%, var(--paper)); }
.services .wrap { position: relative; z-index: 1; }
.services__tabs { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid rgba(0, 0, 0, .18); transition: background .2s; }
.price-table tbody tr:hover { background: rgba(255, 255, 255, .55); }
.price-table td { padding: 18px 12px; vertical-align: middle; }
.price-table td:first-child { padding-left: 0; }
.price-table td:last-child { padding-right: 0; text-align: right; }
.price-table .name { font-weight: 800; font-size: 1.1rem; }
.price-table .desc { color: var(--muted); font-size: .9rem; margin: 2px 0 0; }
.price-table .time { white-space: nowrap; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; font-weight: 700; }
.price-table .time svg { width: 16px; height: 16px; color: var(--accent-ink); }
.price-table .price { font-family: var(--condensed); font-size: 1.9rem; letter-spacing: .04em; white-space: nowrap; }
.price-table .price--var { font-family: var(--display); font-size: .8rem; font-weight: 700; color: var(--accent-ink); text-transform: uppercase; letter-spacing: .06em; white-space: normal; max-width: 16ch; display: inline-block; text-align: right; }
.price-table .book { text-align: right; }
.services__notes { margin-top: 26px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.services__notes p { color: var(--muted); font-size: .92rem; margin: 0; max-width: 70ch; }
.services__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.svc-card { position: relative; background: var(--white); border: 1px solid var(--line); padding: 22px 20px 20px; display: flex; flex-direction: column; gap: 8px; transition: transform .3s var(--ease), box-shadow .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -28px rgba(0, 0, 0, .5); }
.svc-card h3 { font-size: 1.15rem; }
.svc-card .price { font-family: var(--condensed); font-size: 1.8rem; color: var(--accent-ink); letter-spacing: .04em; }
.svc-card p { color: var(--muted); font-size: .9rem; flex: 1; }
.svc-card .corner { width: 26px; height: 26px; }


.ba { }
.ba__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.compare { position: relative; aspect-ratio: 3 / 4; max-height: 640px; margin: 0 auto; overflow: hidden; user-select: none; touch-action: none; background: #222; box-shadow: 0 40px 60px -40px rgba(0, 0, 0, .9); }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 4px; background: var(--accent); transform: translateX(-50%); pointer-events: none; }
.compare__handle::after { content: "◀ ▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: .75rem; letter-spacing: 2px; box-shadow: 0 8px 20px rgba(0, 0, 0, .5); }
.compare__tag { position: absolute; top: 14px; padding: 6px 12px; background: rgba(15, 15, 15, .8); color: #fff; font-family: var(--condensed); letter-spacing: .12em; font-size: 1rem; pointer-events: none; }
.compare__tag--before { left: 14px; }
.compare__tag--after { right: 14px; }
.compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare input[type="range"]:focus-visible ~ .compare__handle::after { outline: 3px solid #fff; }
.ba__caption { margin-top: 12px; color: var(--muted-dark); font-size: .9rem; text-align: center; }


.gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip { min-height: 44px; padding: 8px 18px; border: 2px solid var(--ink); background: transparent; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; transition: background .2s, color .2s; }
.chip:hover, .chip[aria-pressed="true"] { background: var(--ink); color: #fff; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; grid-auto-flow: dense; gap: 14px; }
.tile { position: relative; overflow: hidden; background: none; border: 0; padding: 0; cursor: zoom-in; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.tile:hover img { transform: scale(1.06); }
.tile--tall { grid-row: span 2; }
.tile__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 12px; background: linear-gradient(transparent, rgba(0, 0, 0, .75)); color: #fff; font-family: var(--condensed); letter-spacing: .1em; font-size: .95rem; text-align: left; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }
.gallery__cta { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }


.lightbox { position: fixed; inset: 0; z-index: 80; background: rgba(8, 8, 8, .94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1100px); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .8); }
.lightbox__cap { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .9rem; text-align: center; max-width: 80ch; padding: 0 16px; }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--accent); background: rgba(0, 0, 0, .5); color: #fff; font-size: 1.4rem; display: grid; place-items: center; }
.lightbox__btn--prev { left: 18px; }
.lightbox__btn--next { right: 18px; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; background: var(--accent); border: 0; color: #fff; font-size: 1.6rem; line-height: 1; }


.reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.review { position: relative; background: var(--white); padding: clamp(28px, 3.5vw, 48px); border: 1px solid var(--line); box-shadow: 0 30px 50px -40px rgba(0, 0, 0, .5); }
.review::before { content: "\201C"; position: absolute; top: -34px; left: 22px; font-family: var(--condensed); font-size: 8rem; line-height: 1; color: var(--accent); }
.review blockquote { margin: 0; }
.review .q { font-weight: 900; font-size: clamp(1.25rem, 1.9vw, 1.7rem); line-height: 1.25; text-transform: uppercase; letter-spacing: -.005em; }
.review .full { color: var(--muted); margin-top: 14px; }
.review footer { margin-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.review cite { font-style: normal; font-weight: 800; }
.review cite small { display: block; font-weight: 500; color: var(--muted); }
.reviews__foot { margin-top: 30px; color: var(--muted); font-size: .9rem; }


.about { }
.about__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.about__collage { position: relative; aspect-ratio: 1; }
.about__collage .ph { position: absolute; overflow: hidden; }
.about__collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.about__collage .ph--main { left: 0; top: 6%; width: 72%; height: 78%; }
.about__collage .ph--small { right: 0; bottom: 0; width: 46%; height: 50%; border: 8px solid var(--black); }
.about__collage .stroke { width: 80%; height: 120px; left: -6%; bottom: -3%; color: var(--accent); z-index: 2; opacity: .95; }
.about__collage .corner { z-index: 3; }
.about__collage .ghost-word { right: -6%; top: -10%; z-index: 0; }
.about__quote { font-family: var(--condensed); color: var(--accent); font-size: 6rem; line-height: .6; margin-bottom: 8px; }
.about p { color: rgba(255, 255, 255, .84); }


.expect__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: 40px; }
.expect__item { text-align: center; }
.expect__item svg { width: 74px; height: 74px; margin: 0 auto 16px; color: var(--accent); }
.expect__item h3 { font-size: 1.05rem; }
.expect__item p { color: var(--muted); font-size: .92rem; margin: 8px auto 0; max-width: 26ch; }


.hours__in { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.hours-chart { display: grid; gap: 10px; }
.hours-chart__axis { display: grid; grid-template-columns: 110px 1fr; align-items: center; font-family: var(--condensed); letter-spacing: .08em; color: var(--muted-dark); font-size: .9rem; }
.hours-chart__ticks { position: relative; height: 1.2em; }
.hours-chart__ticks span { position: absolute; left: var(--x); transform: translateX(-50%); }
.hours-chart__ticks span:first-child { transform: none; }
.hours-row { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 12px; }
.hours-row__day { font-weight: 800; text-transform: uppercase; font-size: .85rem; letter-spacing: .06em; }
.hours-row__track { position: relative; height: 34px; background: rgba(255, 255, 255, .06); }
.hours-row__bar { position: absolute; top: 4px; bottom: 4px; left: var(--l); width: var(--w); background: var(--accent-ink); display: flex; align-items: center; justify-content: space-between; padding: 0 10px; font-family: var(--condensed); font-size: .95rem; letter-spacing: .06em; color: #fff; white-space: nowrap; transform-origin: left; animation: grow .8s var(--ease) both; }
@keyframes grow { from { transform: scaleX(0); } }
.hours-row__bar.today { box-shadow: 0 0 0 3px #fff inset; }
.hours__aside .cond { font-size: 1.4rem; color: var(--accent); }
.paper .cond, .light .cond { color: var(--accent-ink); }
.hours__aside p { color: rgba(255, 255, 255, .8); }
.hours__today { padding: 18px 20px; background: rgba(255, 255, 255, .06); border-left: 4px solid var(--accent); margin: 18px 0 22px; }
.hours__today b { display: block; font-family: var(--condensed); font-size: 1.8rem; letter-spacing: .04em; line-height: 1; }


.learn__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.learn-card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.learn-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .5); }
.learn-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.learn-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.learn-card:hover .learn-card__img img { transform: scale(1.05); }
.learn-card__body { padding: 22px 22px 24px; display: grid; gap: 8px; }
.learn-card__body p { color: var(--muted); font-size: .92rem; margin: 0; }
.learn-card__body .text-link { margin-top: 6px; }
.learn-card__tag { position: absolute; top: 14px; left: 14px; background: var(--accent-ink); color: #fff; font-family: var(--condensed); letter-spacing: .12em; padding: 4px 10px; font-size: .95rem; }


.interior__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; margin-top: 36px; }
.interior__grid figure { margin: 0; position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.interior__grid figure:first-child { grid-row: span 2; aspect-ratio: auto; }
.interior__grid--even { grid-template-columns: repeat(3, 1fr); }
.interior__grid--even figure:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
.interior__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.interior__grid figure:hover img { transform: scale(1.04); }
.interior__grid figcaption { position: absolute; left: 0; bottom: 0; padding: 30px 14px 10px; width: 100%; background: linear-gradient(transparent, rgba(0, 0, 0, .7)); color: #fff; font-size: .8rem; }


.banner { }
.banner__in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 20px; min-height: 380px; }
.banner__figure { position: relative; align-self: end; margin-bottom: calc(-1 * clamp(64px, 9vw, 120px) - var(--tear-h) * .5); }
.banner__figure img { position: relative; z-index: 1; width: min(420px, 100%); height: auto; margin: 0 auto; }
.banner__figure .stroke { width: 120%; left: -10%; bottom: -3%; height: 120px; color: var(--accent); z-index: 2; }
.banner h2 { font-size: clamp(1.9rem, 4vw, 3.6rem); }
.banner .lead { color: rgba(255, 255, 255, .82); max-width: 46ch; margin-top: 12px; }


.visit__in { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; min-height: 460px; box-shadow: 0 40px 70px -50px rgba(0, 0, 0, .6); }
.map { position: relative; min-height: 360px; background: var(--paper-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px; z-index: 0; }
.map--static { background: var(--paper-2) url("../img/work/interior-chairs.jpg") center/cover; }
.map--static::before { content: ""; position: absolute; inset: 0; background: rgba(243, 241, 236, .82); }
.map--static .map__fallback { z-index: 1; }
.contact-box { background: var(--ink); color: #fff; padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 18px; }
.contact-box h3 { font-size: 1.5rem; }
.contact-box address { font-style: normal; line-height: 1.5; font-weight: 700; }
.contact-box a { color: #fff; text-decoration: none; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; }
.contact-line svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 4px; }
.contact-box .hours-list { display: grid; gap: 4px; font-size: .92rem; }
.contact-box .hours-list div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line-dark); padding: 4px 0; }
.contact-box .hours-list span:last-child { font-family: var(--condensed); letter-spacing: .06em; font-size: 1.05rem; }
.contact-box .btn-row { margin-top: 6px; }


.faq__list { display: grid; gap: 10px; margin-top: 30px; }
.faq details { background: var(--white); border: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; font-weight: 800; font-size: 1.05rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; display: grid; place-items: center; background: var(--accent-ink); color: #fff; font-family: var(--condensed); font-size: 1.4rem; transition: transform .3s; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 20px; color: var(--muted); margin: 0; max-width: 80ch; }
.faq__policy { margin-top: 26px; padding: 20px 24px; background: var(--white); border-left: 4px solid var(--accent); color: var(--muted); font-size: .92rem; }


.final { }
.final__in { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 24px; }
.final h2 { font-size: clamp(2.2rem, 5.4vw, 4.6rem); }
.final .lead { color: rgba(255, 255, 255, .82); max-width: 46ch; margin: 16px 0 26px; }
.final__figure { position: relative; margin-bottom: calc(-1 * clamp(64px, 9vw, 120px)); align-self: end; }
.final__figure img { position: relative; z-index: 1; width: min(360px, 100%); height: auto; margin: 0 auto; }
.final__figure .stroke { width: 120%; left: -10%; bottom: -3%; height: 110px; color: var(--accent); z-index: 2; }
.final__support { color: rgba(255, 255, 255, .7); font-size: .9rem; }
.final__support a { color: #fff; font-weight: 700; }


.footer { position: relative; overflow-x: clip; background: var(--black); color: #fff; padding: 48px 0 32px; border-top: 1px solid var(--line-dark); }
.footer.has-tear-top { padding-top: calc(48px + var(--tear-h) * .45); border-top: 0; }
.footer__in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
.footer nav { display: grid; gap: 8px; }
.footer nav a { color: #fff; text-decoration: none; font-weight: 700; }
.footer nav a:hover { color: var(--accent); }
.footer address { font-style: normal; color: rgba(255, 255, 255, .75); line-height: 1.6; }
.footer address a { color: #fff; text-decoration: none; }
.footer__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255, 255, 255, .6); font-size: .85rem; }
.footer .brand__logo { width: 130px; }


.fab { position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 112px; height: 112px; border-radius: 50%; background: var(--accent-ink); color: #fff; text-decoration: none; display: grid; place-items: center; text-align: center; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; line-height: 1.15; box-shadow: 0 16px 34px -10px rgba(217, 96, 40, .9); transition: transform .3s var(--ease); }
.fab::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid var(--accent); opacity: .55; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.85); opacity: .6; } 100% { transform: scale(1.25); opacity: 0; } }
.fab:hover { transform: translateY(-4px) scale(1.03); }
.fab.is-away { opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9); pointer-events: none; }

.to-map, .to-top { position: fixed; left: 20px; z-index: 45; width: 54px; height: 54px; border-radius: 50%; background: var(--accent-ink); color: #fff; border: 0; display: grid; place-items: center; text-decoration: none; box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .7); }
.to-map { bottom: 20px; transition: transform .3s var(--ease); }
.to-map::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); opacity: .5; }
.to-map:hover { transform: translateY(-3px); }
.to-map svg { width: 24px; height: 24px; }
.to-top { bottom: 86px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }


.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
.js .reveal[data-delay="4"] { transition-delay: .4s; }


.page-hero { position: relative; background: var(--black); color: #fff; padding: clamp(56px, 8vw, 100px) 0 calc(clamp(56px, 8vw, 100px) + var(--tear-h) * .5); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: grayscale(.3); }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 10, 10, .95), rgba(10, 10, 10, .5)); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .lead { max-width: 60ch; color: rgba(255, 255, 255, .85); margin-top: 16px; }
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; font-size: .85rem; color: rgba(255, 255, 255, .7); margin-bottom: 18px; }
.crumbs a { color: #fff; text-decoration: none; font-weight: 700; }
.article { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.article > * { min-width: 0; }
.article .prose p { font-size: 1.05rem; }
.price-box { background: var(--white); border: 1px solid var(--line); padding: 26px; position: relative; }
.price-box h3 { font-size: 1.2rem; margin-bottom: 14px; }
.price-box .price-table td { padding: 12px 8px; }
.aside-note { margin-top: 18px; padding: 18px 20px; background: var(--paper-2); color: var(--muted); font-size: .92rem; border-left: 4px solid var(--accent); }



.owner__in { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.owner__photo { position: relative; }
.owner__photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; filter: grayscale(.15) contrast(1.05); }
.owner__photo .stroke--top { top: -34px; left: -6%; width: 112%; height: 90px; color: var(--black); z-index: 2; }
.owner__photo .stroke--bottom { bottom: -30px; left: -8%; width: 116%; height: 80px; color: var(--black); z-index: 2; }
.owner__photo .stroke--accent { bottom: 8%; right: -10%; width: 60%; height: 60px; color: var(--accent); z-index: 3; }
.owner__photo .corner { z-index: 4; }
.owner__mark { font-family: var(--condensed); color: var(--accent); font-size: 7rem; line-height: .55; margin-bottom: 6px; }
.owner__title { font-family: var(--condensed); font-size: 1.35rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 10px 0 18px; }
.owner__body p { color: rgba(255, 255, 255, .86); font-size: 1.02rem; max-width: 62ch; }
.owner__source { margin-top: 6px; }


.story__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose ul { padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose li b { font-weight: 800; }
.prose p a { color: var(--accent); font-weight: 700; }


.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: inherit; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .5); }
.news-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__tag { position: absolute; top: 14px; left: 14px; background: var(--accent-ink); color: #fff; font-family: var(--condensed); letter-spacing: .12em; padding: 4px 10px; font-size: .95rem; }
.news-card__body { padding: 20px 22px 24px; display: grid; gap: 8px; align-content: start; }
.news-card__body h3 { font-size: 1.1rem; }
.news-card__body p { color: var(--muted); font-size: .92rem; margin: 0; }
.news-card__body .text-link { margin-top: 6px; }


.post { display: grid; grid-template-columns: minmax(0, 70ch) 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.post__body p { font-size: 1.05rem; }
.post__body h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.post__body ul { padding-left: 20px; }
.post__body li { margin-bottom: 8px; }
.post__aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 14px; }
@media (max-height: 900px) { .post__aside { position: static; } }
.post__cta { background: var(--ink); color: #fff; padding: 26px; }
.post__cta .cond { color: var(--accent); font-size: 1.3rem; }
.post__cta p { color: rgba(255, 255, 255, .8); font-size: .92rem; }
.post__cta .btn { width: 100%; margin-top: 8px; }
.post__more { display: grid; gap: 8px; }
.post__more a { text-decoration: none; font-weight: 700; padding: 10px 0; border-bottom: 1px solid var(--line); }
.post__more a:hover { color: var(--accent); }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }





.page-hero { overflow: visible; }
.page-hero__inner { position: relative; overflow: hidden; padding-block: inherit; }
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 100px) calc(clamp(56px, 8vw, 100px) + var(--tear-h) * .5); }
.page-hero { padding: 0; }


.hero__anchor { font-family: var(--condensed); font-size: 1.5rem; letter-spacing: .08em; color: #fff; margin: 14px 0 22px; }
.hero__anchor::before { content: ""; display: inline-block; width: 26px; height: 3px; background: var(--accent); vertical-align: middle; margin-right: 12px; }


.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-pair figure { margin: 0; position: relative; background: #1b1b1b; }
.ba-pair img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; display: block; }
.ba-pair figcaption { position: absolute; top: 12px; left: 12px; background: rgba(15, 15, 15, .85); color: #fff; font-family: var(--condensed); letter-spacing: .12em; font-size: .95rem; padding: 4px 12px; }


.map { position: relative; min-height: 360px; background: var(--paper-2); display: grid; }
.map__card { position: relative; z-index: 1; align-self: center; padding: clamp(22px, 3vw, 40px); display: grid; gap: 10px; }
.map__card .cond { color: var(--accent-ink); font-size: 1.3rem; }
.map__card p { margin: 0; }
.map__card .muted { font-size: .9rem; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity .4s; z-index: 0; }
.map--loaded iframe { opacity: 1; z-index: 2; }
.map--loaded .map__card { display: none; }
.map--static { background: var(--paper-2) url("../img/work/interior-chairs.jpg") center/cover; }
.map--static::before { content: ""; position: absolute; inset: 0; background: rgba(243, 241, 236, .86); }


.portrait[data-selected="true"] { filter: none; transform: translateY(-16px) scale(1.06); }
.portrait[data-selected="true"] .portrait__name { opacity: 1; }


.lightbox__count { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-family: var(--condensed); letter-spacing: .14em; font-size: 1rem; }


.hours-row__today { font-weight: 800; letter-spacing: .04em; }


.no-js .fab, .no-js .to-top { display: none; }



.app__status { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 18px 0 0; color: rgba(255, 255, 255, .72); font-size: .92rem; }
.app__badge { display: inline-block; background: var(--accent); color: #fff; font-family: var(--condensed); letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; padding: 5px 12px; }

.app__stores { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 26px; }
.store-badge { display: inline-block; line-height: 0; }
.store-badge img { height: 48px; width: auto; max-width: none; display: block; }
.store-badge--play img { height: 71px; margin: -12px; }
a.store-badge { transition: transform .25s var(--ease); }
a.store-badge:hover { transform: translateY(-2px); }
.store-badge--soon { cursor: default; }
.app__legal { flex: 0 0 100%; margin: 6px 0 0; font-size: max(13px, .78rem); line-height: 1.5; color: rgba(255, 255, 255, .5); max-width: 62ch; }


.score { background: var(--black); color: #fff; padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; position: relative; }
.score__num { font-family: var(--display); font-size: clamp(3.4rem, 7vw, 5.4rem); line-height: .9; }
.score__num span { font-size: .34em; color: rgba(255, 255, 255, .6); }
.score__stars { color: var(--accent); font-size: 1.5rem; letter-spacing: .12em; }
.score__label { font-family: var(--condensed); letter-spacing: .12em; text-transform: uppercase; margin: 6px 0 0; }
.score__note { color: rgba(255, 255, 255, .62); font-size: .82rem; margin: 6px 0 14px; max-width: 42ch; }
.score .btn--outline { color: #fff; border-color: rgba(255, 255, 255, .5); }
.score .btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.ig-inline { display: inline-flex; align-items: center; gap: 6px; }
.ig-inline svg { width: 1em; height: 1em; fill: currentColor; }


.nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu nav a[aria-current="page"] { color: var(--accent); }
.footer nav a[aria-current="page"] { color: var(--accent); }
.footer__in { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.footer nav .cond { color: rgba(255, 255, 255, .55); margin-bottom: 2px; font-size: .95rem; }


.roster__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.roster__card { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: end; background: var(--white); border: 1px solid var(--line); padding: 20px 22px 24px; position: relative; }
.roster__photo { position: relative; align-self: end; }
.roster__photo img { position: relative; width: 100%; height: auto; display: block; transform: scale(var(--s, 1)); transform-origin: bottom center; }
.roster__photo .stroke { position: absolute; left: -10%; right: -10%; bottom: 4px; height: 26px; color: var(--accent); }
.roster__photo .stroke svg { width: 100%; height: 100%; fill: currentColor; display: block; }
.roster__body { align-self: center; }
.roster__body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1; }
.roster__role { font-family: var(--condensed); letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); font-size: .82rem; margin: 6px 0 12px; }
.roster__body p { color: var(--muted); font-size: .94rem; margin: 0 0 10px; }
.roster__body .team__note { color: var(--ink); font-weight: 700; font-size: .9rem; }
.roster__body .team__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }


.price-box--wide { margin-top: 34px; }
.price-box--wide .price-table td { padding: 14px 10px; }
.learn__grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1400px) {
  .header__meta .meta:nth-child(1) { display: none; }   
  .nav a { padding: 10px 9px; font-size: .88rem; }
}
@media (max-width: 1180px) {
  .header__meta { display: none; }
  .header__meta + .btn { margin-left: auto; }
  .header .btn .full { display: none; }
  .header .btn .short { display: inline; }
  .header .btn { min-height: 46px; padding: 10px 18px; }
}
@media (max-width: 1100px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .services__cards { grid-template-columns: repeat(2, 1fr); }
  .expect__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  :root { --tear-h: 70px; --header-h: 72px; }
  .nav, .header__meta { display: none; }
  .burger { display: block; }
  .header .btn { margin-left: auto; }
  .hero__in { grid-template-columns: 1fr; }
  .hero__badges { justify-self: start; grid-template-columns: 1fr 1fr; max-width: none; }
  .booking__in, .values__in, .ba__in, .about__in, .hours__in, .team__panel, .visit__in, .final__in, .banner__in, .owner__in, .story__cols, .post { grid-template-columns: 1fr; }
  .owner__photo .stroke--accent { bottom: -22px; right: -6%; width: 55%; height: 52px; }
  .news__grid, .blog-list { grid-template-columns: 1fr 1fr; }
  .owner__photo { max-width: 520px; }
  .post__aside { position: static; }
  .values__figure, .banner__figure, .final__figure { margin-bottom: 0; order: 2; }
  .values__list { grid-template-columns: 1fr; }
  .values__figure img { width: min(340px, 100%); }
  .situations .grid { grid-template-columns: 1fr; gap: 28px; }
  .situation .big-num { font-size: 5.5rem; }
  .learn__grid { grid-template-columns: 1fr; }
  .interior__grid { grid-template-columns: 1fr 1fr; }
  .interior__grid figure:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .roster__grid { grid-template-columns: 1fr; }
  .learn__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .article { grid-template-columns: 1fr; }
  
  .team__row { overflow-x: auto; scroll-snap-type: x proximity; gap: 10px; padding: 14px 6px 34px; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
  .portrait { flex: 0 0 auto; scroll-snap-align: center; }
  
  .portrait img { width: auto; height: 150px; max-height: none; transform: none; }
  .portrait[aria-selected="true"], .portrait[data-selected="true"] { transform: translateY(-6px) scale(1.05); }
  .portrait__name { font-size: .82rem; bottom: -24px; padding: 2px 10px 1px; }
  .team__ground { height: 46px; bottom: 24px; }
  .team__ground--accent { display: none; }
}
@media (max-width: 600px) {
  .footer__in { grid-template-columns: 1fr; }
  .roster__card { grid-template-columns: 1fr; gap: 12px; padding: 16px; align-items: start; }
  .roster__photo { max-width: 150px; align-self: start; }
  .learn__grid--3 { grid-template-columns: 1fr; }
  :root { --tear-h: 54px; }
  body { font-size: 15px; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .header .btn { width: auto; min-height: 44px; padding: 8px 14px; font-size: .72rem; }
  .header .btn .full { display: none; }
  .header .btn .short { display: inline; }
  .brand__logo { width: 72px; }
  .brand__text { display: none; }
  .hero__badges { grid-template-columns: 1fr; }
  .hero .splat { display: none; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .laurel__ring { width: 130px; height: 112px; }
  .laurel__val { font-size: 2.5rem; }
  .services__cards { grid-template-columns: 1fr; }
  .price-table, .price-table tbody { display: block; }
  .price-table tr { display: grid; grid-template-columns: 1fr auto auto; grid-template-areas: "name name name" "time price book"; align-items: center; column-gap: 14px; padding: 14px 0; }
  .price-table td { padding: 2px 0; }
  .price-table td:nth-child(1) { grid-area: name; padding-bottom: 6px; }
  .price-table td:nth-child(2) { grid-area: time; }
  .price-table td:nth-child(3) { grid-area: price; text-align: right; }
  .price-table td:nth-child(4) { grid-area: book; text-align: right; }
  .price-table .price { font-size: 1.6rem; }
  .price-table .price--var { text-align: right; max-width: 11ch; font-size: .72rem; }
  .price-table .book .btn { width: auto; min-height: 40px; padding: 8px 14px; }
  .services__notes { grid-template-columns: 1fr; }
  .expect__grid { grid-template-columns: 1fr; }
  .news__grid, .blog-list { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; }
  
  .fab { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); width: auto; height: 48px; border-radius: 26px; padding: 0 20px; font-size: .78rem; line-height: 48px; display: block; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .7); }
  .fab br { display: none; }
  .fab::before { display: none; }
  body { padding-bottom: 64px; }
  .owner__mark { font-size: 5rem; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .hours-row { grid-template-columns: 84px 1fr; gap: 8px; }
  .hours-row__day { font-size: .72rem; }
  .hours-chart__axis { grid-template-columns: 84px 1fr; }
  .hours-row__bar { font-size: .78rem; padding: 0 6px; }
  .interior__grid { grid-template-columns: 1fr; }
  .interior__grid figure:first-child { grid-column: auto; }
  .to-map, .to-top { left: 14px; width: 46px; height: 46px; }
  .to-map { bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .to-map svg { width: 21px; height: 21px; }
  .to-top { bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .portrait img { height: 138px; }
  .team__tabs { gap: 8px; }
  .tab-btn { min-height: 44px; padding: 8px 14px; font-size: .78rem; }
  .team__panel h3 { font-size: 2rem; }
  .compare { aspect-ratio: 3 / 4; }
  .review::before { font-size: 6rem; top: -24px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
}

@media (max-width: 1180px), (pointer: coarse) {
  .faq summary, .faq__list summary, details summary { min-height: 48px; display: flex; align-items: center; padding-right: 52px; }
  .contact-line a { min-height: 44px; display: inline-flex; align-items: center; }
  .final__support a, .muted a, .gallery__cta .muted a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer nav a, .mobile-menu nav a, .crumbs a, .text-link, .review .text-link, .ig-link { min-height: 44px; display: inline-flex; align-items: center; }
  .footer nav { gap: 4px; }
  .brand { min-height: 44px; display: inline-flex; align-items: center; }
  small, figcaption, .price-table .desc, .tile__cap, .news-card__body p, .aside-note,
  .interior__grid figcaption, .checklist small, .phone__step small, .team__note,
  .review cite small, .footer__bottom, .muted, .values__list p, .hours-list,
  .contact-box .muted, .ba__caption, .score__note, .store small { font-size: max(13px, 0.86rem); }
}

@media (min-width: 601px) and (pointer: coarse) {
  .fab { width: 108px; height: 108px; font-size: .78rem; }
}

@media (max-width: 420px) {
  
  .price-table tr { grid-template-columns: 1fr auto; grid-template-areas: "name name" "time price" "book book"; row-gap: 4px; }
  .price-table td:nth-child(4) { text-align: left; margin-top: 10px; }
  .price-table .book .btn { width: 100%; min-height: 44px; }
  .price-table .price { font-size: 1.45rem; }
  .price-box { padding: 18px; }
  .price-box--wide .price-table td { padding: 2px 0; }
  
  small, figcaption, .price-table .desc, .tile__cap, .muted small { font-size: 13px !important; }
  .footer nav a, .mobile-menu nav a, .crumbs a, .text-link, .review .text-link { min-height: 40px; display: inline-flex; align-items: center; }
  .footer nav { gap: 2px; }
  .brand { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 360px) {
  .roster__photo { max-width: 130px; }
  .hours-row { grid-template-columns: 1fr; gap: 4px; }
  .hours-chart__axis { grid-template-columns: 1fr; }
  .hours-chart__axis > span:first-child { display: none; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tile--tall { grid-row: auto; }
}


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