/* ═══════════════════════════════════════════════════════════════
   ABSOLUTE HEAVEN SKIN CARE — "Porcelain & Botanical"
   Airy spa aesthetic: warm porcelain light, arch motifs, botanical
   linework, sage + blush + soft gold, serene motion.
   Type: Fraunces (display, italics) · Karla (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --porcelain:   #faf6f0;   /* page base */
  --cream:       #f3ecdf;   /* alt section */
  --linen:       #ece2d3;   /* borders, soft edges */
  --ink:         #3d3530;   /* warm espresso text */
  --ink-soft:    #7c6f64;   /* secondary text */
  --sage:        #8fa68e;   /* botanical accent */
  --sage-deep:   #5f7a62;   /* links, accents on light */
  --blush:       #d8a59a;   /* warm accent */
  --blush-soft:  #efdcd5;
  --gold:        #c9a36a;   /* fine lines, details */
  --white:       #fffdfa;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Karla", "Helvetica Neue", sans-serif;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 var(--gutter); }

/* ── Eyebrow label ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

/* ── Headings ───────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink); }

h1 {
  font-size: clamp(2.05rem, 6.5vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.9rem);
  line-height: 1.12;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 340;
  color: var(--sage-deep);
}

.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: var(--measure); }

p { max-width: var(--measure); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linen);
}

.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  max-width: 1120px; margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }

.brand svg { width: 58px; height: 36px; flex: none; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand-name em { font-style: italic; color: var(--sage-deep); }

.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.main-nav { display: flex; align-items: center; gap: 0.4rem; }

.main-nav > a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.main-nav > a:hover { color: var(--sage-deep); background: var(--cream); }

.main-nav > a[aria-current="page"] { color: var(--sage-deep); }

.nav-call {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  background: var(--sage-deep);
  border-radius: 999px;
  padding: 0.6rem 1.3rem !important;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(95, 122, 98, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.nav-call:hover { transform: translateY(-2px); background: #527055; box-shadow: 0 12px 28px rgba(95, 122, 98, 0.38); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--linen);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--porcelain);
    border-bottom: 1px solid var(--linen);
    padding: 0.75rem var(--gutter) 1.5rem;
    text-align: center;
  }
  .main-nav.open { display: flex; }
  .nav-call { margin-top: 0.75rem; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: var(--section) 0 calc(var(--section) * 0.9);
  overflow: hidden;
  text-align: center;
}

/* soft blooms of color floating behind */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  background: radial-gradient(circle, var(--blush-soft), transparent 65%);
  top: -28vmax; left: -18vmax;
  animation: bloom 18s ease-in-out infinite alternate;
}

.hero::after {
  background: radial-gradient(circle, rgba(143, 166, 142, 0.35), transparent 65%);
  bottom: -32vmax; right: -16vmax;
  animation: bloom 22s ease-in-out infinite alternate-reverse;
}

@keyframes bloom {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4vmax, 2vmax) scale(1.08); }
}

.hero .wrap { position: relative; z-index: 1; max-width: 880px; }

/* Kim's signature wings — the real logo, front and center */
.hero-logo {
  display: block;
  width: clamp(190px, 24vw, 260px);
  height: auto;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 10px 24px rgba(61, 53, 48, 0.18));
  animation: settle 1s var(--ease) both;
}

@keyframes settle {
  from { opacity: 0; transform: translateY(-14px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* wings ornament in CTA bands */
.cta-wings svg { width: 92px; height: auto; margin-bottom: 0.6rem; }

.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

.hero h1 { margin: 1.4rem 0 1.5rem; }

.hero .lead { margin: 0 auto; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.4rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-sage {
  background: var(--sage-deep); color: var(--white);
  box-shadow: 0 10px 26px rgba(95, 122, 98, 0.3);
}
.btn-sage:hover { transform: translateY(-3px); background: #527055; box-shadow: 0 16px 34px rgba(95, 122, 98, 0.4); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--gold);
  background: rgba(255, 253, 250, 0.6);
}
.btn-ghost:hover { transform: translateY(-3px); background: var(--white); border-color: var(--sage-deep); color: var(--sage-deep); }

/* est. line under hero CTAs */
.hero-est {
  max-width: none;
  margin-top: 3rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-est .star { color: var(--gold); padding: 0 0.8rem; }

/* ── Botanical sprig ornament ───────────────────────────────── */
.sprig { display: block; margin: 0 auto 1.2rem; width: 56px; height: auto; color: var(--sage); }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: var(--section) 0; position: relative; }

.section-cream {
  background: var(--cream);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .lead { margin: 1.1rem auto 0; }

/* ── Philosophy split (home) ────────────────────────────────── */
.philosophy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.phil-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 22px 22px 120px 22px;
  padding: 2.2rem 2rem;
  box-shadow: 0 2px 10px rgba(61, 53, 48, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.phil-card:nth-child(2) { border-radius: 22px 22px 22px 120px; }

.phil-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(61, 53, 48, 0.1); }

.phil-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.phil-card h3 em { font-style: italic; color: var(--blush); }

.phil-card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ── Service categories (home preview + services page) ─────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 160px 160px 22px 22px;  /* arch! */
  padding: 2.6rem 1.7rem 1.9rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.svc-card::before { /* inner arch line */
  content: "";
  position: absolute; inset: 10px 10px auto;
  height: 150px;
  border: 1px solid var(--blush-soft);
  border-bottom: 0;
  border-radius: 150px 150px 0 0;
  pointer-events: none;
  transition: border-color 0.3s;
}

.svc-card:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(61, 53, 48, 0.12); border-color: var(--sage); }
.svc-card:hover::before { border-color: var(--sage); }

.svc-card .svc-ico { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--sage-deep); }

.svc-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }

.svc-card p { font-size: 0.92rem; color: var(--ink-soft); }

.svc-card .svc-go {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Price menu (services page) ─────────────────────────────── */
.menu-section { max-width: 760px; margin: 0 auto 3.5rem; }

.menu-section:last-child { margin-bottom: 0; }

.menu-head {
  display: flex; align-items: baseline; gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.menu-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); white-space: nowrap; }

.menu-head::after { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }

.menu-item { padding: 0.85rem 0; border-bottom: 1px dotted var(--linen); }

.menu-item:last-child { border-bottom: 0; }

.menu-line {
  display: flex; align-items: baseline; gap: 0.8rem;
}

.menu-line .name {
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.menu-line .dots {
  flex: 1;
  border-bottom: 1px dotted var(--gold);
  opacity: 0.6;
  transform: translateY(-4px);
}

.menu-line .price {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--sage-deep);
  white-space: nowrap;
}

.menu-item .desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 0.3rem;
}

.menu-item .dur {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
}

/* simple list-style menu (waxing etc.) */
.menu-note {
  text-align: center;
  max-width: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 2.5rem;
}

/* ── About (portrait in arch) ───────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

@media (max-width: 760px) { .about-split { grid-template-columns: 1fr; } }

.arch-frame {
  position: relative;
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  border: 1px solid var(--linen);
  box-shadow: 0 24px 60px rgba(61, 53, 48, 0.16);
  background: var(--white);
  padding: 12px;
}

.arch-frame img {
  display: block;
  width: 100%; height: auto;
  border-radius: 999px 999px 14px 14px;
}

.arch-frame::after { /* gold inner line */
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 18px 18px;
  opacity: 0.55;
  pointer-events: none;
}

.about-body h2 { margin-bottom: 1.2rem; }

.about-body p { margin-bottom: 1rem; color: var(--ink-soft); }

.spec-list { list-style: none; margin: 1.4rem 0; }

.spec-list li {
  padding: 0.5rem 0 0.5rem 1.9rem;
  position: relative;
  color: var(--ink);
}

.spec-list li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
}

.spec-list li small { display: block; color: var(--ink-soft); font-size: 0.88rem; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  position: relative;
  text-align: center;
  padding: calc(var(--section) * 0.85) 0;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(216, 165, 154, 0.18), transparent 60%),
    var(--cream);
  border-top: 1px solid var(--linen);
  overflow: hidden;
}

.cta-band h2 { max-width: 22ch; margin: 0.6rem auto 1rem; }

.cta-band .lead { margin: 0 auto 2rem; }

.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--sage-deep);
  text-decoration: none;
}

.cta-phone:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 8px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin: 2.5rem 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(61, 53, 48, 0.05);
}

.contact-card .eyebrow { justify-content: center; margin-bottom: 0.9rem; }
.contact-card .eyebrow::before { display: none; }

.contact-card .big {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}

.contact-card .big:hover { color: var(--sage-deep); }

.contact-card p { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.6rem; max-width: none; }

.hours-list { margin: 0; text-align: left; }

.hours-list div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--linen);
}

.hours-list div:last-child { border-bottom: 0; }

.hours-list dt { font-weight: 700; font-size: 0.92rem; }

.hours-list dd { font-family: var(--font-display); color: var(--sage-deep); }

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(61, 53, 48, 0.05);
}

.contact-form label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.contact-form input, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid var(--linen);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(143, 166, 142, 0.18);
  background: var(--white);
}

.contact-form textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0 1.1rem;
}

.contact-form button { cursor: pointer; border: 0; width: 100%; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.8);
  padding: calc(var(--section) * 0.6) 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-name { color: var(--porcelain); font-size: 1.4rem; }
.footer-brand .brand-name em { color: var(--sage); }

.footer-brand p { margin-top: 0.9rem; max-width: 36ch; font-size: 0.9rem; color: rgba(250, 246, 240, 0.6); }

.footer-grid h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  color: rgba(250, 246, 240, 0.85);
  text-decoration: none;
  padding: 0.2rem 0;
}

.footer-grid a:hover { color: var(--blush); }

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(250, 246, 240, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(250, 246, 240, 0.5);
}

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.svc-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.svc-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.svc-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
