:root {
  --bg: #f8f7f2;
  --surface: #ffffff;
  --surface-soft: #eef4ed;
  --surface-warm: #f4e9df;
  --text: #26322b;
  --muted: #69736c;
  --green: #47705a;
  --green-dark: #31503f;
  --green-light: #dce9dc;
  --accent: #c88362;
  --line: #dde3dc;
  --shadow: 0 18px 50px rgba(47, 67, 55, .08);
  --radius: 16px;
  --container: 1180px;
  --font-body: "Inter", sans-serif;
  --font-heading: "Lora", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.025em;
}
::selection { background: var(--green-light); color: var(--green-dark); }

:focus-visible {
  outline: 3px solid rgba(71, 112, 90, .35);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled,
.legal-header {
  padding: 12px 0;
  background: rgba(248, 247, 242, .95);
  box-shadow: 0 1px 0 rgba(49, 80, 63, .08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; position: relative; z-index: 102; }
.brand-text { display: flex; flex-direction: column; line-height: 1.14; }
.brand-text strong { font-family: var(--font-heading); font-size: 1.12rem; }
.brand-text small {
  margin-top: 4px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .88rem;
  font-weight: 600;
}
.main-nav a:not(.nav-cta) { color: #4e5a53; transition: color .2s ease; }
.main-nav a:not(.nav-cta):hover { color: var(--green-dark); }
.nav-cta {
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 103;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: .2s ease;
}

/* GLOBAL TYPOGRAPHY + BUTTONS */
.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5vw, 4.9rem);
}
h1 span { color: var(--green); }
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}
h3 { font-size: 1.35rem; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .94rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { border-color: #bfc9c1; background: transparent; color: var(--green-dark); }
.btn-secondary:hover { background: #fff; border-color: var(--green); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { background: #f5f7f4; }

.text-link,
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
}
.text-link:hover,
.service-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* HERO */
.hero {
  min-height: 760px;
  padding: 145px 0 70px;
  background:
    linear-gradient(90deg, rgba(238,244,237,.72) 0, rgba(238,244,237,.72) 52%, transparent 52%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 74px;
}
.hero-copy { padding: 40px 0; }
.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #526058;
  font-size: .86rem;
  font-weight: 600;
}
.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
}
.hero-visual { position: relative; }
.photo-frame {
  width: min(100%, 500px);
  min-height: 570px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(160deg, #dce9dc, #f3e9df);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center bottom;
}
.hero-card {
  position: absolute;
  left: -30px;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.hero-card strong { font-family: var(--font-heading); font-size: 1.15rem; }
.hero-card span { margin-top: 3px; color: var(--muted); font-size: .8rem; }

/* QUICK INFO */
.quick-info {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-info-grid > div {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}
.quick-info-grid > div:first-child { padding-left: 0; }
.quick-info-grid > div:last-child { border-right: 0; }
.quick-info strong { display: block; margin-bottom: 3px; color: var(--green-dark); font-size: .9rem; }
.quick-info span { color: var(--muted); font-size: .82rem; }

/* SECTIONS */
.section { padding: 104px 0; }
.section-soft { background: var(--surface-soft); }
.about-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 94px;
  align-items: start;
}
.section-heading h2 { max-width: 520px; }
.intro-copy { max-width: 700px; color: var(--muted); font-size: 1.02rem; }
.big-copy {
  margin-bottom: 24px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.4;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}
.about-values span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.section-top h2 { margin-bottom: 0; max-width: 720px; }
.section-top > p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

/* SPECIALTIES */
.specialties { background: #fff; }
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.specialty-card {
  min-height: 290px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.specialty-card:hover {
  transform: translateY(-4px);
  border-color: #c8d5ca;
  box-shadow: 0 12px 30px rgba(47,67,55,.07);
}
.specialty-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green-dark);
}
.specialty-icon svg { width: 23px; height: 23px; }
.specialty-card h3 { margin-bottom: 10px; }
.specialty-card p { margin-bottom: 0; color: var(--muted); font-size: .91rem; }

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 30px;
  border: 1px solid #d5dfd6;
  border-radius: var(--radius);
  background: #fff;
}
.service-card--featured { border-top: 4px solid var(--green); }
.service-label {
  min-height: 22px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.service-card > p { color: var(--muted); font-size: .92rem; }
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: .88rem;
}
.service-card li { position: relative; padding-left: 22px; }
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.offer-bottom {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}
.offer-bottom strong { font-family: var(--font-heading); font-size: 1.55rem; }
.offer-bottom span { color: var(--muted); font-size: .82rem; }
.service-link {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

/* PROCESS */
.process { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.process-heading { position: sticky; top: 120px; }
.process-heading h2 { max-width: 520px; }
.process-heading > p:last-child { max-width: 500px; color: var(--muted); }
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.step > span {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
}
.step h3 { margin-bottom: 7px; font-size: 1.28rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

/* SHOP */
.shop-section { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.product-image {
  height: 190px;
  display: grid;
  place-items: center;
}
.product-image--1 { background: #dce9dc; }
.product-image--2 { background: #f3e5d8; }
.product-image--3 { background: #e9e5db; }
.product-image span {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.2;
}
.product-body { padding: 24px; }
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-meta strong { color: var(--text); font-size: .86rem; }
.product-body h3 { margin: 12px 0 8px; font-size: 1.45rem; }
.product-body p { min-height: 90px; color: var(--muted); font-size: .9rem; }
.product-body > a {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 700;
}
.freebie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  margin-top: 20px;
  padding: 32px 34px;
  border: 1px solid #d7dfd7;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.freebie > div { max-width: 720px; }
.freebie-label {
  color: var(--green);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.freebie h3 { margin: 8px 0; font-size: 1.55rem; }
.freebie p { margin: 0; color: var(--muted); }

/* INSTAGRAM */
.instagram-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.instagram-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.instagram-row > div { display: flex; flex-direction: column; }
.instagram-row strong { font-family: var(--font-heading); font-size: 1.12rem; }
.instagram-row span { color: var(--muted); font-size: .86rem; }
.instagram-row > a { color: var(--green-dark); font-weight: 700; }

/* CONTACT */
.contact-section { background: var(--surface-warm); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}
.contact-copy {
  padding: 24px 40px 24px 0;
}
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 34px;
  margin-top: 34px;
}
.contact-details div { display: flex; flex-direction: column; }
.contact-details span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.contact-details strong,
.contact-details a { font-size: .92rem; font-weight: 600; }
.contact-details a { color: var(--green-dark); }

.contact-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: #fff;
}
.contact-cta p { color: rgba(255,255,255,.78); }
.contact-phone {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  text-align: center;
}

/* FOOTER */
.site-footer {
  padding: 42px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand p { margin: 9px 0 0; color: var(--muted); font-size: .78rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  color: #56625b;
  font-size: .82rem;
  font-weight: 600;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: .76rem;
}
.footer-legal a:hover { color: var(--green-dark); }
.footer-legal p { margin: 5px 0 0; }

/* REVEAL ANIMATIONS — subtle only */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* LEGAL PAGES */
.legal-back {
  color: var(--green-dark);
  font-size: .85rem;
  font-weight: 700;
}
.legal-main { min-height: 70vh; }
.legal-hero {
  padding: 155px 0 65px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}
.legal-container { max-width: 880px; }
.legal-hero h1 { max-width: 800px; margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 4.2rem); }
.legal-lead { max-width: 720px; color: var(--muted); }
.legal-updated {
  margin: 0;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.legal-content { background: #fff; }
.legal-document { color: var(--muted); }
.legal-document h2 {
  margin: 48px 0 12px;
  color: var(--text);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.legal-document h2:first-child { margin-top: 0; }
.legal-document p { max-width: 820px; margin-bottom: 15px; }
.legal-document a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-note {
  margin-top: 48px;
  padding: 25px 27px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: var(--surface-soft);
}
.legal-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}
.legal-note p { margin: 0; }

/* RESPONSIVE */
@media (max-width: 1050px) {
  .main-nav { gap: 16px; font-size: .82rem; }
  .hero-grid { gap: 42px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .section-top { grid-template-columns: 1fr 320px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { align-items: center; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 34px), var(--container)); }

  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 23px;
    padding: 90px 28px 40px;
    background: var(--bg);
    font-size: 1.05rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .22s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-cta { margin-top: 8px; }

  .hero {
    min-height: auto;
    padding: 120px 0 65px;
    background: linear-gradient(180deg, var(--surface-soft), var(--bg) 72%);
  }
  .hero-grid,
  .about-grid,
  .process-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-copy { padding: 12px 0; }
  .photo-frame { width: 100%; min-height: 460px; margin: 0; }
  .photo-frame img { min-height: 460px; }
  .hero-card { left: 18px; bottom: 18px; }
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-info-grid > div { border-bottom: 1px solid var(--line); }
  .quick-info-grid > div:nth-child(2) { border-right: 0; }
  .quick-info-grid > div:nth-child(3),
  .quick-info-grid > div:nth-child(4) { border-bottom: 0; }
  .quick-info-grid > div:first-child { padding-left: 26px; }

  .section { padding: 80px 0; }
  .about-grid,
  .process-grid { gap: 38px; }
  .process-heading { position: static; }
  .section-top { grid-template-columns: 1fr; gap: 14px; }
  .section-top > p { max-width: 620px; }

  .service-grid,
  .product-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .product-body p { min-height: 0; }

  .freebie,
  .instagram-row { flex-direction: column; align-items: flex-start; }
  .contact-copy { padding-right: 0; }
  .contact-cta { padding: 34px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .brand-text small { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; gap: 7px; }
  .photo-frame,
  .photo-frame img { min-height: 390px; }
  .hero-card { position: static; width: 100%; margin-top: 10px; box-shadow: none; }

  .quick-info-grid { grid-template-columns: 1fr; }
  .quick-info-grid > div {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }
  .quick-info-grid > div:last-child { border-bottom: 0 !important; }
  .quick-info-grid > div:first-child { padding-left: 0; }

  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: auto; }
  .contact-details { grid-template-columns: 1fr; }
  .freebie { padding: 26px 22px; }
  .freebie .btn { width: 100%; }
  .instagram-row > a { word-break: break-word; }
  .contact-cta { padding: 28px 22px; }
  .contact-cta .btn { width: 100%; }
  .footer-links { flex-direction: column; }
  .legal-hero { padding: 125px 0 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
