:root {
  --nude: #f4ece4;
  --beige: #e8d9cc;
  --rose: #d9b8b0;
  --rose-deep: #c49a92;
  --gold: #b8946a;
  --gold-soft: #d4b896;
  --ink: #3a322c;
  --ink-soft: #6b5f57;
  --white: #fffdfb;
  --paper: #faf6f2;
  --line: rgba(58, 50, 44, 0.12);
  --shadow: 0 18px 50px rgba(58, 50, 44, 0.08);
  --radius: 22px;
  --header-h: 76px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

address {
  font-style: normal;
  color: var(--ink-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--nude), #f7eee8 48%, var(--paper));
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--rose-deep);
  margin-bottom: 12px;
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #fff;
}

.btn-ghost,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline {
  border-color: var(--gold);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(184, 148, 106, 0.1);
}

.btn-block {
  width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(250, 246, 242, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.section[id],
.hero[id],
.final-cta[id] {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 242, 0.96);
  border-bottom-color: var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.brand-logo-wrap {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #241e1a;
  box-shadow: 0 0 0 1px rgba(184, 148, 106, 0.55), 0 0 0 3px rgba(250, 246, 242, 0.95);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

@media (max-width: 959px) {
  .brand-logo-wrap {
    width: 46px;
    height: 46px;
  }
}

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

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.nav-desktop {
  display: none;
  gap: 18px;
}

.nav-desktop a {
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-desktop a:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(58, 50, 44, 0.28);
  z-index: 25;
}

.mobile-menu-panel {
  background: var(--white);
  min-height: 100%;
  padding: 24px 20px 40px;
}

.nav-mobile {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.nav-mobile a {
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(58, 50, 44, 0.22), rgba(58, 50, 44, 0.78)),
    linear-gradient(90deg, rgba(196, 154, 146, 0.18), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 48px) 0 56px;
}

.hero .lead {
  max-width: 540px;
  color: rgba(255, 253, 251, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-indicators {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.92rem;
}

.hero-indicators li {
  position: relative;
  padding-left: 16px;
}

.hero-indicators li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.benefit-grid,
.service-grid,
.env-grid {
  display: grid;
  gap: 18px;
}

.benefit-card,
.service-card,
.location-card,
.testimonial-placeholder,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.benefit-card,
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(58, 50, 44, 0.12);
}

.benefit-icon,
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 12px;
}

.benefit-icon svg,
.service-icon svg {
  width: 100%;
  height: 100%;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.about-grid,
.location-grid,
.booking-grid,
.instagram-box,
.footer-grid {
  display: grid;
  gap: 32px;
}

.location-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-media,
.env-card {
  border-radius: 28px;
  overflow: hidden;
}

.about-media img,
.env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.testimonial-placeholder {
  text-align: center;
  padding: 48px 24px;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 500;
}

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

.faq-icon {
  width: 22px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.instagram-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 48px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  justify-items: center;
}

.final-cta {
  text-align: center;
}

.instagram-btn {
  justify-self: center;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  gap: 16px;
}

label .optional {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

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

.has-error {
  border-color: #b45d52;
}

.field-error {
  min-height: 1.1em;
  color: #b45d52;
  font-size: 0.82rem;
}

.final-cta {
  background: linear-gradient(180deg, #3a322c, #2b241f);
  color: #fff;
  padding: 88px 0;
}

.final-cta p,
.final-cta h2 {
  color: #fff;
}

.site-footer {
  background: #241e1a;
  color: rgba(255, 253, 251, 0.82);
  padding: 48px 0 24px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links .link-btn {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-links svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 40;
  animation: pulse 2.8s ease-in-out infinite;
}

.noscript {
  margin: 0;
  padding: 12px 16px;
  background: #3a322c;
  color: #fff;
  text-align: center;
}

.noscript a {
  color: #d4b896;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (min-width: 720px) {
  .hero-indicators,
  .benefit-grid,
  .service-grid,
  .env-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .env-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .env-card:first-child {
    grid-row: span 2;
  }
}

@media (min-width: 960px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .about-grid,
  .location-grid,
  .booking-grid,
  .instagram-box {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .instagram-box {
    text-align: left;
    justify-items: stretch;
    padding: 56px 48px;
  }

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

  .hero-indicators {
    grid-template-columns: repeat(3, auto);
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
