@font-face {
  font-family: "Balance Lora";
  src: url("../fonts/lora-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Balance Lora";
  src: url("../fonts/lora-bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #2b2018;
  --muted: #76695d;
  --paper: #f8f2e8;
  --cream: #fffaf0;
  --sand: #e7d4bd;
  --sage: #7c8a69;
  --sage-dark: #4f6045;
  --brown: #4b3124;
  --gold: #c79a55;
  --line: #dfcdb7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(75, 49, 36, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .brand strong, .quote-mark { font-family: "Balance Lora", Georgia, serif; }
h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 7vw, 7rem); line-height: .93; font-weight: 700; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 4.2vw, 4.4rem); line-height: 1; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.16rem; line-height: 1.25; }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 74px);
  background: rgba(248, 242, 232, .92);
  border-bottom: 1px solid rgba(223, 205, 183, .78);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-weight: 800;
}
.brand strong { display: block; font-size: 1.14rem; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a.is-active { background: var(--cream); color: var(--brown); box-shadow: 0 10px 30px rgba(75,49,36,.08); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
}
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: var(--brown); }

.hero {
  position: relative;
  min-height: calc(100vh - 81px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 86px) clamp(42px, 6vw, 74px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: var(--cream);
  z-index: -1;
}

.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); max-width: 650px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--brown); color: var(--cream); box-shadow: 0 14px 34px rgba(75,49,36,.18); }
.btn.secondary { background: var(--cream); border-color: var(--line); color: var(--brown); }
.text-link { color: var(--brown); font-weight: 800; border-bottom: 2px solid var(--gold); }

.hero-media {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
}
.hero-media img { height: 100%; min-height: 620px; object-fit: cover; transition: transform .15s linear; }
.hero-cards {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  width: min(360px, calc(100% - 44px));
}
.hero-card {
  padding: 16px;
  border: 1px solid rgba(255,250,240,.72);
  border-radius: 18px;
  background: rgba(255,250,240,.84);
  backdrop-filter: blur(12px);
}
.hero-card span { display: block; color: var(--gold); font-size: .8rem; font-weight: 800; }
.hero-card strong { display: block; margin-top: 2px; color: var(--brown); }

.section { padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 86px); }
.section.alt { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.grid-4, .grid-3, .two-col, .contact-layout, .gallery-feature, .about-split {
  display: grid;
  gap: 18px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.two-col, .contact-layout, .about-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(28px, 5vw, 78px); }

.service-card,
.treatment-card,
.quote-card,
.faq-item,
.detail-card,
.step-card,
.team-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,250,240,.72);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover,
.treatment-card:hover,
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(199,154,85,.52); }

.service-card { min-height: 250px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card span, .detail-card span, .treatment-card span, .step-card span { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-card p, .treatment-card p, .detail-card p { margin-bottom: 0; }

.treatment-card { overflow: hidden; background: var(--cream); }
.treatment-card img { height: 230px; object-fit: cover; }
.treatment-card .card-body { padding: 22px; }
.duration-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.duration-row small {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(124, 138, 105, .12);
  color: var(--sage-dark);
  font-weight: 800;
}

.gallery-feature { grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: stretch; }
.image-frame { overflow: hidden; border-radius: 28px; background: var(--sand); box-shadow: var(--shadow); }
.image-frame img { height: 100%; min-height: 360px; object-fit: cover; }
.gallery-stack { display: grid; gap: 16px; }
.gallery-stack img { height: 170px; object-fit: cover; border-radius: 22px; }

.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.step-card { min-height: 190px; padding: 24px; background: var(--brown); }
.step-card span, .step-card h3 { color: var(--cream); }
.step-card p { color: rgba(255,250,240,.72); margin-bottom: 0; }

.quote-card { padding: 26px; }
.quote-card p { color: var(--ink); font-size: 1.02rem; }
.quote-card strong { display: block; margin-top: 20px; color: var(--brown); }
.quote-note, .ai-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(124,138,105,.12);
  color: var(--sage-dark);
  font-size: .9rem;
  font-weight: 700;
}

.faq-grid { display: grid; gap: 12px; }
.faq-item { padding: 22px; }
.faq-item h3 { margin-bottom: 6px; }
.faq-item p { margin-bottom: 0; }

.contact-panel { padding: 28px; background: var(--cream); }
.form-grid { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--brown); font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 132px; resize: vertical; }

.page-hero {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 5vw, 86px);
  background: linear-gradient(135deg, var(--cream), #efe0ce);
}
.page-hero .lead { max-width: 760px; }

.detail-card { padding: 24px; background: var(--cream); }
.detail-card ul, .contact-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.detail-card li, .contact-list li { padding-left: 18px; border-left: 3px solid var(--gold); color: var(--muted); }

.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry img {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(75,49,36,.12);
}
.masonry img:nth-child(2n) { height: 420px; object-fit: cover; }
.masonry img:nth-child(3n) { height: 300px; object-fit: cover; }

.team-card { overflow: hidden; background: var(--cream); }
.team-card img { height: 390px; object-fit: cover; }
.team-card div { padding: 24px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 86px);
  background: var(--brown);
  color: var(--cream);
}
.site-footer p, .site-footer a { color: rgba(255,250,240,.78); margin: 0; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-header { align-items: center; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; }
  .hero { padding-top: 44px; }
  .hero-media, .hero-media img { min-height: 430px; }
  .hero-cards { position: static; width: auto; margin: -86px 16px 16px; }
  .grid-3, .two-col, .contact-layout, .gallery-feature, .about-split { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .grid-4, .process-row, .hero-cards { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 360px; }
  .section, .page-hero { padding-left: 16px; padding-right: 16px; }
  .masonry { column-count: 1; }
  .site-footer { display: grid; }
}
