:root {
  --bg: #0c0b09;
  --surface: #15120e;
  --surface-soft: rgba(255, 255, 255, 0.08);
  --card: rgba(24, 21, 17, 0.82);
  --text: #fff8ea;
  --muted: #c9bfae;
  --gold: #d8aa48;
  --gold-light: #ffe082;
  --bronze: #9a6a2f;
  --line: rgba(216, 170, 72, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --header-height: 78px;
}

body.light-theme {
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-soft: rgba(42, 28, 11, 0.06);
  --card: rgba(255, 255, 255, 0.9);
  --text: #21180d;
  --muted: #665744;
  --line: rgba(154, 106, 47, 0.22);
  --shadow: 0 22px 60px rgba(87, 62, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  transition: background 0.35s ease, color 0.35s ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #070604;
  color: #fff8ea;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-logo {
  width: min(280px, 72vw);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(216, 170, 72, 0.45);
  border-radius: var(--radius);
  background: #000;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(216, 170, 72, 0.18);
  animation: pulse 1.4s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 8, 6, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

body.light-theme .site-header.scrolled {
  background: rgba(255, 250, 240, 0.9);
}

.navbar {
  display: flex;
  min-height: var(--header-height);
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 58px;
  height: 42px;
  border: 1px solid rgba(216, 170, 72, 0.45);
  border-radius: var(--radius);
  background: #000;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 8px 24px rgba(216, 170, 72, 0.14);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand small {
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bronze), var(--gold-light));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.theme-toggle,
.menu-toggle,
.slider-btn,
.back-to-top,
.modal-close {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section {
  position: relative;
  padding: 92px 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 7.4rem);
}

h2 {
  color: var(--text);
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

.hero {
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.92), rgba(7, 6, 4, 0.46), rgba(7, 6, 4, 0.72)),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1800&q=85") center/cover;
}

body.light-theme .hero {
  background:
    linear-gradient(90deg, rgba(34, 21, 8, 0.82), rgba(34, 21, 8, 0.34), rgba(34, 21, 8, 0.58)),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  background: linear-gradient(0deg, var(--bg), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.hero-logo {
  width: min(380px, 78vw);
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 170, 72, 0.42);
  border-radius: var(--radius);
  background: #000;
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 34px;
  color: #f3e6cf;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: absolute;
  right: max(20px, calc((100vw - 1200px) / 2));
  bottom: 34px;
  z-index: 2;
  width: min(340px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 12, 9, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel p {
  color: #d8c7ac;
}

.hero-panel strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  padding: 13px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--bronze), var(--gold), var(--gold-light));
  color: #1a1003;
  box-shadow: 0 16px 36px rgba(216, 170, 72, 0.24);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
}

.btn-ghost {
  border: 1px solid rgba(255, 224, 130, 0.5);
  color: #fff8ea;
}

.full-width {
  width: 100%;
}

.about-grid,
.booking-layout,
.contact-grid,
.footer-grid {
  display: grid;
  width: min(100%, 1200px);
  margin: 0 auto;
  gap: 28px;
}

.about-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.about-image {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1000&q=85") center/cover;
  box-shadow: var(--shadow);
}

.about-copy {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 2rem;
}

.stats span,
.about-copy p,
.price-card p,
.booking-summary p,
.contact-card p,
.footer p {
  color: var(--muted);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px auto 34px;
}

.tab-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 18px;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: #180f04;
}

.service-grid,
.pricing-grid,
.team-grid {
  display: grid;
  width: min(100%, 1200px);
  margin: 0 auto;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.price-card,
.team-card,
.booking-form,
.booking-summary,
.contact-card,
.contact-form,
.map-placeholder,
.review-card,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.service-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(255, 224, 130, 0.55);
  transform: translateY(-8px);
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 170, 72, 0.22), rgba(255, 224, 130, 0.08));
  color: var(--gold-light);
  font-size: 1.45rem;
}

.service-card p {
  flex: 1;
  color: var(--muted);
}

.service-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card strong {
  color: var(--gold-light);
}

.service-card button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  padding: 9px 12px;
}

.pricing {
  background: linear-gradient(180deg, transparent, rgba(216, 170, 72, 0.06), transparent);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(255, 224, 130, 0.62);
  transform: translateY(-10px);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #180f04;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 6px 10px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  width: min(100%, 1200px);
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  filter: saturate(1.1);
  transform: scale(1.08);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  height: 280px;
  object-fit: cover;
}

.team-card div {
  padding: 20px;
}

.team-card p {
  margin: 8px 0 6px;
  color: var(--gold-light);
  font-weight: 800;
}

.team-card span {
  color: var(--muted);
}

.testimonial-shell {
  display: grid;
  width: min(100%, 860px);
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
}

.review-card {
  min-height: 270px;
  padding: 34px;
  text-align: center;
}

.stars {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.review-card blockquote {
  margin: 18px auto;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.14;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold);
}

/* ── Payment badges ───────────────────────────────────────────────────── */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -22px auto 28px;
  width: min(100%, 1200px);
}

.pay-badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 14px;
}

.pay-info-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.pay-note {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.84rem;
}
/* ────────────────────────────────────────────────────────────────────── */

.booking-layout {
  grid-template-columns: 1.35fr 0.65fr;
  align-items: start;
}

.booking-form,
.booking-summary,
.contact-card,
.contact-form {
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.split {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  background: var(--surface-soft);
  color: var(--text);
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #18120a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 170, 72, 0.12);
}

.service-picker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.service-picker .btn {
  min-width: 138px;
  white-space: nowrap;
}

.selected-services {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.selected-services p {
  margin: 0;
  color: var(--muted);
}

.selected-service-chip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.selected-service-chip strong {
  color: var(--text);
}

.selected-service-chip span {
  color: var(--gold-light);
  font-weight: 900;
}

.selected-service-chip button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.booking-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.summary-list span {
  color: var(--muted);
}

.summary-list strong {
  text-align: right;
}

.booking-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.booking-note span {
  display: block;
  color: var(--muted);
}

.faq-list {
  width: min(100%, 900px);
  margin: 0 auto;
  overflow: hidden;
}

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  padding: 20px;
  text-align: left;
}

.faq-question span {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 0 20px 20px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

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

.contact-card,
.map-placeholder {
  min-height: 330px;
}

.contact-card a {
  color: var(--gold-light);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 800;
  padding: 9px 14px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

/* ── Map (now a real iframe) ──────────────────────────────────────────── */
.map-placeholder {
  display: grid;
  grid-column: span 2;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
}
/* ────────────────────────────────────────────────────────────────────── */

.footer {
  padding: 58px 20px 24px;
  border-top: 1px solid var(--line);
  background: #080705;
}

body.light-theme .footer {
  background: #21180d;
  color: #fff8ea;
}

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

.footer h2 {
  font-size: 2.4rem;
}

.footer h3 {
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #d8c7ac;
  margin-bottom: 8px;
}

.newsletter label {
  display: block;
  margin-bottom: 10px;
  color: #d8c7ac;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter button {
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #180f04;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.copyright {
  width: min(100%, 1200px);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 20px;
  z-index: 900;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
}

.whatsapp-float {
  bottom: 86px;
  background: #25d366;
  color: #06150b;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.3);
}

.back-to-top {
  bottom: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-card .btn {
  margin-top: 10px;
}

.modal-whatsapp {
  display: none;
}

.modal-whatsapp.show {
  display: inline-flex;
}

.modal.show .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
}

.modal-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #180f04;
  font-size: 2rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 170, 72, 0.35);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(216, 170, 72, 0);
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 11, 9, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  body.light-theme .nav-links {
    background: rgba(255, 250, 240, 0.98);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

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

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

  .about-grid,
  .booking-layout,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .booking-summary {
    position: static;
  }

  .map-placeholder {
    grid-column: span 1;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .navbar {
    padding: 0 14px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand-logo {
    width: 46px;
    height: 34px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 72px 16px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 116px;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero-panel {
    right: 16px;
    bottom: 22px;
    left: 16px;
    width: auto;
    padding: 18px;
  }

  .hero-actions,
  .newsletter div {
    flex-direction: column;
  }

  .btn,
  .hero-actions a {
    width: 100%;
  }

  .about-image {
    min-height: 330px;
  }

  .about-copy,
  .booking-form,
  .booking-summary,
  .contact-card,
  .contact-form,
  .review-card {
    padding: 20px;
  }

  .stats,
  .split,
  .service-picker,
  .service-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .slider-btn {
    display: none;
  }

  .team-card img {
    height: 240px;
  }

  .whatsapp-float,
  .back-to-top {
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .payment-badges {
    gap: 8px;
  }
}

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