:root {
  --ivory: #f7f1e8;
  --cream: #ebe0d1;
  --sand: #c49a63;
  --sand-light: #d8b482;
  --espresso: #342217;
  --brown: #60452f;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(35, 22, 13, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--espresso);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.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;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem clamp(1.25rem, 5vw, 5.5rem);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.monogram {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  line-height: .75;
  color: var(--sand-light);
  letter-spacing: -.18em;
  padding-right: .15em;
}
.brand-text { display: grid; gap: .05rem; }
.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: .05em;
}
.brand-text span {
  color: var(--sand-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: .22em;
  text-align: center;
}

nav { display: flex; align-items: center; gap: clamp(1.3rem, 3vw, 3rem); }
nav a {
  position: relative;
  padding: .4rem 0;
  text-decoration: none;
  font-size: .95rem;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--sand-light);
  transition: right .2s ease;
}
nav a:hover::after, nav a:focus-visible::after { right: 0; }

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(30,20,12,.2);
  backdrop-filter: blur(8px);
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 1.2rem;
  height: 1px;
  margin: .25rem auto;
  background: white;
}

.hero {
  position: relative;
  min-height: min(850px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: url("/assets/spa-hero.jpg") center 45% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43,27,16,.86) 0%, rgba(50,31,17,.66) 34%, rgba(45,28,16,.18) 70%, rgba(45,28,16,.08) 100%),
    linear-gradient(180deg, rgba(25,16,10,.42), transparent 32%, rgba(25,16,10,.22));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(42rem, 88vw);
  margin-left: clamp(1.5rem, 8vw, 8.5rem);
  padding: 8.5rem 0 4rem;
}
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--sand-light);
  font-size: .78rem;
  letter-spacing: .22em;
}
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
h1 {
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: .83;
  letter-spacing: -.02em;
  text-shadow: 0 5px 28px rgba(20,12,7,.2);
}
.accent-line {
  width: 3rem;
  height: 2px;
  margin: 1.6rem 0 1.35rem;
  background: var(--sand-light);
}
.hero-lead, .hero-message {
  margin: 0;
  max-width: 34rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  line-height: 1.2;
}
.hero-message { margin-top: .8rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3.5rem;
  padding: .85rem 1.4rem;
  border-radius: .45rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--sand);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(39,23,12,.24);
}
.button-primary:hover { background: #b88b51; }
.button-secondary {
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(30,20,12,.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.coming-soon {
  margin: 1.55rem 0 0;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}

.info-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1200px, calc(100% - 3rem));
  margin: -2.5rem auto 0;
  border-radius: .8rem;
  overflow: hidden;
  background: rgba(255,253,248,.94);
  box-shadow: var(--shadow);
}
.info-card {
  min-height: 17rem;
  padding: 2.5rem;
  border-right: 1px solid rgba(96,69,47,.1);
}
.info-card:last-child { border-right: 0; }
.card-icon {
  color: var(--sand);
  font-size: 2rem;
}
.info-card h2 {
  margin: .35rem 0 .9rem;
  font-size: 2rem;
}
.info-card h2::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin-top: .35rem;
  background: var(--sand);
}
.info-card p { color: #625247; }
.info-card a {
  color: #a97843;
  text-decoration: none;
  font-weight: 500;
}
.phone {
  display: inline-block;
  margin-top: .25rem;
  font-size: 1.18rem;
}
.subtle, .payment-note { font-size: .9rem; }

footer {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #715e50;
  font-size: .86rem;
}
footer p { margin: .2rem; }
.disclosure { opacity: .72; }

@media (max-width: 820px) {
  .site-header { padding: 1.25rem; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-text span { font-size: .75rem; }

  .menu-button { display: block; color: white; }
  nav {
    position: absolute;
    top: 5.4rem;
    right: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(18rem, calc(100vw - 2.4rem));
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: .75rem;
    background: rgba(43,27,16,.93);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }
  nav.open { display: flex; }

  .hero {
    min-height: 100svh;
    background-position: 58% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(43,27,16,.84), rgba(43,27,16,.25)),
      linear-gradient(180deg, rgba(31,19,11,.5), transparent 30%, rgba(31,19,11,.35));
  }
  .hero-content {
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
    padding-top: 8rem;
    align-self: end;
    padding-bottom: 4rem;
  }
  h1 { font-size: clamp(3.6rem, 16vw, 5.5rem); }
  .hero-lead, .hero-message { font-size: 1.5rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }

  .info-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 2rem);
    margin-top: 1rem;
  }
  .info-card {
    min-height: auto;
    padding: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(96,69,47,.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

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

.payment-list {
  margin: .8rem 0 0;
  padding-left: 1.2rem;
  color: #625247;
}

.payment-list li {
  margin: .35rem 0;
}

@media (max-width: 1080px) and (min-width: 821px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card {
    border-bottom: 1px solid rgba(96, 69, 47, .1);
  }
}
