:root {
  --bg: #000;
  --panel: #050505;
  --panel-2: #0a0a0a;
  --line: rgba(239, 234, 225, 0.12);
  --line-strong: rgba(239, 234, 225, 0.22);
  --text: #efeae1;
  --muted: rgba(239, 234, 225, 0.58);
  --soft: rgba(239, 234, 225, 0.36);
  --faint: rgba(239, 234, 225, 0.18);
  --sand: #d8c9a8;
  --steel: #8296a8;
  --mauve: #9a8ba8;
  --good: #7fa88c;
  --bad: #b4736c;
  --focus: 0 0 0 3px rgba(216, 201, 168, 0.28);
  --display: "Instrument Serif", Georgia, serif;
  --body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 0%, rgba(216, 201, 168, 0.08), transparent 28rem),
    linear-gradient(180deg, #020202 0%, #000 38rem);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 60% 12%, rgba(130, 150, 168, 0.08), transparent 22rem);
  opacity: 0.7;
}

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

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

button {
  border: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  outline: none;
  padding: 0.75rem 0;
}

textarea {
  min-height: 8rem;
  resize: vertical;
  border: 1px solid var(--line-strong);
  padding: 0.9rem 1rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  box-shadow: var(--focus);
  outline: none;
}

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

::selection {
  background: var(--sand);
  color: #000;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 500;
  transform: translateY(-160%);
  background: var(--sand);
  color: #000;
  padding: 0.65rem 0.9rem;
}

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

.boot-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  gap: 0.7rem;
}

.brand-word {
  font-family: var(--display);
  font-size: 2rem;
}

.muted {
  color: var(--muted);
}

.static-crawl {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2rem 1.2rem 5rem;
  line-height: 1.7;
}

.static-crawl section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.static-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  gap: 2rem;
  align-items: end;
  min-height: 34rem;
}

.static-hero picture {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
}

.static-hero img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.static-crawl h1,
.static-crawl h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
}

.static-crawl h1 {
  margin: 0.8rem 0 1.2rem;
  font-size: 4rem;
}

.static-crawl h2 {
  margin: 0 0 1.4rem;
  font-size: 2.5rem;
}

.static-crawl h3 {
  margin-bottom: 0.4rem;
}

.static-crawl article,
.static-crawl li,
.static-crawl p {
  max-width: 62rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(239, 234, 225, 0.09);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(18px);
}

.site,
main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2.75rem;
}

.brand-lockup {
  display: flex;
  flex: none;
  align-items: baseline;
  gap: 0.8rem;
}

.brand-lockup img {
  width: 9.5rem;
  height: auto;
}

.brand-lockup .tagline {
  color: var(--soft);
  font-size: 0.73rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  flex: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.lang-toggle {
  display: inline-flex;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-size: 0.76rem;
}

.lang-toggle strong {
  color: var(--text);
}

.btn,
.icon-btn {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn {
  padding: 0.8rem 1.25rem;
}

.btn:hover,
.icon-btn:hover {
  border-color: var(--text);
}

.btn.primary {
  border-color: var(--text);
  background: var(--text);
  color: #000;
}

.btn.primary:hover {
  border-color: var(--sand);
  background: var(--sand);
}

.btn.sand {
  border-color: var(--sand);
  background: var(--sand);
  color: #000;
}

.btn.ghost {
  color: var(--muted);
}

.btn.danger {
  border-color: rgba(180, 115, 108, 0.55);
  color: #e2a09a;
}

.btn.small {
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
}

.icon-btn {
  width: 2.65rem;
  min-width: 2.65rem;
  padding: 0;
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7.5rem 2.75rem 0;
}

.section.tight {
  padding-top: 5rem;
}

.hero {
  position: relative;
  min-height: 650px;
  height: 78vh;
  max-height: 790px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  animation: hero-zoom 2.6s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.hero picture,
.before-after picture {
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.74) 44%, rgba(0, 0, 0, 0.25) 72%, transparent 90%),
    linear-gradient(to top, #000 3%, rgba(0, 0, 0, 0.75) 25%, transparent 55%);
}

.hero-content {
  position: absolute;
  inset: auto 2.75rem 3.25rem;
  z-index: 2;
}

.hero-content-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-width: 0;
}

.eyebrow {
  color: var(--sand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--text);
}

.hero-title,
.section-title,
.admin-title,
.booking-title {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

.hero-title {
  max-width: 58rem;
  margin: 1.2rem 0 0;
  font-size: 6.3rem;
}

.italic {
  color: var(--sand);
  font-style: italic;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
  min-width: 0;
}

.lead {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  min-width: 0;
}

.lead-mobile {
  display: none;
}

.title-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 10rem;
  padding: 2.8rem 2rem 2.4rem 0;
}

.fact strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.fact > span {
  display: block;
  margin-top: 1.5rem;
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.fact strong span {
  display: inline;
  margin: 0;
  color: var(--sand);
  font-size: inherit;
  text-transform: none;
}

.seo-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.74fr);
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--line);
}

.seo-landing-copy .section-copy {
  max-width: 48rem;
}

.seo-landing-points,
.seo-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.seo-landing-points span,
.seo-landing-links a {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-landing-links {
  grid-column: 1 / -1;
  padding-top: 0.65rem;
}

.seo-landing-links a {
  color: var(--sand);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 5rem;
  align-items: start;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}

.section-title {
  margin: 1.05rem 0 0;
  font-size: 3.25rem;
}

.section-copy {
  max-width: 27rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.rule-line {
  height: 1px;
  margin-top: 2.5rem;
  background: var(--line-strong);
}

.step-list {
  border-bottom: 1px solid var(--line);
}

.step-row {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.step-no,
.large-number {
  color: var(--sand);
  font-family: var(--display);
}

.step-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.step-body {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.step-duration {
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  text-align: right;
}

.service-grid,
.price-grid,
.review-grid,
.ba-facts,
.stat-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
}

.tile,
.price-card,
.review-card,
.ba-fact,
.stat-card,
.admin-panel {
  background: #000;
}

.tile {
  min-height: 13rem;
  padding: 2.1rem 1.85rem;
}

.tile-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.tile-title,
.price-name,
.review-quote,
.panel-title {
  font-family: var(--display);
  font-weight: 400;
}

.tile-title {
  font-size: 1.6rem;
}

.tile-index {
  color: var(--faint);
  font-family: var(--display);
}

.tile-body {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.72;
}

.tile-foot {
  margin-top: 1.5rem;
  color: var(--sand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-intro {
  text-align: center;
}

.pricing-intro .section-copy {
  max-width: none;
}

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

.price-card {
  display: flex;
  min-height: 35rem;
  flex-direction: column;
  padding: 2.5rem 2rem;
}

.price-card.popular {
  background: #080705;
}

.popular-tag {
  min-height: 1.1rem;
  color: var(--sand);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-name {
  margin-top: 1.1rem;
  font-size: 2rem;
}

.price-meta {
  min-height: 1.8rem;
  margin-top: 0.75rem;
  color: var(--soft);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.price-amount {
  margin-top: 1.4rem;
  color: var(--sand);
  font-family: var(--display);
  font-size: 3.75rem;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.8rem 0 2.25rem;
  padding: 0;
  color: rgba(239, 234, 225, 0.7);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  list-style: none;
}

.price-card .btn {
  margin-top: auto;
}

.addons-strip {
  border: 1px solid var(--line);
  border-top: 0;
  padding: 2rem;
}

.addons-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  background: var(--line);
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #000;
  padding: 1.1rem 1.25rem;
}

.addon-price {
  color: var(--sand);
  font-family: var(--display);
  font-size: 1.45rem;
  white-space: nowrap;
}

.before-after {
  position: relative;
  --ba-angle: 11.6deg;
  --ba-skew: clamp(1.8rem, 4vw, 4rem);
  height: 40rem;
  margin-top: 2.75rem;
  overflow: hidden;
  background: #000;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.after-img {
  clip-path: polygon(calc(var(--pos, 50) * 1% + var(--ba-skew)) 0, 100% 0, 100% 100%, calc(var(--pos, 50) * 1% - var(--ba-skew)) 100%);
}

.ba-line {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: calc(var(--pos, 50) * 1%);
  height: 130%;
  width: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(var(--ba-angle));
  transform-origin: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.34), 0 0 24px rgba(0, 0, 0, 0.35);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: calc(var(--pos, 50) * 1%);
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  grid-template-columns: repeat(2, 1px);
  place-content: center;
  gap: 0.32rem;
  transform: translate(-50%, -50%) rotate(var(--ba-angle));
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.32), 0 0.9rem 2rem rgba(0, 0, 0, 0.32);
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  width: 1px;
  height: 1rem;
  background: var(--text);
}

.ba-label {
  position: absolute;
  bottom: 1.3rem;
  z-index: 2;
  padding: 0.55rem 0.8rem;
  background: rgba(0, 0, 0, 0.62);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ba-label.before {
  left: 1.4rem;
}

.ba-label.after {
  right: 1.4rem;
  background: var(--sand);
  color: #000;
}

.ba-label.top {
  top: 1.3rem;
  bottom: auto;
  left: 1.4rem;
}

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

.ba-fact {
  padding: 1.6rem 1.7rem;
}

.ba-fact strong {
  color: var(--sand);
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
}

.ba-fact span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
}

.hours-table {
  border-top: 1px solid var(--line-strong);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
}

.hours-row span:last-child {
  color: var(--sand);
  font-variant-numeric: tabular-nums;
}

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

.review-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
}

.review-quote {
  color: rgba(239, 234, 225, 0.9);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
}

.review-meta {
  margin-top: auto;
  padding-top: 1.7rem;
}

.review-meta span {
  display: block;
  margin-top: 0.35rem;
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.rule-list {
  margin-top: 2rem;
  border-bottom: 1px solid var(--line);
}

.rule-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  background: transparent;
  color: rgba(239, 234, 225, 0.75);
  cursor: pointer;
  padding: 1.45rem 0;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--display);
  font-size: 1.35rem;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.78;
  transition: max-height 200ms ease;
}

.faq-answer.open {
  max-height: 14rem;
  padding-bottom: 1.4rem;
}

.cta-band {
  border: 1px solid var(--line);
  padding: 4.6rem 2rem;
  text-align: center;
}

.cta-band .lead {
  margin: 1.3rem auto 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-label {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2.75rem 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2.7rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.5rem;
}

.footer-title {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer p,
.footer li {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: rgba(239, 234, 225, 0.28);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.floating-switch {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 130;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0.95rem;
}

.floating-switch button {
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-switch button.active {
  color: var(--sand);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 1.8rem;
}

.booking-modal {
  display: grid;
  grid-template-columns: minmax(15rem, 19rem) minmax(0, 1fr);
  width: min(66rem, 100%);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
}

.booking-side {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 1.9rem;
  overflow-y: auto;
}

.booking-steps {
  display: grid;
  margin-top: 2rem;
}

.booking-step {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.9rem;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  padding: 0.85rem 0;
}

.booking-step strong {
  color: var(--soft);
  font-family: var(--display);
  font-weight: 400;
}

.booking-step.active strong,
.booking-step.done strong {
  color: var(--sand);
}

.booking-step p {
  margin: 0.25rem 0 0;
  color: var(--soft);
  font-size: 0.75rem;
}

.booking-total {
  margin-top: auto;
  padding-top: 2rem;
}

.booking-total strong {
  color: var(--sand);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
}

.booking-main {
  display: flex;
  min-width: 0;
  max-height: 92vh;
  flex-direction: column;
}

.booking-head,
.booking-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 1.8rem;
}

.booking-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.booking-title {
  margin: 0.35rem 0 0;
  font-size: 1.8rem;
}

.booking-body {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 1.8rem;
}

.choice-grid,
.choice-list,
.day-grid,
.slot-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.choice-list {
  grid-template-columns: 1fr;
}

.day-grid {
  grid-template-columns: repeat(auto-fit, minmax(4.9rem, 1fr));
}

.slot-grid {
  grid-template-columns: repeat(auto-fit, minmax(6.4rem, 1fr));
}

.choice {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #000;
  cursor: pointer;
  padding: 1.35rem;
  text-align: left;
}

.choice.vertical {
  display: block;
  min-height: 5.6rem;
  text-align: center;
}

.choice.selected {
  background: #0c0a07;
}

.choice.disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.choice h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.choice.selected h3,
.choice.selected .price-small {
  color: var(--sand);
}

.choice p {
  margin: 0.45rem 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.price-small {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.35rem;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.summary-list {
  max-width: 28rem;
  margin: 2rem auto 0;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  padding: 0.9rem 0;
}

.summary-row span:first-child {
  color: var(--soft);
  font-size: 0.82rem;
}

.summary-row span:last-child {
  text-align: right;
}

.admin-shell {
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr);
  min-height: 100vh;
  background: #000;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #000;
}

.admin-brand {
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 1.45rem;
}

.admin-nav {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0.75rem;
}

.admin-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0.72rem 0.8rem;
  text-align: left;
}

.admin-nav button.active {
  background: rgba(239, 234, 225, 0.06);
  color: var(--text);
}

.badge {
  color: var(--sand);
  font-family: var(--display);
}

.admin-capacity {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 1.25rem 1.45rem 1.5rem;
}

.progress {
  height: 1px;
  overflow: hidden;
  background: var(--faint);
}

.progress span {
  display: block;
  height: 100%;
  background: var(--sand);
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  padding: 1.45rem 2rem;
}

.admin-title {
  margin: 0;
  font-size: 1.9rem;
}

.admin-sub {
  margin: 0.4rem 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.admin-search {
  width: min(18rem, 34vw);
  margin-left: auto;
}

.admin-content {
  padding: 1.8rem 2rem 6rem;
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.stat-card {
  padding: 1.5rem;
}

.stat-card span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: 2.45rem;
  font-weight: 400;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--line);
}

.admin-panel {
  min-width: 0;
  padding: 1.6rem 1.75rem;
}

.panel-title {
  margin: 0;
  font-size: 1.4rem;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 11rem;
  margin-top: 1.6rem;
}

.bar {
  display: flex;
  flex: 1;
  min-width: 0;
  height: 100%;
  align-items: flex-end;
}

.bar span {
  display: block;
  width: 100%;
  min-height: 3%;
  background: rgba(239, 234, 225, 0.18);
}

.bar:last-child span {
  background: var(--sand);
}

.list-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  padding: 0.95rem 0;
}

.list-row.compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.list-row p {
  margin: 0.25rem 0 0;
  color: var(--soft);
  font-size: 0.78rem;
}

.status {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status.nieuw,
.status.open {
  color: var(--sand);
}

.status.bevestigd,
.status.answered,
.status.afgerond {
  color: var(--good);
}

.status.afgewezen,
.status.closed {
  color: var(--bad);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.data-table {
  min-width: 58rem;
}

.data-row,
.data-head {
  display: grid;
  grid-template-columns: var(--cols);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  padding: 0.95rem 1.25rem;
}

.data-head {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.data-row {
  color: rgba(239, 234, 225, 0.68);
  font-size: 0.86rem;
}

.data-row:hover {
  background: #070707;
}

.row-title {
  color: var(--text);
  font-weight: 600;
}

.row-sub {
  margin-top: 0.2rem;
  color: var(--soft);
  font-size: 0.75rem;
}

.action-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.3rem;
}

.tabs button {
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tabs button.active {
  border-color: var(--sand);
  color: var(--text);
}

.agenda-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.agenda-title {
  min-width: 12rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.35rem;
}

.agenda-board {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.agenda-grid {
  display: grid;
  min-width: 56rem;
  grid-template-columns: 3.8rem repeat(6, minmax(8rem, 1fr));
}

.agenda-head,
.time-cell,
.day-column {
  border-right: 1px solid rgba(239, 234, 225, 0.08);
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
}

.agenda-head {
  min-height: 6.1rem;
  padding: 0.9rem;
}

.agenda-head .num {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 1.65rem;
}

.time-cell,
.hour-line {
  height: 2.85rem;
}

.time-cell {
  color: var(--soft);
  font-size: 0.72rem;
  padding: 0.35rem 0.45rem 0 0;
  text-align: right;
}

.day-column {
  position: relative;
  min-height: 34.2rem;
}

.hour-line {
  border-bottom: 1px solid rgba(239, 234, 225, 0.06);
}

.blocked-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-image: repeating-linear-gradient(45deg, rgba(239, 234, 225, 0.05) 0 6px, transparent 6px 12px);
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.appt {
  position: absolute;
  right: 0.32rem;
  left: 0.32rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--pkg-color, var(--sand));
  background: #000;
  cursor: pointer;
  padding: 0.55rem 0.6rem;
}

.appt:hover {
  background: #0a0a0a;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  width: min(25rem, 100vw);
  overflow-y: auto;
  border-left: 1px solid var(--line-strong);
  background: #000;
  padding: 1.8rem;
}

.service-editor {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 5.4rem 5.6rem 4.4rem 3rem;
  gap: 0.75rem;
  align-items: center;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  padding: 0.85rem 0;
}

.service-editor.head {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
}

.mode-options {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.mode-option {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr) auto;
  gap: 1rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.mode-option.active {
  border-color: var(--sand);
  background: rgba(216, 201, 168, 0.05);
}

.dot {
  width: 0.92rem;
  height: 0.92rem;
  margin-top: 0.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.mode-option.active .dot {
  border-color: var(--sand);
  background: var(--sand);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
}

.media-set {
  min-width: 0;
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.media-img {
  position: relative;
  height: 10rem;
  overflow: hidden;
  background: #0a0a0a;
}

.media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-panel {
  display: grid;
  min-height: 16rem;
  gap: 0.9rem;
  align-content: center;
  border: 1px solid var(--line-strong);
  padding: 1.5rem;
}

.inbox-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 21rem) minmax(0, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.message-list,
.message-detail {
  background: #000;
}

.message-item {
  width: 100%;
  border-bottom: 1px solid rgba(239, 234, 225, 0.08);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 1rem 1.15rem;
  text-align: left;
}

.message-item.active {
  background: rgba(239, 234, 225, 0.05);
  color: var(--text);
}

.message-detail {
  padding: 1.8rem;
}

.message-body {
  white-space: pre-line;
  color: rgba(239, 234, 225, 0.68);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
}

.login-view {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  background: #000;
}

.login-panel {
  width: min(28rem, 100%);
  border: 1px solid var(--line-strong);
  padding: 2rem;
}

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 300;
  max-width: min(24rem, calc(100vw - 3rem));
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.92);
  color: var(--text);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
}

.empty {
  border: 1px solid var(--line);
  padding: 2rem;
  color: var(--soft);
  text-align: center;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .static-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .nav-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-top: 0.25rem;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  .hero-row,
  .section-head,
  .contact-panel,
  .split {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .price-grid,
  .review-grid,
  .ba-facts {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }

  .admin-capacity {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    background: #000;
  }

  .static-crawl {
    padding-top: 1.2rem;
  }

  .static-crawl h1 {
    font-size: 2.7rem;
  }

  .static-crawl h2 {
    font-size: 2rem;
  }

  .site-nav.menu-open {
    border-bottom-color: var(--line-strong);
    background: rgba(0, 0, 0, 0.96);
  }

  .nav-inner {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 3.45rem;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
  }

  .nav-inner,
  .section,
  .footer {
    padding-right: 1.05rem;
    padding-left: 1.05rem;
  }

  .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }

  .brand-lockup img {
    width: 8.25rem;
  }

  .brand-lockup .tagline {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    flex: none;
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-left: auto;
  }

  .nav-book-button {
    display: none;
  }

  .nav-actions .btn {
    min-height: 2.65rem;
    min-width: 0;
    padding: 0.7rem 0.9rem;
    font-size: 0.72rem;
  }

  .lang-toggle {
    min-height: 2.35rem;
    align-items: center;
    border: 1px solid var(--line-strong);
    padding: 0.52rem 0.68rem;
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: inline-grid;
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    gap: 0.22rem;
    border: 1px solid var(--line-strong);
    background: transparent;
    cursor: pointer;
    padding: 0.58rem;
  }

  .menu-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--text);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: rgba(0, 0, 0, 0.96);
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 180ms ease, border-color 180ms ease;
    visibility: hidden;
  }

  .mobile-menu.open {
    max-height: 27rem;
    border-top-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 1px;
    padding: 0.65rem 1.05rem 1rem;
    background: var(--line);
  }

  .mobile-menu a,
  .mobile-menu .btn {
    display: flex;
    min-height: 3.05rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    border: 0;
    background: #050505;
    padding: 0.78rem 0.95rem;
    text-align: left;
  }

  .mobile-menu a span {
    min-width: 0;
    color: var(--text);
    font-size: 0.83rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-menu small {
    flex: none;
    color: var(--soft);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-menu .btn {
    justify-content: center;
    margin-top: 0.65rem;
    background: var(--text);
  }

  .hero {
    min-height: 29.5rem;
    height: calc(68svh - 3.45rem);
    max-height: 34rem;
  }

  .hero img {
    object-position: 62% 48%;
    animation: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.9) 83%, #000 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.1) 100%);
  }

  .hero-content {
    inset: auto auto 1.05rem 1rem;
    width: min(18.2rem, calc(100vw - 2rem));
    max-width: none;
    overflow: visible;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
  }

  .hero-title {
    max-width: 18.2rem;
    margin-top: 0.75rem;
    font-size: 2.38rem;
    line-height: 0.98;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: block;
    color: var(--text);
    font-family: var(--body);
    font-size: 2.05rem;
    font-weight: 800;
    line-height: 1.05;
  }

  .title-mobile span {
    color: var(--sand);
  }

  .hero-row,
  .lead,
  .section-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .lead {
    max-width: 18rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .lead-desktop {
    display: none;
  }

  .lead-mobile {
    display: block;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 6.6rem;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    min-height: 2.85rem;
    padding: 0.75rem 0.65rem;
    font-size: 0.7rem;
  }

  .facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .facts {
    gap: 0.65rem;
    border: 0;
    background: transparent;
  }

  .fact {
    min-height: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.86);
    padding: 1rem;
  }

  .fact strong {
    font-size: 1.55rem;
  }

  .fact > span {
    margin-top: 0.55rem;
    font-size: 0.68rem;
  }

  .section {
    padding-top: 2.85rem;
  }

  .section.tight {
    padding-top: 1.65rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.04;
  }

  .seo-landing {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    border-top: 0;
  }

  .seo-landing-points,
  .seo-landing-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
  }

  .seo-landing-points span,
  .seo-landing-links a {
    background: rgba(5, 5, 5, 0.88);
    padding: 0.8rem 0.9rem;
  }

  .seo-landing-links {
    padding-top: 0;
  }

  .section-copy {
    margin-top: 0.85rem;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .split,
  .section-head,
  .contact-panel {
    gap: 1.2rem;
  }

  .service-grid,
  .price-grid,
  .review-grid,
  .ba-facts {
    gap: 0.7rem;
    border: 0;
    background: transparent;
    margin-top: 1.45rem;
  }

  .tile {
    min-height: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 1.25rem 1rem;
  }

  .tile-title {
    font-size: 1.3rem;
  }

  .tile-body {
    margin-top: 0.55rem;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .tile-foot {
    margin-top: 0.95rem;
  }

  .price-card {
    min-height: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 1.35rem 1rem;
  }

  .price-card.popular {
    border-color: rgba(216, 201, 168, 0.34);
  }

  .price-name {
    margin-top: 0.65rem;
    font-size: 1.55rem;
  }

  .price-meta {
    min-height: 0;
    margin-top: 0.45rem;
    font-size: 0.68rem;
  }

  .price-amount {
    margin-top: 0.85rem;
    font-size: 2.55rem;
  }

  .feature-list {
    gap: 0.45rem;
    margin: 1rem 0 1.2rem;
    font-size: 0.84rem;
  }

  .addons-strip {
    margin-top: 0.7rem;
    border: 1px solid var(--line);
    padding: 1rem;
  }

  .addons-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .addons-list {
    gap: 0.65rem;
    background: transparent;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .addon-item {
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 0.85rem 0.95rem;
  }

  .addon-price {
    font-size: 1.2rem;
  }

  .step-row {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.05rem 0;
  }

  .step-duration {
    grid-column: 2;
    text-align: left;
  }

  .before-after {
    height: 18rem;
    border: 1px solid var(--line);
    margin-top: 1.35rem;
  }

  .ba-label {
    padding: 0.42rem 0.58rem;
    font-size: 0.62rem;
  }

  .ba-label.before,
  .ba-label.top {
    left: 0.75rem;
  }

  .ba-label.after {
    right: 0.75rem;
  }

  .ba-fact {
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 1rem;
  }

  .ba-fact strong {
    font-size: 1.45rem;
  }

  .ba-fact span {
    font-size: 0.82rem;
  }

  .review-card {
    min-height: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.88);
    padding: 1.2rem 1rem;
  }

  .review-quote {
    font-size: 1.05rem;
  }

  .rule-list {
    margin-top: 1.2rem;
  }

  .rule-item {
    gap: 1rem;
    padding: 1rem 0;
  }

  .faq-question {
    gap: 1rem;
    padding: 1rem 0;
  }

  .faq-question span:first-child {
    font-size: 1.08rem;
  }

  .faq-answer {
    font-size: 0.85rem;
    line-height: 1.58;
  }

  .cta-band {
    padding: 2.2rem 1rem;
  }

  .contact-panel {
    padding-top: 1.65rem;
  }

  .booking-modal {
    grid-template-columns: 1fr;
  }

  .booking-side {
    display: none;
  }

  .booking-head,
  .booking-foot,
  .booking-body {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .form-grid,
  .inbox-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-search {
    width: 100%;
    margin-left: 0;
  }

  .admin-content {
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .service-editor,
  .service-editor.head {
    grid-template-columns: minmax(0, 1fr) 4.7rem 4.7rem;
  }

  .service-editor > :nth-child(4),
  .service-editor > :nth-child(5),
  .service-editor.head > :nth-child(4),
  .service-editor.head > :nth-child(5) {
    display: none;
  }

  .floating-switch {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .hero-title {
    max-width: 17rem;
    font-size: 2.05rem;
  }

  .lead {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .brand-lockup img {
    width: 7.65rem;
  }

  .nav-actions {
    gap: 0.45rem;
  }

  .lang-toggle {
    padding-right: 0.58rem;
    padding-left: 0.58rem;
  }

  .menu-toggle {
    width: 2.28rem;
    min-width: 2.28rem;
    height: 2.28rem;
  }

  .nav-actions .btn {
    padding-right: 0.72rem;
    padding-left: 0.72rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}
