:root {
  --ink: #080808;
  --ink-2: #111111;
  --paper: #f1f1ed;
  --white: #ffffff;
  --muted: #a5a5a0;
  --yellow: #ffffff;
  --line-light: rgba(255, 255, 255, .14);
  --line-dark: rgba(8, 8, 8, .12);
  --radius: 1.75rem;
  --max: 1260px;
  --pad: clamp(1.25rem, 4vw, 3.75rem);
  --display: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.container { width: min(100% - (var(--pad) * 2), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: .8rem;
  left: .8rem;
  padding: .8rem 1rem;
  border-radius: .7rem;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Floating navigation */
.site-header {
  position: fixed;
  z-index: 100;
  inset: .85rem 0 auto;
  height: 4.5rem;
  transition: transform .3s ease;
}
.header-inner {
  position: relative;
  width: min(100% - 1.5rem, 1460px);
  height: 100%;
  margin-inline: auto;
  padding-inline: 1.15rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.15rem;
  background: rgba(8,8,8,.44);
  box-shadow: 0 8px 36px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.scroll-progress {
  position: absolute;
  z-index: 2;
  right: .9rem;
  bottom: 0;
  left: .9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}
.brand { display: inline-flex; width: max-content; align-items: center; gap: .85rem; }
.brand img { width: 8.25rem; height: auto; filter: invert(1); }
.brand span {
  padding-left: .8rem;
  border-left: 1px solid rgba(255,255,255,.24);
  color: #aaa;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.3rem); }
.desktop-nav a {
  position: relative;
  padding-block: .8rem;
  color: #ccc;
  font-size: .875rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: .3rem;
  left: 50%;
  height: 2px;
  border-radius: 99px;
  background: var(--yellow);
  transition: inset .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; left: 0; }
.header-cta {
  justify-self: end;
  min-height: 2.8rem;
  padding: .7rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  border-radius: .75rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #d8d8d4; }
.menu-toggle, .mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: max(46rem, 92svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero-media, .hero-shade, .hero-noise { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
  z-index: -4;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.035);
  filter: saturate(.82) contrast(1.05) brightness(.92);
  animation: hero-in 1.3s cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  z-index: -3;
  background:
    radial-gradient(circle at 84% 38%, rgba(255,255,255,.11), transparent 25%),
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.22) 77%, rgba(0,0,0,.54) 100%),
    linear-gradient(0deg, rgba(0,0,0,.9) 0%, transparent 52%);
}
.hero-noise {
  z-index: -2;
  opacity: .2;
  mix-blend-mode: soft-light;
  background-image: 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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.05) 50%, transparent 50.1%);
  pointer-events: none;
}
@keyframes hero-in {
  from { opacity: 0; transform: scale(1.11); }
  to { opacity: 1; transform: scale(1.035); }
}
.hero-content { position: relative; padding-top: 9rem; padding-bottom: 11rem; }
.eyebrow, .kicker {
  margin: 0 0 1.35rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .76rem;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow {
  width: max-content;
  padding: .6rem .8rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,255,255,.09);
}
.hero h1, .section-intro h2, .contact-top h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .94;
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
  text-wrap: balance;
}
.hero h1 span, .contact-top h2 span { color: #c8c8c3; }
.hero-copy {
  max-width: 610px;
  margin: 1.5rem 0 0;
  color: #d0d0cc;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.button {
  min-height: 3.45rem;
  padding: .95rem 1.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  border: 1px solid transparent;
  border-radius: .85rem;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--white); color: var(--ink); border-color: var(--white); box-shadow: 0 12px 30px rgba(255,255,255,.09); }
.button-primary:hover { background: #d8d8d4; border-color: #d8d8d4; box-shadow: 0 14px 36px rgba(255,255,255,.12); }
.button-ghost { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); color: var(--white); backdrop-filter: blur(9px); }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.hero-signature {
  position: absolute;
  right: 0;
  bottom: 10rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem;
  background: rgba(8,8,8,.42);
  backdrop-filter: blur(12px);
}
.hero-signature strong { color: var(--yellow); font-family: var(--display); font-size: 2.3rem; line-height: 1; letter-spacing: -.08em; }
.hero-signature span { color: #bcbcbc; font-size: .65rem; line-height: 1.35; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-rail {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1.15rem;
  background: rgba(12,12,12,.55);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.hero-rail div {
  min-width: 10.5rem;
  padding: 1rem 1.1rem;
  display: flex;
  gap: .65rem;
  align-items: baseline;
  border-left: 1px solid rgba(255,255,255,.12);
}
.hero-rail div:first-child { border-left: 0; }
.hero-rail strong { color: var(--yellow); font-size: .68rem; }
.hero-rail span { font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #c5c5c5;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 3.3rem; height: 1px; background: rgba(255,255,255,.45); }
.scroll-cue i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(-45deg);
}

/* Motion strip */
.ticker { position: relative; z-index: 3; overflow: hidden; background: #e8e8e5; color: var(--ink); }
.ticker-track {
  width: max-content;
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 22s linear infinite;
  will-change: transform;
}
.ticker-group { min-width: 100vw; flex: none; display: flex; align-items: center; justify-content: space-around; gap: 2rem; padding-right: 2rem; }
.ticker span { font-family: var(--display); font-size: clamp(1.25rem, 2.1vw, 1.9rem); font-weight: 850; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.ticker i { flex: none; width: .65rem; height: .65rem; border-radius: 50%; background: var(--ink); }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

/* Shared section system */
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--white); }
.section-yellow { background: var(--paper); color: var(--ink); }
.about, .services, .team, .pricing, .voices, .gallery, .contact {
  position: relative;
  padding-block: clamp(4.75rem, 7.5vw, 7.5rem);
}
.section-intro { position: relative; z-index: 2; margin-bottom: clamp(2.6rem, 4vw, 4rem); }
.kicker span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .66rem;
  letter-spacing: 0;
}
.section-intro h2 { max-width: 820px; font-size: clamp(2.65rem, 4.8vw, 4.65rem); text-wrap: balance; }
.section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(250px, .8fr);
  gap: 4rem;
  align-items: end;
}
.section-intro-split > p { max-width: 390px; margin: 0 0 .4rem auto; color: currentColor; opacity: .66; }
.section-intro-split > p, .hero-copy, .about-copy p { text-wrap: pretty; }

/* About */
.about { overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  right: -14rem;
  top: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(8,8,8,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(8,8,8,.018), 0 0 0 10rem rgba(8,8,8,.012);
}
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-copy .lead { margin-top: 0; font-size: clamp(1.25rem, 1.8vw, 1.7rem); line-height: 1.4; font-weight: 720; letter-spacing: -.02em; }
.about-copy > p:not(.lead) { max-width: 620px; color: #5e5e59; }
.value-list { margin-top: 2.8rem; display: grid; gap: .65rem; }
.value-list > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(8,8,8,.1);
  border-radius: 1rem;
  background: rgba(255,255,255,.5);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.value-list > div:hover { transform: translateX(.4rem); border-color: rgba(8,8,8,.25); background: var(--white); }
.value-list span { grid-row: 1 / 3; color: #999; font-size: .7rem; font-weight: 800; }
.value-list strong { font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.value-list small { margin-top: .15rem; color: #6e6e69; font-size: .82rem; }
.about-visual { position: relative; margin: 0; padding: .6rem; border: 1px solid rgba(8,8,8,.12); border-radius: 2rem; background: rgba(255,255,255,.52); box-shadow: 0 25px 70px rgba(0,0,0,.1); }
.about-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1.4rem;
  right: 2rem;
  width: 38%;
  height: 2.8rem;
  border-radius: 99px;
  background: var(--yellow);
  transform: rotate(-3deg);
}
.about-visual img { width: 100%; aspect-ratio: 4 / 3; border-radius: 1.55rem; object-fit: cover; filter: saturate(.86) contrast(1.04); }
.about-visual figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .8rem;
  background: rgba(8,8,8,.72);
  color: var(--white);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}
.about-visual figcaption span { color: var(--yellow); margin-right: .6rem; }

/* Services bento */
.services { overflow: hidden; background: #0a0a0a; }
.services::before {
  content: "";
  position: absolute;
  top: -20rem;
  left: 20%;
  width: 55rem;
  height: 55rem;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 63%);
  pointer-events: none;
}
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 25rem;
  padding: clamp(1.4rem, 2.7vw, 2.2rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #171717, #101010);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.55); box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.service-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 95% 0%, rgba(255,255,255,.08), transparent 32%);
  pointer-events: none;
}
.service-card-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: .25;
  filter: saturate(.58) contrast(1.12);
  transition: transform .65s ease, opacity .35s ease, filter .35s ease;
}
.service-card-strength::before { background-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25)), url("assets/IMG_2232.webp"); }
.service-card-multisport::before { background-image: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.18)), url("assets/IMG_2212.webp"); }
.service-card-photo:hover::before { transform: scale(1.045); opacity: .38; filter: saturate(.88) contrast(1.08); }
.service-card > * { position: relative; z-index: 1; }
.service-number {
  align-self: flex-end;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #aaa;
  font-size: .65rem;
  font-weight: 800;
}
.service-card svg { width: 3.7rem; margin: 3.6rem 0 1.8rem; fill: none; stroke: var(--yellow); stroke-width: 1.6; }
.service-card h3 { max-width: 500px; margin: 0 0 .8rem; font-family: var(--display); font-size: clamp(1.85rem, 3vw, 2.8rem); font-weight: 850; line-height: 1; letter-spacing: -.045em; }
.service-card p { max-width: 470px; margin: 0; color: #afafab; font-size: .93rem; }
.service-card a {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .875rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.service-card a span { color: var(--yellow); }

/* Team */
.team { overflow: hidden; }
.team-layout { display: grid; grid-template-columns: 1fr 1fr .82fr; gap: 1rem; align-items: start; }
.team-card {
  position: relative;
  min-height: 36rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.team-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.06);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.team-card:hover img { transform: scale(1.055); filter: saturate(.98) contrast(1.04); }
.team-overlay {
  position: absolute;
  inset: auto .65rem .65rem;
  padding: 4rem 1.15rem 1.15rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.2rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.89));
}
.team-overlay p { margin: 0; color: #d5d5d0; font-size: .68rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.team-overlay h3 { margin: .2rem 0; font-family: var(--display); font-size: 3rem; font-weight: 850; line-height: 1; letter-spacing: -.055em; }
.team-overlay a { font-size: .875rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.team-note {
  align-self: end;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 55px rgba(0,0,0,.12);
}
.quote-mark { display: block; color: var(--yellow); font-family: Georgia, serif; font-size: 5rem; line-height: .55; }
.team-note blockquote { margin: 1.6rem 0; font-size: 1.2rem; font-weight: 720; line-height: 1.45; letter-spacing: -.015em; }
.team-note p { margin-bottom: 0; color: #8a8a86; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Pricing */
.pricing { overflow: hidden; }
.pricing::before {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,8,8,.13), rgba(8,8,8,.035) 45%, transparent 68%);
  filter: blur(5px);
}
.pricing .container { position: relative; z-index: 1; }
.pricing-board { display: grid; grid-template-columns: .86fr 1.14fr; gap: 1rem; align-items: stretch; }
.pricing-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(8,8,8,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 55px rgba(0,0,0,.07);
  backdrop-filter: blur(8px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-panel:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.11); }
.pricing-panel-dark { border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: 0 28px 70px rgba(0,0,0,.18); }
.pricing-panel-head { min-height: 6.8rem; padding-bottom: 1.5rem; display: flex; gap: 1.2rem; align-items: flex-start; border-bottom: 1px solid rgba(8,8,8,.14); }
.pricing-panel-dark .pricing-panel-head { border-color: rgba(255,255,255,.16); }
.pricing-panel-head > span { width: 2.15rem; height: 2.15rem; flex: none; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .65rem; font-weight: 850; }
.pricing-panel-head small { display: block; margin: .15rem 0 .4rem; color: #70706b; font-size: .66rem; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.pricing-panel-dark .pricing-panel-head small { color: #aaa; }
.pricing-panel h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.price-list { margin: 0; padding: .6rem 0 0; list-style: none; }
.price-list li { min-height: 4.6rem; padding: 1rem .15rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1.5rem; border-bottom: 1px solid rgba(8,8,8,.1); }
.pricing-panel-dark .price-list li { border-color: rgba(255,255,255,.12); }
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: #3e3e3a; font-size: .96rem; }
.pricing-panel-dark .price-list span { color: #d0d0cc; }
.price-list strong { font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.8rem); font-variant-numeric: tabular-nums; letter-spacing: -.04em; white-space: nowrap; }
.pricing-footer { margin-top: 1rem; padding: 1.25rem 1.35rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border: 1px solid rgba(8,8,8,.13); border-radius: 1.15rem; background: rgba(255,255,255,.56); }
.pricing-footer > div { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: baseline; }
.pricing-footer small { grid-column: 1; color: #70706b; font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-footer strong { grid-column: 2; }
.pricing-footer span { grid-column: 2; color: #686863; font-size: .8rem; }
.pricing-footer .button { flex: none; }

/* Voices */
.voices { isolation: isolate; overflow: hidden; }
.voices::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/IMG_2331.webp") center 50% / cover no-repeat;
  opacity: .28;
  filter: saturate(.55) contrast(1.12);
}
.voices::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.7)), radial-gradient(circle at 80% 20%, rgba(255,255,255,.1), transparent 30%);
}
.voice-shell {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 4rem;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 2rem;
  background: rgba(9,9,9,.64);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.voice-meta p { margin-top: 0; color: #a2a29e; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.stars { color: var(--yellow); letter-spacing: .18em; font-size: .84rem; }
.voice-slides { min-height: 260px; }
.voice-slide { animation: slide-in .45s ease both; }
@keyframes slide-in { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: none; } }
.voice-quote { max-width: 780px; margin: 0 0 2.5rem; font-size: clamp(1.55rem, 2.7vw, 2.7rem); font-weight: 680; line-height: 1.25; letter-spacing: -.035em; text-wrap: balance; }
.voice-author { display: flex; align-items: center; gap: .85rem; }
.voice-author > span { width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--ink); font-family: var(--display); letter-spacing: -.06em; }
.voice-author div { display: flex; flex-direction: column; }
.voice-author strong { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.voice-author small { color: #888884; }
.carousel-controls { grid-column: 2; display: flex; align-items: center; gap: .8rem; }
.carousel-controls button {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .75rem;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.carousel-controls button:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.carousel-controls span { min-width: 4rem; text-align: center; color: #777; font-size: .7rem; }
.carousel-controls b { color: var(--white); }

/* Gallery */
.gallery { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; grid-auto-rows: 160px; gap: .8rem; }
.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.4rem;
  background: #222;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  cursor: zoom-in;
}
.gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 8; grid-row: span 3; }
.gallery-item:nth-child(6), .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.gallery-item::after {
  content: "↗";
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .75rem;
  background: rgba(0,0,0,.45);
  color: var(--white);
  opacity: 0;
  transform: translateY(.5rem);
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(8px);
}
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.02) contrast(1.08); }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-item span {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .48rem .68rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .65rem;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .65rem;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.lightbox {
  position: fixed;
  width: min(94vw, 1200px);
  max-height: 90vh;
  padding: .65rem;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1.6rem;
  background: rgba(9,9,9,.75);
  color: var(--white);
  backdrop-filter: blur(12px);
}
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(8px); }
.lightbox img { max-width: 100%; max-height: 79vh; margin: auto; border-radius: 1.1rem; object-fit: contain; }
.lightbox p { margin: .7rem 0 .15rem; text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -3.2rem;
  right: 0;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: .8rem;
  background: #111;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Contact */
.contact { padding-bottom: 0; overflow: hidden; background: #080808; }
.contact::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -15%;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 62%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact-top h2 { max-width: 850px; font-size: clamp(3.3rem, 7vw, 6.6rem); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); margin: 5rem 0; }
.contact-details { display: grid; gap: .8rem; align-content: start; }
.contact-block {
  padding: 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.2rem;
  background: rgba(255,255,255,.035);
}
.contact-block small { margin-bottom: .7rem; color: #cfcfca; font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-block a { font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 700; letter-spacing: -.02em; transition: color .2s ease; }
.contact-block a:hover { color: #c8c8c3; }
.contact-block p { max-width: 420px; margin: 0 0 .6rem; color: #aaa; font-size: .92rem; }
.contact-block .text-link { font-size: .875rem; letter-spacing: .07em; text-transform: uppercase; }
.hours-list { width: 100%; display: grid; gap: .65rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; color: #aaa; font-size: .9rem; }
.hours-list strong { color: var(--white); font-variant-numeric: tabular-nums; white-space: nowrap; }
.contact-form {
  padding: clamp(1.6rem, 3.2vw, 3rem);
  border-radius: 2rem;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.form-heading { margin-bottom: 2rem; }
.form-heading h3 { margin: 0; font-family: var(--display); font-size: 2.45rem; font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.form-heading p { margin: .55rem 0 0; color: #666; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; margin-bottom: 1rem; font-size: .72rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: .45rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(8,8,8,.13);
  border-radius: .85rem;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 0;
  border-color: rgba(8,8,8,.7);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8,8,8,.05);
}
.contact-form label.is-invalid input, .contact-form label.is-invalid select, .contact-form label.is-invalid textarea { border-color: #080808; box-shadow: inset 0 0 0 1px #080808; }
.error { display: none; margin-top: .35rem; color: #363632; font-size: .7rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.is-invalid .error { display: block; }
.form-privacy { margin: .1rem 0 1.2rem; color: #666; font-size: .78rem; line-height: 1.55; }
.form-privacy a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(8,8,8,.35); text-underline-offset: .18rem; }
.form-privacy a:hover { text-decoration-color: var(--ink); }
.contact-form .button { width: 100%; margin-top: .5rem; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; font-size: .85rem; }
.form-status.is-success { color: #30302d; }
.operator-card {
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.operator-intro h3 { margin: 1rem 0 .8rem; font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.operator-intro > p:last-child { max-width: 430px; margin: 0; color: #999; }
.operator-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.operator-grid div { padding: 1rem; border: 1px solid rgba(255,255,255,.09); border-radius: 1rem; background: rgba(0,0,0,.16); }
.operator-grid .operator-wide { grid-column: 1 / -1; }
.operator-grid dt { color: #777; font-size: .65rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.operator-grid dd { margin: .35rem 0 0; font-size: .95rem; font-weight: 700; overflow-wrap: anywhere; }
.operator-link { grid-column: 2; justify-self: start; color: #d5d5d0; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.operator-link:hover { color: var(--white); }
.map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -15px 50px rgba(0,0,0,.22);
}
.map-wrap iframe { display: block; width: 100%; min-height: 440px; border: 0; visibility: hidden; filter: saturate(.55) contrast(1.04); }
.map-wrap iframe.is-loaded { visibility: visible; }
.map-consent {
  position: absolute;
  z-index: 2;
  inset: 0;
  min-height: 440px;
  padding: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(8,8,8,.8), rgba(8,8,8,.92)),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(255,255,255,.055) 28px 29px);
}
.map-consent[hidden] { display: none; }
.map-consent > div { max-width: 540px; }
.map-consent small { color: #cfcfca; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.map-consent h3 { margin: .7rem 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 850; line-height: 1; letter-spacing: -.05em; }
.map-consent p { margin: 0 auto 1.5rem; color: #aaa; }
.map-consent p a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: .18rem; }
.map-consent .button { border: 0; cursor: pointer; }
.map-wrap > a {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  padding: .8rem 1rem;
  border-radius: .75rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Footer and utility */
.site-footer { padding-top: 4rem; border-top: 1px solid rgba(255,255,255,.1); background: #030303; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid > div:first-child img { width: 10rem; height: auto; filter: invert(1); }
.footer-grid p { max-width: 300px; color: #777; font-size: .84rem; }
.footer-grid nav, .footer-social { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; font-size: .875rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid a { transition: color .2s ease; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 4rem;
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { margin: 0; color: #666; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

/* Legal document */
.legal-body { background: var(--paper); color: var(--ink); }
.legal-body .site-header .header-inner { background: rgba(8,8,8,.44); }
.legal-header-inner { grid-template-columns: 1fr auto 1fr; }
.legal-nav { display: flex; align-items: center; gap: 1.6rem; }
.legal-nav a { color: #ccc; font-size: .76rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; transition: color .2s ease; }
.legal-nav a:hover { color: var(--yellow); }
.legal-main { overflow: clip; }
.legal-hero { position: relative; padding: clamp(10rem, 16vw, 14rem) 0 clamp(5rem, 10vw, 9rem); overflow: hidden; background: var(--ink); color: var(--white); }
.legal-hero::after { content: "GDPR"; position: absolute; right: 2vw; bottom: -5%; color: rgba(255,255,255,.025); font-family: var(--display); font-size: clamp(10rem, 20vw, 20rem); font-weight: 850; line-height: .7; letter-spacing: -.08em; pointer-events: none; }
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 { max-width: 850px; margin: 1.6rem 0 3rem; font-family: var(--display); font-size: clamp(3.2rem, 6.5vw, 6.2rem); font-weight: 850; line-height: .9; letter-spacing: -.06em; }
.legal-hero h1 span { color: #c8c8c3; }
.legal-hero-meta { max-width: 920px; padding-top: 1.5rem; display: grid; grid-template-columns: 1.45fr .55fr; gap: 3rem; border-top: 1px solid rgba(255,255,255,.16); }
.legal-hero-meta p { margin: 0; color: #aaa; }
.legal-hero-meta strong { color: var(--white); }
.legal-layout { padding-block: clamp(4rem, 8vw, 8rem); display: grid; grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.legal-toc { position: sticky; top: 7rem; padding: 1.4rem; border: 1px solid var(--line-dark); border-radius: 1.2rem; background: rgba(255,255,255,.48); }
.legal-toc > p { margin: 0 0 .8rem; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.legal-toc ol { margin: 0; padding-left: 1.3rem; color: #777; font-size: .78rem; }
.legal-toc li + li { margin-top: .5rem; }
.legal-toc a { color: #555; transition: color .2s ease; }
.legal-toc a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: .18rem; }
.legal-document { min-width: 0; }
.legal-note { margin: 1.5rem 0; padding: 1.25rem 1.35rem; border-left: 4px solid var(--ink); border-radius: 0 1rem 1rem 0; background: rgba(8,8,8,.055); }
.legal-note-warning { margin: 0 0 3rem; border: 1px solid rgba(8,8,8,.14); border-left: 6px solid var(--ink); background: var(--white); box-shadow: 0 15px 45px rgba(8,8,8,.06); }
.legal-note strong { display: block; margin-bottom: .35rem; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-note p { margin: 0; }
.legal-note a { font-weight: 750; text-decoration: underline; text-underline-offset: .16rem; }
.legal-section { position: relative; padding: 3rem 0; border-top: 1px solid var(--line-dark); scroll-margin-top: 7rem; }
.legal-section:first-of-type { border-top: 0; }
.legal-number { display: inline-grid; min-width: 2.3rem; height: 2.3rem; padding-inline: .5rem; place-items: center; border-radius: .65rem; background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 900; }
.legal-section h2 { max-width: 760px; margin: 1rem 0 1.5rem; font-family: var(--display); font-size: clamp(1.7rem, 2.8vw, 2.8rem); font-weight: 850; line-height: 1.05; letter-spacing: -.04em; }
.legal-section p { max-width: 850px; color: #43433f; }
.legal-section p strong { color: var(--ink); }
.legal-identity { margin: 1.6rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.legal-identity div { padding: 1rem; border: 1px solid var(--line-dark); border-radius: .85rem; background: rgba(255,255,255,.52); }
.legal-identity dt { color: #73736d; font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legal-identity dd { margin: .3rem 0 0; font-weight: 750; overflow-wrap: anywhere; }
.legal-recipients div:last-child { grid-column: 1 / -1; }
.legal-list { max-width: 850px; margin: 1.5rem 0; padding: 0; list-style: none; counter-reset: legal-item; }
.legal-list li { position: relative; min-height: 2rem; padding: .75rem 0 .75rem 3rem; border-bottom: 1px solid var(--line-dark); counter-increment: legal-item; color: #43433f; }
.legal-list li::before { content: counter(legal-item, decimal-leading-zero); position: absolute; top: .77rem; left: 0; color: #777; font-size: .7rem; font-weight: 850; letter-spacing: .06em; }
.legal-basis-grid { margin: 1.6rem 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.legal-basis-grid > div { padding: clamp(1.2rem, 3vw, 2rem); border-radius: 1.2rem; background: var(--ink); color: var(--white); }
.legal-basis-grid strong { color: var(--yellow); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.legal-basis-grid p { margin-bottom: 0; color: #b8b8b2; font-size: .9rem; }
.rights-grid { margin: 1.8rem 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; list-style: none; counter-reset: right-item; }
.rights-grid li { padding: 1.15rem; border: 1px solid var(--line-dark); border-radius: 1rem; background: rgba(255,255,255,.52); counter-increment: right-item; }
.rights-grid li::before { content: "0" counter(right-item); display: block; margin-bottom: .65rem; color: #8a8a84; font-size: .67rem; font-weight: 850; }
.rights-grid strong { display: block; margin-bottom: .35rem; }
.rights-grid span { display: block; color: #555; font-size: .88rem; }
.legal-contact-list { margin: 1.6rem 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .65rem; list-style: none; }
.legal-contact-list li { padding: 1rem; display: flex; flex-direction: column; border: 1px solid var(--line-dark); border-radius: .9rem; background: var(--white); }
.legal-contact-list span { color: #777; font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legal-contact-list strong { margin-top: .35rem; overflow-wrap: anywhere; }
.legal-sources a { font-weight: 800; text-decoration: underline; text-decoration-color: var(--ink); text-decoration-thickness: 3px; text-underline-offset: .2rem; }
.legal-footer { color: var(--white); }
.back-to-top {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(8,8,8,.14);
  border-radius: 1rem;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(5px);
  transition: opacity .75s cubic-bezier(.2,.65,.3,1), transform .75s cubic-bezier(.2,.65,.3,1), filter .75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle {
    width: 3rem;
    height: 3rem;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: .8rem;
    background: rgba(255,255,255,.06);
    cursor: pointer;
  }
  .menu-toggle span { width: 1.55rem; height: 2px; border-radius: 2px; background: var(--white); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    top: 5.8rem;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    padding: 1.2rem;
    overflow-y: auto;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 1.4rem;
    background: rgba(8,8,8,.96);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
  }
  .mobile-nav:not([hidden]) { display: flex; }
  .mobile-nav a {
    padding: .9rem .2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: var(--display);
    font-size: clamp(2.3rem, 7vw, 4rem);
    line-height: 1;
    letter-spacing: -.06em;
    text-transform: uppercase;
  }
  .hero-signature { display: none; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .team-layout { grid-template-columns: 1fr 1fr; }
  .team-note { grid-column: 1 / -1; max-width: 700px; margin-top: 1rem; }
  .legal-nav { display: none; }
  .legal-header-inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 760px) {
  :root { --pad: 1.1rem; --radius: 1.35rem; }
  .site-header { inset-block-start: .45rem; height: 4.25rem; }
  .header-inner { width: calc(100% - .8rem); padding-inline: .7rem; gap: .5rem; border-radius: .95rem; }
  .brand img { width: 7.2rem; }
  .brand span { display: none; }
  .header-cta { min-height: 2.7rem; padding: .65rem .7rem; font-size: .68rem; }
  .mobile-nav { top: 5.15rem; }
  .hero { min-height: 700px; align-items: flex-start; }
  .hero::after { display: none; }
  .hero-media { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.38)), linear-gradient(0deg, rgba(0,0,0,.88), transparent 58%); }
  .hero-content { padding-top: 9rem; padding-bottom: 14rem; }
  .hero h1 { font-size: clamp(2.9rem, 10.5vw, 4.25rem); letter-spacing: -.055em; }
  .hero-copy { max-width: 92%; font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-rail { right: .75rem; bottom: .75rem; left: .75rem; }
  .hero-rail div { min-width: 0; padding: .8rem .62rem; flex-direction: column; gap: .1rem; }
  .hero-rail span { font-size: .58rem; }
  .scroll-cue { display: none; }
  .ticker-track { min-height: 4rem; }
  .ticker-group { gap: 1.5rem; padding-right: 1.5rem; }
  .section-intro-split, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-intro-split > p { margin-left: 0; }
  .section-intro h2 { font-size: clamp(2.35rem, 9.5vw, 3.35rem); }
  .contact-top h2 { font-size: clamp(2.7rem, 11vw, 3.5rem); }
  .about-grid { display: flex; flex-direction: column-reverse; }
  .about-visual { width: calc(100% + .6rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: 1; min-height: 24rem; }
  .service-card svg { margin-top: 3rem; }
  .team-layout { display: flex; flex-direction: column; }
  .team-card { width: 100%; min-height: 32rem; }
  .team-note { width: 100%; }
  .pricing-board { grid-template-columns: 1fr; }
  .pricing-panel-head { min-height: auto; }
  .pricing-footer { align-items: stretch; flex-direction: column; }
  .pricing-footer > div { grid-template-columns: 1fr; gap: .25rem; }
  .pricing-footer small, .pricing-footer strong, .pricing-footer span { grid-column: 1; }
  .pricing-footer .button { width: 100%; }
  .voice-shell { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; border-radius: 1.4rem; }
  .voice-slides { min-height: 350px; }
  .carousel-controls { grid-column: 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 145px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 2; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 2; }
  .contact-grid { margin-block: 3rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { width: calc(100% + (var(--pad) * 2)); margin-left: calc(var(--pad) * -1); border-radius: 0; }
  .operator-card { width: calc(100% + (var(--pad) * 2)); margin-left: calc(var(--pad) * -1); grid-template-columns: 1fr; border-right: 0; border-left: 0; border-radius: 0; }
  .operator-grid { grid-template-columns: 1fr; }
  .operator-grid .operator-wide { grid-column: auto; }
  .operator-link { grid-column: 1; }
  .map-wrap { border-radius: 1.4rem 1.4rem 0 0; }
  .map-wrap iframe { min-height: 390px; }
  .map-consent { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero h1 { margin-bottom: 2rem; }
  .legal-hero-meta, .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ol { columns: 2; column-gap: 2rem; }
  .legal-toc li { break-inside: avoid; }
  .legal-identity, .legal-basis-grid, .rights-grid { grid-template-columns: 1fr; }
  .legal-recipients div:last-child { grid-column: auto; }
  .legal-contact-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero h1 { font-size: 2.85rem; }
  .hours-list div { flex-direction: column; gap: .15rem; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-item { min-height: 250px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(7) { min-height: 390px; }
  .legal-header .header-cta { display: inline-flex; }
  .legal-header .brand span { display: none; }
  .legal-hero-meta { gap: 1rem; }
  .legal-toc ol { columns: 1; }
}

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