:root {
  /* Warm, boutique-beauty-studio palette built from her existing brand color
     (#d8cebd) — deliberately NOT the bold/industrial lawn-care look. */
  --sand: #d8cebd;
  --sand-light: #f6f1e9;
  --cream: #faf6ef;
  --paper: #fffdfa;
  --ink: #2c2620;
  --muted: #7d7266;
  --accent: #a97c56;
  --accent-dark: #8c6543;
  --accent-tint: #f1e4d5;
  --line: #e9e0d1;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 12px 34px rgba(60, 45, 25, .10);
  --shadow-sm: 0 4px 14px rgba(60, 45, 25, .08);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.68; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .title, .brand, .footer-brand { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }

/* ---------- buttons ---------- */
.btn { display: inline-block; font-weight: 600; font-size: 15px; border-radius: 999px;
  padding: 14px 28px; border: 2px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #1c1712; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(255,253,250,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand, .footer-brand { font-size: 22px; color: var(--ink); }
.brand em, .footer-brand em { font-style: italic; color: var(--accent-dark); }
.menu-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.links { display: flex; gap: 26px; align-items: center; font-weight: 500; font-size: 15px; }
.links a { color: var(--ink); }
.links a.active, .links a:hover { color: var(--accent-dark); }
.nav-ctas { display: flex; align-items: center; gap: 18px; }
.nav-call { font-weight: 600; color: var(--ink); font-size: 14px; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-menu { position: absolute; top: 78px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    padding: 18px 24px 24px; gap: 18px; display: none; box-shadow: var(--shadow); }
  .nav.open .nav-menu { display: flex; }
  .links { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .nav-ctas .btn { text-align: center; }
}

/* ---------- hero (home) ---------- */
.hero { background: var(--sand-light); padding: 64px 0 76px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.badge { display: inline-block; background: var(--accent-tint); color: var(--accent-dark); font-weight: 600;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: 52px; line-height: 1.08; color: var(--ink); }
.hero .lede { margin-top: 20px; font-size: 17px; color: var(--muted); max-width: 480px; }
.hero .btns { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-rating { margin-top: 22px; font-size: 14px; color: var(--muted); }
.hero-rating .stars { color: var(--accent); letter-spacing: 1px; margin-right: 4px; }
.hero-photo { position: relative; }
.hero-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 38px; }
  .hero-photo { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- stats ---------- */
.stats { background: var(--ink); color: #fff; padding: 40px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .value { font-family: var(--font-display); font-size: 30px; color: var(--sand); }
.stats .label { font-weight: 600; margin-top: 4px; font-size: 15px; }
.stats .sub { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 2px; }
@media (max-width: 700px) { .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ---------- section bands ---------- */
.band { padding: 84px 0; }
.band.cream { background: var(--cream); }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark);
  text-align: center; margin-bottom: 12px; }
.eyebrow.left { text-align: left; }
.title { font-size: 34px; text-align: center; margin-bottom: 14px; color: var(--ink); }
.title.left { text-align: left; }
.sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 42px; font-size: 16px; }
.statement { font-size: 18px; color: var(--ink); max-width: 760px; margin: 0 auto 42px; text-align: center;
  font-family: var(--font-display); font-style: italic; }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-card { display: block; border-radius: var(--radius); overflow: hidden; background: var(--paper);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card .ph { height: 220px; background-size: cover; background-position: center; }
.cat-card .body { padding: 24px; }
.cat-card h3 { font-size: 21px; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 14.5px; }
.cat-card .more { display: inline-block; margin-top: 14px; color: var(--accent-dark); font-weight: 600; font-size: 14px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------- bio / svc-intro layout (shared by home + about) ---------- */
.svc-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.svc-intro img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { background: var(--accent-tint); color: var(--accent-dark); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; }
@media (max-width: 860px) { .svc-intro { grid-template-columns: 1fr; } .svc-intro img { max-width: 340px; margin: 0 auto; } }

/* ---------- reviews ---------- */
.rev-meta { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.rev-meta .stars { color: var(--accent); letter-spacing: 1px; margin-right: 6px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.rev-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-card .avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.rev-card .who { font-weight: 600; font-size: 14.5px; }
.rev-card .src { color: var(--muted); font-size: 12.5px; }
.rev-card .stars { color: var(--accent); letter-spacing: 1px; margin-bottom: 10px; }
.rev-card p { font-size: 14.5px; color: var(--ink); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-grid a { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gal-grid img { width: 100%; height: 240px; object-fit: cover; transition: transform .3s ease; }
.gal-grid a:hover img { transform: scale(1.04); }
.gal-grid-3 img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .gal-grid, .gal-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal-grid, .gal-grid-3 { grid-template-columns: 1fr; } }

/* ---------- hours + location ---------- */
.hl-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.hours-table { list-style: none; margin-top: 8px; }
.hours-table li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-table li:last-child { border-bottom: none; }
.hours-table .d { font-weight: 600; }
.map-embed { width: 100%; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 860px) { .hl-grid { grid-template-columns: 1fr; } }

/* ---------- photo band (shop teaser) ---------- */
.band-photo { position: relative; background-size: cover; background-position: center; padding: 96px 0; }
.band-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,38,32,.35), rgba(44,38,32,.72)); }
.band-photo .wrap { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 560px; }
.band-photo .eyebrow { color: var(--sand); }
.band-photo h2 { font-size: 32px; margin-bottom: 14px; }
.band-photo p { color: rgba(255,255,255,.85); margin-bottom: 26px; }

/* ---------- cta band ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 72px 0; text-align: center; }
.cta-band .eyebrow { color: var(--sand); }
.cta-band h2 { font-size: 32px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- interior page hero ---------- */
.page-hero { position: relative; padding: 76px 0; background-size: cover; background-position: center; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,38,32,.55), rgba(44,38,32,.78)); }
.page-hero .wrap { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 640px; }
.page-hero h1 { font-size: 40px; margin-top: 6px; }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 12px; font-size: 16px; }
.page-hero .badge { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- service menu (category pages) ---------- */
.svc-group { margin-bottom: 42px; }
.svc-group:last-child { margin-bottom: 0; }
.svc-group-name { font-size: 22px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--sand); }
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; }
.svc-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.svc-item h4 { font-size: 16.5px; font-weight: 600; }
.svc-item .price { font-family: var(--font-display); font-weight: 600; color: var(--accent-dark); font-size: 17px; white-space: nowrap; }
.svc-item p { font-size: 14px; color: var(--muted); }
.svc-book { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--accent-dark); }
@media (max-width: 760px) { .svc-list { grid-template-columns: 1fr; } }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
.form-card { background: var(--paper); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 22px; margin-bottom: 20px; }
.form-card label { display: block; font-size: 13.5px; font-weight: 600; margin: 14px 0 6px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 14.5px; background: var(--paper); color: var(--ink); }
.form-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { margin-top: 22px; width: 100%; text-align: center; }
.fine-print { font-size: 12px; color: var(--muted); margin-top: 12px; }
.f-status { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--accent-dark); }
.info-stack { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.info-card h4 { font-size: 15px; margin-bottom: 12px; }
.info-card ul { list-style: none; }
.info-card li { display: flex; gap: 8px; padding: 6px 0; font-size: 14.5px; }
.info-card .k { color: var(--muted); min-width: 70px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-card .row2 { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 64px 0 0; }
footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
footer h5 { color: #fff; font-size: 14px; margin-bottom: 14px; font-weight: 600; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; font-size: 14px; }
footer a { color: rgba(255,255,255,.72); }
footer a:hover { color: #fff; }
.footer-brand { color: #fff; font-size: 20px; display: inline-block; margin-bottom: 14px; }
.brand-col p { font-size: 14px; max-width: 300px; margin-bottom: 14px; }
.nap li { font-weight: 500; color: rgba(255,255,255,.85); }
.footer-dir { display: inline-block; margin-top: 6px; font-weight: 600; color: var(--sand) !important; }
.hours-list { display: flex; flex-direction: column; gap: 4px; }
.hours-list li { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 0; }
footer .bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px 0; font-size: 12.5px; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer .top { grid-template-columns: 1fr; } }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }
