/* ============================================================
   BLADE & CO — LUXURY BARBERSHOP
   Dark Luxury Theme
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --gold-dark: #a07840;
  --black: #0a0a0a;
  --dark-1: #111111;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --dark-4: #252525;
  --dark-5: #2e2e2e;
  --white: #ffffff;
  --grey-1: #f5f0e8;
  --grey-2: #b0a898;
  --grey-3: #6b6460;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-deco: "Cinzel", serif;
  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.15);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  background: var(--black);
  color: var(--grey-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: none;
}
input,
select,
textarea {
  font-family: var(--font-body);
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-1);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ── Custom Cursor ──────────────────────────────────────── */
#cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    background 0.2s;
}
#cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease-out,
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}
body.cursor-hover #cursor {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--gold-light);
}
body.cursor-hover #cursor-follower {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
}
@media (hover: none) and (pointer: coarse) {
  body, button { cursor: auto; }
  #cursor, #cursor-follower { display: none; }
}

/* ── Preloader ──────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pre-logo {
  width: 80px;
  height: 80px;
}
.pre-logo path {
  animation: drawPath 1.5s ease forwards;
}
.pre-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-4);
  border-radius: 1px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: fillBar 2s ease forwards;
}
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fillBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.gold {
  color: var(--gold);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--grey-2);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 13px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Placeholder images ─────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.gallery-item.no-img {
  background: var(--dark-3);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item.no-img::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E")
    center/contain no-repeat;
  opacity: 0.4;
}

/* ── Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 1000;
  transition:
    background 0.4s,
    padding 0.4s,
    box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.12);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-deco);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 400;
}
.nav-logo em {
  color: var(--gold);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--gold);
  width: 100%;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* ── Dropdown nav ──────────────────────────────────────── */
.nav-item {
  position: relative;
}
.nav-item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}
/* Invisible hover bridge — fills the gap so the mouse moving
   downward doesn't lose the hover state before reaching the menu */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 16px;
  background: transparent;
}
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: var(--radius-lg);
  padding: 6px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s,
    visibility 0.22s,
    transform 0.22s;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.55),
    0 0 0 0.5px rgba(201, 169, 110, 0.08);
  z-index: 200;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: var(--dark-2);
  border-left: 1px solid rgba(201, 169, 110, 0.14);
  border-top: 1px solid rgba(201, 169, 110, 0.14);
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown li {
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: var(--grey-2);
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.2s,
    padding-left 0.2s,
    background 0.2s;
}
.dropdown li a::after {
  display: none !important;
}
.dropdown li a:hover {
  color: var(--gold);
  padding-left: 26px;
  background: rgba(201, 169, 110, 0.05);
}
.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}

/* Mobile sub-items */
.mobile-sub {
  font-size: 0.95rem !important;
  padding-left: 16px !important;
  opacity: 0.7;
}
.mobile-sub:hover {
  opacity: 1;
}
.mobile-divider {
  height: 1px;
  background: rgba(201, 169, 110, 0.1);
  margin: 8px 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid rgba(201, 169, 110, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  gap: 8px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  font-size: 1.2rem;
  font-family: var(--font-title);
  color: var(--grey-2);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--grey-2);
  font-size: 1.5rem;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-close:hover {
  color: var(--gold);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(#33320da1 1%, rgb(0 0 0 / 87%) 50%, #33320da1 100%),
    url(images/hero.jpg) center / cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(201, 169, 110, 0.08) 0%,
    transparent 60%
  );
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1);
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-deco);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--grey-2);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero badges */
.hero-badge {
  position: absolute;
  bottom: 15%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.2);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  z-index: 2;
}
.hero-badge--left {
  left: 5%;
}
.hero-badge--right {
  right: 5%;
}
.hero-badge div {
  display: flex;
  flex-direction: column;
}
.hero-badge strong {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-badge span {
  font-size: 0.75rem;
  color: var(--grey-2);
  letter-spacing: 0.05em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--gold);
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-deco);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── About ───────────────────────────────────────────────── */
.about {
  background: var(--dark-1);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  background-color: #ffa5000a;
}
.about-stat-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}
.about-stat-card strong {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.about-stat-card span {
  font-size: 0.8rem;
  color: var(--grey-2);
  margin-top: 4px;
}

.about-desc {
  color: var(--grey-2);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--grey-1);
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(201, 169, 110, 0.1);
}
.stat-icon {
  margin-bottom: 8px;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--grey-2);
  letter-spacing: 0.05em;
}

/* ── Services ────────────────────────────────────────────── */
.services {
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition:
    transform 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: rgba(201, 169, 110, 0.3);
  background: linear-gradient(
    160deg,
    var(--dark-3) 0%,
    rgba(201, 169, 110, 0.06) 100%
  );
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--grey-2);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}
.service-card__price {
  font-size: 0.9rem;
  color: var(--grey-2);
  margin-top: 20px;
}
.service-card__price strong {
  color: var(--gold);
  font-size: 1.2rem;
  font-family: var(--font-title);
}
.service-card__duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey-3);
  margin-top: 6px;
  margin-bottom: 20px;
}
.service-card__btn {
  display: inline-block;
  text-align: center;
  padding: 10px 24px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  margin-top: auto;
}
.service-card:hover .service-card__btn,
.service-card__btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── Prices ──────────────────────────────────────────────── */
.prices {
  background: var(--dark-1);
}
.price-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-tab {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--grey-2);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.price-tab.active,
.price-tab:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.price-panel {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}
.price-panel.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.price-row:hover {
  background: rgba(201, 169, 110, 0.04);
}
.price-row > span:first-child {
  color: var(--grey-1);
  font-size: 0.95rem;
  white-space: nowrap;
}
.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 169, 110, 0.2);
  margin: 0 12px;
  transform: translateY(-4px);
}
.price-val {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.price-row--highlight {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.price-row--highlight .price-val {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ── Team ────────────────────────────────────────────────── */
.team {
  background: var(--black);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.team-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-3);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-card__photo img {
  transform: scale(1.06);
}
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.35s;
}
.team-card:hover .team-card__overlay {
  opacity: 1;
}
.team-socials {
  display: flex;
  gap: 12px;
}
.team-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.2s;
}
.team-socials a:hover {
  background: var(--gold);
  color: var(--black);
}

.team-card__info {
  padding: 20px;
}
.team-card__info h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.team-card__exp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey-3);
  margin-bottom: 12px;
}
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-card__tags span {
  font-size: 0.7rem;
  padding: 3px 10px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  color: var(--grey-2);
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
  background: var(--dark-1);
}
.gallery-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gf-btn {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--grey-2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  transition: var(--transition);
}
.gf-btn.active,
.gf-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.05);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item.fade-out {
  opacity: 0 !important;
  transform: scale(0.88) !important;
  pointer-events: none;
}

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
  transform: scale(0.94);
  transition: transform 0.35s;
  display: block;
}
.lightbox.open .lightbox__content img {
  transform: scale(1);
}
.lightbox__caption {
  color: var(--grey-2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 9001;
}
.lightbox__close:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--gold);
}
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  z-index: 9001;
}
.lightbox__prev {
  left: 20px;
}
.lightbox__next {
  right: 20px;
}
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .lightbox__prev {
    left: 8px;
  }
  .lightbox__next {
    right: 8px;
  }
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }
}

/* ── Calculator ──────────────────────────────────────────── */
.calc-section {
  background: var(--black);
}
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.calc-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-family: var(--font-deco);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 12px;
}
.calc-group-title:first-child {
  margin-top: 0;
}
.calc-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.calc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.calc-item:hover {
  background: rgba(201, 169, 110, 0.05);
}
.calc-item input {
  display: none;
}
.calc-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}
.calc-check::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}
.calc-item input:checked ~ .calc-check {
  border-color: var(--gold);
}
.calc-item input:checked ~ .calc-check::after {
  opacity: 1;
  transform: scale(1);
}
.calc-name {
  flex: 1;
  color: var(--grey-1);
  font-size: 0.9rem;
}
.calc-item input:checked ~ .calc-check ~ .calc-name {
  color: var(--white);
}
.calc-price {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}

.calc-result__inner {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.calc-result__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.calc-result__inner h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.calc-selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 60px;
}
.calc-selected li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  animation: fadeIn 0.3s ease;
}
.calc-selected li span:last-child {
  color: var(--gold);
  font-weight: 600;
}
.calc-empty {
  color: var(--grey-3);
  font-size: 0.85rem;
  font-style: italic;
  justify-content: center !important;
}
.calc-divider {
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  margin: 20px 0;
}
.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calc-total span {
  color: var(--grey-2);
  font-size: 0.9rem;
}
.calc-total strong {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--gold);
}
.calc-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--grey-3);
  margin-bottom: 20px;
}
.calc-cta {
  width: 100%;
  justify-content: center;
}

/* ── Parallax Banner ─────────────────────────────────────── */
.parallax-banner {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-banner__bg {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(#33320d26 1%, rgb(0 0 0 / 54%) 50%, #33320d29 100%),
    url(images/parallax.jpg) center / cover no-repeat;
  will-change: transform;
}
.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.parallax-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.parallax-banner__content h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  max-width: 620px;
}
.parallax-banner__content p {
  color: var(--grey-2);
  font-size: 1rem;
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews {
  background: var(--dark-1);
}
.reviews-slider {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex: 0 0 auto; /* width set precisely by JS */
  min-width: 240px; /* safety fallback only */
  position: relative;
  transition: border-color 0.35s;
  user-select: none; /* prevent text selection while dragging */
}
.review-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0.4;
}
.review-card p {
  color: var(--grey-2);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--black);
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.review-author span {
  font-size: 0.75rem;
  color: var(--grey-3);
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.reviews-prev,
.reviews-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.reviews-prev:hover,
.reviews-next:hover {
  background: var(--gold);
  color: var(--black);
}
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-5);
  transition:
    background 0.3s,
    transform 0.3s;
}
.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Why Us ──────────────────────────────────────────────── */
.why {
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition:
    transform 0.35s,
    border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.2);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 169, 110, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.why-card:hover .why-card__icon {
  background: rgba(201, 169, 110, 0.12);
}
.why-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.87rem;
  color: var(--grey-2);
  line-height: 1.7;
}

/* ── Booking ─────────────────────────────────────────────── */
.booking {
  background: var(--dark-1);
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking-desc {
  color: var(--grey-2);
  margin-bottom: 32px;
  line-height: 1.8;
}
.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-1);
  font-size: 0.9rem;
}

/* Form */
.booking-form {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group select option {
  background: var(--dark-2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-3);
}
.form-group {
  margin-bottom: 16px;
}
.booking-form > .btn-primary {
  margin-top: 8px;
}

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}
.form-success.show {
  display: flex;
  animation: fadeIn 0.5s ease;
}
.form-success h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--white);
}
.form-success p {
  color: var(--grey-2);
}

/* ── Social Promo ────────────────────────────────────────── */
.social-promo {
  background: var(--dark-2);
  padding: 48px 0;
}
.social-promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.social-promo__icon {
  flex-shrink: 0;
}
.social-promo__text h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}
.social-promo__text p {
  font-size: 0.88rem;
  color: var(--grey-2);
}
.social-promo .btn-outline {
  margin-left: auto;
  white-space: nowrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-tagline {
  color: var(--grey-3);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-2);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-deco);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--grey-3);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--grey-3);
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-credit a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: var(--gold-light);
}

/* ── Back to top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s,
    background 0.2s;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-light);
}


/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  #navbar {
    padding: 16px 24px;
  }
  #navbar.scrolled {
    padding: 12px 24px;
  }

  .hero-badge--left,
  .hero-badge--right {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    aspect-ratio: 16/9;
  }
  .about-stat-card {
    left: 0;
    bottom: -30px;
  }
  .about-visual {
    margin-bottom: 50px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item::after {
    display: none;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item--wide {
    grid-column: span 1;
  }

  .calc-wrap {
    grid-template-columns: 1fr;
  }
  .calc-result__inner {
    position: static;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .social-promo .btn-outline {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
  .hero-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Noise texture overlay ───────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: overlay;
}

/* ── Gold shine animation ────────────────────────────────── */
@keyframes goldShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
.gold {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 50%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s linear infinite;
}
