:root {
  --paper: #f7f7f3;
  --white: #fff;
  --ink: #11110f;
  --muted: #55554f;
  --line: #d9d9d1;
  --soft: #ecece6;
  --accent: #2457ff;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  --sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(88px, 9vw, 136px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --text-display: clamp(46px, 5vw, 72px);
  --text-section-title: clamp(28px, 3vw, 40px);
  --text-card-title: clamp(18px, 1.3vw, 21px);
  --text-body: 17px;
  --text-support: 15px;
  --text-caption: 14px;
  --text-nav: 14px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius-control: 14px;
  --radius-card: 18px;
  --radius-pill: 999px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  background: var(--paper);
  scrollbar-color: var(--ink) var(--paper);
  scrollbar-width: thin;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 3px solid var(--paper); border-radius: var(--radius-pill); }

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background-color: var(--paper);
  background-image: var(--noise);
  background-size: 180px 180px;
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

::selection { color: var(--white); background: var(--accent); }
:focus-visible:not(input[type="range"]) { outline: 2px solid var(--ink); outline-offset: 4px; }

@media (hover: none) and (pointer: coarse) {
  :focus-visible:not(input[type="range"]) { outline: none !important; outline-offset: 0 !important; }
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: var(--space-2) var(--space-3);
  background: var(--accent);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; margin: -1px !important; padding: 0 !important; clip: rect(0 0 0 0) !important; border: 0 !important; white-space: nowrap !important; }

.custom-select { position: relative; }
.custom-select.is-open { z-index: 45; }
.custom-select__trigger { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: space-between; gap: var(--space-5); padding: 0 var(--space-3) 0 var(--space-4); color: var(--white); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-control); cursor: pointer; text-align: left; }
.custom-select__trigger > span { display: grid; min-width: 0; overflow: hidden; gap: var(--space-1); font-size: var(--text-body); font-weight: 600; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
.custom-select__trigger > span strong { overflow: hidden; font: inherit; text-overflow: ellipsis; }
.custom-select__trigger > span small { overflow: hidden; color: rgba(255,255,255,.48); font-size: var(--text-caption); font-weight: 500; letter-spacing: 0; text-overflow: ellipsis; }
.custom-select__trigger i { position: relative; width: 34px; height: 34px; flex: 0 0 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-pill); transition: background-color .2s ease, border-color .2s ease; }
.custom-select__trigger i::before, .custom-select__trigger i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: var(--white); transition: transform .24s var(--ease); }
.custom-select__trigger i::before { transform: translate(-82%, -50%) rotate(42deg); }
.custom-select__trigger i::after { transform: translate(-18%, -50%) rotate(-42deg); }
.custom-select.is-open .custom-select__trigger { border-color: rgba(255,255,255,.42); border-radius: var(--radius-control) var(--radius-control) 0 0; }
.custom-select.is-open .custom-select__trigger i { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
.custom-select.is-open .custom-select__trigger i::before { transform: translate(-82%, -50%) rotate(-42deg); }
.custom-select.is-open .custom-select__trigger i::after { transform: translate(-18%, -50%) rotate(42deg); }
.custom-select__menu { position: absolute; top: calc(100% - 1px); right: 0; left: 0; z-index: 50; display: grid; max-height: 300px; overflow-y: auto; gap: var(--space-2); padding: var(--space-2); background: #20201e; border: 1px solid rgba(255,255,255,.32); border-radius: 0 0 var(--radius-control) var(--radius-control); box-shadow: 0 22px 40px rgba(0,0,0,.34); }
.custom-select.is-drop-up .custom-select__trigger { border-radius: 0 0 var(--radius-control) var(--radius-control); }
.custom-select.is-drop-up .custom-select__menu { top: auto; bottom: calc(100% - 1px); border-radius: var(--radius-control) var(--radius-control) 0 0; box-shadow: 0 -22px 40px rgba(0,0,0,.24); }
.custom-select__menu[hidden] { display: none; }
.custom-select__menu button { display: grid; width: 100%; gap: var(--space-1); padding: var(--space-3); color: rgba(255,255,255,.66); background: transparent; border: 1px solid transparent; border-radius: var(--radius-control); cursor: pointer; text-align: left; }
.custom-select__menu button:hover { color: var(--white); background: rgba(255,255,255,.08); }
.custom-select__menu button[aria-selected="true"] { color: var(--white); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2); }
.custom-select__menu strong { font-size: var(--text-support); letter-spacing: -.02em; }
.custom-select__menu small { color: rgba(255,255,255,.52); font-size: var(--text-caption); }
.custom-select--light .custom-select__trigger { min-height: 52px; color: var(--ink); background: var(--paper); border-color: var(--line); }
.custom-select--light .custom-select__trigger i { background: var(--white); border-color: var(--line); }
.custom-select--light .custom-select__trigger i::before, .custom-select--light .custom-select__trigger i::after { background: var(--ink); }
.custom-select--light.is-open .custom-select__trigger { border-color: var(--ink); }
.custom-select--light.is-open .custom-select__trigger i { background: var(--ink); border-color: var(--ink); }
.custom-select--light.is-open .custom-select__trigger i::before, .custom-select--light.is-open .custom-select__trigger i::after { background: var(--white); }
.custom-select--light .custom-select__menu { background: var(--white); border-color: var(--ink); box-shadow: 0 20px 44px rgba(17,17,15,.14); }
.custom-select--light .custom-select__menu button { color: var(--muted); }
.custom-select--light .custom-select__menu button:hover { color: var(--ink); background: var(--soft); }
.custom-select--light .custom-select__menu button[aria-selected="true"] { color: var(--ink); background: var(--soft); border-color: var(--line); }
.custom-select--light .custom-select__menu small,
.custom-select--light .custom-select__trigger > span small { color: var(--muted); }
.address-autocomplete { position: relative; display: block; width: 100%; color: inherit; font: inherit; letter-spacing: normal; text-transform: none; }
.address-autocomplete > input { padding-right: 52px !important; }
.address-autocomplete__clear { position: absolute; top: 50%; right: 9px; z-index: 2; display: grid; width: 32px; height: 32px; place-items: center; padding: 0; color: #85857e; background: transparent; border: 0; border-radius: 50%; cursor: pointer; transform: translateY(-50%); transition: color .18s ease, background-color .18s ease, opacity .18s ease; }
.address-autocomplete__clear i { position: relative; display: block; width: 16px; height: 16px; }
.address-autocomplete__clear i::before, .address-autocomplete__clear i::after { position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; content: ""; background: currentColor; border-radius: var(--radius-pill); transform: translate(-50%, -50%) rotate(45deg); }
.address-autocomplete__clear i::after { transform: translate(-50%, -50%) rotate(-45deg); }
.address-autocomplete__clear:hover { color: var(--ink); background: var(--soft); }
.address-autocomplete__clear:focus-visible { color: var(--ink); outline: 2px solid var(--accent); outline-offset: 1px; }
.address-autocomplete > input:placeholder-shown + .address-autocomplete__clear { visibility: hidden; opacity: 0; pointer-events: none; }
.address-suggestions { position: absolute; top: calc(100% - 1px); right: 0; left: 0; z-index: 60; display: none; max-height: 270px; overflow-y: auto; padding: var(--space-2); background: #20201e; border: 1px solid var(--accent); border-radius: 0 0 var(--radius-control) var(--radius-control); box-shadow: 0 22px 40px rgba(0,0,0,.34); }
.address-suggestions.is-visible { display: block; }
.address-suggestions__hint { margin: 0; padding: var(--space-2) var(--space-3); color: rgba(255,255,255,.52); font-size: var(--text-caption); font-weight: 600; line-height: 1.35; }
.address-suggestions button { display: grid; width: 100%; gap: var(--space-1); padding: var(--space-3); color: rgba(255,255,255,.82); background: transparent; border: 0; border-radius: var(--radius-control); cursor: pointer; font-size: var(--text-support); line-height: 1.35; text-align: left; }
.address-suggestions button:hover, .address-suggestions button:focus-visible { color: var(--white); background: rgba(36,87,255,.2); outline: none; }
.address-suggestions button small { overflow: hidden; color: rgba(255,255,255,.52); font-size: var(--text-caption); text-overflow: ellipsis; white-space: nowrap; }
.address-autocomplete:has(.address-suggestions.is-visible) > input { border-color: var(--accent); border-radius: var(--radius-control) var(--radius-control) 0 0; }
.address-autocomplete--light .address-suggestions { background: var(--white); border-color: var(--ink); box-shadow: 0 20px 44px rgba(17,17,15,.14); }
.address-autocomplete--light .address-suggestions button { color: var(--ink); }
.address-autocomplete--light .address-suggestions__hint { color: var(--muted); }
.address-autocomplete--light .address-suggestions button:hover, .address-autocomplete--light .address-suggestions button:focus-visible { background: var(--soft); }
.address-autocomplete--light .address-suggestions button small { color: var(--muted); }
.address-status--good { color: #8fcf5a !important; font-weight: 700; }
.address-status--error { color: #ff8e80 !important; }

.offer-download { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; padding: 0; color: rgba(255,255,255,.72); background: transparent; border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius-pill); cursor: pointer; transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease; }
.offer-download svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.offer-download:hover:not(:disabled) { color: var(--ink); background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.offer-download:disabled { cursor: not-allowed; opacity: .24; }
.offer-download.is-loading { cursor: wait; opacity: .72; }
.offer-download.is-loading svg { animation: offer-download-pulse .8s ease-in-out infinite alternate; }

[data-scroll-section] { scroll-snap-align: start; }

.container {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 8px;
  pointer-events: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 990;
  visibility: hidden;
  background: rgba(17, 17, 15, 0);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: opacity .28s ease, background-color .28s ease, backdrop-filter .34s var(--ease), visibility 0s linear .34s;
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 28px), 1180px);
  min-height: 56px;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  background: rgba(247, 247, 243, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 32px rgba(17,17,15,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
}

.brand { display: inline-flex; align-items: center; gap: var(--space-2); width: max-content; }
.header .brand img { width: 30px; height: 30px; }
.brand img { filter: brightness(0); }
.brand span { display: grid; max-width: 170px; overflow: hidden; opacity: 1; transition: max-width .25s var(--ease), opacity .18s ease; }
.brand strong { font-size: var(--text-nav); line-height: 1.2; letter-spacing: -.025em; }
.header .brand small { display: none; }

.nav { display: flex; align-items: center; justify-self: center; gap: var(--space-4); }
.nav a { position: relative; min-height: 44px; display: inline-flex; align-items: center; font-size: var(--text-nav); font-weight: 650; }
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__cta { min-height: 44px; justify-self: end; padding-inline: var(--space-4); font-size: var(--text-nav); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  cursor: pointer;
  font-size: var(--text-support);
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button--large { min-height: 56px; padding-inline: var(--space-6); }
.button--accent { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button--accent:hover, .button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--accent); border-color: var(--ink); }

.button:disabled { cursor: wait; opacity: .55; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}
.menu-button span { position: absolute; width: 22px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-nav-dialog {
  display: none;
}

.hero { position: relative; overflow: hidden; padding: var(--space-4) 0 0; background: var(--paper); }

h1, h2 { margin: 0; font-weight: 600; letter-spacing: -.075em; text-wrap: balance; }

.section { padding-block: var(--section); }

.sound {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}
.sound > .container {
  position: relative;
  z-index: 1;
}
.video-grid {
  display: grid;
  width: min(1040px, 100%);
  height: auto;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--space-4);
  row-gap: var(--space-7);
  align-items: start;
  margin: 0 auto;
}

.video-item {
  min-width: 0;
  margin: 0;
}
.video-item figcaption {
  margin-top: var(--space-3);
  color: var(--ink);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-align: center;
  text-wrap: balance;
}

.video-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: #111;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
  cursor: pointer;
  isolation: isolate;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform .35s var(--ease), filter .35s ease;
}
.video-card:hover img {
  transform: scale(1.025);
}
.video-card:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(0,0,0,.28);
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: none;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: color .2s ease, background .2s ease, transform .25s var(--ease);
  pointer-events: none;
}
.play i {
  display: block;
  width: 0;
  height: 0;
  margin-left: var(--space-1);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}
.video-card:hover .play {
  color: #fff;
  background: rgba(0,0,0,.42);
  transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 760px) {
  .video-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-3);
    row-gap: var(--space-6);
  }
  .video-item figcaption {
    margin-top: var(--space-2);
    font-size: var(--text-body);
    line-height: 1.2;
  }
  .play { width: 42px; }
}

.formats { background: var(--paper); }

.sound .container, .formats .container, .calculator .container, .reviews .container { position: relative; }

.photos { overflow: hidden; color: var(--ink); background: var(--paper); }

.calculator { background: var(--paper); }
.field { display: grid; gap: var(--space-3); }
.field > span:first-child { display: flex; justify-content: space-between; gap: var(--space-4); color: var(--ink); font-size: var(--text-support); font-weight: 700; }
.field > span:first-child small { color: var(--muted); font-size: var(--text-caption); font-weight: 500; }
.field input:not([type="range"]), .field select, .field textarea { width: 100%; min-height: 52px; padding: 0 var(--space-4); color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-control); outline: 0; }
.field > small { color: var(--muted); font-size: var(--text-caption); line-height: 1.5; }
.field textarea { min-height: 100px; padding-block: var(--space-3); resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input[type="date"] { cursor: pointer; }
.range-field output { padding: var(--space-1) var(--space-2); color: var(--white); background: var(--accent); border-radius: var(--radius-pill); }
.range-field input { width: 100%; accent-color: var(--ink); cursor: pointer; }
.range-field > small { display: flex; justify-content: space-between; color: var(--muted); font-size: var(--text-caption); }

.calculator__result { display: flex; flex-direction: column; color: var(--white); background: var(--ink); }
.calculator__result > p { margin: 0; color: rgba(255,255,255,.68); text-transform: uppercase; }
.calculator__result > strong { line-height: 1; }
.calculator__result ul { display: grid; border-block: 1px solid rgba(255,255,255,.16); list-style: none; }
.calculator__result li { display: flex; justify-content: space-between; gap: var(--space-4); color: rgba(255,255,255,.78); }
.calculator__result li b { color: var(--white); }
.calculator-discount { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; min-height: 52px; align-items: center; gap: var(--space-3); margin: calc(var(--text-body) * -1) 0 var(--space-5); padding: var(--space-3) 0; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.16); cursor: pointer; font-size: var(--text-body); }
.calculator-discount[hidden] { display: none; }
.calculator-discount input { width: 18px; height: 18px; margin: 0; accent-color: var(--accent); cursor: pointer; }
.calculator-discount b { color: #a9ff67; font-size: var(--text-support); white-space: nowrap; }
.calculator__result > small { max-width: 48ch; color: rgba(255,255,255,.6); }
.calculator__actions { display: grid; margin-top: auto; }
.calculator__actions .button { width: 100%; }
.calculator__actions .button--dark { color: var(--ink); background: var(--white); border-color: var(--white); }
.calculator__actions .button--dark:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.offer-download--calculator { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.34); }
.offer-download--calculator svg { width: 20px; height: 20px; }

@keyframes offer-download-pulse {
  from { transform: scale(.84); }
  to { transform: scale(1); }
}

.reviews { background: var(--paper); }
.reviews__inner { min-width: 0; }
.reviews__top { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-6); }
.reviews__rating { display: flex; align-items: center; gap: var(--space-4); }
.reviews__rating > strong { font-size: var(--text-display); font-weight: 650; line-height: .86; letter-spacing: -.07em; }
.reviews__rating > div { display: grid; gap: var(--space-1); color: var(--muted); font-size: var(--text-caption); line-height: 1.25; }
.review-stars, .review-card__stars { color: #f2ad00; letter-spacing: .08em; }
.review-stars { font-size: var(--text-card-title); line-height: 1; }
.reviews__controls { display: flex; gap: var(--space-2); }
.reviews__controls button { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-pill); cursor: pointer; font-size: var(--text-card-title); transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.reviews__controls button:hover:not(:disabled) { color: var(--white); background: var(--ink); border-color: var(--ink); }
.reviews__controls button:disabled { cursor: default; opacity: .28; }
.review-grid { display: grid; min-width: 0; grid-auto-columns: minmax(280px, calc((100% - 32px) / 3)); grid-auto-flow: column; gap: var(--space-4); overflow-x: auto; overflow-y: hidden; padding: var(--space-1); scroll-behavior: smooth; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; overscroll-behavior-y: auto; scrollbar-width: none; }
.review-grid::-webkit-scrollbar { display: none; }
.review-card { display: flex; height: clamp(310px, 46vh, 430px); min-width: 0; flex-direction: column; padding: clamp(var(--space-5), 2.2vw, var(--space-7)); overflow: hidden; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-card); cursor: pointer; scroll-snap-align: start; text-align: left; transition: background-color .2s ease, border-color .2s ease, transform .25s var(--ease); }
.review-card:hover { background: var(--white); border-color: var(--ink); transform: translateY(-3px); }
.review-card__stars { display: block; margin-bottom: var(--space-5); font-size: var(--text-body); line-height: 1; }
.review-card__text { display: -webkit-box; max-width: 68ch; overflow: hidden; color: var(--ink); font-size: var(--text-body); font-weight: 500; line-height: 1.55; letter-spacing: -.025em; -webkit-box-orient: vertical; -webkit-line-clamp: 7; }
.review-card__footer { display: grid; margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--line); }
.review-card__footer strong { font-size: var(--text-support); line-height: 1.3; }
.review-card__footer > span:not(.review-card__open) { margin-top: var(--space-1); overflow: hidden; color: var(--muted); font-size: var(--text-caption); line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.review-card__open { margin-top: var(--space-3); font-size: var(--text-caption); font-weight: 700; }
.reviews__bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); margin-top: var(--space-4); }
.reviews__bottom > span { color: var(--muted); font-size: var(--text-caption); font-variant-numeric: tabular-nums; }
.reviews-link { min-height: 44px; display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-nav); font-weight: 650; border-bottom: 1px solid var(--ink); }
.action-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  -webkit-mask: url('/assets/icons/arrow-forward.svg') center / contain no-repeat;
  mask: url('/assets/icons/arrow-forward.svg') center / contain no-repeat;
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .reviews__top { align-items: center; margin-bottom: var(--space-4); }
  .reviews__rating { gap: var(--space-3); }
  .reviews__rating > strong { font-size: var(--text-display); }
  .reviews__rating > div { font-size: var(--text-caption); }
  .review-stars { font-size: var(--text-body); }
  .reviews__controls { gap: var(--space-2); }
  .reviews__controls button { width: 44px; height: 44px; }
  .review-grid { grid-auto-columns: 88%; gap: var(--space-3); }
  .review-card { height: clamp(300px, 51vh, 390px); padding: var(--space-5); }
  .review-card__stars { margin-bottom: var(--space-4); }
  .review-card__text { font-size: var(--text-body); -webkit-line-clamp: 8; }
  .reviews__bottom { margin-top: var(--space-3); }
  .reviews-link { min-height: 44px; font-size: var(--text-nav); }
}

.faq { background: var(--paper); }
.faq__grid { width: 100%; }
.accordion p a { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color .2s ease; }
.accordion p a:hover { color: var(--accent); }
.accordion { display: grid; gap: var(--space-3); }
.accordion details { overflow: hidden; padding: 0 var(--space-5); background: transparent; border-radius: var(--radius-card); transition: background-color .2s ease, transform .2s ease; }
.accordion details:hover,
.accordion details[open] { background: var(--soft); }
.accordion summary { box-sizing: border-box; display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: var(--space-6); padding: var(--space-3) 0; cursor: pointer; font-size: var(--text-card-title); font-weight: 700; line-height: 1.25; letter-spacing: -.03em; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; color: var(--ink); font-size: var(--text-section-title); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: none; margin: var(--space-1) 0 var(--space-5); color: var(--muted); font-size: var(--text-body); line-height: 1.6; text-align: left; }

.contact {
  padding-block: 0;
  color: var(--white);
  background-color: var(--accent);
  background-image: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .14), transparent 34%), radial-gradient(circle at 88% 82%, rgba(12, 31, 106, .16), transparent 32%), var(--noise);
  background-size: auto, auto, 180px 180px;
  border-bottom: 0;
}
.contact__inner { display: flex; min-width: 0; min-height: 100%; flex-direction: column; align-items: center; justify-content: flex-start; }
.contact__panel {
  width: min(100%, 1080px);
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(var(--space-6), 5vw, var(--space-8));
  margin-top: clamp(var(--space-5), 5vh, var(--space-8));
  padding: clamp(var(--space-6), 4vw, var(--space-7));
  background: rgba(8, 15, 39, .22);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(4, 9, 28, .2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact__intro { width: 100%; min-width: 0; align-self: center; }
.contact__eyebrow { margin: 0 0 var(--space-4); color: rgba(255,255,255,.62); font-size: var(--text-caption); font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact__intro h2 { max-width: 9.5ch; font-size: clamp(26px, 3vw, 42px); font-weight: 650; line-height: 1.05; letter-spacing: -.055em; white-space: normal; }
.contact__lead { max-width: 41ch; margin: var(--space-5) 0 0; color: rgba(255,255,255,.74); font-size: var(--text-body); line-height: 1.55; overflow-wrap: anywhere; }
.contact__actions { width: 100%; min-width: 0; display: grid; align-content: center; gap: var(--space-3); margin: 0; }
.contact__cta { width: 100%; max-width: 100%; min-width: 0; min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); padding: var(--space-5); color: var(--ink); background: var(--white); border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius-card); cursor: pointer; font: inherit; text-align: left; box-shadow: 0 16px 38px rgba(4,9,28,.18); transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0); transition: background-color .22s ease, box-shadow .22s ease, transform .32s var(--ease); }
.contact__cta-copy { display: grid; min-width: 0; gap: var(--space-1); }
.contact__cta-copy small { color: var(--accent); font-size: var(--text-caption); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact__cta-copy strong { font-size: var(--text-section-title); font-weight: 750; line-height: 1.15; letter-spacing: -.045em; }
.contact__cta-copy em { margin-top: var(--space-1); color: var(--muted); font-size: var(--text-caption); font-style: normal; font-weight: 500; line-height: 1.35; }
.contact__cta-icon { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; color: var(--white); background: var(--accent); border-radius: var(--radius-pill); line-height: 1; transition: background-color .22s ease, transform .28s var(--ease); }
.contact__cta-icon .action-arrow { width: 22px; height: 22px; flex-basis: 22px; }
.contact__cta:hover { background: #f3f4f8; box-shadow: 0 20px 46px rgba(4,9,28,.28); transform: translate3d(var(--magnet-x, 0), calc(var(--magnet-y, 0px) - 2px), 0); }
.contact__cta:hover .contact__cta-icon { background: var(--ink); transform: rotate(8deg); }
.contact__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
.contact__links a { display: grid; min-width: 0; min-height: 82px; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto; align-content: center; gap: var(--space-1); padding: var(--space-3) var(--space-4); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-control); transition: background-color .2s ease, border-color .2s ease, transform .22s var(--ease); }
.contact__links a span { color: rgba(255,255,255,.58); font-size: var(--text-caption); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact__links a strong { min-width: 0; color: rgba(255,255,255,.92); font-size: var(--text-body); font-weight: 700; line-height: 1.35; letter-spacing: -.025em; white-space: nowrap; }
.contact__links a:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }

.button--accent, .range-field output {
  background-image: var(--noise);
  background-size: 180px 180px;
}

.dialog { width: min(calc(100% - 30px), 900px); max-height: calc(100dvh - 30px); padding: 0; overflow: auto; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); border-radius: var(--radius-card); box-shadow: none; }
.dialog::backdrop { background: rgba(17,17,15,.72); backdrop-filter: blur(4px); }
.dialog__bar { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: var(--space-5); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--line); }
.dialog__bar > div { display: grid; }
.dialog__bar small { color: var(--muted); font-size: var(--text-caption); text-transform: uppercase; }
.dialog__bar strong { font-size: var(--text-body); letter-spacing: -.025em; }
.dialog__bar button, .dialog__close { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-pill); cursor: pointer; font-size: var(--text-card-title); line-height: 1; }
.video-dialog {
  position: relative;
  width: fit-content;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.video-dialog::backdrop {
  background: rgba(0,0,0,.86);
  backdrop-filter: none;
}
.video-dialog video {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}
.video-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  font: 300 26px/1 var(--sans);
  opacity: .86;
}
.video-dialog__close:hover { opacity: 1; }
.review-dialog {
  width: fit-content;
  max-width: calc(100vw - 30px);
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.review-dialog__frame {
  --review-close-offset: 12px;
  position: relative;
  display: block;
  width: fit-content;
  max-width: calc(100vw - 30px);
  max-height: calc(100dvh - 30px);
  margin-inline: auto;
}
.review-dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100vw - 30px);
  max-height: calc(100dvh - 30px);
  object-fit: contain;
  border-radius: var(--radius-control);
}
.review-dialog .dialog__close {
  position: absolute;
  top: var(--review-close-offset);
  right: var(--review-close-offset);
  z-index: 2;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  backdrop-filter: none;
  font: 300 26px/1 var(--sans);
  opacity: .86;
}
.review-dialog .dialog__close:hover { background: transparent; opacity: 1; }
.profile-photo-dialog {
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.profile-photo-dialog::backdrop { background: transparent; }
.profile-photo-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,17,15,.82);
  opacity: 0;
  transition: opacity .22s ease;
}
.profile-photo-dialog__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 52px 24px;
  pointer-events: none;
}
.profile-photo-dialog__image {
  width: min(72vmin, 560px);
  height: min(72vmin, 560px);
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 34px 100px rgba(0,0,0,.42);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .2s ease, transform .28s var(--ease);
}
.profile-photo-dialog__close {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  cursor: pointer;
  font: 300 30px/1 var(--sans);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .2s ease, background-color .2s ease, transform .24s var(--ease);
}
.profile-photo-dialog__close:hover { background: rgba(255,255,255,.2); transform: rotate(0) scale(1.04); }
.profile-photo-dialog__close:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.profile-photo-dialog.is-visible .profile-photo-dialog__backdrop,
.profile-photo-dialog.is-visible .profile-photo-dialog__image,
.profile-photo-dialog.is-visible .profile-photo-dialog__close { opacity: 1; }
.profile-photo-dialog.is-visible .profile-photo-dialog__image,
.profile-photo-dialog.is-visible .profile-photo-dialog__close { transform: none; }
.review-text-dialog { width: min(calc(100% - 30px), 720px); padding: clamp(var(--space-5), 4vw, var(--space-7)); background: var(--white); border-color: var(--line); border-radius: var(--radius-card); }
.review-text-dialog__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }
.review-text-dialog__bar .dialog__close { flex: 0 0 auto; }
.review-text-dialog__body { max-width: 68ch; margin: clamp(var(--space-6), 5vw, var(--space-8)) 0; white-space: pre-line; font-size: var(--text-body); font-weight: 500; line-height: 1.6; letter-spacing: -.015em; }
.review-text-dialog__footer { display: grid; gap: var(--space-1); padding-top: var(--space-5); border-top: 1px solid var(--line); }
.review-text-dialog__footer strong { font-size: var(--text-body); }
.review-text-dialog__footer span { color: var(--muted); font-size: var(--text-caption); line-height: 1.5; }
.format-info-dialog {
  position: relative;
  width: min(calc(100% - 30px), 620px);
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-color: var(--line);
}
.format-info-dialog__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.format-info-dialog__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}
.format-info-dialog__body { padding: var(--space-6); }
.format-info-dialog__body > span { color: var(--accent); font-size: var(--text-caption); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.format-info-dialog__body h2 { margin: var(--space-2) 0 var(--space-4); font-size: var(--text-section-title); line-height: 1.15; letter-spacing: -.04em; }
.format-info-dialog__body p { margin: 0; color: var(--muted); font-size: var(--text-body); line-height: 1.65; }
.contact-dialog {
  position: relative;
  width: min(calc(100% - 30px), 760px);
  max-height: calc(100dvh - 30px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 32px 100px rgba(17,17,15,.28);
}
.contact-dialog::backdrop { background: rgba(17,17,15,.62); backdrop-filter: blur(10px); }
.contact-dialog[open] { animation: contact-dialog-in .34s var(--ease) both; }
.contact-dialog__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: 300 30px/1 var(--sans);
  transition: color .2s ease, opacity .2s ease, transform .22s var(--ease);
}
.contact-dialog__close:hover { color: var(--accent); transform: rotate(5deg); }
.contact-dialog__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.calculator__extension { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; }
.calculator__extension span { color: inherit; opacity: .7; font-size: 13px; }
.calculator__extension strong { font-size: 16px; line-height: 1.2; white-space: nowrap; }
.contact-form { max-height: calc(100dvh - 32px); padding: var(--space-5) var(--space-6) var(--space-5); overflow-y: auto; background: var(--white); }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.contact-form .field { min-width: 0; gap: var(--space-2); }
.contact-form .field > span:first-child { font-size: var(--text-caption); }
.contact-form .field input:not([type="range"]),
.contact-form .field textarea,
.contact-form .custom-select--light .custom-select__trigger { min-height: 50px; background: var(--paper); border-radius: var(--radius-control); }
.contact-form #contact-event-date {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 54px 0 var(--space-4);
  line-height: 1.2;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__date { position: relative; }
.contact-form__date::after {
  position: absolute;
  right: 17px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  content: "";
  pointer-events: none;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311110f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2v4M18 2v4M3 9h18'/%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3C/svg%3E");
}
.contact-form #contact-event-date::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}
.contact-form #contact-event-date::-webkit-date-and-time-value {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-align: left;
}
.contact-form .field textarea { min-height: 78px; }
.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .custom-select--light.is-open .custom-select__trigger { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36,87,255,.1); }
.contact-form .field > small { font-size: var(--text-caption); }
.contact-form .field > small:empty { display: none; }
.contact-form .custom-select__menu { border-color: var(--line); border-radius: 0 0 var(--radius-control) var(--radius-control); }
.contact-form .custom-select.is-open .custom-select__trigger { border-radius: var(--radius-control) var(--radius-control) 0 0; }
.field--full { grid-column: 1 / -1; }
.contact-form__footer { margin-top: var(--space-4); padding-top: 0; }
.consent { display: flex; align-items: flex-start; gap: var(--space-2); margin: 0 0 var(--space-3); color: var(--muted); font-size: 12px; line-height: 1.35; }
.consent input { width: 15px; height: 15px; flex: 0 0 15px; margin: 1px 0 0; accent-color: var(--accent); }
.consent a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.contact-form #contact-submit { width: 100%; justify-content: space-between; border-radius: var(--radius-pill); }
.contact-form #contact-submit::after { content: "↗"; display: grid; width: 34px; height: 34px; place-items: center; margin-right: calc(var(--space-4) * -1); color: var(--accent); background: var(--white); border-radius: var(--radius-pill); font-size: var(--text-card-title); font-weight: 500; }
.form-status { min-height: 0; margin: var(--space-3) 0 0; color: var(--muted); font-size: var(--text-caption); text-align: center; }
.form-status:empty { display: none; }
.form-status.is-success { color: #397300; }
.form-status.is-error { color: #b02716; }

@keyframes contact-dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.reveal,
.text-reveal {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity .54s ease, transform .58s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible,
.text-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (max-width: 1100px) {
  .header__inner {
    grid-template-columns: 1fr auto auto;
    align-content: start;
    overflow: hidden;
    border-radius: var(--radius-card);
    transition: box-shadow .32s ease;
  }
  .nav,
  .header__cta { display: none; }
  .menu-button { display: flex; }

  .mobile-nav-dialog {
    display: block;
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .5s var(--ease), opacity .24s ease, transform .42s var(--ease);
  }
  body.menu-is-open .header__inner {
    box-shadow: 0 18px 48px rgba(17,17,15,.14);
  }
  body.menu-is-open { overflow: hidden; }
  body.menu-is-open .menu-backdrop {
    visibility: visible;
    background: rgba(17, 17, 15, .42);
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition-delay: 0s;
  }
  body.menu-is-open .mobile-nav-dialog {
    max-height: calc(100dvh - 82px);
    opacity: 1;
    transform: none;
  }
  .mobile-nav-dialog__body {
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    padding: var(--space-3) var(--space-2) var(--space-2);
    scrollbar-width: none;
  }
  .mobile-nav-dialog__body::-webkit-scrollbar { display: none; }
  .mobile-nav-dialog__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-5);
    row-gap: 0;
    padding-top: var(--space-3);
    border-top: 1px solid var(--line);
  }
  .mobile-nav-dialog__links a,
  .mobile-nav-dialog__branch a {
    display: flex;
    min-width: 0;
    min-height: 46px;
    align-items: center;
    padding: 0 var(--space-1);
    color: var(--ink);
    background: transparent;
    border-radius: 0;
    font-size: var(--text-body);
    font-weight: 650;
    letter-spacing: -.025em;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    transition: color .2s ease, text-decoration-color .2s ease;
  }
  .mobile-nav-dialog__links a:hover,
  .mobile-nav-dialog__links a:focus-visible,
  .mobile-nav-dialog__links a.is-active,
  .mobile-nav-dialog__branch a:hover,
  .mobile-nav-dialog__branch a:focus-visible {
    color: var(--accent);
    background: transparent;
    text-decoration-color: currentColor;
  }
  .mobile-nav-dialog__links a.is-active {
    font-weight: 800;
  }
  .mobile-nav-dialog__branch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-5);
    margin-top: 0;
  }
  .mobile-nav-dialog__contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    margin-top: var(--space-3);
  }
  .mobile-nav-dialog__contact a {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 62px;
    align-content: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-7) var(--space-2) var(--space-3);
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  }
  .mobile-nav-dialog__contact span { color: var(--muted); font-size: var(--text-caption); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .mobile-nav-dialog__contact strong { overflow: hidden; font-size: var(--text-support); line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-nav-dialog__contact i {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: url('/assets/icons/arrow-right-alt.svg') center / contain no-repeat;
    mask: url('/assets/icons/arrow-right-alt.svg') center / contain no-repeat;
    transform: translateY(-50%);
  }
  .mobile-nav-dialog__contact a:hover,
  .mobile-nav-dialog__contact a:focus-visible { color: var(--white); background: var(--accent); border-color: var(--accent); }
  .mobile-nav-dialog__contact a:hover span,
  .mobile-nav-dialog__contact a:focus-visible span { color: rgba(255,255,255,.7); }
  .mobile-nav-dialog__cta { width: 100%; min-height: 50px; margin-top: var(--space-3); }
  .mobile-nav-dialog__cta:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
}

@media (max-width: 760px) {
  :root { --gutter: 12px; --section: 88px; }
  html { scroll-padding-top: 74px; scroll-snap-type: none; }
  
  
  
  
  
  
  
  
  
  
  
  .custom-select__trigger { min-height: 60px; }
  .custom-select__menu, .address-suggestions { max-height: 230px; }
  
  
  .header__inner { width: calc(100% - var(--space-4)); min-height: 52px; padding: var(--space-1) var(--space-2) var(--space-1) var(--space-3); }
  .hero { padding-top: 0; }
  
  
  
  
  
  
  
  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

  .contact__panel { width: 100%; grid-template-columns: minmax(0, 1fr); gap: var(--space-6); margin-top: var(--space-3); padding: var(--space-5) var(--space-4); border-radius: var(--radius-card); }
  .contact__eyebrow { margin-bottom: var(--space-3); font-size: var(--text-caption); }
  .contact__intro h2 { max-width: 9.5ch; font-size: clamp(26px, 7vw, 32px); white-space: normal; }
  .contact__lead { max-width: 68ch; margin-top: var(--space-4); font-size: var(--text-body); text-align: left; }
  .contact__actions { gap: var(--space-3); margin: 0; }
  .contact__cta { min-height: 108px; padding: var(--space-4); border-radius: var(--radius-card); }
  .contact__cta-copy strong { font-size: var(--text-section-title); }
  .contact__cta-copy em { max-width: 24ch; font-size: var(--text-caption); }
  .contact__cta-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .contact__links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2); }
  .contact__links a { min-height: 82px; padding: var(--space-3) var(--space-2); }
  .contact__links a span { font-size: var(--text-caption); }
  .contact__links a strong { font-size: var(--text-body); }
  .contact-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    overflow: hidden;
    border-radius: var(--radius-card);
  }
  .contact-dialog__close { top: var(--space-3); right: var(--space-3); width: 40px; height: 40px; }
  .contact-form { max-height: calc(100dvh - 18px); padding: 20px var(--space-4) var(--space-6); overflow-y: auto; }
  .contact-form__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .field--full { grid-column: auto; }
  .contact-form .button { width: 100%; }
  .contact-form__footer { margin-top: var(--space-4); padding-top: 0; }
}

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

/* Full-screen interactive deck */
html.site-deck-ready, html.site-deck-ready body { width: 100%; height: 100%; overflow: hidden; }
.site-deck-ready #content { position: fixed; inset: 0; overflow: hidden; background: var(--paper); }
.site-deck-ready #content > [data-scroll-section] {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-top: 92px;
  padding-bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s .22s;
}
.site-deck-ready #content > [data-scroll-section].is-deck-active { z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
.site-deck-ready #content > .hero > .container,
.site-deck-ready #content > .section > .container,
.site-deck-ready #content > .contact > .container { display: flex; height: auto; min-height: 100%; flex-direction: column; }
.site-deck-ready #content > [data-scroll-section] > .container {
  position: relative;
  padding-bottom: 0;
}
.site-deck-ready #content > #photos > .container,
.site-deck-ready #content > #formats > .container,
.site-deck-ready #content > #faq > .container {
  height: auto !important;
  min-height: 100% !important;
}
.site-deck-ready #content > #contact > .container { min-height: 100%; }
.site-deck-ready .section > .container { animation: none !important; }
.section-footer { display: none; }
.site-deck-ready .section-footer {
  position: static;
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  margin: auto 0 0;
  padding: var(--space-5) 0 var(--space-4);
  overflow: visible;
  color: #4c4c47;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: var(--text-nav);
  font-weight: 650;
  line-height: 1;
  letter-spacing: .015em;
  white-space: normal;
}
.site-deck-ready .section-footer a {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding-inline: var(--space-1);
  transition: color .2s ease, opacity .2s ease;
}
.site-deck-ready .section-footer a:hover,
.site-deck-ready .section-footer a:focus-visible { color: var(--ink); }
.site-deck-ready .section-footer a.is-current {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: underline;
  text-underline-offset: var(--space-1);
}
.site-deck-ready #contact .section-footer { color: rgba(255,255,255,.72); }
.site-deck-ready #contact .section-footer a:hover,
.site-deck-ready #contact .section-footer a:focus-visible,
.site-deck-ready #contact .section-footer a.is-current {
  color: var(--white);
  opacity: 1;
}
.site-deck-ready #content > .hero { padding: 0; background: var(--paper); }
@media (min-width: 761px) {
  .site-deck-ready .reviews .review-grid { min-height: 0; flex: 1 1 auto; }
  .site-deck-ready .faq .accordion summary { min-height: 68px; }
  .site-deck-ready .contact { padding-block: 92px 0; }
  .site-deck-ready .contact__inner { align-items: center; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .site-deck-ready .section-footer .section-footer__branch { display: none; }
  .site-deck-ready #content > [data-scroll-section] { padding-top: 76px; padding-bottom: 0; }
  .site-deck-ready #content > .hero > .container,
  .site-deck-ready #content > .section > .container,
  .site-deck-ready #content > .contact > .container { height: auto; min-height: 100%; }
  .site-deck-ready .header { padding-top: 8px; }
  .site-deck-ready .section-footer {
    min-height: 54px;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-6);
    justify-content: flex-start;
    padding: var(--space-5) var(--space-4) max(var(--space-4), env(safe-area-inset-bottom));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: var(--space-4);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    font-size: var(--text-nav);
  }
  .site-deck-ready .section-footer::-webkit-scrollbar { display: none; }
  .site-deck-ready .section-footer a {
    min-width: max-content;
    justify-content: flex-start;
    scroll-snap-align: start;
    white-space: nowrap;
  }
  .site-deck-ready #content > .hero { padding: 0; }
  .site-deck-ready #content > .faq > .faq__grid { display: grid; height: auto; min-height: 100%; grid-template-columns: 1fr; grid-template-rows: auto; }
  .site-deck-ready .faq .accordion { min-height: 0; overflow: visible; }
  .site-deck-ready .faq .accordion summary { min-height: 54px; font-size: var(--text-card-title); }
  .site-deck-ready .contact { overflow-y: auto; padding-top: 76px; padding-bottom: 0; }
  .site-deck-ready .contact__inner { display: flex; height: auto !important; min-height: 100%; align-items: center; justify-content: flex-start; }
}

/* Compact Weddywood-inspired profile first page. */
.site-deck-ready #content > .hero--profile {
  overflow-y: auto !important;
  padding: calc(var(--space-8) + var(--space-6)) 0 var(--space-7) !important;
  background: var(--paper);
}
.hero-profile {
  width: min(1180px, calc(100% - var(--space-7)));
  height: auto;
  min-height: 100%;
  margin-inline: auto;
}
.hero-profile__header {
  width: 100%;
  margin-inline: 0;
  display: flex;
  align-items: center;
}
.hero-profile__avatar {
  width: 144px;
  height: 144px;
  flex: 0 0 144px;
  margin: 0 calc(var(--space-6) + var(--space-3)) 0 0;
  overflow: hidden;
  padding: 0;
  appearance: none;
  cursor: zoom-in;
  border: 0;
  border-radius: 50%;
  background: #e9e9e4;
  transition: box-shadow .28s ease, transform .32s var(--ease);
}
.hero-profile__avatar:hover { box-shadow: 0 14px 34px rgba(17,17,15,.15); transform: translateY(-2px); }
.hero-profile__avatar:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.hero-profile__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s var(--ease);
}
.hero-profile__avatar:hover img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
  .hero-profile__avatar,
  .hero-profile__avatar img,
  .profile-photo-dialog__backdrop,
  .profile-photo-dialog__image,
  .profile-photo-dialog__close { transition: none !important; }
}
.hero-profile__details {
  min-width: 0;
}
.hero-profile__role {
  margin: 0 0 var(--space-2);
  color: var(--muted);
  font-size: var(--text-support);
  font-weight: 600;
}
.hero-profile h1 {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.04em;
}
.hero-profile__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.hero-profile__actions .button {
  min-height: 46px;
  padding: 0 var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.button--simple {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}
.hero-about {
  width: 100%;
  margin: var(--space-6) 0 0;
}
.hero-about__intro {
  width: 100%;
  margin-inline: 0;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line);
}
.hero-about h2,
.hero-about h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-about h2 {
  max-width: 14ch;
  font-size: var(--text-section-title);
  line-height: 1.12;
}
.hero-about h3 {
  font-size: var(--text-card-title);
  line-height: 1.3;
}
.hero-about__intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.hero-about p {
  max-width: 68ch;
}
.hero-about__intro-copy p,
.hero-about__card p,
.hero-about__story p,
.hero-about__closing p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.7;
}
.hero-about__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.hero-about__card {
  min-width: 0;
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.hero-about__card:nth-child(even) {
  background: rgba(36, 87, 255, .075);
  border-color: rgba(36, 87, 255, .18);
}
.hero-about__card-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid rgba(36, 87, 255, .22);
}
.hero-about__card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(36, 87, 255, .08);
  border: 1px solid rgba(36, 87, 255, .14);
  border-radius: 12px;
}
.hero-about__card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-about__card h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.025em;
  text-transform: none;
}
.hero-about__card p {
  flex: 1;
  max-width: none;
  padding: var(--space-4);
  background: var(--white);
  font-size: var(--text-body);
  line-height: 1.7;
}
.hero-about__card p strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-about__inline-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.hero-about__inline-button {
  display: inline;
  margin: 0;
  padding: 0;
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: inherit;
}
.hero-about__inline-link:hover { color: var(--accent); }
.hero-about__inline-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero-about__story {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-7) 0 0;
}
.hero-about__story > p {
  max-width: none;
  line-height: 1.7;
}
.hero-about__story strong { color: var(--ink); font-weight: 700; }
.hero-about__repertoire {
  width: 100%;
  margin: var(--space-7) 0 0;
}
.hero-about__repertoire h3 {
  font-size: var(--text-section-title);
  line-height: 1.1;
}
.hero-about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.hero-about__tags span,
.hero-about__tags a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: var(--text-support);
  font-weight: 600;
  line-height: 1.2;
}
.hero-about__tags a:last-child {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-about__tags a:last-child:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.hero-about__tags a:last-child:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hero-about__friend {
  width: 100%;
  max-width: none !important;
  margin: var(--space-7) 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: normal;
}
.hero-about__friend strong { color: var(--ink); font-weight: 700; }
.hero-about__closing {
  width: 100%;
  margin: var(--space-6) 0 0;
  padding: var(--space-6);
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-card);
}
.hero-about__closing p {
  max-width: none;
  color: rgba(255,255,255,.82);
  font-size: var(--text-body);
  line-height: 1.65;
}
.hero-about__closing a {
  color: var(--white);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .hero-about__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-about__inline-link {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Pinterest-style photo page: natural image proportions, no captions. */
.site-deck-ready #photos {
  overflow-y: auto !important;
}
.site-deck-ready #photos > .container {
  align-items: center !important;
}
#photos .photo-grid {
  display: block;
  width: min(1040px, 100%);
  height: auto;
  min-height: 0;
  flex: none;
  margin: 0 auto;
  columns: 4;
  column-gap: var(--space-4);
}
#photos .photo-card {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0 0 var(--space-4);
  padding: 0;
  break-inside: avoid;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
  cursor: zoom-in;
  isolation: isolate;
}
#photos .photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #ecece8;
  transition: transform .55s var(--ease);
}
#photos .photo-card:hover img { transform: scale(1.035); }

/* Formats keep their information; actions become explicit and standard. */

/* FAQ stays visually open on the page; the section itself scrolls when needed. */
.site-deck-ready #faq {
  display: grid !important;
  align-items: start !important;
  overflow-y: auto !important;
  overscroll-behavior-y: contain;
}
.site-deck-ready #faq .faq__grid {
  display: grid !important;
  width: min(760px, 100%);
  height: auto;
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center !important;
  align-items: start !important;
  gap: 0;
}
.site-deck-ready #faq .accordion {
  width: 100%;
  max-height: none;
  overflow: visible;
}

@media (max-width: 760px) {
  .site-deck-ready #faq .accordion details { padding-inline: var(--space-4); }
  .site-deck-ready #faq .accordion summary { min-height: 58px; padding-inline: 0; font-size: var(--text-card-title); }
  .site-deck-ready #faq .accordion details p { max-width: none; margin: var(--space-1) 0 var(--space-4); font-size: var(--text-body); text-align: left; }
  .site-deck-ready #content > .hero--profile {
    padding: calc(var(--space-8) + var(--space-4)) 0 calc(var(--space-6) + var(--space-2)) !important;
  }
  .hero-profile__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-profile__avatar {
    width: 124px;
    height: 124px;
    flex-basis: 124px;
    margin: 0 0 var(--space-3);
  }
  .profile-photo-dialog__image {
    width: min(calc(100vw - 40px), 72dvh);
    height: min(calc(100vw - 40px), 72dvh);
  }
  .hero-profile__details {
    width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .hero-profile__role {
    width: 100%;
    margin-bottom: var(--space-1);
    font-size: var(--text-caption);
    text-align: center;
  }
  .hero-profile h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 1.12;
    letter-spacing: -.035em;
    text-align: center;
    text-wrap: balance;
  }
  .hero-profile__actions {
    justify-content: center;
    margin-top: var(--space-4);
  }
  .hero-profile { width: calc(100% - var(--space-4)); }
  .hero-profile__actions .button {
    min-height: 44px;
    padding-inline: var(--space-4);
  }
  .hero-about {
    margin-top: var(--space-5);
  }
  .hero-about__intro {
    padding-bottom: var(--space-5);
  }
  .hero-about h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
  }
  .hero-about__intro-copy,
  .hero-about__cards,
  .hero-about__story {
    grid-template-columns: 1fr;
  }
  .hero-about__intro-copy {
    gap: var(--space-4);
  }
  .hero-about__cards {
    gap: var(--space-3);
    margin-top: var(--space-5);
  }
  .hero-about__card {
    min-height: 0;
    gap: 0;
    padding: 0;
  }
  .hero-about__card p { padding: var(--space-4); }
  .hero-about__card-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: var(--space-3);
  }
  .hero-about__card-icon { width: 36px; height: 36px; }
  .hero-about__intro-copy p,
  .hero-about__card p,
  .hero-about__story p,
  .hero-about__closing p {
    text-align: left;
    line-height: 1.65;
  }
  .hero-about__story,
  .hero-about__repertoire,
  .hero-about__friend { margin-top: var(--space-6); }
  .hero-about__friend {
    font-size: var(--text-body);
    line-height: 1.65;
  }
  .hero-about__repertoire h3 { font-size: clamp(26px, 7vw, 32px); }
  .hero-about__tags { gap: var(--space-2); margin-top: var(--space-4); }
  .hero-about__tags span,
  .hero-about__tags a { min-height: 34px; font-size: var(--text-caption); }
  .hero-about__inline-link { white-space: normal; }
  .hero-about__closing {
    padding: var(--space-4);
  }
  #photos .photo-grid {
    columns: 2;
    column-gap: var(--space-3);
  }
  #photos .photo-card {
    margin: 0;
    padding-bottom: var(--space-3);
    overflow: visible;
    border-radius: 0;
  }
  #photos .photo-card img {
    border-radius: var(--radius-card);
  }
  
}

/* 2026-08-07 clean format cards */
.site-deck-ready #formats {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
}
#formats > .container {
  height: auto !important;
  min-height: 100%;
}
.format-options {
  display: grid;
  width: min(1100px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: var(--space-4);
  margin: 0 auto;
}
.format-option {
  position: relative;
  min-width: 0;
  height: auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.format-option--video {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease);
}
.format-option--video:hover,
.format-option--video:focus-within {
  border-color: rgba(36, 87, 255, .56);
  box-shadow: 0 16px 36px rgba(17, 17, 15, .12);
  transform: translateY(-3px);
}
.format-option__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.format-option__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.format-option--video .format-option__media img {
  transition: transform .32s var(--ease), filter .32s ease;
}
.format-option--video:hover .format-option__media img,
.format-option--video:focus-within .format-option__media img {
  filter: brightness(.9);
  transform: scale(1.025);
}
.format-option__video-cta {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-4);
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(36, 87, 255, .3);
  font-size: var(--text-support);
  font-weight: 700;
  line-height: 1;
  transition: background-color .2s ease, transform .22s var(--ease);
}
.format-option__video-cta i {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.format-option--video:hover .format-option__video-cta,
.format-option--video:focus-within .format-option__video-cta {
  background: #1747e6;
  transform: scale(1.035);
}
.format-option__video-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
  cursor: pointer;
}
.format-option__video-trigger:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--accent);
}
.format-option__body {
  padding: var(--space-4) var(--space-4) 0;
}
.format-option h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-card-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.format-option__brief {
  display: grid;
  margin: var(--space-4) 0 0;
  padding: 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: var(--text-support);
  font-weight: 500;
  line-height: 1.45;
  list-style: none;
}
.format-option__brief li {
  display: grid;
  min-height: 48px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}
.format-option__brief li + li {
  border-top: 1px solid var(--line);
}
.format-option__brief-number {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #55554f;
  background: #f3f3ef;
  border: 1px solid #d9d9d1;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 700;
  line-height: 1;
}
.format-option__expand-row {
  position: relative;
  z-index: 3;
  margin: 0 var(--space-4);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.format-option__more {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: var(--text-support);
  font-weight: 700;
  text-align: center;
}
.format-option__more:hover { opacity: .58; }
.format-option__details {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0 var(--space-4);
  opacity: 0;
  transition: grid-template-rows .34s var(--ease), opacity .22s ease;
}
.format-option__details-inner {
  position: relative;
  overflow: hidden;
}
.format-option__details p {
  max-width: 68ch;
  margin: 0;
  padding: var(--space-4) 0 var(--space-3);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: var(--text-body);
  line-height: 1.72;
}
.format-option__details strong {
  color: var(--ink);
  font-weight: 700;
}
.format-option.is-open .format-option__details {
  grid-template-rows: 1fr;
  opacity: 1;
}
@media (max-width: 760px) {
  .site-deck-ready #formats {
    overflow-y: auto !important;
  }
  #formats > .container {
    height: auto !important;
    min-height: 100% !important;
  }
  .format-options {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-4);
    padding-bottom: var(--space-5);
  }
  .format-option {
    width: 100%;
    height: auto;
  }
  .format-option--video:hover,
  .format-option--video:focus-within {
    transform: none;
  }
  .format-option__body { padding: var(--space-4) var(--space-4) 0; }
  .format-option h3 {
    font-size: var(--text-card-title);
    white-space: normal;
  }
  .format-option__brief {
    margin-top: var(--space-4);
    font-size: var(--text-support);
  }
  .format-option__brief li {
    min-height: 48px;
    grid-template-columns: 26px minmax(0, 1fr);
  }
  .format-option__expand-row,
  .format-option__details { margin-inline: var(--space-4); }
  .format-option__details p {
    padding: var(--space-3) 0;
    font-size: var(--text-body);
    line-height: 1.72;
    text-align: left;
  }
}

/* 2026-08-07 calculator layout polish */
.site-deck-ready #price {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background: var(--paper);
  overscroll-behavior-y: contain;
}
.site-deck-ready #price > .container {
  height: auto !important;
  min-height: 100%;
  align-items: center !important;
}
#price .calculator__grid {
  display: grid;
  width: min(1100px, 100%);
  min-height: 0;
  flex: none;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: stretch;
  align-content: start;
  gap: var(--space-4);
  overflow: visible;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
}
#price .calculator__controls {
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "event date"
    "duration duration"
    "address address"
    "format format";
  grid-template-rows: auto;
  align-content: start;
  gap: var(--space-5) var(--space-4);
  overflow: visible;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
#price .calculator__controls > :nth-child(1) { grid-area: event; }
#price .calculator__controls > :nth-child(2) { grid-area: duration; }
#price .calculator__controls > :nth-child(3) { grid-area: date; }
#price .calculator__controls > :nth-child(4) { grid-area: address; }
#price .calculator__controls > :nth-child(5) { grid-area: format; }
#price .address-autocomplete:has(.address-suggestions.is-visible) { z-index: 70; }
#price .calculator__controls .field {
  min-width: 0;
  align-content: start;
  gap: var(--space-2);
  padding: 0;
}
#price .calculator__controls .custom-select,
#price .calculator__controls .custom-select__trigger {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
#price #calc-event-value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#price #calc-date {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
#price .field > span:first-child {
  min-height: 18px;
  align-items: center;
  font-size: var(--text-support);
  line-height: 1.3;
}
#price .field > span:first-child small {
  font-size: var(--text-caption);
}
#price .calculator__controls .custom-select__trigger,
#price .calculator__controls .field input:not([type="range"]) {
  min-height: 50px;
  font-size: var(--text-body);
  border-radius: var(--radius-control);
}
#price .calculator__controls .custom-select__trigger {
  padding-inline: 15px 8px;
  overflow: hidden;
}
#price .calculator__controls .custom-select__trigger i {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 50%;
}
#price .calculator-addons {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
#price .calculator-addons legend {
  width: 100%;
  margin: 0 0 var(--space-2);
  padding: 0;
  color: var(--ink);
  font-size: var(--text-support);
  font-weight: 700;
  line-height: 1.3;
}
#price .calculator-addon {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
}
#price .calculator-addon + .calculator-addon { margin-top: var(--space-2); }
#price .calculator-addon__select {
  display: grid;
  min-height: 56px;
  min-width: 0;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-2) 0 var(--space-3);
  border-radius: calc(var(--radius-control) - 1px) 0 0 calc(var(--radius-control) - 1px);
  cursor: pointer;
}
#price .calculator-addon input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}
#price .calculator-addon__check {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--white);
  border: 1.5px solid #b9b9b1;
  border-radius: 7px;
  transition: background-color .18s ease, border-color .18s ease, transform .18s var(--ease);
}
#price .calculator-addon__check::after {
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(.7);
  transition: opacity .18s ease, transform .18s var(--ease);
}
#price .calculator-addon input:checked + .calculator-addon__check {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.04);
}
#price .calculator-addon input:checked + .calculator-addon__check::after {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}
#price .calculator-addon input:focus-visible + .calculator-addon__check {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
#price .calculator-addon__copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}
#price .calculator-addon__copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#price .calculator-addon__copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#price .calculator-addon__select b {
  color: var(--ink);
  font-size: var(--text-support);
  line-height: 1.3;
  white-space: nowrap;
}
#price .calculator-addon__info {
  position: relative;
  display: grid;
  width: 44px;
  height: 100%;
  min-height: 56px;
  align-self: stretch;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0 calc(var(--radius-control) - 1px) calc(var(--radius-control) - 1px) 0;
  cursor: pointer;
  font-size: 0;
}
#price .calculator-addon__info::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  content: "?";
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: var(--text-caption);
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s var(--ease);
}
#price .calculator-addon__info:hover::before,
#price .calculator-addon__info:focus-visible::before { color: var(--white); background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
#price .calculator-addon__info:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
#price .field > small {
  font-size: var(--text-caption);
  line-height: 1.45;
}
#price #calc-address-status.address-status--good {
  color: #2f8a4c !important;
  font-weight: 650;
}
#price .range-field output {
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-caption);
}

#price .calculator__result {
  min-height: 0;
  padding: var(--space-6);
  border-radius: var(--radius-card);
}
#price .calculator__result > p {
  font-size: var(--text-caption);
  letter-spacing: .02em;
}
#price .calculator__result > strong {
  margin-top: var(--space-3);
  font-size: clamp(48px, 4.4vw, 66px);
  letter-spacing: -.06em;
}
#price .calculator__result ul {
  gap: var(--space-3);
  margin: var(--space-5) 0;
  padding: var(--space-4) 0;
}
#price .calculator__result li {
  font-size: var(--text-body);
  line-height: 1.45;
}
#price .calculator__result > small {
  font-size: var(--text-caption);
  line-height: 1.55;
}
#price .calculator__actions {
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: var(--space-3);
  padding-top: var(--space-5);
}
#price .calculator__actions .button {
  min-height: 52px;
}
#price .offer-download--calculator {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-control);
}

@media (min-width: 761px) and (max-width: 1180px) {
  #price .calculator__controls {
    grid-template-columns: 1fr;
    grid-template-areas:
      "event"
      "date"
      "duration"
      "address"
      "format";
    gap: var(--space-4);
    padding: var(--space-5);
  }
}

@media (max-width: 760px) {
  .site-deck-ready #price {
    padding-bottom: 0 !important;
  }
  .site-deck-ready #price > .container {
    height: auto !important;
    min-height: 100% !important;
    align-items: stretch !important;
  }
  #price .calculator__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    overflow: visible;
  }
  #price .calculator__controls,
  #price .calculator__result {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  #price .calculator__controls {
    grid-template-columns: 1fr;
    grid-template-areas:
      "event"
      "date"
      "duration"
      "address"
      "format";
    gap: var(--space-4);
    padding: var(--space-5) var(--space-4);
  }
  #price .calculator__controls .custom-select__trigger,
  #price .calculator__controls .field input:not([type="range"]) {
    min-height: 50px;
    font-size: var(--text-body);
  }
  #price .calculator__controls > .field {
    width: 100%;
    min-width: 0;
  }
  #price .calculator-addon {
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 44px;
  }
  #price .calculator-addon__select { gap: var(--space-2); padding-inline: var(--space-2); }
  #price .calculator-addon__select b { font-size: var(--text-caption); }
  #price #calc-date {
    display: flex;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 50px;
    align-items: center;
    margin: 0;
    padding: 0 var(--space-4);
    line-height: 1.2;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
  }
  #price #calc-date::-webkit-date-and-time-value {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: left;
  }
  #price .calculator__result {
    padding: var(--space-5) var(--space-4);
  }
  #price .calculator__result > strong {
    font-size: clamp(48px, 15vw, 60px);
  }
  #price .calculator__result ul {
    margin: var(--space-5) 0;
    padding: var(--space-4) 0;
  }
  #price .calculator__actions {
    grid-template-columns: minmax(0, 1fr) 48px;
    margin-top: var(--space-5);
    padding-top: 0;
  }
  #price .calculator__actions .button {
    min-height: 50px;
    font-size: var(--text-support);
  }
  #price .offer-download--calculator {
    width: 48px;
    height: 50px;
  }
}
