:root {
  --ink: #11100d;
  --ink-2: #201c17;
  --gold: #d8a94b;
  --gold-2: #f2d28a;
  --ivory: #fffaf0;
  --mist: #f6f0e7;
  --sage: #66785c;
  --rose: #9b5a49;
  --line: rgba(17, 16, 13, 0.12);
  --shadow: 0 22px 70px rgba(17, 16, 13, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 20;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 16, 13, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.nav-cta {
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 750;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 7.5rem clamp(1rem, 5vw, 4rem) 5rem;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/spa-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(17, 16, 13, 0.7), rgba(17, 16, 13, 0.06) 55%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 630px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  width: 100%;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.75rem 1.05rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(216, 169, 75, 0.24);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-panel {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 2rem;
  display: grid;
  gap: 0.1rem;
  width: min(285px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(17, 16, 13, 0.72);
  backdrop-filter: blur(14px);
}

.hero-panel span,
.hours span,
.package-card p,
.service-feature span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section-grid,
.section-heading,
.service-layout,
.package-grid,
.gallery-grid,
.review-grid,
.booking,
.contact,
.site-footer,
.offers {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

h3,
p {
  overflow-wrap: anywhere;
}

.about {
  background: var(--ivory);
}

.about-copy {
  font-size: 1.05rem;
  color: rgba(17, 16, 13, 0.76);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 840px;
}

.compact h2 {
  max-width: 720px;
}

.services {
  background: #f5efe4;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  align-items: start;
}

.feature-card,
.service-list article,
.package-card,
.review-grid article,
.booking-form,
.contact-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(17, 16, 13, 0.08);
}

.service-feature {
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

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

.service-feature div {
  padding: 1.25rem;
}

.service-feature h3,
.package-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-feature p,
.service-list p,
.package-card li,
.review-grid p,
.booking-copy p,
details p {
  color: rgba(17, 16, 13, 0.68);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-list article {
  padding: 1rem;
}

.service-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.service-list p {
  margin: 0;
  font-size: 0.94rem;
}

.why {
  background: var(--ink);
  color: #fff;
}

.why .section-kicker {
  color: var(--gold);
}

.benefits {
  width: min(var(--max), 100%);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits div {
  min-height: 132px;
  padding: 1.05rem;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.benefits strong {
  line-height: 1.25;
}

.packages {
  background: var(--ivory);
}

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

.package-card {
  padding: 1.35rem;
  min-height: 310px;
  display: grid;
  align-content: start;
}

.package-card ul {
  margin: 1.3rem 0;
  padding-left: 1.2rem;
}

.package-card a {
  align-self: end;
  color: var(--ink);
  font-weight: 720;
  border-bottom: 2px solid var(--gold);
  width: max-content;
}

.featured-package {
  background: var(--ink);
  color: #fff;
  transform: translateY(-0.6rem);
}

.featured-package li {
  color: rgba(255, 255, 255, 0.76);
}

.featured-package a {
  color: #fff;
}

.offers {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 169, 75, 0.9), rgba(242, 210, 138, 0.9)),
    url("assets/spa-amenities.png") center / cover;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.offers h2 {
  max-width: 680px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.offers .section-kicker {
  color: #3d2b07;
}

.gallery {
  background: #f5efe4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 0.85rem;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  color: #fff;
  font-weight: 720;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

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

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

.testimonials {
  background: var(--ivory);
}

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

.review-grid article {
  padding: 1.2rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}

.rating span {
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.booking-copy h2 {
  max-width: 460px;
  font-size: clamp(2.8rem, 5vw, 4.35rem);
  line-height: 1.08;
}

.booking-copy p {
  max-width: 430px;
}

.booking-form {
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 16, 13, 0.18);
  border-radius: 7px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

::placeholder {
  color: rgba(17, 16, 13, 0.5);
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 169, 75, 0.28);
  border-color: var(--gold);
}

.wide-field,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: rgba(17, 16, 13, 0.62);
  font-size: 0.9rem;
}

.faq {
  background: #f5efe4;
}

.faq-list {
  width: min(850px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 720;
}

details p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 1.2rem;
  font-style: normal;
}

.contact-list a,
.contact-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list a.primary-contact-link {
  margin: 0.35rem 0;
  padding: 0.9rem 0.8rem;
  border: 1px solid rgba(216, 169, 75, 0.35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216, 169, 75, 0.16), rgba(242, 210, 138, 0.24));
  box-shadow: 0 14px 30px rgba(17, 16, 13, 0.07);
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(216, 169, 75, 0.18);
}

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

.whatsapp-icon {
  color: #168a55;
  background: rgba(31, 164, 99, 0.14);
}

.contact-list small,
.contact-row small {
  display: block;
  color: rgba(17, 16, 13, 0.55);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-list strong,
.contact-row strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.primary-contact-link strong {
  color: #6e4700;
  font-size: 1.12rem;
  font-weight: 760;
}

.hours {
  margin-top: 1.4rem;
  display: grid;
}

.map-wrap {
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  z-index: 9;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(17, 16, 13, 0.22);
}

.floating-call {
  bottom: 5rem;
  background: var(--gold);
}

.floating-whatsapp {
  bottom: 1rem;
  background: #1fa463;
}

.floating-call svg,
.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.floating-call svg {
  fill: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border-radius: 8px;
    background: rgba(17, 16, 13, 0.96);
  }

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

  .site-nav a {
    padding: 0.8rem;
  }

  .section-grid,
  .service-layout,
  .booking,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-feature {
    position: relative;
    top: auto;
  }

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

  .package-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.65rem 1rem;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 92svh;
    padding: 6.6rem 1rem 7.6rem;
  }

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

  .hero-content,
  .hero-copy {
    max-width: 22rem;
  }

  .hero-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .service-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .floating-call,
  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }
}

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