/* ==========================================================================
   Living Nest Guide — Core Stylesheet
   Author: Living Nest Guide Web Team
   Notes: No external fonts or CDNs are used so pages render offline.
   ========================================================================== */

/* ------------------------------ Design tokens --------------------------- */
:root {
  --forest: #1f3d33;
  --forest-deep: #14281f;
  --forest-soft: #2f5a49;
  --clay: #c2683f;
  --clay-dark: #a5542f;
  --sand: #f4efe6;
  --cream: #fbf8f3;
  --sage: #e4ece5;
  --sage-line: #d3e0d6;
  --ink: #22302a;
  --muted: #6d7a74;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20, 40, 31, 0.06);
  --shadow: 0 16px 40px -22px rgba(20, 40, 31, 0.35);
  --shadow-lg: 0 30px 70px -30px rgba(20, 40, 31, 0.45);
  --ring: 0 0 0 4px rgba(194, 104, 63, 0.18);

  --font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-head: Georgia, "Iowan Old Style", "Times New Roman", serif;

  --wrap: 1180px;
  --gutter: 22px;
  --header-h: 78px;
}

/* --------------------------------- Reset -------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--forest-soft); text-decoration: none; }
a:hover { color: var(--clay-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--forest-deep);
  line-height: 1.22;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: 0.45em; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

/* ------------------------------- Utilities ------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(42px, 5vw, 68px) 0; }
.section--sand { background: var(--sand); }
.section--sage { background: var(--sage); }
.section--forest {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #e8f1ea;
}
.section--forest h2,
.section--forest h3 { color: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-bottom: 0; font-size: 1.04rem; }
.section--forest .section-head p { color: #bdd1c3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--clay);
  display: inline-block;
}
.section--forest .eyebrow { color: #eaa982; }
.section--forest .eyebrow::before { background: #eaa982; }

.lead { font-size: 1.1rem; color: var(--muted); }

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

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* -------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--clay); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--clay-dark); color: var(--white); box-shadow: var(--shadow); }
.btn--dark { background: var(--forest); color: var(--white); }
.btn--dark:hover { background: var(--forest-deep); color: var(--white); }
.btn--ghost { border-color: rgba(31, 61, 51, 0.28); color: var(--forest); background: transparent; }
.btn--ghost:hover { border-color: var(--forest); background: rgba(31, 61, 51, 0.06); color: var(--forest); }
.btn--light { background: var(--white); color: var(--forest-deep); }
.btn--light:hover { background: var(--sand); color: var(--forest-deep); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); }
.btn--sm { padding: 11px 20px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------- Header ------------------------------- */
.topbar {
  background: var(--forest-deep);
  color: #cfe0d4;
  font-size: 0.85rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: space-between;
  align-items: center;
  padding-block: 9px;
}
.topbar a { color: #cfe0d4; }
.topbar a:hover { color: var(--white); }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; flex: none; opacity: 0.85; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(20, 40, 31, 0.5); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--forest-deep); }
.brand:hover { color: var(--forest-deep); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-family: var(--font-head); font-size: 1.24rem; font-weight: 700; letter-spacing: -0.01em; }
.brand__tag { font-size: 0.68rem; letter-spacing: 0.19em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--forest);
}
.nav a:hover { background: var(--sage); color: var(--forest-deep); }
.nav a.is-active { color: var(--clay-dark); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--sage-line);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.22s ease, top 0.22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(194, 104, 63, 0.16), transparent 60%),
    radial-gradient(900px 480px at 0% 100%, rgba(47, 90, 73, 0.14), transparent 62%),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero__copy > p { font-size: 1.12rem; color: var(--muted); max-width: 54ch; }
.hero__points {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 10px;
}
.hero__points li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 0;
  font-size: 0.98rem;
  color: var(--forest);
}
.hero__points svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--clay); }

.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--sage), var(--sand));
  aspect-ratio: 4 / 3.2;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 17px; height: 17px; color: var(--clay); }

.hero__card {
  position: absolute;
  bottom: -26px;
  left: -14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 13px;
  align-items: center;
  max-width: 290px;
}
.hero__card svg { width: 30px; height: 30px; color: var(--clay); flex: none; }
.hero__card strong { display: block; font-size: 0.95rem; color: var(--forest-deep); }
.hero__card span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; display: block; }

/* ------------------------------ Feature strip --------------------------- */
.feature {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--forest);
  margin-bottom: 16px;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ------------------------------ Service cards --------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bfd2c5; }
.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--sage), #f2ece1);
  color: var(--forest);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.14rem; margin-bottom: 4px; }
.service-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.service-card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clay-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card__link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* --------------------------------- Split -------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--sage), var(--sand));
  aspect-ratio: 5 / 4;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.checklist { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; margin: 0; font-size: 0.98rem; }
.checklist svg { width: 21px; height: 21px; color: var(--clay); flex: none; margin-top: 3px; }
.checklist strong { color: var(--forest-deep); }
.section--forest .checklist li { color: #d6e6da; }
.section--forest .checklist strong { color: var(--white); }

/* -------------------------------- Steps --------------------------------- */
.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(234, 169, 130, 0.18);
  color: #f0b892;
  margin-bottom: 16px;
}
.step__icon svg { width: 23px; height: 23px; }
.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { margin: 0; font-size: 0.93rem; color: #bdd1c3; }
.step__label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f0b892;
  margin-bottom: 10px;
}

/* ------------------------------- Blog cards ----------------------------- */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--sage), var(--sand));
  overflow: hidden;
}
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--clay-dark);
}
.post-card__meta span { color: var(--muted); font-weight: 600; letter-spacing: 0.08em; }
.post-card h3 { font-size: 1.16rem; margin-bottom: 0; }
.post-card h3 a { color: var(--forest-deep); }
.post-card h3 a:hover { color: var(--clay-dark); }
.post-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.post-card__more {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clay-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.post-card__more svg { width: 15px; height: 15px; }

.post-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border: 1px solid var(--sage-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.post-featured__media { background: linear-gradient(150deg, var(--sage), var(--sand)); min-height: 320px; }
.post-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.post-featured__body { padding: clamp(28px, 4vw, 46px); align-self: center; }

.pill {
  display: inline-block;
  background: var(--sage);
  color: var(--forest);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 8px;
  margin-bottom: 8px;
}
.pill--clay { background: rgba(194, 104, 63, 0.14); color: var(--clay-dark); }

/* ------------------------------ Testimonials ---------------------------- */
.quote {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote__stars { display: flex; gap: 4px; color: var(--clay); }
.quote__stars svg { width: 17px; height: 17px; }
.quote blockquote { margin: 0; font-size: 1rem; color: var(--ink); font-style: italic; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
  flex: none;
}
.quote__who strong { display: block; font-size: 0.93rem; color: var(--forest-deep); }
.quote__who span { font-size: 0.82rem; color: var(--muted); }

/* ------------------------------- Newsletter ----------------------------- */
.newsletter {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 62px);
  color: #dfeade;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 104, 63, 0.35), transparent 68%);
}
.newsletter__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.newsletter h2 { color: var(--white); }
.newsletter p { color: #c3d5c8; }
.newsletter__benefits { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 11px; }
.newsletter__benefits li { display: flex; gap: 11px; color: #d9e7dc; font-size: 0.96rem; margin: 0; }
.newsletter__benefits svg { width: 19px; height: 19px; color: #f0b892; flex: none; margin-top: 4px; }

/* --------------------------------- Forms -------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow);
}
.form-card--onDark {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.5);
}
.form-card > h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.form-card__note { font-size: 0.88rem; color: var(--muted); }

.form-grid { display: grid; gap: 18px; }
.form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
}
.field .hint { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #fdfcf9;
  border: 1.5px solid var(--sage-line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #bccfc1; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--clay);
  box-shadow: var(--ring);
}
.field .error-msg {
  font-size: 0.8rem;
  color: #b03a25;
  font-weight: 600;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #cf6b52; background: #fff8f6; }
.field.has-error .error-msg { display: block; }

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--sand);
  border: 1.5px solid var(--sage-line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
}
.check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--clay);
  cursor: pointer;
}
.check label { font-size: 0.9rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.check label a { text-decoration: underline; }
.check.has-error { border-color: #cf6b52; background: #fff8f6; }
.check.has-error .error-msg { display: block; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 22px; }
.form-status {
  display: none;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.94rem;
  font-weight: 600;
  border: 1.5px solid;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #eef7f0; border-color: #b6d8c0; color: #1f5a3a; }
.form-status--info { background: #fdf3ec; border-color: #eccbb6; color: #8c4423; }

/* ------------------------------ Info panels ----------------------------- */
.info-card {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}
.info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex: none;
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.info-card p, .info-card address { margin: 0; font-size: 0.94rem; color: var(--muted); font-style: normal; line-height: 1.65; }
.info-card a { font-weight: 600; }

.page-hero {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(194, 104, 63, 0.16), transparent 62%),
    var(--sand);
  padding: clamp(46px, 6vw, 82px) 0 clamp(40px, 5vw, 66px);
  border-bottom: 1px solid var(--sage-line);
}
.page-hero__inner { max-width: 760px; }
.page-hero p { font-size: 1.06rem; color: var(--muted); margin-bottom: 0; }

.crumbs { font-size: 0.84rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--clay-dark); }
.crumbs span { color: var(--forest); }

/* ------------------------- Service detail (long form) ------------------- */
.service-detail { padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--sage-line); }
.service-detail:last-of-type { border-bottom: 0; }
.service-detail__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.service-detail__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--sage), #f2ece1);
  color: var(--forest);
}
.service-detail__icon svg { width: 28px; height: 28px; }
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 10px; margin: 0; font-size: 0.94rem; color: var(--muted); }
.tick-list svg { width: 18px; height: 18px; color: var(--clay); flex: none; margin-top: 4px; }

/* --------------------------- Article / legal prose ---------------------- */
.article { padding: clamp(44px, 5.5vw, 76px) 0; }
.article__inner { max-width: 800px; margin-inline: auto; }
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 16px 0 22px;
  border-bottom: 1px solid var(--sage-line);
  margin-bottom: 30px;
}
.article__meta strong { color: var(--forest-deep); }
.article__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--sage), var(--sand));
  aspect-ratio: 16 / 9;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__inner h2 { margin-top: 40px; font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.article__inner h3 { margin-top: 30px; font-size: 1.14rem; }
.article__inner p { font-size: 1.03rem; }
.article__inner > p:first-of-type { font-size: 1.12rem; color: var(--forest); }
.article blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  background: var(--sage);
  border-left: 4px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-size: 1.09rem;
  color: var(--forest-deep);
}
.article blockquote p { margin: 0; font-size: 1.09rem; }
.callout {
  background: var(--sand);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 32px 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 34px 0 0; }

.legal-nav {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.legal-nav h3 { font-size: 0.98rem; }
.legal-nav ol { margin: 0; padding-left: 1.1em; }
.legal-nav li { font-size: 0.92rem; }
.legal-nav a { color: var(--forest-soft); }

/* --------------------------------- Footer ------------------------------- */
.footer { background: var(--forest-deep); color: #b9ccc1; padding-top: clamp(48px, 6vw, 76px); }
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer a { color: #b9ccc1; }
.footer a:hover { color: var(--white); }
.footer .brand { color: var(--white); }
.footer .brand__tag { color: #8fa79a; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer li { margin: 0; font-size: 0.94rem; }
.footer__about p { font-size: 0.94rem; color: #a8bdb2; }
.footer address { font-style: normal; font-size: 0.94rem; line-height: 1.8; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: #93a99d;
}
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ---------------------------- Reveal animation -------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover, .post-card:hover, .feature:hover { transform: none; }
}
