:root {
  --bg: #0f0f10;
  --panel: #17181b;
  --panel-soft: #23252a;
  --text: #f3f1ea;
  --muted: #d2d0c7;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f0c018;
  --accent-strong: #d6920e;
  --accent-green: #77b21c;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top, rgba(240, 192, 24, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0b0d 0%, #131416 38%, #0b0b0c 100%);
  color: var(--text);
}

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

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

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

ul {
  padding-left: 1.1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(15, 15, 16, 0.72);
  border-bottom: 1px solid var(--line);
}

.compact-header {
  position: sticky;
}

.header-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/hero-bg.jpeg") center 25% / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 90px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.03em;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a,
.footer-nav a {
  color: #fff;
  font-weight: 600;
  position: relative;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  padding: 0.75rem;
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

.menu-toggle__label {
  width: auto;
  height: auto;
  background: none;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: grid;
  gap: 0.75rem;
}

.floating-cta a {
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  color: #fff;
  text-align: center;
}

.floating-cta a:nth-child(1) {
  background: #25d366;
}

.floating-cta a:nth-child(2) {
  background: #f39c12;
}

.floating-cta a:nth-child(3) {
  background: #34a853;
}

.hero,
.section,
.page-hero {
  padding: 4.5rem 0;
}

.section--tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section--dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.page-hero {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background:
    linear-gradient(120deg, rgba(240, 192, 24, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.split-panel--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.split-panel--reverse .media-panel {
  order: 2;
}

.split-panel--reverse .copy-panel {
  order: 1;
}

.media-panel,
.copy-panel,
.callout-panel,
.contact-card,
.contact-form-panel,
.search-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.media-panel {
  overflow: hidden;
  background: #000;
}

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

.media-panel--parallax {
  min-height: 540px;
}

[data-parallax] {
  will-change: transform;
  --parallax-offset: 0px;
  --parallax-scale: 1.08;
  transform: translate3d(0, var(--parallax-offset), 0) scale(var(--parallax-scale));
  transition:
    transform 0.18s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.media-panel:hover [data-parallax],
.service-preview:hover [data-parallax] {
  --parallax-scale: 1.14;
  filter: brightness(1.08) saturate(1.08);
}

.media-panel,
.service-preview {
  position: relative;
}

.media-panel::after,
.service-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.media-panel:hover::after,
.service-preview:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(240, 192, 24, 0.7);
  background: linear-gradient(180deg, rgba(240, 192, 24, 0.08), rgba(255, 255, 255, 0.02));
}

.copy-panel {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(17, 17, 17, 0.95));
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copy-panel--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero h1,
.hero h2,
.page-hero h1,
.section-heading h2,
.callout-panel h2,
.cta-banner h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: #fff;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.3rem);
}

.hero h2,
.section-heading h2,
.callout-panel h2,
.cta-banner h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.hero-copy {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  color: #fff;
}

.hero-meta {
  font-size: 1.35rem;
  color: #f7f4eb;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary,
.button--small {
  background: var(--accent-green);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button--ghost-dark {
  background: #1d1f24;
  color: #fff;
}

.button--small {
  min-height: 46px;
  padding-inline: 1rem;
}

.button--light {
  background: #f5f5f5;
  color: #111;
  border: 0;
}

.hero-secondary {
  position: relative;
  --bg-shift: 0px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72)),
    url("../img/hero-bg.jpeg") center calc(50% + var(--bg-shift)) / cover no-repeat;
}

.hero-secondary__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72));
}

.hero-secondary__content {
  position: relative;
  padding: 4rem 0;
  max-width: 740px;
}

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

.social-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-grid a {
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: #00a4b8;
  color: #fff;
  font-weight: 700;
}

.callout-panel {
  background: linear-gradient(135deg, rgba(240, 192, 24, 0.18), rgba(255, 255, 255, 0.04));
  padding: 2.5rem;
}

.schedule-grid,
.service-preview-grid,
.story-grid {
  display: grid;
  gap: 1.25rem;
}

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

.schedule-card,
.service-preview,
.testimonial,
.story-grid article,
.service-detail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.schedule-card {
  padding: 1.6rem;
}

.schedule-card h3,
.service-preview h3,
.story-grid h3,
.service-detail h2,
.contact-card h2,
.contact-form-panel h2,
.legal-card h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  margin: 0 0 0.8rem;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.testimonial-track {
  position: relative;
  min-height: 270px;
}

.testimonial {
  position: absolute;
  inset: 0;
  padding: 2rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial p {
  font-size: 1.15rem;
  color: #fff;
}

.testimonial span {
  color: var(--accent);
  font-weight: 700;
}

.carousel-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

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

.service-preview img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-preview h3,
.service-preview .button {
  margin: 1rem;
}

.stats-section {
  background: linear-gradient(180deg, rgba(182, 122, 9, 0.82), rgba(122, 78, 9, 0.9));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.stats-grid article {
  padding: 1.4rem;
}

.stats-grid strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: #fff;
}

.stats-grid span {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-banner {
  --bg-shift: 0px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
    url("../img/hero-bg.jpeg") center calc(50% + var(--bg-shift)) / cover no-repeat;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 2rem;
}

.footer-list,
.footer-nav {
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
}

.footer-bottom {
  padding: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
}

.service-stack {
  display: grid;
  gap: 1.4rem;
}

.plans-grid,
.gallery-grid {
  display: grid;
  gap: 1.4rem;
}

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

.plan-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.plan-card {
  padding: 1.6rem;
}

.plan-card__header {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.plan-card__header h2 {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.plan-card__header strong {
  color: var(--accent);
  font-size: 1.4rem;
}

.plan-card--featured {
  background: linear-gradient(180deg, rgba(240, 192, 24, 0.15), rgba(255, 255, 255, 0.035));
  transform: translateY(-8px);
}

.plan-card .button {
  margin-top: 1rem;
}

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

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 1180px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card img {
    aspect-ratio: 5 / 4;
  }
}

.gallery-card:hover [data-parallax] {
  --parallax-scale: 1.13;
  filter: brightness(1.08) saturate(1.1);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.gallery-card:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(240, 192, 24, 0.7);
  background: linear-gradient(180deg, rgba(240, 192, 24, 0.07), rgba(255, 255, 255, 0.01));
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.service-detail img {
  height: 100%;
  object-fit: cover;
}

.service-detail div {
  padding: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
}

.contact-card,
.contact-form-panel,
.search-card,
.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  padding: 2rem;
}

.contact-list,
.contact-form,
.search-form,
.form-note,
.form-status {
  display: grid;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-form label,
.search-form label {
  display: grid;
  gap: 0.45rem;
  color: #fff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.search-form input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
}

.search-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
}

.form-status {
  min-height: 1.2rem;
}

.legal-card {
  max-width: 900px;
}

.search-results {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}

.search-result h3 {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.9rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    width: min(320px, calc(100% - 2rem));
    display: none;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(16, 16, 18, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .split-panel,
  .split-panel--reverse,
  .service-detail,
  .contact-layout,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .split-panel--reverse .media-panel,
  .split-panel--reverse .copy-panel {
    order: initial;
  }

  .schedule-grid,
  .service-preview-grid,
  .story-grid,
  .plans-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    justify-self: center;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-panel--parallax {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 3.5rem 0;
  }

  .copy-panel,
  .callout-panel,
  .contact-card,
  .contact-form-panel,
  .search-card,
  .legal-card {
    padding: 1.4rem;
  }

  .floating-cta {
    position: static;
    padding: 1rem;
  }

  .brand {
    font-size: 2rem;
  }

  .search-form__row {
    grid-template-columns: 1fr;
  }

  .media-panel--parallax {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transition: none;
    transform: none;
  }

  [data-parallax-bg] {
    --bg-shift: 0px;
  }

  .media-panel::after,
  .service-preview::after {
    transition: none;
  }
}
