:root {
  --bg: #0f0c08;
  --bg-soft: #1a140e;
  --paper: #f2ebe2;
  --text: #f4ede3;
  --muted: #d2c2ad;
  --gold: #d4a75d;
  --gold-strong: #f0c57e;
  --line: rgba(212, 167, 93, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, #3a2711 0%, rgba(58, 39, 17, 0) 60%),
    radial-gradient(900px 480px at 5% 20%, #1f2715 0%, rgba(31, 39, 21, 0) 58%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold-strong);
  color: #1e1307;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.bg-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.12;
  z-index: -1;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.page-hero {
  padding-top: 4.8rem;
  padding-bottom: 1.1rem;
}

.page-hero .lead {
  max-width: 62ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.86), rgba(8, 7, 5, 0.66));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-strong);
  text-shadow: 0 1px 10px rgba(212, 167, 93, 0.2);
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 167, 93, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.2rem;
  border: 1px solid rgba(212, 167, 93, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  transition: color 200ms ease, background-color 200ms ease;
}

.nav-links a:hover {
  color: var(--gold-strong);
  background: rgba(240, 197, 126, 0.08);
}

.nav-links a[aria-current="page"] {
  color: #2a1a0a;
  background: linear-gradient(120deg, var(--gold-strong), var(--gold));
}

.header-actions {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: #24180c;
  background: linear-gradient(120deg, var(--gold-strong), var(--gold));
  text-decoration: none;
  padding: 0.76rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 167, 93, 0.28);
}

.btn-small {
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
}

.btn-outline {
  color: var(--text);
  border-color: rgba(240, 197, 126, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  color: #24180c;
  background: linear-gradient(120deg, var(--gold-strong), var(--gold));
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-strong);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  margin: 0 0 0.9rem;
}

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

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.lead {
  max-width: 56ch;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.2rem;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 5.2rem clamp(1rem, 5vw, 4rem) 3.8rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 620px at 50% 5%, rgba(212, 167, 93, 0.22), rgba(212, 167, 93, 0) 64%),
    linear-gradient(180deg, rgba(15, 12, 8, 0.7), rgba(15, 12, 8, 0.55)),
    url("assets/images/deaura/reception2.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(15, 12, 8, 0.88) 0%,
      rgba(15, 12, 8, 0.56) 12%,
      rgba(15, 12, 8, 0.22) 28%,
      rgba(15, 12, 8, 0.22) 72%,
      rgba(15, 12, 8, 0.56) 88%,
      rgba(15, 12, 8, 0.88) 100%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin: 1.6rem 0;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-stats article {
  border: 1px solid var(--line);
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats strong {
  display: block;
  color: var(--gold-strong);
}

.hero-stats span {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.shape-circle {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

.shape-circle {
  width: 130px;
  bottom: -32px;
  left: -35px;
  animation: float 5.2s ease-in-out infinite;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  position: relative;
}

.about-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-copy p,
.about-copy li {
  color: var(--muted);
}

.about-copy ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.services .card-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transform: none;
  opacity: 1;
  transition: transform 550ms ease, opacity 550ms ease, border-color 300ms ease;
}

.service-card.in-view {
  transform: none;
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(240, 197, 126, 0.55);
}

.service-card.service-expand {
  padding: 0;
}

.service-card.service-expand > summary {
  list-style: none;
  cursor: pointer;
}

.service-card.service-expand > summary::-webkit-details-marker {
  display: none;
}

.service-card.service-expand > summary:focus-visible {
  outline: 2px solid rgba(240, 197, 126, 0.55);
  outline-offset: 3px;
}

.service-expand-content {
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.service-expand-content p:last-child {
  margin-bottom: 0;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card div {
  padding: 1rem;
}

.service-card p {
  color: var(--muted);
  margin-top: 0.3rem;
}

.service-card span {
  color: var(--gold-strong);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.card-actions {
  margin-top: 0.8rem;
}

.service-book-btn {
  border: 0;
  cursor: pointer;
}

/* Services page: brochure-inspired black/gold stacked layout */
.services-page .page-hero {
  max-width: 860px;
  text-align: center;
}

.services-page .menu-opening-panels {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 1.2rem;
}

.services-page .menu-opening-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 36%) 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(1rem, 2.5vw, 1.7rem);
  border-radius: 6px;
  border: 1px solid rgba(230, 186, 86, 0.55);
  background:
    radial-gradient(120% 60px at 50% 0%, rgba(243, 201, 110, 0.42), rgba(243, 201, 110, 0) 70%),
    radial-gradient(120% 60px at 50% 100%, rgba(243, 201, 110, 0.42), rgba(243, 201, 110, 0) 70%),
    #15131a;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.services-page .menu-opening-banner img {
  width: min(290px, 100%);
  margin: 0 auto;
}

.services-page .menu-opening-title {
  justify-self: center;
  display: grid;
  gap: 0.2rem;
  text-align: center;
  color: #e7bc63;
  border: 6px solid transparent;
  border-image: linear-gradient(90deg, #c69a2d, #f4d58f, #c69a2d) 1;
  padding: clamp(0.6rem, 1.9vw, 1rem) clamp(0.9rem, 2.6vw, 1.5rem);
}

.services-page .menu-opening-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #fbf7ec;
  line-height: 0.9;
  text-transform: lowercase;
}

.services-page .menu-opening-title span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
}

.services-page .services .card-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 960px;
  margin: 1.3rem auto 0;
}

.services-page .menu-group {
  border: 1px solid rgba(230, 186, 86, 0.6);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(217, 172, 73, 0.92), rgba(244, 210, 132, 0.9), rgba(217, 172, 73, 0.92));
  color: #15120f;
  text-align: center;
  padding: 0.5rem 0.7rem 0.6rem;
  margin-top: 0.25rem;
}

.services-page .menu-group-kicker {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2a2216;
}

.services-page .menu-group h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .menu-group-tagline {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.services-page .service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  align-items: stretch;
  border-radius: 6px;
  border: 1px solid rgba(230, 186, 86, 0.6);
  background:
    linear-gradient(120deg, rgba(231, 191, 100, 0.2), rgba(231, 191, 100, 0) 22%) top left / 55% 2px no-repeat,
    linear-gradient(300deg, rgba(231, 191, 100, 0.2), rgba(231, 191, 100, 0) 22%) bottom right / 55% 2px no-repeat,
    linear-gradient(180deg, rgba(12, 11, 13, 0.95), rgba(6, 6, 8, 0.98));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
}

.services-page .service-card::before,
.services-page .service-card::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  height: 22px;
  pointer-events: none;
}

.services-page .service-card::before {
  top: 0;
  background: radial-gradient(110% 90% at 50% 0%, rgba(230, 186, 86, 0.7), rgba(230, 186, 86, 0) 70%);
}

.services-page .service-card::after {
  bottom: 0;
  background: radial-gradient(110% 90% at 50% 100%, rgba(230, 186, 86, 0.7), rgba(230, 186, 86, 0) 70%);
}

.services-page .service-card.service-expand > summary {
  display: contents;
  cursor: default;
}

.services-page .service-card img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-right: 1px solid rgba(230, 186, 86, 0.35);
  object-fit: contain;
  object-position: center;
  background: #121117;
  padding: 0;
}

.services-page .service-card summary > div {
  grid-column: 2;
  grid-row: 1;
  padding: 1rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-page .service-card h3 {
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.55rem;
  background: linear-gradient(90deg, rgba(217, 172, 73, 0.92), rgba(244, 210, 132, 0.9), rgba(217, 172, 73, 0.92));
  color: #15120f;
  border: 1px solid rgba(246, 222, 162, 0.9);
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
}

.services-page .service-card p {
  color: rgba(247, 233, 198, 0.88);
}

.services-page .service-expand-content {
  grid-column: 2;
  grid-row: 2;
  border-top: 1px solid rgba(230, 186, 86, 0.35);
  background: rgba(0, 0, 0, 0.25);
}

.services-page .service-expand-content p {
  color: rgba(248, 235, 206, 0.84);
}

.services-page .service-card > summary::-webkit-details-marker {
  display: none;
}

.services-page .service-card > summary::marker {
  content: "";
}

.services-page .service-card[open] > summary {
  pointer-events: none;
}

.services-page .card-actions {
  display: block;
  margin-top: auto;
  padding-top: 0.7rem;
}

.services-page .details-cta {
  margin-top: 0.9rem;
}

@media (max-width: 640px) {
  .services-page .menu-opening-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-page .service-card.service-expand > summary {
    display: block;
  }

  .services-page .service-card {
    grid-template-columns: 1fr;
  }

  .services-page .service-card img {
    grid-column: auto;
    grid-row: auto;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 186, 86, 0.35);
    object-fit: contain;
  }

  .services-page .service-card summary > div {
    grid-column: auto;
    grid-row: auto;
  }

  .services-page .service-expand-content {
    grid-column: auto;
    grid-row: auto;
  }
}

.service-detail {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.service-detail-head p {
  color: var(--muted);
}

.service-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.service-detail-meta article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.service-detail-quote {
  margin: 1.1rem 0 0;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1rem;
  color: var(--paper);
  font-size: 1.02rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-top: 1rem;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.detail-card ul {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.detail-card li + li {
  margin-top: 0.34rem;
}

.detail-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

.service-detail-gallery-wrap {
  margin-top: 1rem;
}

.service-detail-gallery {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-detail-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.detail-final-cta {
  margin-top: 1rem;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.review-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.review-grid p,
.review-grid span {
  padding: 0 1rem;
}

.review-grid p {
  color: var(--muted);
}

.review-grid span {
  display: block;
  margin: 0.6rem 0 1rem;
  color: var(--gold-strong);
  font-size: 0.88rem;
}

.booking-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(120deg, rgba(28, 21, 14, 0.9), rgba(43, 31, 16, 0.7)),
    url("assets/images/deaura/lounge2.jpg") center/cover no-repeat;
}

.booking-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-grid h3 {
  margin-bottom: 0.35rem;
}

.contact-grid p,
.contact-grid a {
  color: var(--muted);
}

.contact-grid a:hover {
  color: var(--gold-strong);
}

.contact-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.appointment-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.appointment-card p {
  color: var(--muted);
}

.appointment-form {
  display: grid;
  gap: 0.45rem;
}

.appointment-form label {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(13, 11, 8, 0.8);
  color: var(--text);
  border-radius: 10px;
  padding: 0.68rem 0.78rem;
  font-family: "Manrope", sans-serif;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.appointment-form .btn {
  margin-top: 0.65rem;
  width: fit-content;
}

.map-card iframe {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: 12px;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  text-decoration: none;
  background: #22c55e;
  color: transparent;
  font-size: 0;
  line-height: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.float-whatsapp::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("assets/images/whatsapp-logo-original.svg") center/contain no-repeat;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.45);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 1.8rem;
  background:
    radial-gradient(700px 320px at 10% 120%, rgba(212, 167, 93, 0.12), rgba(212, 167, 93, 0) 65%),
    rgba(4, 4, 3, 0.78);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.1rem;
  padding: 2.1rem 0 1.5rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 0.65rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: var(--text);
  width: fit-content;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-logo span,
.footer-logo strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--gold-strong);
  text-shadow: 0 1px 10px rgba(212, 167, 93, 0.2);
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  color: var(--text);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-strong);
}

.social-icons {
  margin-top: 0.72rem;
  display: flex;
  gap: 0.48rem;
  align-items: center;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(240, 197, 126, 0.4);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-strong);
  background: rgba(240, 197, 126, 0.12);
}

.social-icons img {
  width: 15px;
  height: 15px;
  display: block;
  filter: invert(86%) sepia(17%) saturate(468%) hue-rotate(349deg) brightness(104%) contrast(91%);
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.1rem;
}

.price-card .price-value {
  color: var(--gold-strong);
  font-size: 1.24rem;
  font-weight: 700;
  margin: 0.25rem 0 0.5rem;
}

.price-card p,
.price-card li {
  color: var(--muted);
}

.price-card ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1rem;
}

.price-card.featured {
  border-color: rgba(240, 197, 126, 0.65);
  background: linear-gradient(180deg, rgba(240, 197, 126, 0.1), rgba(255, 255, 255, 0.03));
}

.price-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #23170b;
  background: var(--gold-strong);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.3rem;
}

.reviews-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}

.quote-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.quote-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quote-card p,
.quote-card span {
  padding: 0 1rem;
}

.quote-card p {
  color: var(--muted);
}

.quote-card span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.9rem;
  margin: 0.3rem 0 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.copyright {
  text-align: center;
  margin: 0;
  padding: 0 0 0.35rem;
  font-size: 0.88rem;
}

.footer-credit {
  text-align: center;
  margin: 0;
  padding: 0 0 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .service-card {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .about-media img {
    height: 460px;
  }

  .hero {
    padding: 4rem clamp(1rem, 4vw, 2rem) 3rem;
  }

  .services .card-grid,
  .reviews .review-grid,
  .contact-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .booking-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.56rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    order: 3;
    gap: 0.35rem;
    padding: 0.22rem;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    font-size: 0.84rem;
    padding: 0.4rem 0.66rem;
  }

  .brand-name {
    display: none;
  }

  .footer-logo span,
  .footer-logo strong {
    font-size: 0.88rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .footer-logo img {
    width: 44px;
    height: 44px;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.42rem;
  }

  .header-actions .btn {
    padding: 0.5rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .about-media img {
    height: 330px;
  }

  .hero {
    padding: 3.2rem 1rem 2.6rem;
  }

  .services .card-grid,
  .reviews .review-grid,
  .gallery-grid,
  .contact-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 1rem;
  }

  .service-detail-meta,
  .service-detail-gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.55rem 0 1.1rem;
  }

  .footer-logo strong {
    font-size: 0.95rem;
  }

  .footer-note,
  .site-footer p,
  .site-footer li,
  .site-footer a {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.08rem;
    margin-bottom: 0.38rem;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .float-whatsapp {
    right: 12px;
    left: auto;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1140px, 94vw);
  }

  .header-actions .btn {
    padding: 0.46rem 0.64rem;
    font-size: 0.78rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.36rem 0.56rem;
  }

  .copyright {
    font-size: 0.8rem;
    padding-bottom: 0.3rem;
  }

  .footer-credit {
    font-size: 0.76rem;
    padding-bottom: 1rem;
  }
}
