/* ============================
   B2Solutions – Base
   ============================ */

@font-face {
  font-family: "Blinker";
  src: url("../fonts/Blinker-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("../fonts/Blinker-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("../fonts/Blinker-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070708;
  --panel: #0f0f12;
  --panel-2: #15161a;
  --text: #f5f5f7;
  --muted: #b3b3b8;
  --accent: #e10600;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --container: 1240px;

  --topbar-h: 28px;
  --nav-h-hero: 132px;
  --nav-h: 112px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Blinker", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #070708;
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 12px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

section[id] {
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 18px);
}

/* ============================
   Topbar + Navigation
   ============================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  z-index: 1001;
  background: rgba(8, 8, 10, 0.9);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(0);
  opacity: 1;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.topbar.is-solid {
  background: rgba(8, 8, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.topbar__link {
  opacity: 0.92;
  transition: opacity 140ms ease, color 140ms ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.topbar.is-solid .topbar__link:hover,
.topbar.is-solid .topbar__link:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.9);
  text-underline-offset: 3px;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 860px) {
  .topbar__link--secondary,
  .topbar__sep {
    display: none;
  }
  .topbar__inner {
    justify-content: center;
  }
}

.topbar__sep {
  opacity: 0.35;
}

.topbar__link {
  opacity: 0.92;
  transition: opacity 140ms ease, color 140ms ease;
}

.topbar__link:hover,
.topbar__link:focus-visible {
  opacity: 1;
  color: var(--text);
}

.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  width: 100%;
  height: var(--nav-h-hero);
  display: flex;
  align-items: center;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.nav__container {
  width: 100%;
}

.site-header.is-scrolled .nav {
  height: var(--nav-h);
  background: rgba(8, 8, 10, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.nav__group {
  display: flex;
  flex: 1 1 0;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav__group--left {
  justify-content: flex-start;
}

.nav__group--right {
  justify-content: flex-end;
}

.nav__item {
  position: relative;
}

.nav__item--mobileOnly {
  display: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  transition: color 140ms ease, opacity 140ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--accent);
}

.nav__link.is-active {
  color: var(--text);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 8px;
}

.nav__link--button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__splitLink {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav__iconToggle {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav__iconToggle:hover,
.nav__iconToggle:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.nav__item--dropdown.is-open .nav__iconToggle .nav__chev {
  transform: rotate(-135deg) translateY(-1px);
}

.nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  z-index: 10;
}

.nav__logoImg {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
  transition: height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .nav__logoImg {
  height: 90px;
}

.nav__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: none;
}

.nav__item--dropdown.is-open .dropdown {
  display: block;
}

.dropdown__link {
  display: block;
  padding: 10px 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0.01em;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.dropdown__link:hover,
.dropdown__link:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.nav__burgerLines {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  transition: background 240ms ease;
}

.nav__burgerLines::before,
.nav__burgerLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__burgerLines::before {
  top: -7px;
}

.nav__burgerLines::after {
  top: 7px;
}

/* Burger Animation State */
.site-header.is-open .nav__burgerLines {
  background: transparent !important;
}

.site-header.is-open .nav__burgerLines::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav__burgerLines::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   Hero
   ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05) brightness(0.72);
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--topbar-h) + var(--nav-h-hero));
  padding-bottom: 64px;
  max-width: 860px;
}

.hero__kicker {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  animation: heroIn 520ms ease both;
}

.hero__title {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  animation: heroIn 560ms ease both;
}

.hero__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 60ch;
  animation: heroIn 600ms ease both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroIn 640ms ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: none;
}

.hero .iconBtn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 140ms ease, color 140ms ease, opacity 140ms ease;
}

.hero .iconBtn span {
  font-size: 56px;
  line-height: 1;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.hero .iconBtn:hover,
.hero .iconBtn:focus-visible {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.06);
}

/* ============================
   Sections + Layout
   ============================ */

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--shade {
  background: #0f1013;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__header {
  margin-bottom: 28px;
}

.section__title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.01em;
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 70ch;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.split__left,
.split__right {
  min-width: 0;
}

/* ============================
   Buttons
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 14px;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease, color 140ms ease;
}

.btn--primary {
  background: var(--accent);
  border-color: rgba(225, 6, 0, 0.95);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-1px);
  background: #ff0a00;
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(225, 6, 0, 0.7);
  color: var(--text);
  transform: translateY(-1px);
}

/* ============================
   Cards
   ============================ */

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.card:hover,
.card:focus-visible {
  border-color: rgba(225, 6, 0, 0.6);
  transform: translateY(-2px);
  background: rgba(225, 6, 0, 0.04);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.06) brightness(0.75);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card__media img {
  transform: scale(1.08);
}

.card__body {
  padding: 14px 14px 16px;
}

.card__title {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.card__text {
  margin: 0 0 14px;
  color: var(--muted);
}

.card__cta {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.serviceItem {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 8px 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease, transform 140ms ease;
}

.serviceItem:hover,
.serviceItem:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.serviceItem__img {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
  transition: transform 300ms ease;
}

.serviceItem__icon {
  width: 52px;
  height: 52px;
  filter: invert(15%) sepia(95%) saturate(6932%) hue-rotate(358deg) brightness(95%) contrast(112%);
  margin-bottom: 8px;
  transition: transform 300ms ease;
}

.serviceItem:hover .serviceItem__img,
.serviceItem:focus-visible .serviceItem__img,
.serviceItem:hover .serviceItem__icon,
.serviceItem:focus-visible .serviceItem__icon {
  transform: scale(1.05);
}

.serviceItem__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.serviceItem__text {
  margin: 0;
  color: var(--muted);
}

/* ============================
   Hours
   ============================ */

.hours {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
}

.hours th,
.hours td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hours th {
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hours td {
  text-align: right;
  color: var(--muted);
}

/* ============================
   Accordion (FAQ)
   ============================ */

.accordion {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.25);
}

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion__btn {
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.accordion__btn:hover,
.accordion__btn:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.accordion__btn::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
}

.accordion__btn[aria-expanded="true"]::after {
  content: "–";
}

.accordion__panel {
  padding: 0 16px;
  color: var(--muted);
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 240ms ease, opacity 240ms ease;
}

.accordion__panel p {
  margin: 0;
}

.accordion__item.is-open .accordion__panel {
  opacity: 1;
  padding-bottom: 16px;
}

.accordion a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.6);
  text-underline-offset: 3px;
}

.faqGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.faqItem {
  display: grid;
  gap: 8px;
  flex: 0 1 calc((100% - 36px) / 3);
}

.faqItem__q {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.faqItem__a {
  margin: 0;
  color: var(--muted);
}

.faqItem__a a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   Gallery
   ============================ */

.gallery {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 12px;
  padding: 12px;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

.gallery__item {
  margin: 0;
  flex: 0 0 calc((100% - 24px) / 3);
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.06) brightness(0.78);
}

.galleryMosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 12px;
  grid-auto-flow: dense;
}

.galleryMosaic__item {
  border: 0;
  padding: 0;
  margin: 0;
  background: #0b0b0d;
  cursor: zoom-in;
  overflow: hidden;
}

.galleryMosaic__item.is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.galleryMosaic__item.is-tall {
  grid-row: span 2;
}

.galleryMosaic__item.is-wide {
  grid-column: 1 / -1;
}

.galleryMosaic__item.is-span-2 {
  grid-column: span 2;
}

.galleryMosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.galleryMosaic__item:hover .galleryMosaic__img,
.galleryMosaic__item:focus-visible .galleryMosaic__img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.94);
  display: grid;
  place-items: center;
  padding: 60px 18px 18px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(1200px, 95vw);
  max-height: 84vh;
  width: auto;
  height: auto;
}

.lightbox__close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px 12px;
  cursor: pointer;
}

/* ============================
   Contact
   ============================ */

.contactCards {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contactCard {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 14px;
  display: grid;
  gap: 6px;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.contactCard:hover,
.contactCard:focus-visible {
  border-color: rgba(225, 6, 0, 0.6);
  background: rgba(225, 6, 0, 0.04);
  transform: translateY(-1px);
}

.contactCard__label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contactCard__value {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flash {
  margin-bottom: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.flash--ok {
  border-color: rgba(46, 160, 67, 0.7);
}

.flash--err {
  border-color: rgba(225, 6, 0, 0.7);
}

.form {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field__label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}

.field__input:focus {
  border-color: rgba(225, 6, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
}

.field__input--textarea {
  resize: vertical;
  min-height: 140px;
}

.field__checks {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  user-select: none;
}

.check__input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.check__label {
  line-height: 1.2;
}

.form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form__hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form__hint a {
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.6);
  text-underline-offset: 3px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================
   Reviews
   ============================ */

.review {
  min-width: min(360px, 90vw);
  padding: 6px 0;
  border: 0;
  background: transparent;
}

.review:hover,
.review:focus-within {
  transform: translateY(-1px);
}

.review__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.review__name {
  margin: 6px 0 10px;
  font-weight: 700;
}

.review__stars {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.review__meta {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.reviewsRail {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviewsRail::-webkit-scrollbar {
  height: 0;
}

.reviews {
  position: relative;
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  z-index: 2;
}

.reviews__arrow--prev {
  left: -10px;
}

.reviews__arrow--next {
  right: -10px;
}

.reviews__arrow span {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.reviews__arrow:hover,
.reviews__arrow:focus-visible {
  border-color: rgba(225, 6, 0, 0.65);
}

.reviewsRail {
  scroll-snap-type: x mandatory;
}

.review {
  scroll-snap-align: start;
}

.reviewsMore {
  margin: 18px 0 0;
}

.reviewsMore a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   Page Hero + Price Blocks
   ============================ */

.pageHero {
  padding-top: calc(var(--topbar-h) + var(--nav-h) + 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(225, 6, 0, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.pageHero__title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 0.02em;
}

.pageHero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.pageHero__kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.pageHero__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stack {
  display: grid;
  gap: 12px;
}

.priceCard {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.priceCard:hover,
.priceCard:focus-within {
  border-color: rgba(225, 6, 0, 0.55);
  background: rgba(225, 6, 0, 0.03);
  transform: translateY(-1px);
}

.priceCard__title {
  margin: 0 0 6px;
  font-size: 18px;
}

.priceCard__desc {
  margin: 0 0 10px;
  color: var(--muted);
}

.priceCard__price {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}

.priceTable {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.25);
}

.priceTable__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  align-items: center;
}

.priceTable__row--head {
  border-top: 0;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.priceTable__name {
  font-weight: 700;
  margin-bottom: 4px;
}

.priceTable__desc {
  color: var(--muted);
  font-size: 13px;
}

.note {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 13px;
}

.cta {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.25);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__title {
  margin: 0 0 6px;
  font-size: 22px;
}

.cta__lead {
  margin: 0;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================
   Prose
   ============================ */

.prose h2 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

.prose a {
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.6);
  text-underline-offset: 3px;
}

/* ============================
   Footer
   ============================ */

.site-footer {
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 0.9fr;
  gap: 18px;
}

.footer__title {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__text {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 140ms ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--accent);
}

.footer__muted {
  color: var(--muted);
  font-size: 13px;
}

.footer__bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer__smallLink {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(225, 6, 0, 0.5);
  text-underline-offset: 3px;
}

.footer__designBy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer__designBy:hover,
.footer__designBy:focus-visible {
  color: var(--text);
}

.footer__designLogo {
  height: 24px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.footer__designBanner {
  margin-top: 20px;
  min-height: 64px;
  width: 100%;
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.waFloat {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  outline: none;
}

.waFloat__img {
  width: 64px;
  height: 64px;
  display: block;
}

.waFloat:focus-visible {
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.45);
}

.footer__dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
  margin: 0 10px;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 1040px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faqItem {
    flex-basis: calc((100% - 18px) / 2);
  }
  .galleryMosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .priceTable__row {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 860px) {
  .topbar__right {
    gap: 10px;
  }

  .nav__burger {
    display: inline-flex;
  }

  .nav__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav__logo {
    justify-self: center;
  }

  .nav__logoImg {
    height: 73px;
  }

  .nav__group--right {
    display: none;
  }

  .nav__group--left {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    z-index: 1002;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
    visibility: hidden;
  }

  .site-header.is-open .nav__group--left {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Logo is already absolute-centered globally now */
  .nav__inner {
    display: flex;
    justify-content: space-between;
  }

  .pageHero {
    padding-top: calc(var(--topbar-h) + var(--nav-h) + 120px) !important;
  }

  .priceTable__row--head {
    display: none !important;
  }

  .priceTable {
    margin-bottom: 64px;
    border: 0;
    background: transparent;
  }

  .priceTable__row {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    padding: 20px;
  }

  .nav__burger {
    position: relative;
    z-index: 1004; /* Always above overlay */
  }

  .nav__item {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    display: block;
    padding: 18px 20px;
    font-size: 24px;
    letter-spacing: 0.15em;
    font-weight: 700;
  }

  .nav__splitLink {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
  }

  .nav__iconToggle {
    border: 0;
    background: transparent;
    padding: 10px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 10px 10px;
  }

  .nav__item--dropdown.is-open .dropdown {
    display: block;
  }

  .gallery__item {
    flex-basis: calc((100% - 12px) / 2);
  }
  .galleryMosaic {
    grid-auto-rows: 130px;
  }
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .services,
  .galleryMosaic {
    grid-template-columns: 1fr;
  }
  .faqItem {
    flex-basis: 100%;
  }
  .galleryMosaic {
    grid-auto-rows: 180px;
  }
  .galleryMosaic__item.is-large,
  .galleryMosaic__item.is-tall,
  .galleryMosaic__item.is-wide,
  .galleryMosaic__item.is-span-2 {
    grid-column: auto;
    grid-row: auto;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .gallery__item {
    flex-basis: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .priceTable__head {
    display: none;
  }
  .priceTable__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 20px;
  }
  .priceTable__val {
    text-align: left !important;
    padding-left: 12px;
    border-left: 2px solid var(--accent);
  }
  .priceTable__row > div {
    padding: 6px 0;
  }
  .hero__controls {
    right: 12px;
    bottom: 12px;
  }
  .reviews__arrow--prev {
    left: 6px;
  }
  .reviews__arrow--next {
    right: 6px;
  }
  .nav__logoImg {
    height: 55px;
  }
  .hero__content {
    align-items: center;
    text-align: center;
    padding-top: calc(var(--topbar-h) + 100px);
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .section__header {
    text-align: center;
  }

  .section__lead {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.bookingWrapper {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .bookingWrapper {
    min-height: 100vh !important;
    margin-left: calc(-1 * var(--container-p));
    margin-right: calc(-1 * var(--container-p));
    border-radius: 0 !important;
  }
}
