:root {
  --ink: #0E0E0E;
  --charcoal: #1F1F1F;
  --white: #FFFFFF;
  --warm-gray: #BDBDBD;
  --gold: #FFD700;
  --max: 1200px;
  --radius: 20px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--ink);
  line-height: 1.65;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
}

.section-muted {
  background: var(--charcoal);
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 18px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin: 0 0 18px;
  color: var(--warm-gray);
  font-size: 1.05rem;
}

.section-light p,
.section-light .kicker,
.section-light .subtle {
  color: #4a4a4a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
}

.btn-primary[data-booksy-open] {
  font-size: 1.15rem;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(184, 155, 94, 0.12);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease;
}

.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.35));
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 600;
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  width: min(86vw, 360px);
  background: var(--charcoal);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  transform: translateX(20px);
  transition: transform 0.2s ease;
}

.mobile-drawer.active .mobile-panel {
  transform: translateX(0);
}

.mobile-panel a {
  font-weight: 600;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: #090909;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 14, 14, 0.92), rgba(14, 14, 14, 0.6)),
    url("../img/hero.webp") center/cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-short {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-long {
  color: var(--warm-gray);
}

.hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: var(--white);
  font-weight: 600;
}

.hero .trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

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

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

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.section-light .card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: var(--warm-gray);
}

.section-light .service-card p {
  color: #555;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--gold);
}

.service-tree {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.service-category {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.category-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
}

.toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-toggle[aria-expanded="true"] .toggle-icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(180deg);
}

.service-list {
  padding: 0 22px 22px;
  display: grid;
  gap: 12px;
}

.service-list[hidden] {
  display: none;
}

.service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.service-item p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.service-item .duration {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.carousel-wrap {
  position: relative;
  margin-top: 32px;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 30%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 40px 24px 8px;
  scroll-snap-type: x mandatory;
}

.carousel.reviews {
  grid-auto-columns: minmax(280px, 40%);
  padding-bottom: 16px;
}

.slide {
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide:hover img {
  transform: scale(1.04);
}

.review-slide {
  scroll-snap-align: start;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.review-slide p {
  margin: 0;
  color: var(--white);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
}

.review-meta {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.booksy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 700;
}

.booksy-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.booksy-panel {
  width: min(92vw, 900px);
  max-height: 90vh;
  background: var(--charcoal);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.booksy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booksy-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.booksy-body {
  padding: 12px;
  overflow: auto;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}

.car-btn.prev {
  left: -12px;
}

.car-btn.next {
  right: -12px;
}

.widget {
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.highlight {
  color: var(--gold);
}

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

.list li {
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
}

.section-light .faq summary {
  color: var(--ink);
}

.footer {
  background: #0b0b0b;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer p,
.footer a {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.footer .highlight {
  color: var(--gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 155, 94, 0.12);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.subtle {
  color: var(--warm-gray);
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
}

.review-card p {
  color: var(--white);
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 56vh;
  }

  .carousel {
    grid-auto-columns: minmax(220px, 80%);
    padding-right: 18px;
  }

  .carousel.reviews {
    grid-auto-columns: minmax(240px, 88%);
  }

  .car-btn {
    display: none;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero .trust-row,
  .hero-long {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 520px) {
  .gallery-grid {
    column-count: 1;
  }

  .hero .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1rem;
  }
}
