/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:      #f5f0e8;
  --parchment:  #ede5d6;
  --warm-tan:   #c9b99a;
  --walnut:     #3a2e24;
  --bark:       #6b5040;
  --spa-blue:   #4a7b8c;
  --spa-blue-l: #6ba0b0;
  --spa-blue-d: #2f5a68;
  --white:      #faf9f6;
  --shadow:     rgba(58,46,36,.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  /* --section-pad: clamp(5rem, 10vw, 8rem); */
  --section-pad: clamp(4rem, 8vw, 6rem);
  --max: 1160px;

  --nav-h: 70px;
  --border: rgba(122, 92, 62, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--walnut);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,185,154,.35);
  transition: padding .3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--spa-blue-d);
}
.nav-logo span { font-style: italic; font-weight: 300; color: var(--bark); }

.nav-links {
  display: flex; 
  gap: 2.4rem; 
  list-style: none;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bark);
  transition: color .2s;
}

.nav-links a:hover { color: var(--spa-blue); }

.nav-cta {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border: 1.5px solid var(--spa-blue);
  color: var(--spa-blue);
  border-radius: 4px;
  transition: background .2s, color .2s;
}

.nav-cta:hover { background: var(--spa-blue); color: var(--white); }

/* Mobile Hamburger */
.nav-toggle {
  outline: none;
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--spa-blue-d);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Overlay behind the menu */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 198; /* just below nav-mobile's 199 */
}

.nav-overlay.open {
  display: block;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--spa-blue-d);
  transition: color 0.2s;
}

.nav-mobile .nav-cta {
  margin-top: 1.25rem;
  text-align: center;
  justify-content: center;
  background: var(--spa-blue);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border: 1.5px solid var(--spa-blue);
  border-radius: 4px;
  border-bottom: none;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;

  padding-top: clamp(5rem, 10vw, 8rem);
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 4rem 6rem clamp(2rem, 6vw, 6rem);
  padding-top: calc(var(--nav-h) + 4rem);
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--spa-blue);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--walnut);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}
.hero-h1 em { font-style: italic; color: var(--spa-blue); }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bark);
  max-width: 38ch;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0;
  animation: fadeUp .8s .65s forwards;
}

.hero-image-wrap {
  position: relative; overflow: hidden;
}
.hero-image-wrap img {
  height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.04);
  animation: heroZoom 8s ease-in-out forwards;
}
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

/* decorative vertical text */
.hero-vert {
  position: absolute;
  bottom: 3rem; right: -2.2rem;
  transform: rotate(90deg);
  transform-origin: bottom right;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--warm-tan);
  white-space: nowrap;
}

.btn-primary {
  display: inline-block;
  background: var(--spa-blue);
  color: var(--white);
  padding: .9rem 2.4rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none; 
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--spa-blue-d); transform: translateY(-1px); }

.btn-ghost {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark);
  border-bottom: 1px solid var(--warm-tan);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--spa-blue); border-color: var(--spa-blue); }

/* ─── SECTION COMMON ─────────────────────────────────────── */
section { padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem); }

.section-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--spa-blue);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--walnut);
  max-width: 22ch;
}
.section-title em { font-style: italic; color: var(--bark); }

.divider {
  width: 3rem; height: 1px;
  background: var(--warm-tan);
  margin: 1.8rem 0;
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services { background: var(--white); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap; gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--warm-tan);
  border: 1.5px solid var(--warm-tan);
}

.service-card {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--spa-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { background: var(--parchment); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: .6rem;
  transition: color .2s;
}
.service-card:hover .service-num { color: var(--spa-blue-l); }

.service-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .6rem;
}
.service-desc {
  font-size: .88rem;
  color: var(--bark);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}
.service-price {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--spa-blue);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 3rem;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative; z-index: 2;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  z-index: 3;
}
.about-bg-box {
  position: absolute;
  top: 2rem; right: 2rem; bottom: 0; left: -1.5rem;
  background: var(--parchment);
  z-index: 1;
}

.about-text p {
  font-size: .95rem;
  color: var(--bark);
  margin-bottom: 1.2rem;
  max-width: 50ch;
}

.about-stats {
  display: flex; gap: 3rem; margin-top: 2.4rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--spa-blue);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bark);
  margin-top: .3rem;
}

/* ─── GALLERY ────────────────────────────────────────────── */
#gallery {
  background: var(--walnut);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
#gallery .section-label { color: var(--warm-tan); }
#gallery .section-title { color: var(--cream); }
#gallery .section-title em { color: var(--warm-tan); }
#gallery .divider { background: var(--bark); }

/* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: .8rem;
  margin-top: 3.5rem;
} */

.gallery-item { overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover img { transform: scale(1.05); }
/* 
.gi-1 { grid-column: 1 / 6;  grid-row: 1; aspect-ratio: 4/3; }
.gi-2 { grid-column: 6 / 9;  grid-row: 1; aspect-ratio: 3/4; }
.gi-3 { grid-column: 9 / 13; grid-row: 1; aspect-ratio: 4/3; }
.gi-4 { grid-column: 1 / 5;  grid-row: 2; aspect-ratio: 4/3; }
.gi-5 { grid-column: 5 / 10; grid-row: 2; aspect-ratio: 16/9; }
.gi-6 { grid-column: 10 / 13;grid-row: 2; aspect-ratio: 3/4; } */

.gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4/3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { background: var(--parchment); }

.testi-header { margin-bottom: 4rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--cream);
  padding: 2.4rem;
  border-bottom: 3px solid var(--spa-blue);
  position: relative;
  /* text-align: center; */
}

.testi-quote {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--warm-tan);
  line-height: .8;
  margin-bottom: .8rem;
}

.testi-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--walnut);
  margin-bottom: 1.6rem;
}

.testi-author {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--spa-blue);
}

.stars {
  font-size: .7rem;
  color: var(--spa-blue-l);
  letter-spacing: .1em;
  margin-bottom: .6rem;
}

/* ─── BOOKING / CONTACT ──────────────────────────────────── */
#contact {
  background: var(--spa-blue-d);
  color: var(--cream);
  /* padding-top: clamp(3rem, 6vw, 5rem); */
}
#contact .section-label { 
  color: var(--warm-tan);
}
#contact .section-title { 
  color: var(--cream); 
  max-width: 28ch; 
}
#contact .section-title em { color: var(--warm-tan); }
#contact .divider { 
  background: var(--spa-blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 2rem;
  align-items: start;
}

.contact-info p:not(.section-label) {
  font-size: .9rem;
  color: rgba(245,240,232,.7);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.5rem;
}

.detail-accent {
  width: 2px;
  align-self: stretch;
  background: var(--warm-tan);
  flex-shrink: 0;
}

.detail-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--spa-blue-l);
  margin-bottom: .2rem;
}
.detail-value { font-size: .92rem; color: var(--cream); }

/* Contact Form */
input, textarea, select {
  border-radius: 4px;
}

.contact-form {
  display: flex; 
  flex-direction: column; 
  gap: 1.2rem;
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1.2rem; 
}

.field-group { 
  display: flex; 
  flex-direction: column; 
  gap: .4rem; 
}

.field-group label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--spa-blue-l);
}

.field-group input,
.field-group select,
.field-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(107,160,176,.3);
  color: var(--cream);
  padding: .85rem 1rem;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(245,240,232,.3); }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--spa-blue-l); }
.field-group select option { background: var(--spa-blue-d); }
.field-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  background: var(--cream);
  color: var(--spa-blue-d);
  border: none;
  padding: 1rem 2.8rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background .2s, transform .15s;
  border-radius: 4px;
}
.form-submit:hover { background: var(--parchment); transform: translateY(-1px); }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--walnut);
  color: rgba(245,240,232,.6);
  padding: 1.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 300;
}
.footer-logo em { font-style: italic; color: var(--warm-tan); }

.footer-copy { font-size: .75rem; }

footer > a {
  font-size: .75rem;
  color: rgba(245,240,232,.6);
  transition: color .2s;
}

footer > a:hover { color: var(--cream); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  nav { 
    padding: 1.2rem 1.6rem;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
  }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 3rem 2rem 3rem; }
  .hero-image-wrap { height: 55vw; }
  .hero-image-wrap::after { background: linear-gradient(to bottom, var(--cream) 0%, transparent 25%); }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-ghost {
    padding-bottom: 4px;
  }

  #about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { padding-right: 2rem; padding-bottom: 2rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 {
    grid-column: auto; grid-row: auto; aspect-ratio: 4/3;
  }

  .about-stats { gap: 2rem; }

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