/* ==========================================================================
   High Country Beauty — Frost Moderne
   All tokens and components from the design system, in one stylesheet.
   Dark frost surfaces, champagne gold, Helvetica with Playfair italic
   accents, pill controls and arched imagery. No shadows anywhere —
   depth comes from surface tone.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1 · Colour tokens
   -------------------------------------------------------------------------- */
:root {
  --night: #0E1116;        /* page background */
  --frost: #151B23;        /* cards, surfaces */
  --frost-raised: #1B222C; /* hover state */
  --border: #2A3340;       /* lines, outlines */
  --border-lit: #3A4350;   /* chip outlines */
  --ice: #EDF0F3;          /* headings, body */
  --mist: #98A2AD;         /* secondary text */
  --faint: #5B6470;        /* footnote text */
  --gold: #CBAD6B;         /* champagne — CTAs, accents */
  --gold-lit: #E2C98A;     /* champagne — hover */
  --gold-active: #A98F52;  /* champagne — active */
  --error: #B4574E;        /* form errors */

  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing scale: 8 · 12 · 16 · 24 · 32 · 48 · 64 · 96 */
  /* Radii: pills 99px · cards 18px · panels 22px · images 18px or arch */
}

/* --------------------------------------------------------------------------
   2 · Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--night);
  color: var(--ice);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lit); }

img { max-width: 100%; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* page gutters 40 */
}

/* Playfair Display italic — only ever a one-or-two-word accent inside headings */
.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0;
}

/* Type scale */
.display { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.04; }
.page-title { font-size: 40px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; }
.prose-title { font-size: 36px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.section-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.section-title-sm { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.lede { font-size: 15px; color: var(--mist); line-height: 1.7; }
.small { font-size: 13px; color: var(--mist); }

.label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

h1, h2, h3, p { margin: 0; }

/* --------------------------------------------------------------------------
   3 · Buttons & chips (pills 99px)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--night);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 99px;
  transition: all 0.15s;
}
.btn:hover { background: var(--gold-lit); color: var(--night); transform: translateY(-1px); }
.btn:active { background: var(--gold-active); color: var(--night); }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--ice);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 99px;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--ice); }

.text-link { font-size: 13px; }

.chip {
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--border-lit);
  border-radius: 99px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4 · Navigation
   -------------------------------------------------------------------------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ice);
}
.brand:hover { color: var(--ice); }
.brand img { width: 84px; height: 84px; object-fit: contain; }
.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2em;
}
.brand-name .accent { letter-spacing: 0.02em; text-transform: none; }

.site-nav {
  display: flex;
  gap: 6px;
  font-size: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: 99px;
  color: var(--mist);
  transition: all 0.15s;
}
.site-nav a:hover { background: var(--frost-raised); color: var(--ice); }
.site-nav a[aria-current="page"] { background: var(--frost-raised); color: var(--ice); }
.site-nav .nav-book {
  background: var(--gold);
  color: var(--night);
  font-weight: 600;
  padding: 9px 20px;
  margin-left: 8px;
  transition: background 0.15s;
}
.site-nav .nav-book:hover { background: var(--gold-lit); color: var(--night); }

/* --------------------------------------------------------------------------
   5 · Cards & rows
   -------------------------------------------------------------------------- */
.card {
  background: var(--frost);
  border-radius: 18px;
  padding: 26px;
  color: var(--ice);
  transition: all 0.15s;
}
a.card:hover, .card.lift:hover { background: var(--frost-raised); transform: translateY(-2px); color: var(--ice); }

.card-outline {
  background: none;
  border: 1px solid var(--border);
}
a.card-outline:hover { background: none; border-color: var(--gold); }

.card-gold-outline {
  background: none;
  border: 1px solid var(--gold);
}
.card-gold-outline:hover { background: none; }

.card-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.card-title h3 { font-size: 17px; font-weight: 700; }
.card-text { font-size: 13px; color: var(--mist); margin-top: 8px; line-height: 1.55; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  transition: background 0.15s;
  font-size: 14px;
}
.price-row:hover { background: var(--frost); }
.price-row .price { color: var(--gold); font-weight: 600; }
.price-row .duration { color: var(--faint); font-size: 12px; margin-left: 8px; }

.review-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.review-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 0.2em; }
.review-card blockquote { margin: 12px 0 0; font-size: 14px; line-height: 1.65; }
.review-card .who { font-size: 12px; color: var(--mist); margin-top: 14px; }

/* --------------------------------------------------------------------------
   6 · Panels & sections
   -------------------------------------------------------------------------- */
.cta-panel {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
}

.hours-table { font-size: 14px; }
.hours-table .hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--frost-raised);
}
.hours-table .hours-row:last-child { border-bottom: none; }
.hours-table .day { color: var(--mist); }
.hours-table .time { color: var(--gold); }
.hours-table .closed { color: var(--ice); }

/* --------------------------------------------------------------------------
   7 · Forms
   -------------------------------------------------------------------------- */
.field {
  background: var(--night);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ice);
  font-family: inherit;
  outline: none;
  width: 100%;
}
.field::placeholder { color: var(--mist); opacity: 1; }
.field:focus { border-color: var(--gold); }
.field.error, .field:user-invalid { border-color: var(--error); }
.error-msg { font-size: 11px; color: var(--error); margin-top: 6px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   8 · Imagery — 18px radius or the arch
   -------------------------------------------------------------------------- */
.img-rounded { border-radius: 18px; object-fit: cover; }
.figure-caption { font-size: 12.5px; color: var(--mist); margin-top: 10px; }
figure { margin: 0; }

/* Placeholder result photos — swap the SVGs in images/ for real ones */
.placeholder-card {
  background: var(--frost);
  border-radius: 18px;
  padding: 10px 10px 14px;
}
.placeholder-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.placeholder-card .figure-caption { padding: 0 6px; }

/* --------------------------------------------------------------------------
   9 · Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--frost-raised); }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand .brand-name { font-size: 12px; }
.footer-tag { font-size: 13px; color: var(--mist); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-col { font-size: 13px; color: var(--mist); line-height: 2.1; }
.footer-col .footer-heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ice);
  margin-bottom: 8px;
}
.footer-col a { color: var(--mist); display: block; }
.footer-col a:hover { color: var(--gold); }
.footer-col a.inline { display: inline; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 32px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--faint);
}
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 18px; }

/* --------------------------------------------------------------------------
   10 · Layout helpers
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.split {
  display: flex;
  gap: 56px;
  align-items: center;
}
.split > .split-text { flex: 1; }
.split > img { flex: none; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.page-head { padding: 56px 0 40px; max-width: 640px; }
.page-head .label { display: block; margin-bottom: 18px; }
.page-head .lede { margin-top: 16px; }

.prose { max-width: 720px; padding: 56px 0 80px; }
.prose h2 { font-size: 18px; font-weight: 700; color: var(--ice); margin-top: 32px; }
.prose h2:first-of-type { margin-top: 40px; }
.prose p { font-size: 14.5px; color: var(--mist); line-height: 1.85; margin-top: 12px; }
.prose .meta { font-size: 13px; color: var(--faint); margin-top: 14px; }

/* --------------------------------------------------------------------------
   11 · Page-specific pieces
   -------------------------------------------------------------------------- */
/* Hero badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin-bottom: 28px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--gold); }

.hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--mist);
  align-items: center;
  flex-wrap: wrap;
}
.dot-sep { width: 4px; height: 4px; border-radius: 99px; background: var(--border); flex: none; }

/* Arched imagery — the arch is 125px+ top corners on heroes & portraits */
.hero-arch { width: 340px; height: 440px; object-fit: cover; border-radius: 170px 170px 22px 22px; }
.portrait-arch-home { width: 360px; height: 460px; object-fit: cover; object-position: 78% 20%; border-radius: 180px 180px 22px 22px; }
.portrait-arch-about { width: 320px; height: 420px; object-fit: cover; object-position: 78% 20%; border-radius: 160px 160px 22px 22px; }
.img-room-home { width: 440px; height: 320px; object-fit: cover; border-radius: 22px; }
.studio-img { width: 100%; height: 240px; object-fit: cover; border-radius: 18px; }
.about-photo { width: 100%; height: 300px; object-fit: cover; border-radius: 18px; }

/* Treatment menu section headings */
.menu-section { padding: 32px 0; }
.menu-section .menu-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.menu-section .menu-head h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.menu-section .menu-head .accent { font-size: 15px; }
.menu-list { max-width: 720px; }

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  padding-bottom: 56px;
}

/* Contact page info cards */
.info-card { border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.info-card .label { letter-spacing: 0.2em; }

/* FAQ list */
.faq-item { border-bottom: 1px solid var(--frost-raised); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 15px; font-weight: 700; }
.faq-item p { font-size: 14px; color: var(--mist); line-height: 1.7; margin-top: 8px; }

/* --------------------------------------------------------------------------
   12 · Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .split { flex-direction: column; align-items: flex-start; gap: 32px; }
  .split.split-media-first { flex-direction: column-reverse; }
  .split > img { align-self: center; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .display { font-size: 40px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px 24px; }
  .footer-bottom { padding: 0 20px 24px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .display { font-size: 34px; }
  .page-title { font-size: 30px; }
  .prose-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .brand img { width: 60px; height: 60px; }
  .brand-name { font-size: 14px; }
  .split > img { max-width: 100%; height: auto; }
  .section-head { flex-direction: column; gap: 8px; }
}
