@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --color-sand: #f5ede6;
  --color-rose: #e8cfcb;
  --color-white: #ffffff;
  --color-ink: #1a1a1a;
  --color-muted: #655a56;
  --color-border: rgba(26, 26, 26, 0.1);
  --color-overlay: rgba(26, 26, 26, 0.5);
  --color-accent: #b67a67;
  --color-accent-deep: #8f5e4e;
  --shadow-soft: 0 18px 45px rgba(26, 26, 26, 0.08);
  --shadow-strong: 0 26px 56px rgba(26, 26, 26, 0.12);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 5rem;
  --container: min(1160px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(232, 207, 203, 0.7), transparent 22%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.85), transparent 16%),
    linear-gradient(180deg, #f9f3ee 0%, #f5ede6 52%, #fbf8f5 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(182, 122, 103, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
  transition:
    opacity 160ms ease-in-out,
    transform 160ms ease-in-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--space-6) 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.72));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-2);
  color: var(--color-accent-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

[data-address],
.address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
}

[data-address]::before,
.address-link::before {
  content: "";
  flex: 0 0 auto;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.2rem;
  background: currentColor;
  opacity: 0.85;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M172.3 501.7C26.97 291 0 269.4 0 192 0 85.96 85.96 0 192 0S384 85.96 384 192c0 77.4-26.97 99-172.3 309.7-9.5 13.8-29.9 13.8-39.4 0zM192 272c44.18 0 80-35.82 80-80S236.2 112 192 112 112 147.8 112 192s35.8 80 80 80z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M172.3 501.7C26.97 291 0 269.4 0 192 0 85.96 85.96 0 192 0S384 85.96 384 192c0 77.4-26.97 99-172.3 309.7-9.5 13.8-29.9 13.8-39.4 0zM192 272c44.18 0 80-35.82 80-80S236.2 112 192 112 112 147.8 112 192s35.8 80 80 80z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.centered-actions {
  justify-content: center;
  margin-top: var(--space-3);
}

.button,
.text-link,
.service-card,
.gallery-card,
.testimonial,
.channel-card {
  transition:
    transform 220ms ease-in-out,
    box-shadow 220ms ease-in-out,
    background-color 220ms ease-in-out,
    border-color 220ms ease-in-out,
    color 220ms ease-in-out;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.button-small {
  min-height: 44px;
  padding: 0.72rem 1.2rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-ink);
  border-color: rgba(26, 26, 26, 0.14);
}

.button-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(26, 26, 26, 0.2);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent-deep);
  font-weight: 600;
}

.text-link:hover {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition:
    background-color 220ms ease-in-out,
    box-shadow 220ms ease-in-out,
    backdrop-filter 220ms ease-in-out;
}

.site-header.is-scrolled {
  background: rgba(249, 243, 238, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(26, 26, 26, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.3rem;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 1.1rem;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease-in-out;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--color-ink);
}

.nav-cta {
  margin-left: 0.35rem;
}

.hero {
  padding-top: var(--space-4);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: min(84vh, 760px);
  display: grid;
  align-items: end;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.8vw, 3rem);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
  animation: hero-fade 900ms ease-out both;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(245, 237, 230, 0.18) 0%, rgba(26, 26, 26, 0.26) 38%, rgba(26, 26, 26, 0.56) 100%),
    linear-gradient(180deg, rgba(232, 207, 203, 0.18) 0%, rgba(26, 26, 26, 0.16) 100%),
    url("../img/alix-nail-spa-hero-panama.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 20%, rgba(245, 237, 230, 0.46), transparent 28%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.06), rgba(26, 26, 26, 0.18));
}

.hero-layout {
  display: grid;
  gap: var(--space-4);
  align-items: end;
}

.hero-copy {
  max-width: 41rem;
  display: grid;
  gap: var(--space-2);
  color: var(--color-white);
}

.hero-copy .eyebrow,
.hero-copy p,
.hero-copy .text-link,
.hero-copy li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy .eyebrow::before {
  background: rgba(255, 255, 255, 0.72);
}

.hero-copy p {
  max-width: 34rem;
  font-size: 1.05rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-trust li,
.trust-pill {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-note,
.hero-card,
.service-card,
.testimonial,
.gallery-card,
.service-detail,
.feature-panel,
.form-shell,
.contact-panel,
.summary-card,
.legal-card,
.channel-card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.hero-note,
.hero-card,
.cta-band,
.service-card,
.testimonial,
.service-detail,
.feature-panel,
.form-shell,
.contact-panel,
.summary-card,
.legal-card,
.channel-card {
  border-radius: var(--radius-md);
}

.hero-note,
.hero-card {
  padding: var(--space-3);
}

.hero-note {
  display: grid;
  gap: 0.75rem;
}

.hero-note strong,
.hero-card strong {
  color: var(--color-ink);
  font-size: 1.05rem;
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.hero-card .info-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card .info-list span {
  display: block;
  color: var(--color-muted);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card .info-list strong {
  font-size: 1rem;
  line-height: 1.4;
}

.info-list-subline {
  display: block;
  margin-top: 0.15rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
  margin-bottom: var(--space-4);
}

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

.section-heading.centered .eyebrow {
  justify-self: center;
}

.page-hero {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.page-hero p,
.section-heading p {
  max-width: 40rem;
}

.experience-shell,
.split-grid,
.proof-layout,
.contact-layout,
.booking-layout,
.footer-grid,
.cta-band {
  display: grid;
  gap: var(--space-5);
}

.experience-shell {
  align-items: start;
}

.experience-copy {
  display: grid;
  gap: 1rem;
}

.experience-intro {
  display: grid;
  gap: 1rem;
}

.editorial-points,
.ritual-grid,
.service-detail-grid,
.channel-grid,
.booking-options,
.legal-stack,
.testimonial-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: var(--space-3);
}

.editorial-points {
  align-content: start;
}

.editorial-point,
.ritual-step {
  padding: var(--space-2) 0 0;
  border-top: 1px solid var(--color-border);
}

.editorial-point h3,
.ritual-step h3,
.channel-card h3,
.service-detail h3 {
  margin-bottom: 0.6rem;
}

.service-grid {
  align-items: stretch;
}

.service-card {
  overflow: hidden;
  display: grid;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.service-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.94)),
    var(--color-white);
}

.service-card-media {
  overflow: hidden;
}

.service-card img,
.story-visual img,
.portrait-panel img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card img {
  aspect-ratio: 4 / 3;
}

.service-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}

.service-card-body {
  display: grid;
  gap: 0.85rem;
  padding: var(--space-3);
  height: 100%;
  align-content: start;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-price,
.subtle-label {
  color: var(--color-accent-deep);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bullet-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.bullet-list li {
  position: relative;
  padding-left: 1rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.story-visual,
.portrait-panel,
.map-shell,
.footer-map-shell,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.story-visual img,
.portrait-panel img {
  min-height: 340px;
}

.story-block,
.feature-panel {
  display: grid;
  gap: 1rem;
}

.service-detail {
  display: grid;
  gap: 1rem;
  padding: var(--space-3);
  height: 100%;
}

.detail-lead {
  color: var(--color-muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--color-ink);
  font-weight: 600;
}

.trust-indicator small {
  color: var(--color-muted);
  font-weight: 500;
}

.proof-layout {
  align-items: start;
}

.proof-sidebar {
  display: grid;
  gap: 1rem;
}

.testimonial {
  padding: var(--space-3);
  display: grid;
  align-content: start;
  height: 100%;
}

.testimonial-stars {
  margin-bottom: 0.85rem;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  font-size: 0.94rem;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-ink);
  font-weight: 600;
}

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

.results-lead-grid {
  margin-bottom: var(--space-4);
}

.results-gallery-grid {
  margin-top: var(--space-2);
}

.home-gallery-grid {
  display: grid;
  gap: var(--space-3);
}

.gallery-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  transition: transform 260ms ease-in-out;
}

.home-gallery-card img {
  aspect-ratio: 4 / 5;
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-ink);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.gallery-card--wide {
  grid-column: 1 / -1;
}

.gallery-card--wide img {
  aspect-ratio: 16 / 9;
}

.page-preview-grid {
  display: grid;
  gap: var(--space-3);
}

.page-preview-card {
  display: grid;
  gap: 0.85rem;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease-in-out,
    box-shadow 220ms ease-in-out;
  height: 100%;
}

.page-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

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

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--color-ink);
}

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

.faq-item p {
  margin-top: 0.85rem;
}

.contact-layout,
.booking-layout {
  align-items: start;
}

.contact-layout-balanced {
  align-items: stretch;
}

.contact-layout-balanced > * {
  height: 100%;
}

.contact-stack {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.channel-card,
.contact-panel,
.feature-panel,
.summary-card,
.form-shell,
.legal-card {
  padding: var(--space-3);
}

.channel-card,
.page-preview-card,
.contact-panel,
.feature-panel,
.summary-card {
  display: grid;
  align-content: start;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.location-card {
  position: relative;
  min-height: 320px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(26, 26, 26, 0.08);
  background:
    radial-gradient(circle at top right, rgba(232, 207, 203, 0.75), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 237, 230, 0.92));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  z-index: -2;
}

.location-card::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(182, 122, 103, 0.18) 0 40%, transparent 41%),
    rgba(182, 122, 103, 0.16);
  box-shadow: 0 0 0 14px rgba(182, 122, 103, 0.08);
}

.location-card-large {
  min-height: 100%;
}

.location-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 1rem;
  min-height: 100%;
}

.location-card-inner h3 {
  max-width: 14ch;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.location-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--color-ink);
  font-size: 0.9rem;
}

.map-shell iframe,
.footer-map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-layout-balanced .map-shell iframe {
  min-height: 100%;
}

.contact-panel {
  display: grid;
  gap: 0.95rem;
}

.contact-panel p strong,
.summary-card span {
  color: var(--color-ink);
}

.booking-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-option {
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}

.booking-option h3 {
  margin-bottom: 0.65rem;
}

.form-shell {
  display: grid;
  gap: 1rem;
}

.booking-form-shell {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  gap: 1.25rem;
}

.booking-form-heading {
  max-width: 35rem;
  margin-bottom: var(--space-3);
}

.booking-form-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.02;
}

.booking-form-heading p {
  max-width: 33rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field,
.field-full {
  display: grid;
  gap: 0.45rem;
}

label {
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-ink);
}

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

.status-text {
  min-height: 1.5rem;
  color: var(--color-accent-deep);
  font-weight: 600;
  margin-top: 0.25rem;
}

.summary-card p {
  margin-top: 0.45rem;
}

.booking-legal {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-actions {
  padding-top: 0.25rem;
}

.booking-summary-slot {
  display: grid;
}

.booking-summary-slot .summary-card,
.booking-aside-card {
  padding: clamp(1.35rem, 2.4vw, 1.8rem);
}

.booking-layout .portrait-panel img {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.booking-layout .feature-panel ul {
  gap: 0.9rem;
}

.booking-layout .contact-panel {
  gap: 0.9rem;
}

.booking-layout .contact-panel .button-row {
  margin-top: 0.35rem;
}

.muted-card {
  opacity: 0.86;
}

.cta-band {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(232, 207, 203, 0.65), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: var(--shadow-soft);
}

.cta-copy {
  display: grid;
  gap: 0.85rem;
}

.service-card-body .text-link,
.service-detail .text-link,
.page-preview-card .text-link,
.channel-card .text-link {
  margin-top: auto;
}

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

.site-footer {
  margin-top: var(--space-6);
  padding: var(--space-6) 0 var(--space-3);
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.95)),
    var(--color-ink);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2,
.site-footer h3 {
  color: var(--color-white);
}

.footer-grid {
  grid-template-columns: 1.05fr 0.7fr 0.7fr 0.9fr 1fr;
  align-items: start;
}

.footer-brand,
.footer-section,
.footer-legal,
.footer-hours,
.footer-map {
  display: grid;
  gap: 1rem;
}

.footer-logo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.6rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.footer-copy {
  display: grid;
  gap: 0.85rem;
}

.footer-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer .location-card {
  min-height: 260px;
  background:
    radial-gradient(circle at top right, rgba(182, 122, 103, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.site-footer .location-card::before {
  opacity: 0.12;
}

.site-footer .location-card::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14) 0 40%, transparent 41%),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.05);
}

.site-footer .location-pills span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.site-footer .button {
  background: var(--color-white);
  color: var(--color-ink);
}

.site-footer .button-ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.footer-links {
  display: grid;
  gap: 0.72rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  background: #25d366;
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(249, 243, 238, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.mobile-cta .button {
  flex: 1 1 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .testimonial-grid,
  .editorial-points,
  .ritual-grid,
  .channel-grid,
  .page-preview-grid,
  .home-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.52fr);
  }

  .experience-shell,
  .proof-layout,
  .contact-layout,
  .booking-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .split-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    align-items: center;
  }

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

  .service-card--featured {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .service-card--featured .service-card-media img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .service-detail-grid,
  .testimonial-grid,
  .page-preview-grid,
  .home-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 959px) {
  .footer-grid,
  .split-grid,
  .experience-shell,
  .proof-layout,
  .contact-layout,
  .booking-layout,
  .legal-stack,
  .booking-options {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(249, 243, 238, 0.98);
    box-shadow: var(--shadow-strong);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    position: relative;
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 719px) {
  :root {
    --space-6: 3.5rem;
    --space-7: 4.25rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .hero-shell {
    min-height: 680px;
    padding: 1.35rem;
  }

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

  .gallery-card--wide {
    grid-column: auto;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

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

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