/* ============================================================
   AlpineGold Spa & Boutique — shared stylesheet
   Warm California-mountain aesthetic · mobile-first
   ============================================================ */

:root {
  --gold:        #c79a4b;   /* honey gold */
  --gold-deep:   #a9803a;
  --sage:        #6e7d5e;   /* mountain forest (matches logo) */
  --sage-deep:   #4f5b40;
  --cream:       #f7f2e9;   /* warm paper */
  --cream-2:     #efe7d6;
  --ink:         #2c2722;   /* warm charcoal */
  --ink-soft:    #5a534a;
  --white:       #fffdf8;
  --line:        #e3d9c6;
  --shadow:      0 18px 50px -20px rgba(44,39,34,.28);
  --radius:      18px;
  --max:         1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 400;
  padding: 16px 34px;
  border-radius: 100px;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold { background: var(--ink); color: var(--cream); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }
/* Header CTA: gold pill so it stands out on the light nav bar */
.nav-cta .btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 500; }
.nav-cta .btn-gold:hover { background: var(--gold-deep); color: var(--cream); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,242,233,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; max-width: var(--max); margin: 0 auto;
}
.brand {
  font-family: var(--serif); font-size: 1.5rem; letter-spacing: .04em;
  display: flex; align-items: baseline; gap: 8px; white-space: nowrap;
}
.brand b { font-weight: 600; color: var(--gold-deep); }
.brand span { font-family: var(--sans); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-soft); }
.brand-logo-link { display: inline-flex; align-items: center; }
.brand-logo { height: 94px; width: auto; display: block; }
@media (max-width: 900px) { .brand-logo { height: 64px; } }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 400; color: var(--ink-soft); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.6rem; color: var(--ink); line-height: 1; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 0; max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 520px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; width: 100%; font-size: .9rem; }
  .nav-links .nav-cta { margin: 10px 24px 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,21,17,.50) 0%, rgba(25,21,17,.40) 45%, rgba(25,21,17,.72) 100%);
}
.hero-inner { text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero .eyebrow { color: #f0d49a; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 18px 0 20px; font-weight: 500; }
.hero p { font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; font-weight: 300; }

/* ---------- Page banner (interior pages) ---------- */
.banner {
  position: relative; min-height: 44vh; display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
}
.banner::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(30,26,22,.15), rgba(30,26,22,.6)); }
.banner-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.banner-inner { position: relative; z-index: 2; padding-bottom: 46px; }
.banner h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-top: 10px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 14px 0 16px; }
.section-head p { color: var(--ink-soft); }
.bg-cream2 { background: var(--cream-2); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-sage { background: var(--sage); color: var(--white); }

/* ---------- Service cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); }
.card-img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.7rem; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; flex: 1; }
.card-link {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold-deep); font-weight: 400;
}
.card-link:hover { color: var(--ink); }

/* ---------- Menu (price list) ---------- */
.menu { max-width: 760px; margin: 0 auto; }
.menu-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.menu-row h3 { font-size: 1.5rem; }
.menu-price { font-family: var(--serif); font-size: 1.35rem; color: var(--gold-deep);
  white-space: nowrap; font-weight: 500; }
.menu-item p { color: var(--ink-soft); font-size: .95rem; margin-top: 8px; max-width: 600px; }
.menu-note { font-size: .85rem; color: var(--ink-soft); font-style: italic; margin-top: 6px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.split-text { padding: 64px 56px; }
.split-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 14px 0 18px; }
.split-text p { color: var(--ink-soft); margin-bottom: 16px; }
@media (max-width: 860px) { .split-text { padding: 48px 28px; } }

/* ---------- Prose ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--ink-soft); margin-bottom: 20px; font-size: 1.05rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; opacity: .85; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold-deep); display: block; margin-bottom: 4px; }
.contact-list .val { font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 64px 0 32px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand { color: var(--cream); }
.footer-brand p { color: rgba(247,242,233,.6); font-size: .9rem; margin-top: 12px; max-width: 280px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; font-weight: 400; }
.footer-col a { display: block; color: rgba(247,242,233,.75); font-size: .92rem;
  margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { padding-top: 24px; font-size: .8rem; color: rgba(247,242,233,.5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
