/*
Theme Name: The Aura Spa Custom Site V2
Theme URI: https://theauradayspa.com/
Author: Nasce Studio
Description: Custom single-page theme for The Aura Spa.
Version: 1.0.1
Text Domain: aura-spa
*/


:root {
  --bg-main: #F8F5EF;
  --bg-soft: #EDE5D8;
  --bg-card: #FDFAF4;
  --bg-card-hover: #F4EAD8;
  --bg-footer: #2E2219;

  --brown: #3D2F24;
  --brown-mid: #5C4033;
  --brown-light: #8A6E5C;

  --gold: #C4A97D;
  --gold-light: #D9C49A;
  --gold-mist: rgba(196,169,125,.12);

  --sage: #4A5E3A;
  --sage-light: #617A4A;
  --sage-mist: rgba(74,94,58,.1);

  --line: rgba(61,47,36,.12);
  --line-gold: rgba(196,169,125,.22);

  --text-primary: #2A1F16;
  --text-secondary: #6B5444;
  --text-muted: #9E816D;
  --text-faint: #C4B0A2;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  --r: 7px;

  --shadow-card: 0 2px 20px rgba(61,47,36,.07), 0 1px 0 rgba(61,47,36,.05);
  --shadow-card-h: 0 16px 60px rgba(61,47,36,.14), 0 2px 0 rgba(196,169,125,.15);
  --shadow-modal: 0 32px 120px rgba(20,12,6,.55), 0 4px 24px rgba(20,12,6,.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

.container {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 7vw, 84px);
  line-height: .95;
  letter-spacing: .015em;
  color: var(--text-primary);
}
.display-title em {
  font-style: italic;
  color: var(--sage);
}

.body-text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.95;
  color: var(--text-secondary);
  font-weight: 300;
}



.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: clamp(12px, 2vw, 20px) clamp(20px, 4vw, 44px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(253,250,244,.05);
  transition: background .45s, backdrop-filter .45s, box-shadow .45s;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: transparent;
  backdrop-filter: blur(8px);
  box-shadow: none;
  border-bottom: 1px solid rgba(61,47,36,.07);
}
.nav-logo img {
  height: 120px;
  width: auto;
  max-width: min(300px, 58vw);
  object-fit: contain;
  transition: transform .3s ease;
}
.nav-logo:hover img { transform: scale(1.04); }
.nav-tag {
  font-size: clamp(9px, 1.1vw, 10px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(253,250,244,.62);
  font-weight: 400;
  margin-left: clamp(14px, 2vw, 24px);
  transition: color .4s;
}
.nav.scrolled .nav-tag { color: var(--brown-mid); }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(180px, 18vw, 220px) clamp(20px, 5vw, 48px) clamp(64px, 10vw, 110px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.68) 28%,
      rgba(0,0,0,0.32) 48%,
      rgba(0,0,0,0) 65%
    );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(253,250,244,.12);
  border-radius: var(--r);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(46px, 12vw, 136px);
  line-height: .88;
  letter-spacing: .01em;
  color: #FDF9F2;
  margin-bottom: clamp(20px, 3vw, 32px);
  animation: heroUp .95s cubic-bezier(.16,1,.3,1) both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.85;
  color: rgba(253,250,244,.88);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: clamp(28px, 4vw, 48px);
  animation: heroUp .95s .16s cubic-bezier(.16,1,.3,1) both;
}


.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: heroUp .95s .3s cubic-bezier(.16,1,.3,1) both;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease, color .3s ease;
  will-change: transform;
  touch-action: pan-y;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown);
  box-shadow: 0 4px 24px rgba(196,169,125,.32);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(196,169,125,.4);
}
.btn-outline {
  border: 1.5px solid rgba(253,250,244,.38);
  color: #FDF9F2;
  background: rgba(20,14,8,.28);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(253,250,244,.1);
  border-color: #FDF9F2;
  transform: translateY(-3px) scale(1.02);
}
.btn-sage {
  background: var(--sage);
  color: #FDF9F2;
  border-radius: var(--r);
  box-shadow: 0 4px 24px rgba(74,94,58,.28);
  border: 1.5px solid var(--sage);
  width: 100%;
  min-height: 58px;
  font-size: clamp(10px, 1.3vw, 12px);
  letter-spacing: .25em;
}
.btn-sage:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(74,94,58,.36);
}
.btn:active { transform: translateY(0) scale(.98); }

.section { padding: clamp(80px, 10vw, 120px) 0; }

.about {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,169,125,.07), transparent 65%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr .8fr; }
}
.about-text .display-title { margin-bottom: 28px; }
.about-text .body-text { margin-bottom: 22px; }
.about-text .body-text + .body-text {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  box-shadow: 0 8px 48px rgba(61,47,36,.1);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
}

.atmosphere {
  background: var(--bg-main);
  overflow: hidden;
}

.atm-carousel {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
}

.atm-viewport {
  overflow: hidden;
  border-radius: var(--r);
}

.atm-track {
  display: flex;
  gap: clamp(12px, 1.6vw, 18px);
  transition: transform 1.95s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.atm-item {
  position: relative;
  flex: 0 0 calc((100% - clamp(24px, 3.2vw, 36px)) / 3);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  background: var(--bg-soft);
  box-shadow: 0 8px 34px rgba(61,47,36,.07);
}

.atm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .7s ease;
  filter: saturate(.9) brightness(.97);
}

.atm-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) brightness(1.01);
}

.atm-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(46,34,25,.12),
      rgba(46,34,25,0) 42%
    );
  opacity: 0;
  transition: opacity .55s ease;
}

.atm-item:hover .atm-overlay { opacity: 1; }

.atm-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196,169,125,.28);
  background: rgba(253,250,244,.72);
  backdrop-filter: blur(10px);
  color: var(--brown);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}

.atm-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: var(--bg-card);
  border-color: var(--gold);
  color: var(--sage);
}

.atm-prev { left: -58px; }
.atm-next { right: -58px; }

.atm-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(22px, 3vw, 34px);
}

.atm-dot {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(196,169,125,.34);
  cursor: pointer;
  transition: width .45s ease, background .45s ease, opacity .45s ease;
}

.atm-dot.active {
  width: 22px;
  background: var(--gold);
}

@media (max-width: 1180px) {
  .atm-prev { left: 10px; }
  .atm-next { right: 10px; }
}

@media (max-width: 900px) {
  .atm-item {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 640px) {
  .atm-item {
    flex-basis: 100%;
  }

  .atm-arrow {
    display: none;
  }
}

.services {
  background: var(--bg-soft);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--line-gold));
}
.section-head {
  margin-bottom: clamp(52px, 7vw, 88px);
  max-width: 620px;
}
.section-head .display-title { margin-bottom: 16px; }
.services-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.s-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.s-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: var(--shadow-card-h);
  border-color: var(--line-gold);
}
.s-card-img {
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-soft);
}
.s-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(.9) brightness(.97);
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .45s ease;
  border-radius: var(--r);
}
.s-card:hover .s-card-img img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(1.01);
}
.s-card-body {
  padding: clamp(18px, 2.5vw, 26px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.s-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--brown);
  margin-bottom: 10px;
  transition: color .28s ease;
}
.s-card:hover h3 { color: var(--sage); }
.s-teaser {
  font-size: clamp(12px, 1.3vw, 13px);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 14px;
  font-style: italic;
}
.s-price-list {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
}
.s-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: clamp(11px, 1.3vw, 13px);
  color: var(--text-muted);
  border-bottom: 1px solid rgba(61,47,36,.05);
}
.s-price-row:last-child { border-bottom: none; }
.s-price-row strong {
  color: var(--sage);
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 15px);
}
.s-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-gold);
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .25s ease, color .25s ease;
}
.s-cta::after {
  content: "→";
  font-size: 13px;
  transition: transform .25s ease;
}
.s-card:hover .s-cta {
  gap: 12px;
  color: var(--sage);
}
.s-card:hover .s-cta::after { transform: translateX(4px); }

.team {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,169,125,.08), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.team-box {
  max-width: 980px;
  margin-inline: auto;
  background:
    radial-gradient(circle at top center, rgba(196,169,125,.07), transparent 42%),
    linear-gradient(180deg, rgba(253,250,244,.98), rgba(248,245,239,.94));
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  padding: clamp(38px, 6vw, 74px) clamp(24px, 5vw, 62px);
  text-align: center;
  position: relative;
  box-shadow:
    0 18px 70px rgba(61,47,36,.08),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.team-box::before,
.team-box::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(196,169,125,.35);
  border-style: solid;
}

.team-box::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.team-box::after {
  bottom: 18px;
  right: 18px;
  border-width: 0 1px 1px 0;
}

.team-box .display-title {
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.team-intro {
  max-width: 600px;
  margin: 0 auto clamp(32px, 4vw, 46px);
  color: var(--text-secondary);
  font-size: clamp(13px, 1.35vw, 15px);
  line-height: 1.9;
  font-weight: 300;
}

.team-names {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  margin-top: 6px;
}

@media (min-width: 700px) {
  .team-names {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

.team-item {
  padding: clamp(22px, 2.7vw, 32px);
  border: 1px solid rgba(61,47,36,.10);
  border-radius: var(--r);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.34),
      rgba(237,229,216,.66)
    );
  position: relative;
  overflow: hidden;
  transition:
    transform .38s ease,
    border-color .38s ease,
    background .38s ease,
    box-shadow .38s ease;
}

.team-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 2.7vw, 32px);
  width: 72px;
  height: 1px;
  background: var(--gold);
  opacity: .48;
}

.team-item:hover {
  transform: translateY(-4px);
  border-color: rgba(196,169,125,.32);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.52),
      rgba(244,234,216,.76)
    );
  box-shadow: 0 12px 38px rgba(61,47,36,.07);
}

.team-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.team-desc {
  color: var(--text-muted);
  font-size: clamp(12px, 1.2vw, 13px);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.team-members {
  color: var(--text-secondary);
  font-size: clamp(13px, 1.35vw, 14px);
  line-height: 2;
  letter-spacing: .06em;
  font-weight: 300;
}

.faq { background: var(--bg-soft); }
.faq-wrap {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--brown);
  font-weight: 400;
  letter-spacing: .01em;
}
.faq-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-mist);
}
.faq-answer {
  padding: 0 clamp(20px, 3vw, 28px) clamp(22px, 3vw, 28px);
  color: var(--text-secondary);
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.9;
  font-weight: 300;
}




.reviews {
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 82vw);
  height: min(380px, 48vw);
  background:
    radial-gradient(circle, rgba(196,169,125,.10), transparent 64%),
    radial-gradient(circle at 70% 40%, rgba(109,128,92,.08), transparent 62%);
  filter: blur(22px);
  pointer-events: none;
}

.reviews-slider {
  position: relative;
  max-width: 940px;
  min-height: 340px;
  margin-inline: auto;
  overflow: hidden;
  background: rgba(250,247,241,.56);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,169,125,.14);
  box-shadow: 0 18px 50px rgba(18,14,10,.08);
}

.reviews-track {
  position: relative;
  min-height: 340px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(38px, 6vw, 78px);
  text-align: center;

  opacity: 0;
  transform: translateX(42px);

  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1);

  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-card blockquote {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: .01em;
  color: var(--brown);
  font-style: italic;
  font-weight: 300;
}

.review-card cite {
  margin-top: clamp(22px, 3vw, 34px);
  font-style: normal;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.reviews-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(196,169,125,.32);

  transition:
    width .4s ease,
    background .4s ease,
    opacity .4s ease;
}

.reviews-dot.is-active {
  width: 24px;
  background: var(--gold);
}

@media (max-width: 720px) {
  .reviews-slider {
    min-height: 420px;
  }

  .reviews-track {
    min-height: 420px;
  }

  .review-card blockquote {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
  }
}

.cta-section {
  background: var(--bg-main);
  padding-top: 0;
}
.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 86px) clamp(22px, 5vw, 64px);
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  background:
    radial-gradient(circle at top right, rgba(196,169,125,.17), transparent 38%),
    linear-gradient(145deg, rgba(253,250,244,.98), rgba(244,234,216,.9));
  box-shadow: 0 10px 60px rgba(61,47,36,.08), inset 0 1px 0 rgba(255,255,255,.6);
  text-align: center;
}
.cta-box .display-title {
  font-size: clamp(34px, 6vw, 72px);
  margin-bottom: 24px;
}
.cta-box .body-text {
  max-width: 620px;
  margin: 0 auto 34px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px clamp(40px, 6vw, 64px);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
}
.divider::before { background: linear-gradient(to right, transparent, var(--line-gold)); }
.divider::after { background: linear-gradient(to left, transparent, var(--line-gold)); }
.divider-gem {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: .5;
}

.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(196,169,125,.12);
  padding: clamp(56px, 8vw, 90px) 0 clamp(32px, 4vw, 52px);
}
.footer-top {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  margin-bottom: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid rgba(253,250,244,.08);
}
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.2fr .9fr .9fr 1fr;
    align-items: start;
  }
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: .015em;
  color: #FDF9F2;
  margin-bottom: 10px;
}
.footer-brand p {
  color: rgba(253,250,244,.45);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.85;
  font-weight: 300;
}
.footer-col h4 {
  font-size: clamp(9px, 1vw, 10px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(196,169,125,.85);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col p,
.footer-col a {
  color: rgba(253,250,244,.45);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 2.1;
  font-weight: 300;
  display: block;
  transition: color .22s ease;
}
.footer-col a:hover { color: #FDF9F2; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: clamp(10px, 1.1vw, 11px);
  color: rgba(253,250,244,.2);
  letter-spacing: .07em;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16,10,5,.78);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--bg-card);
  width: 100%;
  max-width: 780px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  transform: translateY(28px) scale(.975);
  transition: transform .42s cubic-bezier(.16,1,.3,1);
  scrollbar-width: thin;
  scrollbar-color: var(--line-gold) transparent;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 18px 22px 0;
  background: linear-gradient(to bottom, var(--bg-card) 75%, transparent);
  z-index: 10;
}
.modal-close-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  cursor: pointer;
  color: var(--text-muted);
  font-size: 17px;
  font-family: var(--font-body);
  transition: background .25s, color .25s, border-color .25s;
}
.modal-close-btn:hover {
  background: var(--bg-soft);
  color: var(--brown);
  border-color: var(--gold);
}
.modal-body {
  padding: clamp(12px, 4vw, 48px);
  padding-top: 0;
}
.modal-eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-eyebrow::before { background: var(--gold); }
.modal-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 6vw, 58px);
  line-height: .9;
  letter-spacing: .015em;
  color: var(--brown);
  margin-bottom: clamp(22px, 3vw, 36px);
}
.modal-title em {
  font-style: italic;
  color: var(--sage);
  display: block;
}
.modal-desc { margin-bottom: clamp(24px, 3.5vw, 40px); }
.modal-desc p {
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 2;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 18px;
}
.modal-desc p:last-child { margin-bottom: 0; }
.modal-benefits {
  padding: clamp(20px, 3vw, 32px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.modal-benefits h4 {
  font-size: clamp(9px, 1.1vw, 10px);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.modal-benefits ul { list-style: none; }
.modal-benefits li {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  padding: 7px 0;
  border-bottom: 1px solid rgba(61,47,36,.07);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.modal-benefits li:last-child { border-bottom: none; }
.modal-benefits li::before {
  content: "◇";
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}
.modal-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.price-tag {
  padding: 10px 20px;
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 90px;
}
.price-tag span:first-child {
  font-size: clamp(9px, 1.1vw, 10px);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-tag span:last-child {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--sage);
  letter-spacing: .01em;
}
.modal-book {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-hours {
  text-align: center;
  color: var(--brown-mid);
  background: var(--gold-mist);
  border: 1px solid var(--line-gold);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.modal-book .book-label {
  font-size: clamp(9px, 1.1vw, 10px);
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-d1 { transition-delay: .1s; }
  .reveal-d2 { transition-delay: .2s; }
  .reveal-d3 { transition-delay: .3s; }
  .reveal-d4 { transition-delay: .4s; }
  .reveal-d5 { transition-delay: .5s; }
}


.s-card,
.s-card img,
.atm-item,
.atm-item img,
.img-frame,
.img-frame img,
.team-box,
.team-item,
.review-card,
.cta-box,
.modal,
.modal-benefits,
.price-tag,
.faq-item,
.btn,
.modal-close-btn {
  border-radius: var(--r);
}


.s-card,
.s-card img,
.s-card-img,
.atm-item,
.atm-item img,
.img-frame,
.img-frame img,
.team-box,
.team-item,
.review-card,
.reviews-slider,
.cta-box,
.modal,
.modal-benefits,
.price-tag,
.faq-item,
.btn,
.modal-close-btn {
  border-radius: var(--r);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .nav-logo img {
    height: 82px;
    max-width: min(220px, 66vw);
  }
  .hero {
    align-items: center;
    padding-top: 155px;
    padding-bottom: 72px;
  }

  .nav-logo img {
    height: 82px;
    max-width: min(220px, 66vw);
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 68px);
    line-height: .9;
  }
  .hero p {
    max-width: 100%;
  }
  .display-title {
    font-size: clamp(34px, 12vw, 56px);
    line-height: .98;
  }
  .btn-group {
    width: 100%;
    flex-direction: column;
  }
  .btn-group .btn,
  .btn {
    width: 100%;
  }
  .nav {
    padding-inline: 18px;
  }
  .nav-tag {
    display: none;
  }
  .team-item {
    text-align: center;
  }
  .modal-overlay {
    align-items: stretch;
    padding: 0;
  }
  .modal {
    max-height: 100dvh;
    height: 100dvh;
    border-left: 0;
    border-right: 0;
  }
  .modal-body {
    padding-inline: 18px;
    padding-bottom: 32px;
  }
}



  .reviews-section {
    background: var(--bg-soft);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
  }

  .reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .review-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .review-text {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 4vw, 32px);
    font-style: italic;
    color: #3D2F24;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .review-author {
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C4A97D;
  }

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

  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(196, 169, 125, 0.3);
    transition: all 0.3s;
  }

  .dot.active {
    background: #C4A97D;
    transform: scale(1.3);
  }

/* WordPress theme isolation */
html, body { margin: 0 !important; padding: 0 !important; }
body.aura-theme-body { background: var(--bg-main); }
#wpadminbar { position: fixed; }
