﻿/* ============================================
   IMBEWU SPA — Dark luxury palette & typography
   ============================================ */

:root {
  /* Surfaces */
  --bg: #50290f;
  --bg-alt: #3f210c;
  --bg-card: #643820;
  --bg-elevated: #734528;

  /* Brand accents */
  --brown: #f5f0e6;
  --ochre: #d28b48;
  --gold: #d9a05b;
  --orange: #d6904e;
  --sage: #d28b48;
  --cream: #1a120b;
  --cream-deep: #241b12;
  --cream-soft: #120d0a;

  /* Semantic aliases */
  --forest: #120d0a;
  --forest-deep: #0e0907;
  --forest-mid: #1a120b;
  --forest-soft: #241b12;
  --copper: #d28b48;
  --copper-bright: #e09a55;
  --copper-deep: #c47a3a;
  --ink: #f5f0e6;
  --muted: #b5a494;
  --white: #fdf8ee;
  --black: #0e0907;
  --line: rgba(217, 160, 91, 0.22);
  --line-soft: rgba(245, 240, 230, 0.08);
  --accent-gradient: linear-gradient(135deg, #e0a85a 0%, #d6904e 55%, #c47a3a 100%);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-script: "Playfair Display", Georgia, serif;

  --header-h: 92px;
  --radius-pill: 999px;
  --radius-card: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(1200px, calc(100% - 3rem));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-title .script {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  line-height: 1;
}

.lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 36rem;
  font-weight: 400;
}

.lead.centered {
  margin-inline: auto;
}

.hero-tagline {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
}

.contact-page-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.75rem 0 1.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

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

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-copper {
  background: var(--accent-gradient);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(214, 144, 78, 0.28);
}

.btn-copper:hover {
  background: linear-gradient(135deg, #e8b86a 0%, #e09a55 55%, #d6904e 100%);
  border-color: transparent;
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(253, 248, 238, 0.45);
}

.btn-ghost:hover {
  background: rgba(253, 248, 238, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(217, 160, 91, 0.45);
}

.btn-ghost-light:hover {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--bg-elevated);
  color: var(--white);
  border-color: var(--line);
}

.btn-dark:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--black);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    height 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.is-scrolled {
  background: rgba(46, 34, 26, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(217, 160, 91, 0.12);
  height: 76px;
}

.site-header.is-scrolled .nav-list a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-scrolled .nav-list a:hover,
.site-header.is-scrolled .nav-list a.is-active {
  color: var(--gold);
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(255, 255, 255, 0.25);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--white);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.logo-image {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-header.is-scrolled .logo-image {
  height: 50px;
}

.footer-brand .logo-image {
  height: 64px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.logo-text span {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.nav-list a {
  padding: 0.45rem 0.65rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--gold);
}

.nav-list a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav-cta-item {
  display: none;
}

.nav-cta {
  min-width: 200px;
}

.header-cta {
  z-index: 2;
  padding: 0.75rem 1.45rem;
  background: transparent;
  color: var(--white);
  border-color: rgba(253, 248, 238, 0.5);
  box-shadow: none;
}

.header-cta:hover {
  background: rgba(253, 248, 238, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 5rem;
  text-align: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(42, 30, 22, 0.45) 0%,
      rgba(58, 42, 32, 0.30) 45%,
      rgba(74, 56, 45, 0.55) 100%
    ),
    linear-gradient(
      to top,
      rgba(86, 66, 53, 0.60) 0%,
      rgba(86, 66, 53, 0.18) 50%,
      transparent 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 5rem;
  width: 80%;
  max-width: 80%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .eyebrow {
  margin-bottom: 1.35rem;
  color: var(--gold);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 0.15rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.3s forwards;
}

.hero-title .script {
  display: block;
  font-family: var(--font-script);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(3rem, 6.5vw, 5rem);
  text-transform: none;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 0.95;
  margin-top: 0.2rem;
  margin-bottom: 0.35rem;
}

.hero-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 2.15rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.6s forwards;
}

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

.hero-rail {
  position: absolute;
  left: 50%;
  bottom: 5.5rem;
  top: auto;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.hero-rail button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 0.35rem 0;
  text-align: center;
  transition: color 0.3s;
  position: relative;
}

.hero-rail button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.hero-rail button.is-active {
  color: var(--gold);
}

.hero-rail button.is-active::before {
  width: 100%;
}

.hero-rail button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 4, 0.489),
    rgba(10, 6, 4, 0.317)
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

/* ---------- Features (floating bar) ---------- */
.features-wrap {
  position: relative;
  z-index: 5;
  margin-top: -4.5rem;
  padding: 0 0 1rem;
}

.features {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 160, 91, 0.12), transparent 55%),
    linear-gradient(180deg, #2a1f16 0%, var(--bg-card) 55%, #1c140e 100%);
  border-radius: var(--radius-card);
  padding: 2.75rem 1.75rem 2.5rem;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(217, 160, 91, 0.18),
    inset 0 1px 0 rgba(253, 248, 238, 0.06);
  border: 1px solid rgba(217, 160, 91, 0.28);
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 160, 91, 0.1);
  border-radius: calc(var(--radius-card) - 6px);
  pointer-events: none;
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  position: relative;
  text-align: center;
  padding: 1rem 1.35rem;
  transition: transform 0.4s var(--ease);
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(217, 160, 91, 0.35),
    transparent
  );
}

.feature:hover {
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(217, 160, 91, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background:
    radial-gradient(circle at 35% 30%, rgba(217, 160, 91, 0.22), transparent 55%),
    rgba(217, 160, 91, 0.06);
  box-shadow:
    0 0 0 6px rgba(217, 160, 91, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.25);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}

.feature:hover .feature-icon-wrap {
  border-color: var(--gold);
  box-shadow:
    0 0 0 8px rgba(217, 160, 91, 0.1),
    0 14px 32px rgba(217, 160, 91, 0.18);
  transform: scale(1.05);
}

.feature-icon {
  width: 30px;
  height: 30px;
}

.feature h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.feature p {
  font-size: 0.88rem;
  color: rgba(234, 220, 198, 0.72);
  line-height: 1.6;
  max-width: 16rem;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .feature:nth-child(2)::after {
    display: none;
  }

  .feature:not(:last-child)::after {
    top: auto;
    right: 15%;
    left: 15%;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(217, 160, 91, 0.3),
      transparent
    );
  }
}

/* ---------- About preview ---------- */
.about-preview {
  position: relative;
  padding: 6.5rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(420px, 40vw);
  height: min(420px, 40vw);
  border: 1px solid rgba(217, 160, 91, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.about-preview::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: 5%;
  width: min(380px, 38vw);
  height: min(480px, 55vw);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260' fill='none'%3E%3Cpath d='M120 20c-10 40-50 70-70 120 30 10 70 5 90-20-5 45-35 80-70 100 55 5 100-40 110-95-15 20-40 30-60 28 35-35 40-85 0-133z' fill='%23d28b48' opacity='0.12'/%3E%3C/svg%3E")
    right bottom / contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 0.65rem;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  background: rgba(10, 6, 4, 0.4);
  pointer-events: none;
  z-index: 1;
}

.client-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(18, 13, 10, 0.92);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  max-width: 190px;
  z-index: 2;
}

.client-badge .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.client-badge strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy .eyebrow {
  margin-bottom: 1rem;
}

.about-copy .section-title {
  margin-bottom: 1.35rem;
}

.about-copy .lead {
  margin-bottom: 2rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ochre);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-item p {
  padding: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.faq-item a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-item a:hover {
  color: var(--orange);
}

/* ---------- Gift note ---------- */
.gift-note {
  position: relative;
  padding: 5.5rem 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.gift-note-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 2rem 1rem;
}

.gift-note-inner::before {
  content: "gift";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.gift-note-inner > * {
  position: relative;
  z-index: 1;
}

.gift-note .eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}

.gift-note-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.gift-note-title em {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.15em;
}

.gift-note-text {
  color: rgba(234, 220, 198, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 30rem;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--bg-alt);
  color: var(--white);
  padding: 2.35rem 0;
  border-block: 1px solid var(--line);
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.5rem 1.35rem;
  border-right: 1px solid var(--line-soft);
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.stat strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* ---------- Sections shared ---------- */
.section {
  padding: 6rem 0;
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
}

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

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

.section-light .lead,
.section-light .eyebrow {
  color: inherit;
}

.section-light .eyebrow {
  color: var(--gold);
}

.section-light .service-body h3 {
  color: var(--white);
}

.section-light .service-body p {
  color: var(--muted);
}

.section-head {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 0.85rem;
}

.section-head .section-title {
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.why-card {
  padding: 1.85rem 1.6rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(217, 160, 91, 0.2);
}

.why-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gold);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.why-footer {
  margin-top: 3rem;
  text-align: center;
}

.why-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: rgba(253, 248, 238, 0.78);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.why-actions .btn-ghost {
  color: var(--gold);
  border-color: rgba(217, 160, 91, 0.55);
}

.why-actions .btn-ghost:hover {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

#why-imbewu .section-head.center .section-title {
  max-width: 22ch;
  margin-inline: auto;
}

/* ---------- Service menus ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.menu-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  aspect-ratio: 16 / 9;
  background: rgba(10, 6, 4, 0.4);
  pointer-events: none;
  z-index: 1;
}

.menu-card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.6rem 2rem;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.menu-card-body h3 {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.65rem;
}

.menu-card-body > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.menu-list {
  display: grid;
  gap: 0.45rem;
}

.menu-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 0.95rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.perfect-for {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.perfect-for span {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(217, 160, 91, 0.4);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Price list ---------- */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 3.5rem;
}

.showcase-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 9, 7, 0.92) 0%, rgba(10, 6, 4, 0.35) 55%, rgba(10, 6, 4, 0.28) 100%);
}

.showcase-card span {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.2rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.showcase-card small {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.price-category {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.price-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.price-category-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.price-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.price-category:hover .price-category-media img {
  transform: scale(1.05);
}

.price-category-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.42);
}

.price-category-header {
  padding: 1.35rem 1.5rem 0.85rem;
  background: var(--bg-card);
  color: var(--white);
}

.price-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.price-category-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-category-body {
  flex: 1;
  padding: 0.5rem 1.5rem 1rem;
}

.price-category-footer {
  margin-top: auto;
  padding: 0.75rem 1.5rem 1.5rem;
}

.price-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  margin: 3.5rem 0 0;
}

.price-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 6, 4, 0.82) 0%, rgba(10, 6, 4, 0.55) 100%);
  z-index: 1;
}

.price-banner-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  max-width: 480px;
  color: var(--white);
}

.price-banner-content .eyebrow {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.price-banner-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.85rem;
}

.price-banner-content p {
  color: rgba(234, 220, 198, 0.85);
  margin-bottom: 1.5rem;
}

.packages-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.packages-visual-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}

.packages-visual-main::after,
.packages-visual-side figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.4);
  pointer-events: none;
  z-index: 1;
}

.packages-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-visual-side {
  display: grid;
  gap: 1.25rem;
}

.packages-visual-side figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}

.packages-visual-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-copy-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.price-duration {
  margin-bottom: 1.35rem;
}

.price-duration:last-child {
  margin-bottom: 0;
}

.price-duration-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 2px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-duration-label span:last-child {
  color: var(--orange);
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span:first-child {
  color: var(--ink);
}

.price-row span:last-child {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.price-addon {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-addon strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.price-addon span {
  font-weight: 700;
  color: var(--gold);
}

.price-list-image {
  margin-top: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.price-list-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.38);
  pointer-events: none;
  z-index: 1;
}

.price-list-image img {
  width: 100%;
}

.price-list-image figcaption {
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-google {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-google svg {
  width: 18px;
  height: 18px;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line-soft);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre), var(--gold));
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonials-cta {
  margin-top: 2rem;
  text-align: center;
}

.testimonials-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.testimonials-summary .testimonial-stars {
  font-size: 1rem;
}

.testimonials-summary strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  aspect-ratio: 4 / 3;
  background: rgba(10, 6, 4, 0.4);
  pointer-events: none;
  z-index: 1;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-body {
  padding: 1.65rem 1.5rem 1.85rem;
  position: relative;
  z-index: 2;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Ghost buttons on dark sections */
.section .btn-ghost,
.section-alt .btn-ghost,
.about-preview .btn-ghost {
  color: var(--gold);
  border-color: rgba(217, 160, 91, 0.5);
}

.section .btn-ghost:hover,
.section-alt .btn-ghost:hover,
.about-preview .btn-ghost:hover {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.65rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  text-align: left;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.package:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.package.is-featured {
  background: var(--bg-elevated);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(217, 160, 91, 0.35), 0 18px 50px rgba(217, 160, 91, 0.12);
  color: var(--white);
  margin-top: 0.65rem;
}

.package.is-featured h3,
.package.is-featured .package-price {
  color: var(--gold);
}

.package.is-featured p,
.package.is-featured li {
  color: rgba(234, 220, 198, 0.85);
}

.package-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.package-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package h3 {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
  color: var(--gold);
  line-height: 1.2;
}

.package-duration {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.package-price {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--gold);
  margin-bottom: 1.15rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.package-price span {
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--muted);
}

.package > p:not(.package-duration):not(.package-price) {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.package ul {
  text-align: left;
  margin-bottom: 1.75rem;
  flex: 1;
}

.package li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: none;
  line-height: 1.45;
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 5px;
  height: 5px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
}

.package .btn {
  width: 100%;
  margin-top: auto;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 0.85rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  border-radius: 16px;
  min-width: 0;
}

.gallery-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 6;
}

.gallery-item:nth-child(5) {
  grid-column: span 8;
}

.gallery-item:nth-child(6) {
  grid-column: span 4;
}

.gallery-item:nth-child(7) {
  grid-column: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.gallery-item:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(14, 9, 7, 0.9));
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA ---------- */
.cta-banner {
  position: relative;
  padding: 6.5rem 0;
  color: var(--white);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 23, 14, 0.438);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner .eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cta-banner p {
  max-width: 480px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- About page ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.story-block.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.story-block.reverse .story-copy {
  order: -1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: var(--bg-card);
  border-radius: 0;
}

.value h3 {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin: 0.75rem 0;
  color: var(--white);
}

.value p {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.team-card {
  position: relative;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border-radius: 16px;
}

.team-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: rgba(10, 6, 4, 0.4);
  pointer-events: none;
  z-index: 1;
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
  color: var(--white);
}

.team-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Booking ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.75rem;
}

.contact-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
  color: var(--white);
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-map {
  max-width: 960px;
  margin: 0 auto;
}

.contact-map-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.contact-map-header p:last-child {
  color: var(--muted);
  margin-top: 0.75rem;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--line-soft);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.map-actions .btn-ghost {
  color: var(--gold);
  border-color: rgba(217, 160, 91, 0.5);
}

.map-actions .btn-ghost:hover {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.booking-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.booking-form h2 {
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.booking-form > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--bg-elevated);
}

.form-group option {
  color: var(--white);
  background: var(--bg-card);
}

.service-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: -0.15rem 0 0.75rem;
}

.service-modal-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-modal-trigger:hover,
.service-modal-trigger:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 160, 91, 0.15);
  outline: none;
}

.service-modal-trigger.has-selection {
  color: var(--white);
  border-color: rgba(217, 160, 91, 0.45);
}

.service-modal-trigger-text {
  flex: 1;
  min-width: 0;
}

.service-modal-trigger-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 9, 7, 0.72);
  backdrop-filter: blur(4px);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.service-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-elevated);
}

.service-modal-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.service-modal-close {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
  color: var(--gold);
  background: rgba(217, 160, 91, 0.1);
  outline: none;
}

.service-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elevated);
}

.service-modal-count {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.service-modal-footer .btn {
  min-width: 7rem;
}

.service-picker {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  border: none;
  border-radius: 0;
  background: var(--bg-card);
  padding: 0.35rem 0.5rem 0.75rem;
}

.service-group {
  border-bottom: 1px solid var(--line-soft);
}

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

.service-group summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-group summary::-webkit-details-marker {
  display: none;
}

.service-group summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
}

.service-group[open] summary::after {
  content: "-";
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}

.service-option:hover {
  background: rgba(217, 160, 91, 0.08);
}

.service-option input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.selected-services {
  display: none;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.selected-services.is-visible {
  display: flex;
}

.selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(217, 160, 91, 0.12);
  border: 1px solid rgba(217, 160, 91, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 500;
}

.selected-chip button {
  border: none;
  background: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  display: none;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  border-radius: 12px;
}

.form-message.is-success {
  display: block;
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border: 1px solid rgba(217, 160, 91, 0.35);
}

.form-message.is-error {
  display: block;
  background: rgba(180, 70, 55, 0.15);
  color: #e8a090;
  border: 1px solid rgba(180, 70, 55, 0.35);
}

.booking-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.hours-list {
  display: grid;
  gap: 0.55rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--muted);
}

.hours-list strong {
  color: var(--white);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
  .features-grid,
  .services-grid,
  .packages-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .why-grid,
  .menu-grid,
  .price-list-grid,
  .testimonials-grid,
  .services-showcase,
  .packages-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 1rem;
  }

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

  .about-grid,
  .story-block,
  .story-block.reverse,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-block.reverse .story-copy {
    order: 0;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero-rail {
    display: flex;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    justify-self: end;
    grid-area: toggle;
  }

  .header-cta {
    display: none;
  }

  .logo {
    position: relative;
    z-index: 1002;
    grid-area: logo;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo toggle";
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(14, 9, 7, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
    width: min(320px, 100%);
  }

  .nav-list a {
    display: block;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 1rem;
    text-align: center;
  }

  .nav-cta-item {
    display: block;
    margin-top: 1.5rem;
    width: 100%;
  }

  .nav-cta-item .nav-cta {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  body.nav-open .site-header {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(14, 9, 7, 0.35);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(160px, auto);
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 2rem));
  }

  .features-grid,
  .services-grid,
  .packages-grid,
  .values-grid,
  .team-grid,
  .footer-grid,
  .form-row,
  .stats-grid,
  .why-grid,
  .menu-grid,
  .price-list-grid,
  .testimonials-grid,
  .services-showcase,
  .packages-visual {
    grid-template-columns: 1fr;
  }

  .packages-visual-main {
    min-height: 280px;
  }

  .showcase-card {
    min-height: 200px;
  }

  .features-wrap {
    margin-top: -3rem;
  }

  .features {
    border-radius: 16px;
  }

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

  .hero-content {
    padding-bottom: 5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-title .script {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-rail {
    bottom: 4.75rem;
  }

  .logo-image {
    height: 48px;
  }

  .gift-note {
    padding: 4rem 0;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
  }

  .price-row {
    flex-wrap: wrap;
  }

  .price-row span:last-child {
    white-space: normal;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .client-badge {
    left: 0.85rem;
    bottom: 0.85rem;
  }
}

/* ---------- Booking wizard ---------- */
.booking-wizard {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-wizard[hidden] {
  display: none;
}

.booking-wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 32, 24, 0.6);
  backdrop-filter: blur(4px);
}

.booking-wizard-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(45, 32, 24, 0.32);
  overflow: hidden;
}

.booking-wizard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream-soft);
}

.booking-wizard-header h2 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown);
}

.booking-wizard-close {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
}

.booking-wizard-close:hover,
.booking-wizard-close:focus-visible {
  color: var(--brown);
  background: rgba(110, 139, 87, 0.1);
  outline: none;
}

.booking-steps {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  overflow-x: auto;
}

.booking-steps li {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.booking-steps li span {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  background: var(--white);
}

.booking-steps li.is-active {
  color: var(--brown);
}

.booking-steps li.is-active span,
.booking-steps li.is-complete span {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.booking-wizard-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 1rem;
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.booking-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
}

.booking-step-hint,
.booking-demo-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.booking-demo-note {
  padding: 0.65rem 0.85rem;
  background: rgba(201, 138, 61, 0.1);
  border: 1px solid rgba(201, 138, 61, 0.25);
  border-radius: 10px;
}

.booking-service-picker {
  max-height: 240px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-soft);
  padding: 0.35rem;
}

.booking-package-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--gold);
  line-height: 1.5;
}

.booking-step-total {
  margin: 0.85rem 0 0;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.92rem;
}

.payment-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin: 0;
}

.payment-option:hover {
  border-color: rgba(110, 139, 87, 0.45);
  background: rgba(110, 139, 87, 0.05);
}

.payment-option:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(110, 139, 87, 0.15);
}

.payment-option input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--sage);
}

.payment-option-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.payment-option-card strong {
  color: var(--brown);
  font-size: 0.92rem;
}

.payment-option-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.payment-option:has(input:checked) {
  border-color: var(--sage);
  background: rgba(110, 139, 87, 0.08);
}

.payment-fields {
  margin-bottom: 1rem;
}

.payment-fields.is-hidden {
  display: none;
}

.payment-info {
  padding: 0.85rem 1rem;
  background: var(--cream-soft);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.snapscan-demo {
  text-align: center;
  padding: 1rem;
  background: var(--cream-soft);
  border-radius: 12px;
}

.snapscan-qr {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.75rem;
  background:
    linear-gradient(45deg, var(--brown) 25%, transparent 25%),
    linear-gradient(-45deg, var(--brown) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--brown) 75%),
    linear-gradient(-45deg, transparent 75%, var(--brown) 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  border: 4px solid var(--brown);
  border-radius: 8px;
  position: relative;
}

.snapscan-qr::after {
  content: "DEMO";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: rgba(78, 46, 30, 0.55);
}

.snapscan-demo p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-summary {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--cream-soft);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}

.booking-summary h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: var(--brown);
  font-size: 1rem;
}

.booking-summary ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.booking-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}

.booking-summary li strong {
  color: var(--brown);
  white-space: nowrap;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-summary-row strong {
  color: var(--brown);
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--brown);
}

.booking-wizard-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line-soft);
  background: var(--cream-soft);
}

.booking-wizard-footer .btn {
  min-width: 7rem;
}

.booking-wizard-footer .btn-ghost {
  color: var(--brown);
  border-color: rgba(78, 46, 30, 0.28);
}

.booking-wizard-footer .btn-ghost:hover:not(:disabled) {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 139, 87, 0.15);
  color: var(--sage);
  font-size: 1.75rem;
  font-weight: 700;
}

.booking-success h3 {
  margin-bottom: 0.5rem;
}

.booking-success p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .booking-steps li {
    font-size: 0;
  }

  .booking-steps li span {
    font-size: 0.7rem;
  }

  .booking-wizard-header,
  .booking-wizard-body,
  .booking-wizard-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ---------- Dark luxury overrides (wizard & polish) ---------- */
.booking-wizard-backdrop {
  background: rgba(14, 9, 7, 0.78);
}

.booking-wizard-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.booking-wizard-header {
  background: var(--bg-elevated);
}

.booking-wizard-header h2,
.booking-step h3,
.booking-steps li.is-active,
.booking-step-total,
.booking-summary h4,
.booking-summary-row strong,
.booking-summary-total,
.booking-success h3 {
  color: var(--white);
}

.booking-wizard-close:hover,
.booking-wizard-close:focus-visible {
  color: var(--gold);
  background: rgba(217, 160, 91, 0.1);
}

.booking-steps,
.booking-steps li span {
  background: var(--bg-card);
}

.booking-steps li.is-active span,
.booking-steps li.is-complete span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.booking-service-picker,
.booking-summary,
.booking-wizard-footer {
  background: var(--bg-elevated);
}

.payment-option:hover,
.payment-option:focus-within,
.payment-option.is-selected {
  border-color: rgba(217, 160, 91, 0.5);
  background: rgba(217, 160, 91, 0.08);
  box-shadow: 0 0 0 3px rgba(217, 160, 91, 0.12);
}

.payment-option strong {
  color: var(--white);
}

.booking-wizard-footer .btn-ghost {
  color: var(--gold);
  border-color: rgba(217, 160, 91, 0.45);
}

.booking-wizard-footer .btn-ghost:hover:not(:disabled) {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.booking-success-icon {
  background: rgba(217, 160, 91, 0.15);
  color: var(--gold);
}

.packages-grid .package .btn-ghost {
  color: var(--gold);
  border-color: rgba(217, 160, 91, 0.55);
}

.packages-grid .package .btn-ghost:hover {
  background: rgba(217, 160, 91, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.menu-list li::before {
  background: var(--gold);
}

.team-card img,
.gallery-item,
.showcase-card,
.packages-visual-main,
.packages-visual-side figure,
.map-embed,
.price-banner {
  border-radius: 4px;
}

/* ---------- Contact escape section ---------- */
.contact-escape-lead {
  margin-bottom: 2rem;
  max-width: 32rem;
}

.contact-icon-list {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 160, 91, 0.4);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(217, 160, 91, 0.08);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-icon-list strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-icon-list p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.contact-icon-list a {
  color: var(--white);
  transition: color 0.25s;
}

.contact-icon-list a:hover {
  color: var(--gold);
}

.contact-escape-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-escape .booking-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.contact-escape .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d9a05b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-escape .btn-ghost {
  color: var(--white);
  border-color: rgba(253, 248, 238, 0.45);
}

.contact-escape .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(217, 160, 91, 0.1);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(214, 144, 78, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(214, 144, 78, 0.5);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float-label {
  position: absolute;
  right: calc(100% + 0.75rem);
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  background: var(--bg-card);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float-label {
    display: none;
  }
}
