:root {
  /* Earthy editorial palette */
  --cream: #f4f1e8;
  --cream-deep: #ece7d9;
  --paper: #faf8f2;
  --sage: #c2c7ac;
  --sage-soft: #d8dcc8;
  --olive: #7f8c5c;
  --olive-deep: #6b7749;
  --forest: #2f4a3e;
  --forest-deep: #253b31;
  --ink: #2b2e29;
  --muted: #6c6f64;
  --line: #e0dccd;
  --line-soft: #e9e5d8;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 24px 50px -28px rgba(47, 74, 62, 0.30);
  --shadow-sm: 0 14px 32px -20px rgba(47, 74, 62, 0.25);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.12; color: var(--forest); margin: 0; font-weight: 500; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 0 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 14px 30px -16px rgba(47, 74, 62, 0.7);
}
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Ghost button on dark (contact) surface */
.section-contact .btn-ghost { border-color: rgba(244, 241, 232, 0.5); color: var(--cream); }
.section-contact .btn-ghost:hover { background: var(--cream); color: var(--forest); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 232, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; }

/* ---------- Logo lockup ---------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  --logo-main: var(--forest);
  --logo-sub: var(--olive-deep);
}
.logo--light { --logo-main: var(--cream); --logo-sub: rgba(244, 241, 232, 0.72); }
.logo-word { display: inline-flex; align-items: center; line-height: 1; }
.logo-text {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--logo-main);
  line-height: 1;
}
.logo-o { display: flex; color: var(--logo-main); margin: 0 0.18em; }
.logo-o svg { display: block; height: 1.34em; width: 1.34em; }
.logo-sub {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 0.42em;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
  text-transform: uppercase;
  color: var(--logo-sub);
}
.logo-sub::before, .logo-sub::after { content: ""; height: 1px; flex: 1; background: currentColor; opacity: 0.55; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); font-weight: 500; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.15s; }
.nav a:hover { color: var(--olive-deep); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--olive-deep); color: var(--cream) !important; }

.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  color: var(--forest);
}
.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0 34px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 0; margin: 0; }
.hero-trust li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-trust li::before { content: "—"; position: absolute; left: 0; color: var(--olive); font-weight: 700; }
.hero-glow {
  position: absolute;
  width: 680px; height: 680px;
  right: -180px; top: -160px;
  background: radial-gradient(circle, rgba(127, 140, 92, 0.18), transparent 64%);
  z-index: 1;
}

/* ---------- Strip ---------- */
.strip { background: var(--forest); color: var(--cream); padding: 26px 0; }
.strip .container { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 32px; }
.strip-label { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; font-weight: 600; color: var(--sage); margin: 0; }
.strip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 0; margin: 0; }
.strip-list li { font-size: 0.9rem; color: rgba(244, 241, 232, 0.9); letter-spacing: 0.02em; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; letter-spacing: -0.02em; font-weight: 400; }
.section-sub { color: var(--muted); font-size: 1.1rem; margin: 0; }

.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 12px; font-weight: 500; }
.card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
}
.step-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--sage);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 500; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Pricing ---------- */
.pricing { align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateY(-8px);
}
.price-card--featured h3,
.price-card--featured .price { color: var(--cream); }
.price-card--featured .price span:first-child,
.price-card--featured .price-unit,
.price-card--featured .price-desc { color: rgba(244, 241, 232, 0.78); }
.price-card--featured .ticks li { color: rgba(244, 241, 232, 0.92); }
.price-card--featured .ticks li::before { background: rgba(244, 241, 232, 0.16); color: var(--sage); }
.price-badge {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--olive);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}
.price-card h3 { font-size: 1.32rem; margin-bottom: 14px; font-weight: 500; }
.price { font-family: "Fraunces", serif; font-size: 2.2rem; font-weight: 400; color: var(--forest); margin: 0 0 6px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price span:first-child { font-size: 0.85rem; font-weight: 500; color: var(--muted); font-family: "Inter", sans-serif; }
.price-unit { display: block; width: 100%; font-size: 0.78rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-family: "Inter", sans-serif; }
.price-desc { color: var(--muted); font-size: 0.97rem; margin: 8px 0 22px; }
.ticks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 28px; font-size: 0.95rem; color: var(--ink); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px;
  display: grid; place-items: center;
  background: var(--sage-soft);
  color: var(--olive-deep);
  border-radius: 50%;
  font-size: 0.68rem; font-weight: 700;
}
.price-card .btn { margin-top: auto; }
.price-card--featured .btn-primary { background: var(--cream); color: var(--forest); }
.price-card--featured .btn-primary:hover { background: var(--sage); }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 22px; letter-spacing: -0.02em; font-weight: 400; }
.about-text p { color: var(--muted); margin: 0 0 18px; }
.about-text .btn { margin-top: 12px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.value h3 { font-size: 1.1rem; color: var(--olive-deep); margin-bottom: 8px; font-weight: 500; }
.value p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Contact ---------- */
.section-contact { background: var(--forest); color: var(--cream); }
.section-contact .eyebrow { color: var(--sage); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-text h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 18px; letter-spacing: -0.02em; font-weight: 400; }
.contact-text p { color: rgba(244, 241, 232, 0.82); }
.contact-direct { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 14px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 232, 0.28);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.18s, transform 0.15s, color 0.18s;
}
.contact-pill:hover { background: rgba(244, 241, 232, 0.1); transform: translateY(-2px); }
.contact-pill--cta { background: var(--sage); color: var(--forest); border-color: var(--sage); font-weight: 600; }
.contact-pill--cta:hover { background: var(--cream); }
.contact-note { font-size: 0.84rem; color: rgba(244, 241, 232, 0.6); }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--olive-deep); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--white);
  transition: border 0.15s, box-shadow 0.15s;
}
.field input::placeholder, .field textarea::placeholder { color: #a9a89c; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(127, 140, 92, 0.16);
}
.field textarea { resize: vertical; }
.hidden-field { display: none; }
.form-fineprint { text-align: center; font-size: 0.8rem; color: var(--muted); margin: 16px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: rgba(244, 241, 232, 0.72); padding: 56px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.footer-brand { display: flex; align-items: center; }
.footer-tag { margin: 0; font-size: 0.95rem; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.15s; }
.footer-nav a:hover { color: var(--sage); }
.footer-copy { font-size: 0.82rem; color: rgba(244, 241, 232, 0.5); margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 10px 28px 22px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0; color: var(--cream) !important; }
}
@media (max-width: 560px) {
  .grid-4, .steps { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 80px 0 88px; }
}
@media (max-width: 420px) {
  .logo-text { font-size: 1.25rem; letter-spacing: 0.26em; }
  .logo-sub { font-size: 0.54rem; letter-spacing: 0.4em; text-indent: 0.4em; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
