

:root {
  --bg: #120e0c;
  --bg-2: #1a1411;
  --bg-3: #231b17;
  --bg-4: #2c2320;
  --line: rgba(232, 213, 163, 0.14);
  --line-strong: rgba(232, 213, 163, 0.32);
  --gold: #c9a45c;
  --gold-2: #e8d5a3;
  --gold-dim: rgba(201, 164, 92, 0.16);
  --ivory: #f4ecdf;
  --ivory-2: #d8cdbb;
  --muted: #a3927f;
  --rose: #d8a291;

  --skin-1: #f3d9c1; --skin-2: #e8c1a3; --skin-3: #d7a583; --skin-4: #c08a66;
  --skin-5: #a06b4c; --skin-6: #7d4f37; --skin-7: #5b3626; --skin-8: #3e2419;

  --font-display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;
  --callbar-h: 70px;        
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0; background: var(--bg); color: var(--ivory);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 2px; }

.container { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; padding: 10px 14px; background: var(--gold); color: var(--bg); border-radius: var(--radius); }
.skip-link:focus { top: 12px; }

.loader { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: var(--bg); }
.loader__mark { width: 104px; height: 104px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; }
.loader__glyph { position: relative; display: block; width: 46px; }
.loader__logo { display: block; width: 100%; height: auto; }

.loader__fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  
  background: linear-gradient(0deg, var(--skin-7) 0%, var(--skin-5) 32%, var(--skin-3) 66%, var(--gold-2) 100%);
  display: none;
}
@supports ((mask-image: url("/logo/cut/mark-flat-128.webp")) or (-webkit-mask-image: url("/logo/cut/mark-flat-128.webp"))) {
  .loader__fill {
    display: block;
    -webkit-mask: url("/logo/cut/mark-flat-128.webp") bottom / 100% auto no-repeat;
    mask: url("/logo/cut/mark-flat-128.webp") bottom / 100% auto no-repeat;
  }
}
.loader__bar { position: absolute; left: 50%; bottom: 14%; transform: translateX(-50%); width: min(220px, 50vw); height: 1px; background: var(--line); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 0%; background: var(--gold); }
body.is-loading { overflow: hidden; }
.no-js .loader { display: none; }
html.no-js body.is-loading { overflow: auto; }
@media (prefers-reduced-motion: reduce) { .loader { display: none; } }

.display { font-family: var(--font-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }
.display em { font-style: italic; color: var(--gold-2); }
.h1 { font-size: clamp(44px, 7.2vw, 104px); }
.h2 { font-size: clamp(34px, 4.6vw, 62px); }
.h3 { font-size: clamp(26px, 3vw, 38px); }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ivory-2); max-width: 60ch; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; }

.split-line { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.split-word { display: inline-block; will-change: transform; }

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap;
  min-height: 46px; padding: 14px 24px; border-radius: var(--radius);
  font-weight: 500; font-size: 15px; line-height: 1.2; letter-spacing: 0.02em;
  border: 1px solid var(--gold); color: var(--bg); background: var(--gold); cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn span { position: relative; z-index: 1; }

.btn .ico { position: relative; z-index: 1; flex: none; width: 17px; height: 17px; }
.btn--sm .ico { width: 16px; height: 16px; }
.ico--inline { display: inline-block; flex: none; width: 1em; height: 1em; margin-left: 8px; vertical-align: -0.14em; color: var(--gold); }
.ico--before { margin-left: 0; margin-right: 6px; }

.link-arrow .ico--before { margin-right: -2px; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--gold-2); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--ghost { background: transparent; color: var(--ivory); border-color: var(--line-strong); }
.btn--ghost::before { background: var(--gold-dim); }
.btn--ghost:hover { color: var(--gold-2); border-color: var(--gold); }
.btn--sm { min-height: 40px; padding: 10px 16px; font-size: 14px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--gold-2); border-bottom: 1px solid transparent; transition: border-color 0.25s ease, gap 0.25s ease; }
.link-arrow:hover { border-color: var(--gold); gap: 13px; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(18, 14, 12, 0); border-bottom: 1px solid transparent; transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease; }
.header.is-stuck { background: rgba(18, 14, 12, 0.86); border-bottom-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 2vw, 32px); height: 84px; transition: height 0.4s ease; }

.header__inner { width: min(1360px, 100% - 2 * var(--gutter)); }
.header.is-stuck .header__inner { height: 68px; }

.brand { display: flex; align-items: center; gap: 13px; }

.brand__mark { height: 54px; width: auto; flex: none; display: block; }

.brand__nameimg { display: block; height: 24px; width: auto; }
.brand__text { display: block; transform: translateY(2px); }
.brand__sub { display: block; white-space: nowrap; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 1px; }

.nav { display: flex; align-items: center; gap: clamp(17px, 1.9vw, 30px); }
.nav a { position: relative; white-space: nowrap; font-size: 15px; color: var(--ivory-2); padding: 6px 0; transition: color 0.25s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav a:hover { color: var(--ivory); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.lang a, .lang span { padding: 7px 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }
.lang [aria-current="true"] { background: var(--gold-dim); color: var(--gold-2); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle i { position: relative; width: 22px; height: 1px; background: var(--ivory); transition: background 0.3s ease; }
.nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: var(--ivory); transition: transform 0.3s var(--ease), top 0.3s var(--ease); }
.nav-toggle i::before { top: -7px; } .nav-toggle i::after { top: 7px; }
.nav-open .nav-toggle i { background: transparent; }
.nav-open .nav-toggle i::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle i::after { top: 0; transform: rotate(-45deg); }
.nav__cta, .nav__tel { display: none; }

@media (max-width: 1500px) { .brand__sub { display: none; } }
@media (max-width: 1400px) {
  .nav a { font-size: 14px; }
  .nav { gap: clamp(14px, 1.6vw, 26px); }
  .header__inner { gap: clamp(14px, 1.6vw, 28px); }
}

@media (max-width: 1260px) {
  
  .header.is-stuck { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: inline-flex; }
  .header__actions .btn { display: none; }
  
  .brand__sub { display: block; font-size: 8.5px; letter-spacing: 0.16em; }
  .brand__nameimg { height: 21px; }
  .header__inner, .header.is-stuck .header__inner { height: 64px; }
  .hero { padding-top: 64px; }
  .page-hero { padding-top: calc(64px + clamp(24px, 5vh, 48px)); }
  
  .nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; padding: 80px var(--gutter) 40px; background: var(--bg); clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease); overflow-y: auto; overscroll-behavior: contain; visibility: hidden; pointer-events: none; }
  .nav a { font-family: var(--font-display); font-size: clamp(32px, 8vw, 46px); padding: 8px 0; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.5s var(--ease); }
  .nav a::after { display: none; }
  
  .nav a.nav__cta,
  .nav a.nav__tel {
    display: inline-flex; align-self: stretch;
    font-family: var(--font-body); font-size: 16px; letter-spacing: 0.02em;
    padding: 15px 26px; min-height: 54px;
  }
  
  .nav a.nav__cta { margin-top: 30px; color: var(--bg); }
  .nav a.nav__tel { margin-top: 10px; color: var(--ivory); }
  .nav a.nav__tel:hover { color: var(--gold-2); }
  .nav-open .nav { clip-path: inset(0 0 0 0); visibility: visible; pointer-events: auto; }
  .nav-open .nav a { opacity: 1; transform: none; }
  .nav-open .nav a:nth-child(1) { transition-delay: 0.12s; }
  .nav-open .nav a:nth-child(2) { transition-delay: 0.18s; }
  .nav-open .nav a:nth-child(3) { transition-delay: 0.24s; }
  .nav-open .nav a:nth-child(4) { transition-delay: 0.3s; }
  .nav-open .nav a:nth-child(5) { transition-delay: 0.36s; }
  .nav-open .nav a:nth-child(6) { transition-delay: 0.42s; }
  .nav-open .nav a:nth-child(7) { transition-delay: 0.48s; }
  .nav-open .nav a:nth-child(8) { transition-delay: 0.54s; }
  .nav-open .nav a:nth-child(9) { transition-delay: 0.6s; }
  
  .nav-open .offer,
  .nav-open .bubble { opacity: 0; visibility: hidden; pointer-events: none; }
  .nav-open { overflow: hidden; }
}

@media (min-width: 760px) and (max-width: 1260px) {
  .nav { gap: 2px; padding: 76px var(--gutter) 32px; }
  .nav a { font-size: 30px; }
  .nav a.nav__cta, .nav a.nav__tel { font-size: 15px; max-width: 360px; }
  .nav a.nav__cta { margin-top: 26px; }
}

@media (max-width: 560px) {
  .brand__nameimg { height: 19px; }
  
  .brand__mark { height: 34px; }
  .brand { gap: 8px; }
  .brand__sub { font-size: 7.5px; letter-spacing: 0.1em; }
  
  .brand__text { transform: translateY(1px); }
  .header__actions { gap: 8px; }
  .lang a, .lang span { padding: 6px 7px; font-size: 11px; letter-spacing: 0.06em; }
}

.pigment-block { margin-top: clamp(28px, 4.5vh, 52px); }

.pigment { display: grid; grid-template-columns: repeat(8, 1fr); height: 12px; }
.pigment span { display: block; transform: scaleX(0); transform-origin: left; }
.pigment span:nth-child(1){background:var(--skin-1)} .pigment span:nth-child(2){background:var(--skin-2)}
.pigment span:nth-child(3){background:var(--skin-3)} .pigment span:nth-child(4){background:var(--skin-4)}
.pigment span:nth-child(5){background:var(--skin-5)} .pigment span:nth-child(6){background:var(--skin-6)}
.pigment span:nth-child(7){background:var(--skin-7)} .pigment span:nth-child(8){background:var(--skin-8)}
.no-js .pigment span, .no-motion .pigment span { transform: none; }

.pigment-note { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 0 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }

.hero { position: relative; padding-top: 84px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(32px, 5vw, 80px); align-items: end; padding-top: clamp(32px, 6vh, 72px); }
.hero__copy { padding-bottom: clamp(32px, 6vh, 72px); }
.hero__place { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; }
.hero__place i { display: block; width: 36px; height: 1px; background: var(--gold); transform-origin: left; }
.hero .h1 { margin-bottom: 26px; max-width: 12ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 34px 0 44px; }

.hero__index { border-top: 1px solid var(--line); }
.hero__index a { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); transition: color 0.25s ease; }
.hero__index a::before { content: ""; position: absolute; left: -12px; right: -12px; top: 0; bottom: 0; background: var(--gold-dim); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: -1; }
.hero__index a:hover { color: var(--gold-2); }
.hero__index a:hover::before { transform: scaleX(1); }
.hero__index strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.1vw, 26px); }
.hero__index small { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }
.hero__index .mono { color: var(--gold); white-space: nowrap; }

.hero__figure { position: relative; margin: 0; aspect-ratio: 3 / 4; max-height: 78vh; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.hero__figure img { width: 100%; height: 115%; object-fit: cover; object-position: 50% 20%; filter: saturate(0.9); }
.hero__figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 14, 12, 0) 52%, rgba(18, 14, 12, 0.88) 100%); pointer-events: none; }
.hero__caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; display: flex; justify-content: space-between; gap: 12px; align-items: end; }
.hero__caption b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 22px; }
.hero__caption span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); }
@media (max-width: 560px) { .hero__caption > span:last-child { display: none; } }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .hero__figure { order: -1; aspect-ratio: 4 / 5; max-height: 58vh; border-radius: var(--radius); }
  .hero__copy { padding-bottom: 0; }
}

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--bg-2); }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); padding: 0 28px; white-space: nowrap; color: var(--ivory-2); display: inline-flex; align-items: center; gap: 28px; }
.marquee__track span::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }

.section { padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.section--alt, .section--step2 { background: var(--bg-2); }
.section--step3 { background: var(--bg-3); }
.section__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head .eyebrow { margin-bottom: 18px; display: block; }
.section__head .lead { justify-self: end; max-width: 46ch; }
@media (max-width: 800px) { .section__head { grid-template-columns: 1fr; } .section__head .lead { justify-self: start; } }

.directions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.direction { position: relative; background: var(--bg); padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 18px; min-height: 100%; transition: background 0.4s ease; }
.direction:hover { background: var(--bg-3); }
.direction__img { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); }
.direction__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 0.5s ease; filter: saturate(0.85); }
.direction:hover .direction__img img { transform: scale(1.05); filter: saturate(1); }
.direction h3 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 32px); }
.direction p { color: var(--ivory-2); font-size: 15.5px; }
.direction ul { display: flex; flex-wrap: wrap; gap: 6px; }
.direction li { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; padding: 5px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ivory-2); }
.direction__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.direction__foot .mono { color: var(--gold); }
@media (max-width: 900px) { .directions { grid-template-columns: 1fr; } }

.process-pin { position: relative; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.step { position: relative; border-top: 1px solid var(--line-strong); padding-top: 20px; }
.step__rule { position: absolute; left: 0; top: -1px; height: 1px; width: 100%; background: var(--gold); transform-origin: left; }
.step .mono { color: var(--gold); display: block; margin-bottom: 14px; }
.step h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--ivory-2); font-size: 15px; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }

.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); align-items: start; }
.ba-item { margin: 0; }
.ba-grid--feature { grid-template-columns: repeat(2, 1fr); }
.ba-grid--feature .ba-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.ba-grid--feature .ba-item:nth-child(3) { grid-column: 1; grid-row: 2; }
.ba-grid--feature .ba-item:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.ba-grid--pair { grid-template-columns: repeat(3, 1fr); }
.ba-grid--pair .ba-item:nth-child(1) { grid-column: span 2; }
@media (max-width: 820px) {
  .ba-grid, .ba-grid--feature, .ba-grid--pair { grid-template-columns: 1fr !important; }
  .ba-grid--feature .ba-item, .ba-grid--pair .ba-item { grid-column: auto !important; grid-row: auto !important; }
}

.ba { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); touch-action: pan-y; cursor: ew-resize; user-select: none; }
.ba img { width: 100%; display: block; pointer-events: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba__after img { width: 100%; height: 100%; object-fit: cover; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; background: var(--gold-2); pointer-events: none; z-index: 2; }
.ba__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold-2); display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5); }
.ba__knob i { display: block; }
.ba__knob i:nth-child(1){background:var(--skin-2)} .ba__knob i:nth-child(2){background:var(--skin-4)}
.ba__knob i:nth-child(3){background:var(--skin-6)} .ba__knob i:nth-child(4){background:var(--skin-8)}
.ba__tag { position: absolute; z-index: 3; transition: opacity 0.22s ease, visibility 0.22s ease; top: 14px; padding: 5px 10px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(18, 14, 12, 0.78); border: 1px solid var(--line-strong); color: var(--ivory-2); backdrop-filter: blur(6px); }
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; color: var(--gold-2); border-color: var(--gold); }
.ba__cap { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; font-size: 15px; }
.ba__cap .mono { color: var(--gold); font-size: 11.5px; }
.ba:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; background: linear-gradient(0deg, rgba(18, 14, 12, 0.92), rgba(18, 14, 12, 0)); display: flex; justify-content: space-between; align-items: end; gap: 8px; font-size: 14px; }
.gallery figcaption .mono { color: var(--gold-2); font-size: 11px; }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; } }

.about { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.about__media { position: relative; overflow: hidden; border-radius: var(--radius); }
.about__media img { border-radius: var(--radius); width: 100%; height: auto; }
.about__badge { position: absolute; right: 16px; bottom: 28px; z-index: 2; background: var(--bg); border: 1px solid var(--gold); padding: 14px 16px; border-radius: var(--radius); max-width: 220px; }
.about__badge .mono { color: var(--gold); display: block; margin-bottom: 6px; font-size: 11px; }
.about__badge b { font-family: var(--font-display); font-weight: 400; font-size: 18px; display: block; line-height: 1.2; }
.about__copy .eyebrow { display: block; margin-bottom: 18px; }
.about__copy .h2 { margin-bottom: 26px; }
.about__copy p + p { margin-top: 16px; }
.about__copy blockquote { margin: 28px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); font-family: var(--font-display); font-size: 22px; line-height: 1.35; color: var(--gold-2); }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.about__facts b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 28px; color: var(--ivory); }
.about__facts span { font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

.reviews { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: 16px; }
.review { position: relative; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px 22px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.35s ease, transform 0.5s var(--ease); }

.review:only-child { max-width: 350px; }
.review:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review p { font-size: 16px; color: var(--ivory-2); }
.review__meta { margin-top: auto; display: flex; justify-content: space-between; gap: 10px; align-items: end; padding-top: 14px; border-top: 1px solid var(--line); }
.review__meta b { font-weight: 500; display: block; }
.review__meta span { font-size: 13px; color: var(--muted); }
.review__meta .mono { color: var(--gold); font-size: 11px; }
.reviews__foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating b { font-family: var(--font-display); font-weight: 400; font-size: 34px; }
.rating span { font-size: 13.5px; color: var(--muted); }

.ig { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); }
.ig img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), opacity 0.3s ease; }
.ig a:hover img { transform: scale(1.06); opacity: 0.86; }
@media (max-width: 800px) { .ig { grid-template-columns: repeat(3, 1fr); } }

.location { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.location__info { background: var(--bg); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 26px; }
.location__info dl { margin: 0; display: grid; gap: 18px; }
.location__info dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.location__info dd { margin: 0; font-size: 17px; }
.location__info dd a { border-bottom: 1px solid transparent; transition: border-color 0.25s ease, color 0.25s ease; }
.location__info dd a:hover { color: var(--gold-2); border-color: var(--gold); }
.location__map { background: var(--bg-2); min-height: 380px; }
.location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.92) contrast(1.02) brightness(0.96); }
@media (max-width: 900px) { .location { grid-template-columns: 1fr; } }

.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--font-display); font-size: clamp(19px, 2vw, 23px); transition: color 0.25s ease; }
.faq summary:hover { color: var(--gold-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--gold); font-size: 20px; transition: transform 0.4s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 0 22px; color: var(--ivory-2); max-width: 66ch; }

.cta { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; padding-block: clamp(40px, 6vw, 72px); }
.cta .h2 { max-width: 16ch; }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer { padding-block: 48px 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer__logo { display: block; width: clamp(190px, 17vw, 240px); height: auto; margin-bottom: 18px; }
.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer li { margin-bottom: 8px; font-size: 15px; color: var(--ivory-2); }
.footer li a { transition: color 0.25s ease; }
.footer li a:hover { color: var(--gold-2); }

.footer__contacts li { margin-bottom: 14px; }
.footer__contacts a { display: flex; align-items: flex-start; gap: 10px; color: var(--ivory-2); transition: color 0.25s ease; }
.footer__ico { flex: none; width: 16px; height: 16px; margin-top: 4px; color: var(--gold); opacity: 0.8; transition: opacity 0.25s ease; }
.footer__contacts a:hover .footer__ico { opacity: 1; }
.footer__dir { display: block; margin-top: 5px; font-family: var(--font-mono); font-style: normal; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer__contacts a:hover .footer__dir { color: var(--gold-2); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

.page-hero { padding-top: calc(84px + clamp(32px, 7vh, 80px)); padding-bottom: clamp(32px, 5vw, 64px); }
.page-hero .eyebrow { display: block; margin-bottom: 20px; }
.page-hero .h1 { max-width: 14ch; margin-bottom: 22px; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.page-hero__media { overflow: hidden; border-radius: var(--radius); }
.page-hero__media img { width: 100%; height: auto; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }

.menu { border-top: 1px solid var(--line-strong); }
.menu__group { padding-block: clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line-strong); display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: clamp(20px, 4vw, 64px); }
.menu__group h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); position: sticky; top: 100px; align-self: start; }
.menu__group h3 small { display: block; font-family: var(--font-body); font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 34ch; line-height: 1.5; }
.menu__list { display: grid; }
.item { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 24px; padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline; }
.item:first-child { border-top: 0; }
.item::before { content: ""; position: absolute; left: -16px; right: -16px; top: 0; bottom: 0; background: var(--gold-dim); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.item:hover::before { opacity: 1; }
.item h4 { font-size: 17px; font-weight: 500; position: relative; }
.item p { grid-column: 1; color: var(--muted); font-size: 15px; max-width: 58ch; position: relative; }
.item .item__meta { text-align: right; white-space: nowrap; position: relative; }
.item .item__meta b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--gold-2); }
.item .item__meta span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted); }
.item--sub h4 { padding-left: 18px; font-weight: 400; }
.item--sub h4::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 8px; height: 1px; background: var(--gold); }
.item--sub p { padding-left: 18px; }
@media (max-width: 800px) {
  .menu__group { grid-template-columns: 1fr; }
  .menu__group h3 { position: static; }
  .item { grid-template-columns: 1fr; }
  .item .item__meta { text-align: left; }
}

.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.note { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--bg-2); transition: border-color 0.35s ease; }
.note:hover { border-color: var(--line-strong); }
.note .mono { color: var(--gold); display: block; margin-bottom: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.note h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.note p { font-size: 15px; color: var(--ivory-2); }
@media (max-width: 800px) { .notes { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split__media { overflow: hidden; border-radius: var(--radius); }
.split__media img { width: 100%; height: auto; }

.split__media--wide { aspect-ratio: 4 / 3; }
.split__media--wide img { aspect-ratio: auto; }
.split__note { display: block; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.split .eyebrow { display: block; margin-bottom: 16px; }
.split .h2 { margin-bottom: 20px; }
.split p + p { margin-top: 14px; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.bubble { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 176px; height: 234px; border-radius: 14px; overflow: hidden; background: var(--bg-3); border: 1px solid var(--line-strong); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); transition: width 0.55s var(--ease), height 0.55s var(--ease), border-radius 0.55s var(--ease), opacity 0.4s ease, transform 0.5s var(--ease); }
.bubble.is-expanded { width: min(340px, calc(100vw - 36px)); height: min(560px, calc(100vh - 36px)); border-radius: 10px; }
.bubble__open { position: absolute; inset: 0; width: 100%; height: 100%; text-align: left; }
.bubble video, .bubble__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bubble__photo { opacity: 0; transition: opacity 0.45s ease; }
.bubble.is-photo .bubble__photo { opacity: 1; }
.bubble__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 12px 10px; background: linear-gradient(0deg, rgba(18, 14, 12, 0.94), rgba(18, 14, 12, 0)); color: var(--ivory); pointer-events: none; }
.bubble__cap .mono { font-size: 10.5px; color: var(--gold-2); display: block; letter-spacing: 0.14em; text-transform: uppercase; }
.bubble__cap strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 19px; line-height: 1.15; margin-top: 4px; }
.bubble.is-expanded .bubble__cap strong { font-size: 22px; }
.bubble__cap small { display: none; font-size: 12px; color: var(--ivory-2); margin-top: 4px; }
.bubble.is-expanded .bubble__cap small { display: block; }
.bubble__close, .bubble__ig, .bubble__next { position: absolute; z-index: 2; width: 36px; height: 36px; border-radius: 50%; display: none; align-items: center; justify-content: center; background: rgba(18, 14, 12, 0.72); color: var(--ivory); border: 1px solid var(--line-strong); transition: background 0.25s ease, color 0.25s ease; }
.bubble__close:hover, .bubble__ig:hover, .bubble__next:hover { background: var(--gold); color: var(--bg); }
.bubble__close { top: 10px; right: 10px; font-size: 20px; line-height: 1; }
.bubble__ig { top: 10px; left: 10px; }
.bubble__ig svg { width: 16px; height: 16px; }
.bubble__next { right: 10px; top: 50%; transform: translateY(-50%); }
.bubble.is-expanded .bubble__close, .bubble.is-expanded .bubble__ig, .bubble.is-expanded .bubble__next { display: inline-flex; }
.bubble__dots { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); display: none; gap: 4px; z-index: 2; }
.bubble.is-expanded .bubble__dots { display: flex; }
.bubble__dots i { width: 14px; height: 2px; background: rgba(244, 236, 223, 0.35); border-radius: 2px; transition: background 0.3s ease; }
.bubble__dots i.is-on { background: var(--gold-2); }
.bubble.is-hidden { display: none; }
.bubble.is-away { opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none; }
@media (max-width: 540px) { .bubble { width: 132px; height: 176px; right: 14px; bottom: 14px; }
  .bubble__cap strong { font-size: 16px; } }

.no-js .reveal, .no-motion .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .pigment span { transform: none; }
  .marquee__track { transform: none !important; }
}

.studio { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.2vw, 14px); }
.studio figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); }
.studio img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; transition: transform 1.1s var(--ease); }
.studio figure:hover img { transform: scale(1.04); }
.studio figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px;
  background: linear-gradient(0deg, rgba(18, 14, 12, 0.92), rgba(18, 14, 12, 0));
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ivory-2);
}
.studio .is-wide { grid-column: span 2; }
.studio .is-wide img { aspect-ratio: 3 / 2; }
@media (max-width: 900px) { .studio { grid-template-columns: 1fr 1fr; } .studio .is-wide { grid-column: span 2; } }

.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); margin-top: clamp(14px, 1.6vw, 20px); }
.creds figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.creds img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.creds figcaption { padding: 13px 15px 15px; font-size: 14.5px; color: var(--ivory-2); }
.creds figcaption b { display: block; font-weight: 500; color: var(--ivory); margin-bottom: 3px; }
.creds figcaption span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold); }
@media (max-width: 800px) { .creds { grid-template-columns: 1fr; } }

.practice__head { align-items: end; }
.practice__no {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5vw, 64px); line-height: 1; color: var(--gold);
  opacity: 0.45; margin-bottom: 10px; letter-spacing: -0.02em;
}
.practice .gallery--trio { grid-template-columns: repeat(3, 1fr); margin-top: clamp(14px, 2vw, 24px); }
@media (max-width: 900px) { .practice .gallery--trio { grid-template-columns: 1fr 1fr; } }

.practice .ba-grid + .gallery { margin-top: clamp(14px, 2vw, 24px); }

.practice__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-top: clamp(24px, 3vw, 36px);
  padding-top: 20px; border-top: 1px solid var(--line);
}
.practice__price b {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 2.6vw, 34px);
  color: var(--gold-2); display: block; line-height: 1;
}
.practice__price span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }

.practice__faq { margin-top: clamp(32px, 4vw, 52px); }
.practice__faqh {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}

.ig-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.ig-group__title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.ig-groups .ig { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .ig-groups { grid-template-columns: 1fr; } }

.gallery figcaption, .studio figcaption, .bubble__cap {
  background: linear-gradient(0deg,
    rgba(18, 14, 12, 0.97) 0%,
    rgba(18, 14, 12, 0.88) 38%,
    rgba(18, 14, 12, 0.55) 68%,
    rgba(18, 14, 12, 0) 100%);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}
.gallery figcaption { padding: 34px 16px 14px; }
.studio figcaption { padding: 34px 14px 12px; }
.bubble__cap { padding: 40px 12px 10px; }
.gallery figcaption span:first-child, .studio figcaption { color: var(--ivory); }
.hero__caption { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75); }

@media (max-width: 900px) {
  .hero__grid { position: relative; padding-top: 0; }
  .hero__figure {
    position: absolute; inset: 0 calc(-1 * var(--gutter)); z-index: 0;
    margin: 0; aspect-ratio: auto; max-height: none; border-radius: 0; order: 0;
    
    bottom: auto; height: 82%;
  }
  .hero__figure img {
    height: 100%; width: 100%; object-fit: cover; object-position: 50% 6%;
    filter: saturate(0.85);
  }
  
  .hero__figure::after {
    background: linear-gradient(180deg,
      rgba(18, 14, 12, 0.1) 0%,
      rgba(18, 14, 12, 0.02) 26%,
      rgba(18, 14, 12, 0.55) 46%,
      rgba(18, 14, 12, 0.93) 62%,
      var(--bg) 100%);
  }
  .hero__caption { display: none; }
  .hero__copy { position: relative; z-index: 1; padding-top: clamp(240px, 42vh, 420px); padding-bottom: clamp(32px, 6vh, 56px); }
}

@media (min-width: 901px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: min(74vh, 680px);
    align-content: center;
    padding-top: 0;
  }
  
  .hero__figure {
    position: absolute; top: 0; bottom: 0; right: 0; left: auto;
    width: min(56vw, 880px); margin: 0; z-index: 0;
    aspect-ratio: auto; max-height: none; border-radius: 0;
  }
  .hero__figure img {
    width: 100%; height: 100%; object-fit: cover; object-position: 52% 22%;
    filter: saturate(0.95);
  }
  .hero__figure::after {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(18, 14, 12, 0.7) 24%, rgba(18, 14, 12, 0.14) 58%, rgba(18, 14, 12, 0.22) 100%),
      linear-gradient(180deg, rgba(18, 14, 12, 0.34) 0%, rgba(18, 14, 12, 0.06) 34%, rgba(18, 14, 12, 0.92) 100%);
  }
  .hero__caption { display: none; }
  .hero__copy {
    position: relative; z-index: 1;
    max-width: min(64ch, 68%);
    padding-bottom: 0;
  }
  .hero .pigment, .hero .pigment-note { position: relative; z-index: 1; }
}

.callbar { display: none; }

@media (max-width: 1260px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
    display: flex; flex-direction: column;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(18, 14, 12, 0.94);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform 0.45s var(--ease);
  }
  .callbar.is-in { transform: none; }
  .callbar__actions { display: flex; gap: 10px; }
  .callbar .btn { flex: 1; min-height: 48px; padding: 12px 14px; font-size: 14.5px; gap: 8px; }

  
  .callbar__offer {
    display: flex; align-items: flex-start; gap: 10px; margin: 0 0 9px;
    font-size: 12.5px; line-height: 1.35; color: var(--ivory-2);
  }
  .callbar__offer[hidden] { display: none; }
  .callbar__offer strong { font-weight: 500; color: var(--gold-2); }
  .callbar__offer-close {
    flex: none; margin-left: auto; width: 26px; height: 26px; margin-top: -4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; line-height: 1; color: var(--muted);
    background: none; border: 0; border-radius: 50%; cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
  }
  .callbar__offer-close:hover { color: var(--ivory); background: var(--gold-dim); }

  
  .offer { display: none; }
  
  .nav-open .callbar { transform: translateY(110%); }
  body.has-callbar .offer { bottom: calc(20px + var(--callbar-h)); }
  body.has-callbar .bubble { bottom: calc(20px + var(--callbar-h)); }
  body.has-callbar .footer__bottom { padding-bottom: var(--callbar-h); }
}
@media (max-width: 640px) {
  body.has-callbar .offer { bottom: calc(14px + var(--callbar-h)); }
}
@media (max-width: 540px) {
  body.has-callbar .bubble { bottom: calc(14px + var(--callbar-h)); }
}

.offer {
  position: fixed; left: 20px; bottom: 20px; z-index: 95;
  width: min(340px, calc(100vw - 40px));
  background: var(--bg-2); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 20px 22px 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.offer.is-in { opacity: 1; transform: none; pointer-events: auto; }
.offer[hidden] { display: none; }
.offer > .mono { color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; }
.offer__head {
  font-family: var(--font-display); font-weight: 400; font-size: 25px;
  line-height: 1.15; margin: 10px 0 10px; color: var(--ivory);
}
.offer__head em { font-style: italic; color: var(--gold-2); }
.offer__more {
  font-size: 13.5px; color: var(--ivory); margin: 0 0 12px;
  padding-top: 12px; border-top: 1px solid var(--gold-dim);
}
.offer__more strong { font-weight: 400; color: var(--gold-2); }
.offer__note { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.offer .btn { width: 100%; justify-content: center; }
.offer__close {
  position: absolute; top: 8px; right: 8px; width: 32px; height: 32px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 19px; line-height: 1; color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease;
}
.offer__close:hover { color: var(--ivory); background: var(--gold-dim); }

@media (max-width: 640px) {
  .offer { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 16px 18px 18px; }
  .offer__head { font-size: 21px; }
  body.has-offer .bubble { opacity: 0; pointer-events: none; }
}

.page-hero--tall { position: relative; overflow: hidden; }
.page-hero--tall > .page-hero__grid { min-height: min(72vh, 620px); align-content: center; grid-template-columns: minmax(0, 1fr); }
.page-hero--tall .page-hero__grid > div:first-child { position: relative; z-index: 1; max-width: 44ch; }
.page-hero--tall .page-hero__media {
  position: absolute; inset: 0; width: auto; aspect-ratio: auto;
  max-width: none; margin: 0; border-radius: 0; z-index: 0; overflow: hidden;
}
.page-hero--tall .page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.page-hero--tall .page-hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.92) 0%, rgba(18, 14, 12, 0.66) 32%, rgba(18, 14, 12, 0.2) 66%, rgba(18, 14, 12, 0.14) 100%),
    linear-gradient(180deg, rgba(18, 14, 12, 0.5) 0%, rgba(18, 14, 12, 0.12) 30%, rgba(18, 14, 12, 0.18) 66%, var(--bg) 100%);
}
@media (max-width: 900px) {
  
  
  .page-hero--tall { padding-top: calc(64px + 14px); }
  .page-hero--tall > .page-hero__grid { min-height: 0; align-content: start; }
  .page-hero--tall .page-hero__grid > div:first-child { max-width: none; }
  .page-hero--tall .page-hero__media {
    position: static; inset: auto; order: -1;
    width: auto; height: auto; aspect-ratio: 1448 / 1086;
    margin: 0 calc(-1 * var(--gutter)) 28px;
  }
  .page-hero--tall .page-hero__media img { height: 100%; object-position: 50% 50%; }
  .page-hero--tall .page-hero__media::after {
    background: linear-gradient(180deg,
      rgba(18, 14, 12, 0) 58%,
      rgba(18, 14, 12, 0.72) 88%,
      var(--bg) 100%);
  }
}

