/* ============================================================
   HARDEV SERVICES INC. — "Care with Heart, Serve with Pride"
   Warm heritage-care design system
   Palette drawn from the brand logo: deep forest green, golden
   hands, cream paper, with the logo's people-colors (blue,
   orange, leaf, heart-red) as small accents.
   ============================================================ */

:root {
  /* brand core */
  --green-950: #0d301b;
  --green-900: #113d23;
  --green-800: #15502d;
  --green-700: #1b5e36;
  --green-600: #247a46;
  --green-100: #dcead9;
  --green-050: #eef4ea;

  --gold-600: #d99b06;
  --gold-500: #f0b41c;
  --gold-400: #f6c84a;
  --gold-200: #fbe6a8;
  --gold-100: #fdf2d2;

  --cream: #fbf6ea;
  --cream-2: #f5edda;
  --paper: #fffdf7;

  /* logo people accents — use sparingly */
  --blue: #1f6fd2;
  --orange: #ee7a19;
  --leaf: #5fb32c;
  --heart: #e23b3b;

  --ink: #2c3a31;
  --ink-soft: #55655b;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px -12px rgba(17, 61, 35, 0.18);
  --shadow-lift: 0 22px 44px -18px rgba(17, 61, 35, 0.28);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --container: 1160px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

[id] { scroll-margin-top: 110px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 1.14;
  margin: 0 0 0.6em;
  font-weight: 640;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }

a { color: var(--green-700); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--green-600); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-200); color: var(--green-900); }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--green-900); color: var(--cream);
  padding: 0.6rem 1.2rem; border-radius: 999px;
  z-index: 200; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: var(--cream); }

/* ---------- top ribbon ---------- */
.topbar {
  background: var(--green-900);
  color: #e9f2e6;
  font-size: 0.86rem;
  padding: 0.42rem 0;
}
.topbar .container {
  display: flex; gap: 1.6rem; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.topbar-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { color: #f5efdc; text-decoration: none; }
.topbar a:hover { color: var(--gold-400); }
.topbar-item { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; flex: none; color: var(--gold-400); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 94, 54, 0.12);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.55rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.brand img { height: 62px; width: auto; }
.brand-text { line-height: 1.12; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.18rem; color: var(--green-900);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-family: var(--font-script);
  font-size: 0.98rem; color: var(--blue); font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  position: relative;
  text-decoration: none; color: var(--green-900);
  font-weight: 700; font-size: 0.97rem;
  padding: 0.55rem 0.85rem; border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-nav a:hover { background: var(--green-050); }
.site-nav a.is-active { color: var(--green-800); }
.site-nav a.is-active::after {
  content: "";
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.28rem;
  height: 4px; border-radius: 4px;
  background: var(--gold-500);
}
.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--green-800); border-radius: 12px;
  width: 44px; height: 40px; cursor: pointer; color: var(--green-900);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 800; font-size: 0.98rem;
  padding: 0.78rem 1.55rem; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-green { background: var(--green-800); color: #fdf9ec; box-shadow: 0 12px 22px -12px rgba(17, 61, 35, 0.55); }
.btn-green:hover { background: var(--green-700); color: #fff; box-shadow: 0 16px 28px -12px rgba(17, 61, 35, 0.55); }

.btn-gold { background: var(--gold-500); color: var(--green-950); box-shadow: 0 12px 22px -12px rgba(217, 155, 6, 0.6); }
.btn-gold:hover { background: var(--gold-400); color: var(--green-950); }

.btn-outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline:hover { background: var(--green-800); color: var(--cream); }

.btn-outline-light { border-color: rgba(251, 246, 234, 0.7); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: var(--cream); color: var(--green-900); }

/* ---------- eyebrow + headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: "✦";
  color: var(--gold-500); font-size: 0.85rem; letter-spacing: 0;
}
.eyebrow.left::before { content: "✦"; }
.eyebrow.no-caps { text-transform: none; letter-spacing: 0.04em; }

.on-dark .eyebrow, .eyebrow.light { color: var(--gold-400); }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
.section-head .lede { color: var(--ink-soft); font-size: 1.08rem; }

.script-note {
  font-family: var(--font-script);
  color: var(--blue);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- sections ---------- */
.section { padding-block: clamp(3.8rem, 8vw, 6.6rem); position: relative; }
.section.tight { padding-block: clamp(2.6rem, 5vw, 4rem); }
.section-paper { background: var(--paper); }
.section-cream2 { background: var(--cream-2); }
.section-green { background: var(--green-900); color: #e7efe2; }
.section-green h2, .section-green h3 { color: var(--cream); }

/* halftone dot texture (echoes the brand flyer corners) */
.halftone {
  position: absolute; width: 320px; height: 320px; pointer-events: none;
  background-image: radial-gradient(var(--gold-400) 1.7px, transparent 1.7px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.55), transparent 68%);
          mask-image: radial-gradient(circle at center, rgba(0,0,0,0.55), transparent 68%);
  opacity: 0.55;
  z-index: 0;
}
.halftone.green { background-image: radial-gradient(var(--green-600) 1.7px, transparent 1.7px); opacity: 0.28; }
.halftone.tl { top: -70px; left: -70px; }
.halftone.tr { top: -70px; right: -70px; }
.halftone.bl { bottom: -70px; left: -70px; }
.halftone.br { bottom: -70px; right: -70px; }

/* golden swoosh divider (echoes flyer ribbon) */
.swoosh { display: block; width: 100%; height: 60px; }
.swoosh path { fill: currentColor; }

/* confetti — the logo's people-colors as tiny dots */
.confetti { position: absolute; pointer-events: none; z-index: 3; }
.confetti span {
  position: absolute; border-radius: 50%;
  width: 10px; height: 10px;
  animation: float 5s ease-in-out infinite;
}
.confetti span:nth-child(1) { background: var(--blue); top: 0; left: 6px; width: 9px; height: 9px; }
.confetti span:nth-child(2) { background: var(--orange); top: 30px; left: 42px; width: 13px; height: 13px; animation-delay: 0.7s; }
.confetti span:nth-child(3) { background: var(--leaf); top: 74px; left: 8px; width: 8px; height: 8px; animation-delay: 1.4s; }
.confetti span:nth-child(4) { background: var(--heart); top: 58px; left: 56px; width: 7px; height: 7px; animation-delay: 2.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: clip; padding-block: clamp(3rem, 7vw, 5.5rem) 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative; z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.8rem);
  font-weight: 680;
  margin-bottom: 1.1rem;
}
.hero h1 .accent {
  font-style: italic; font-weight: 620;
  color: var(--green-700);
  position: relative; white-space: nowrap;
}
.hero h1 .accent::after {
  content: "";
  position: absolute; left: 2%; right: 2%; bottom: 0.06em;
  height: 0.28em; z-index: -1; border-radius: 999px;
  background: var(--gold-400);
  opacity: 0.75;
}
.hero .lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.9rem; }

.hero-points { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-point { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.93rem; color: var(--green-800); }
.hero-point .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }

.hero-figure { position: relative; }
.hero-figure .arch {
  position: relative; z-index: 2;
  border-radius: 46% 46% 30px 30px / 34% 34% 30px 30px;
  overflow: hidden;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow-lift);
}
.hero-figure .arch img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.hero-figure::before {
  content: "";
  position: absolute; inset: 8% -6% -6% 10%;
  border-radius: 46% 46% 34px 34px / 36% 36% 34px 34px;
  background: linear-gradient(160deg, var(--gold-400), var(--gold-500));
  z-index: 1;
  transform: rotate(3deg);
}
.hero-figure .badge-hours {
  position: absolute; z-index: 4; right: -6px; bottom: 26px;
  background: var(--paper); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 0.75rem 1.05rem;
  display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid rgba(27, 94, 54, 0.1);
}
.badge-hours svg { width: 30px; height: 30px; color: var(--green-700); flex: none; }
.badge-hours .t1 { font-weight: 800; font-size: 0.86rem; color: var(--green-900); line-height: 1.3; }
.badge-hours .t2 { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.3; }

.hero-script { position: absolute; z-index: 4; left: 4px; top: -14px; transform: rotate(-4deg); }

/* wave into next section */
.hero-wave { color: var(--paper); margin-top: -2px; position: relative; z-index: 1; }

/* ---------- welcome strip ---------- */
.welcome-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.welcome-grid h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }

.stat-chips { display: grid; gap: 0.9rem; margin-top: 0.4rem; }
.chip-line {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--paper); border: 1px solid rgba(27, 94, 54, 0.1);
  border-radius: var(--radius-md); padding: 0.95rem 1.15rem;
  box-shadow: var(--shadow-soft);
}
.chip-line .ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
}
.chip-line .ico svg { width: 21px; height: 21px; }
.chip-line b { color: var(--green-900); display: block; font-size: 0.99rem; }
.chip-line span { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; display: block; }

/* ---------- mission / vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; position: relative; z-index: 2; }
.mv-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative; overflow: hidden;
}
.mv-card h3 { font-size: 1.55rem; margin-bottom: 0.35rem; }
.mv-card .sub {
  font-family: var(--font-script); font-size: 1.35rem; font-weight: 600;
  margin-bottom: 0.9rem; display: block;
}
.mv-mission { background: linear-gradient(150deg, var(--green-800), var(--green-950)); color: #dcead9; }
.mv-mission h3 { color: var(--cream); }
.mv-mission .sub { color: var(--gold-400); }
.mv-mission p { color: #cfe0ca; }
.mv-vision { background: linear-gradient(150deg, var(--gold-100), #fdf7e3); border: 1px solid var(--gold-200); }
.mv-vision .sub { color: var(--blue); }
.mv-card .watermark {
  position: absolute; right: -34px; bottom: -40px; width: 190px; opacity: 0.1;
  pointer-events: none;
}
.mv-card .mv-ico {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.mv-mission .mv-ico { background: rgba(240, 180, 28, 0.18); color: var(--gold-400); }
.mv-vision .mv-ico { background: rgba(27, 94, 54, 0.1); color: var(--green-700); }
.mv-card .mv-ico svg { width: 26px; height: 26px; }

/* ---------- values ---------- */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  position: relative; z-index: 2;
}
.value-card {
  background: var(--paper);
  border: 1px solid rgba(27, 94, 54, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--vc, var(--gold-500));
  border-radius: 0 0 6px 6px;
  opacity: 0.85;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.value-card .v-ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: color-mix(in srgb, var(--vc, var(--gold-500)) 14%, white);
  color: var(--vc, var(--gold-600));
  transition: transform 0.25s ease;
}
.value-card:hover .v-ico { transform: rotate(-8deg) scale(1.06); }
.value-card .v-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.22rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.62; }

/* ---------- service cards (home preview) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.svc-card {
  grid-column: span 2;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 94, 54, 0.09);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 3; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.svc-card .thumb { position: relative; aspect-ratio: 16 / 8.6; overflow: hidden; }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 48, 27, 0.35), transparent 55%);
}
.svc-card .body { padding: 1.35rem 1.4rem 1.45rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.svc-card h3 { font-size: 1.18rem; margin: 0; }
.svc-card .abbr {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--green-800); background: var(--gold-200);
  border-radius: 999px; padding: 0.18rem 0.7rem;
  margin-bottom: 0.2rem;
}
.svc-card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; flex: 1; }
.svc-card .more {
  margin-top: 0.8rem; font-weight: 800; font-size: 0.9rem; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.svc-card .more svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr auto; gap: 2rem; align-items: center;
}
.cta-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.5rem; }
.cta-inner p { color: #c9dcc3; margin: 0; max-width: 58ch; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 320px at 85% -60px, rgba(240, 180, 28, 0.16), transparent 70%),
    var(--cream);
  padding-block: clamp(3rem, 6.5vw, 4.8rem) clamp(2.4rem, 5vw, 3.6rem);
  border-bottom: 1px solid rgba(27, 94, 54, 0.08);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-bottom: 0.5rem; }
.page-hero .lede { max-width: 66ch; color: var(--ink-soft); font-size: 1.1rem; margin: 0; }
.crumbs { font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; color: var(--ink-soft); }
.crumbs a { text-decoration: none; color: var(--green-700); }
.crumbs span { margin-inline: 0.45rem; color: var(--gold-600); }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-figure { position: relative; }
.about-figure img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  border: 8px solid var(--paper);
  position: relative; z-index: 2;
  width: 100%; object-fit: cover;
}
.about-figure::before {
  content: ""; position: absolute; inset: 10% -5% -5% 12%;
  background: linear-gradient(150deg, var(--green-100), var(--green-600));
  opacity: 0.5;
  border-radius: var(--radius-lg);
  z-index: 1; transform: rotate(-2.5deg);
}
.commit-list { display: grid; gap: 1.05rem; margin-top: 0.5rem; }
.commit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border-radius: var(--radius-md);
  border: 1px solid rgba(27, 94, 54, 0.09);
  padding: 1.05rem 1.2rem;
  box-shadow: var(--shadow-soft);
}
.commit-item .ci {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--vc, var(--gold-500)) 15%, white);
  color: var(--vc, var(--gold-600));
}
.commit-item .ci svg { width: 21px; height: 21px; }
.commit-item b { color: var(--green-900); }
.commit-item p { margin: 0.1rem 0 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- services page rows ---------- */
.svc-row {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.8rem, 4.5vw, 3.6rem);
  align-items: center;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.svc-row + .svc-row { border-top: 1px dashed rgba(27, 94, 54, 0.18); }
.svc-row.flip .svc-media { order: 2; }
.svc-media { position: relative; }
.svc-media img {
  border-radius: var(--radius-lg);
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-lift);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  position: relative; z-index: 2;
}
.svc-media::before {
  content: ""; position: absolute; inset: 12% -4% -4% 10%;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(-45deg, var(--gold-200) 0 9px, transparent 9px 20px);
  z-index: 1;
}
.svc-row.flip .svc-media::before { inset: 12% 10% -4% -4%; }
.svc-media .num {
  position: absolute; z-index: 3; top: -18px; left: -10px;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  background: var(--green-900); color: var(--gold-400);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.svc-body .abbr {
  display: inline-block; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-800);
  background: var(--gold-200); padding: 0.22rem 0.8rem; border-radius: 999px;
  margin-bottom: 0.9rem;
}
.svc-body h2 { font-size: clamp(1.55rem, 2.6vw, 2.05rem); }
.svc-body > p { color: var(--ink-soft); }
.include-label {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-700); margin: 1.3rem 0 0.75rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.include-label::after { content: ""; height: 2px; flex: 0 0 46px; background: var(--gold-500); border-radius: 2px; }
.include-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.include-list li {
  background: var(--paper); border: 1px solid rgba(27, 94, 54, 0.14);
  padding: 0.42rem 0.95rem 0.42rem 0.75rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; color: var(--green-900);
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 10px -6px rgba(17, 61, 35, 0.18);
}
.include-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ac, var(--gold-500));
}
.include-list li:nth-child(5n + 1) { --ac: var(--blue); }
.include-list li:nth-child(5n + 2) { --ac: var(--orange); }
.include-list li:nth-child(5n + 3) { --ac: var(--leaf); }
.include-list li:nth-child(5n + 4) { --ac: var(--heart); }
.include-list li:nth-child(5n + 5) { --ac: var(--gold-500); }

/* ---------- careers ---------- */
.role-grid { display: grid; gap: 1.7rem; }
.role-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 94, 54, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.role-head {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.5rem, 3vw, 2.2rem) 0;
}
.role-ico {
  width: 58px; height: 58px; flex: none; border-radius: 18px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--vc, var(--gold-500)) 15%, white);
  color: var(--vc, var(--gold-600));
}
.role-ico svg { width: 28px; height: 28px; }
.role-head h2 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.role-head .role-type {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--vc, var(--gold-600));
}
.role-body { padding: 0.9rem clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 3vw, 2rem); }
.role-body > p { color: var(--ink-soft); }

.role-card details {
  border-top: 1px dashed rgba(27, 94, 54, 0.2);
  margin-top: 1.1rem; padding-top: 0.4rem;
}
.role-card summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 800; color: var(--green-800); padding: 0.7rem 0;
  border-radius: 8px;
}
.role-card summary::-webkit-details-marker { display: none; }
.role-card summary .chev {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--green-050); color: var(--green-800);
  display: grid; place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.role-card summary .chev svg { width: 16px; height: 16px; }
.role-card details[open] summary .chev { transform: rotate(180deg); background: var(--gold-200); }
.resp-list { list-style: none; margin: 0.3rem 0 0.6rem; padding: 0; display: grid; gap: 0.5rem; grid-template-columns: 1fr 1fr; }
.resp-list li {
  position: relative; padding-left: 1.6rem; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.55;
}
.resp-list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 13px; height: 13px; border-radius: 50%;
  background: color-mix(in srgb, var(--vc, var(--gold-500)) 22%, white);
  border: 2.5px solid var(--vc, var(--gold-500));
}
.role-apply { margin-top: 1.2rem; display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; }
.role-apply .note { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.info-stack { display: grid; gap: 1.1rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper); border-radius: var(--radius-md);
  border: 1px solid rgba(27, 94, 54, 0.1);
  padding: 1.15rem 1.3rem; box-shadow: var(--shadow-soft);
}
.info-card .ic {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--vc, var(--gold-500)) 14%, white);
  color: var(--vc, var(--gold-600));
}
.info-card .ic svg { width: 22px; height: 22px; }
.info-card b { color: var(--green-900); display: block; margin-bottom: 0.1rem; }
.info-card p, .info-card a { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }
.info-card a { color: var(--green-700); font-weight: 700; }

/* flyer-style hours card */
.hours-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--green-800);
  background: var(--paper); box-shadow: var(--shadow-soft);
}
.hours-head {
  background: var(--green-800); color: var(--cream);
  text-align: center; padding: 0.8rem 1rem;
  font-weight: 800; letter-spacing: 0.2em; font-size: 0.86rem; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.hours-head::before, .hours-head::after { content: "✦"; color: var(--gold-400); letter-spacing: 0; }
.hours-body { padding: 1.3rem 1.4rem 1.4rem; text-align: center; }
.hours-days { font-weight: 800; color: var(--green-900); letter-spacing: 0.06em; }
.hours-sep {
  border: none; border-top: 2px dotted var(--gold-500);
  margin: 0.6rem auto; width: 70%;
}
.hours-time { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--green-900); }
.hours-closed {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-400); color: var(--green-950);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 0.38rem 1rem; border-radius: 999px; margin-top: 0.9rem;
}

.form-card {
  background: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 94, 54, 0.1);
  box-shadow: var(--shadow-lift);
  padding: clamp(1.6rem, 3.4vw, 2.4rem);
  position: relative; overflow: hidden;
}
.form-card h2 { font-size: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-weight: 800; font-size: 0.88rem;
  color: var(--green-900); margin-bottom: 0.4rem;
}
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.99rem; color: var(--ink);
  background: var(--cream); border: 2px solid rgba(27, 94, 54, 0.16);
  border-radius: 13px; padding: 0.78rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-700); background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 180, 28, 0.25);
}
.form-note { font-size: 0.87rem; color: var(--ink-soft); margin: 0.9rem 0 0; }
.form-status {
  display: none; margin-top: 1rem; padding: 0.85rem 1.1rem;
  background: var(--green-050); border: 1.5px solid var(--green-600);
  color: var(--green-800); border-radius: 12px; font-weight: 700; font-size: 0.93rem;
}
.form-status.show { display: block; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 8px solid var(--paper); box-shadow: var(--shadow-lift);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-950); color: #c4d5bd; position: relative; overflow: hidden; }
.footer-swoosh { color: var(--cream); transform: scaleY(-1); display: block; }
.section-paper + .site-footer .footer-swoosh, .footer-swoosh.paper { color: var(--paper); }
.footer-grid {
  display: grid; grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(2.8rem, 5vw, 4rem) 2.4rem;
  position: relative; z-index: 2;
}
.footer-brand .chip {
  background: #fff; border-radius: 18px; padding: 0.9rem;
  display: inline-block; margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.45);
}
.footer-brand .chip img { width: 132px; }
.footer-brand p { font-size: 0.93rem; line-height: 1.65; max-width: 34ch; }
.site-footer h4 {
  color: var(--cream); font-size: 1.02rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.site-footer h4::before { content: "✦"; color: var(--gold-400); font-size: 0.8rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-links a {
  color: #c4d5bd; text-decoration: none; font-size: 0.94rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: 0.93rem; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 0.24em; color: var(--gold-400); }
.footer-contact a { color: #c4d5bd; text-decoration: none; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(196, 213, 189, 0.18);
  padding-block: 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom .script-note { color: var(--gold-400); font-size: 1.15rem; }

/* ---------- blog ---------- */
.container.narrow { max-width: 840px; margin-inline: auto; width: min(840px, calc(100% - 2.5rem)); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
.post-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 94, 54, 0.09);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.post-card .thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .cover-fallback {
  display: grid; place-items: center; width: 100%; height: 100%;
  background:
    radial-gradient(circle at 80% 15%, rgba(240, 180, 28, 0.25), transparent 55%),
    linear-gradient(150deg, var(--cream), var(--cream-2));
}
.post-card .cover-fallback img { width: 110px; height: auto; object-fit: contain; opacity: 0.9; transform: none !important; }
.post-card .body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.post-card h3 { font-size: 1.16rem; margin: 0; }
.post-card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; flex: 1; }
.post-card .more {
  margin-top: 0.8rem; font-weight: 800; font-size: 0.9rem; color: var(--green-700);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.post-card .more svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.post-card:hover .more svg { transform: translateX(4px); }

.post-meta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; font-size: 0.8rem; font-weight: 800; color: var(--gold-600); letter-spacing: 0.06em; text-transform: uppercase; }
.post-meta.big { font-size: 0.9rem; margin-top: 0.4rem; }
.post-meta .post-date { display: inline-flex; align-items: center; gap: 0.4rem; }
.post-meta .post-date svg { width: 15px; height: 15px; }

.draft-pill {
  display: inline-block; background: var(--gold-400); color: var(--green-950);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em;
  border-radius: 999px; padding: 0.3rem 0.95rem; margin-bottom: 0.9rem;
}

.post-cover { margin: 0 0 2rem; }
.post-cover img {
  width: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--radius-lg); border: 8px solid var(--paper);
  box-shadow: var(--shadow-lift);
}
.post-article { padding-top: clamp(2.4rem, 5vw, 3.6rem); }
.post-body { font-size: 1.06rem; line-height: 1.8; }
.post-body h2 { font-size: 1.65rem; margin: 1.6em 0 0.5em; }
.post-body h3 { font-size: 1.3rem; margin: 1.4em 0 0.45em; }
.post-body img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); margin: 1.4rem auto; }
.post-body blockquote {
  margin: 1.6rem 0; padding: 1rem 1.3rem;
  background: var(--gold-100); border-left: 5px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--green-900);
}
.post-body ul, .post-body ol { padding-left: 1.4rem; }
.post-body li { margin-bottom: 0.35rem; }
.post-body a { color: var(--green-700); font-weight: 700; }
.post-footer {
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px dashed rgba(27, 94, 54, 0.25);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}

.empty-note {
  text-align: center; max-width: 480px; margin: 0 auto;
  background: var(--paper); border: 2px dashed rgba(27, 94, 54, 0.2);
  border-radius: var(--radius-lg); padding: 3rem 2rem;
}
.empty-note .big { font-size: 1.8rem; color: var(--gold-500); display: block; margin-bottom: 0.5rem; }
.empty-note h3 { margin-bottom: 0.4rem; }
.empty-note p { color: var(--ink-soft); margin: 0; }

/* ---------- gallery ---------- */
.gallery-grid { columns: 3 280px; column-gap: 1.2rem; }
.gallery-item {
  break-inside: avoid; margin: 0 0 1.2rem;
  background: var(--paper); border-radius: var(--radius-md);
  border: 1px solid rgba(27, 94, 54, 0.09);
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery-zoom { display: block; width: 100%; border: none; padding: 0; background: none; cursor: zoom-in; }
.gallery-zoom img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-zoom img { transform: scale(1.04); }
.gallery-item figcaption { padding: 0.7rem 1rem 0.85rem; font-size: 0.9rem; font-weight: 700; color: var(--green-900); }

.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13, 48, 27, 0.9);
  display: grid; place-items: center; padding: 2rem;
}
.lightbox figure { margin: 0; max-width: min(1080px, 94vw); text-align: center; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 14px; box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6); }
.lightbox figcaption { color: var(--cream); font-weight: 700; margin-top: 0.9rem; }
.lightbox-close {
  position: absolute; top: 0.9rem; right: 1.3rem;
  background: none; border: none; color: var(--cream);
  font-size: 2.4rem; line-height: 1; cursor: pointer; font-family: var(--font-body);
}
.lightbox-close:hover { color: var(--gold-400); }

/* ---------- reveal animations (only when JS is available) ---------- */
html.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
html.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card, .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 1; }
  .svc-card:last-child { grid-column: span 2; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid, .post-grid.two { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--paper);
    border-bottom: 1px solid rgba(27, 94, 54, 0.12);
    box-shadow: 0 24px 34px -20px rgba(17, 61, 35, 0.25);
    padding: 0.9rem 1.2rem 1.2rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75rem 0.9rem; }
  .site-nav a.is-active::after { left: 0.9rem; right: auto; width: 30px; }
  .nav-cta { margin: 0.5rem 0 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }

  .hero-grid, .welcome-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 560px; margin-inline: auto; }
  .mv-grid { grid-template-columns: 1fr; }
  .svc-row, .svc-row.flip { grid-template-columns: 1fr; }
  .svc-row.flip .svc-media { order: 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .resp-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .topbar .container { justify-content: center; }
  .topbar-group:last-child { display: none; }
  .brand img { height: 48px; }
  .brand-name { font-size: 1rem; letter-spacing: 0.01em; }
  .brand-tag { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card:last-child { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-figure .badge-hours { right: 8px; bottom: 12px; }
  .halftone { width: 220px; height: 220px; }
  .post-grid, .post-grid.two { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 150px; column-gap: 0.8rem; }
  .gallery-item { margin-bottom: 0.8rem; }
  .post-footer { justify-content: center; }
}
