:root {
  --forest: #14352e;
  --forest-deep: #0c241f;
  --moss: #2f6f5e;
  --berry: #8b2d45;
  --cream: #f4efe6;
  --paper: #fbfaf7;
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --line: #e4ddd2;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(20, 53, 46, 0.12);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.fh-site {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--moss); text-decoration: none; }
a:hover { color: var(--berry); }
h1, h2, h3, .fh-logo__name {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.container { width: min(1120px, calc(100% - 2.4rem)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .4rem .8rem; z-index: 20; }

.fh-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.fh-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.fh-logo { display: flex; align-items: center; gap: .65rem; color: var(--forest); font-weight: 650; }
.fh-logo img { max-height: 48px; width: auto; }
.fh-logo__mark { display: none; }
.fh-nav__list { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.fh-nav a { color: var(--forest); font-weight: 500; }
.fh-nav .current-menu-item > a, .fh-nav .current_page_item > a { color: var(--berry); }
.fh-nav-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: .45rem .8rem; border-radius: 8px; }

.fh-hero {
  position: relative; min-height: 78vh; display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.fh-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,36,31,.25), rgba(12,36,31,.78)),
    radial-gradient(1200px 500px at 80% 20%, rgba(139,45,69,.35), transparent 50%),
    linear-gradient(135deg, #14352e, #2f6f5e 55%, #8b2d45);
}
.fh-hero__copy { position: relative; padding: 7rem 0 4rem; max-width: 720px; }
.fh-hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin: .2rem 0 1rem; color: #fff; }
.lead { font-size: 1.15rem; max-width: 42rem; color: rgba(255,255,255,.9); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 600; color: var(--berry); margin: 0 0 .5rem; }
.eyebrow--light { color: #e7c25a; }
.lede { max-width: 40rem; color: var(--muted); }

.section { padding: 4.5rem 0; }
.section--cream { background: var(--cream); }
.section--forest { background: var(--forest-deep); color: #fff; }
.section--forest h2 { color: #fff; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: start; }
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.card-grid--2 { grid-template-columns: 1fr 1fr; }
.cat-card {
  display: block; min-height: 180px; padding: 1.8rem; border-radius: var(--radius);
  color: #fff; background: linear-gradient(160deg, var(--forest), var(--moss));
  box-shadow: var(--shadow);
}
.cat-card:nth-child(2) { background: linear-gradient(160deg, var(--forest-deep), var(--berry)); }
.cat-card h3, .cat-card p { color: #fff; }
.cat-card:hover { transform: translateY(-3px); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.2rem; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  color: inherit; box-shadow: 0 8px 24px rgba(20,53,46,.06);
}
.product-card img, .product-card__ph { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--cream); }
.product-card h3 { margin: 1rem 1rem .3rem; font-size: 1.15rem; }
.product-card p { margin: 0 1rem 1.1rem; color: var(--muted); font-size: .95rem; }
.spaced { margin-top: 3rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.2rem; border-radius: 999px; font-weight: 600;
  background: var(--berry); color: #fff; border: 1px solid var(--berry);
}
.btn:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.btn--light { background: #fff; color: var(--forest); border-color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-dark { background: transparent; color: var(--forest); border-color: var(--line); }
.fh-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.text-link { font-weight: 600; border-bottom: 1px solid currentColor; }

.page-hero { padding: 4.5rem 0 1.5rem; background: linear-gradient(180deg, #efe8dc, var(--paper)); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 .6rem; }
.prose p { max-width: 46rem; }
.frame-img { border-radius: var(--radius); width: 100%; box-shadow: var(--shadow); }
.video-frame { margin-top: 1rem; }
.video-frame iframe { width: 100%; min-height: 280px; border: 0; border-radius: var(--radius); }

.journey { list-style: none; margin: 0; padding: 0; }
.journey__step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1rem;
  padding: 1.3rem 0; border-bottom: 1px solid var(--line);
}
.journey__num {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700;
  background: var(--forest); color: #fff;
}
.filter-tabs { display: flex; gap: .6rem; list-style: none; padding: 0; margin: 0 0 1.5rem; flex-wrap: wrap; }
.filter-tabs a {
  display: inline-block; padding: .4rem .9rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--forest); background: #fff;
}
.filter-tabs .is-active { background: var(--forest); color: #fff; border-color: var(--forest); }

.product-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; }
.spec-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.spec-table th, .spec-table td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 34%; color: var(--muted); font-weight: 600; }
.gallery-row { display: flex; gap: .5rem; margin-top: .8rem; }
.gallery-row img { width: 30%; border-radius: 8px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; }
.contact-card, .contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
}
.wpcf7 input, .wpcf7 textarea {
  width: 100%; padding: .7rem .8rem; margin: 0 0 .8rem;
  border: 1px solid var(--line); border-radius: 8px; font: inherit;
}
.wpcf7 input[type="submit"] {
  width: auto; background: var(--berry); color: #fff; border: 0; padding: .75rem 1.3rem; cursor: pointer;
}

.cert-row { display: grid; gap: 1.2rem; }
.cert-list { display: flex; gap: .8rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.cert-list li {
  border: 1px solid rgba(255,255,255,.25); padding: .5rem 1rem; border-radius: 999px; letter-spacing: .08em;
}
.cta-band {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  background: var(--cream); padding: 2rem; border-radius: var(--radius);
}

.fh-footer { background: var(--forest-deep); color: #d9e4df; padding: 3rem 0 1.2rem; }
.fh-footer a { color: #fff; }
.fh-footer h2 { font-size: 1rem; color: #fff; }
.fh-footer ul { list-style: none; padding: 0; margin: 0; }
.fh-footer li { margin: .3rem 0; }
.fh-footer__grid { display: grid; grid-template-columns: 1.2fr .9fr .7fr; gap: 2rem; }
.fh-footer__brand { display: block; font-family: var(--display); font-size: 1.4rem; color: #fff; margin-bottom: .5rem; }
.fh-footer__bar { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1rem; font-size: .9rem; }

.fh-wa {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50;
  background: #128c7e; color: #fff; padding: .7rem 1rem; border-radius: 999px;
  font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.fh-wa:hover { color: #fff; background: #075e54; }

.map-embed iframe { width: 100%; min-height: 180px; border: 0; border-radius: 8px; }

.fh-profile-section { padding: 3.5rem 0 5rem; }
.fh-profile-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 2.5rem;
  align-items: start;
}
.fh-profile-featured {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.fh-profile-media {
  overflow: hidden;
  border-radius: 10px;
}
.fh-profile-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}
.fh-profile-media:hover .fh-profile-img {
  transform: scale(1.02);
}
.fh-profile-quote {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  background: #f7f9f8;
  border-left: 3px solid var(--moss);
  border-radius: 0 8px 8px 0;
}
.fh-profile-quote__text {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.55;
}
.fh-profile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}
.fh-feature-card {
  grid-column: span 2;
  background: #f4f8f6;
  border: 1px solid #d8e8e1;
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fh-feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--moss);
  box-shadow: 0 10px 25px rgba(20,53,46,.08);
}
.fh-feature-card--wide {
  grid-column: span 3;
}
.fh-feature-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--moss);
  margin-bottom: 0.4rem;
}
.fh-feature-card__title {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--forest);
  margin: 0 0 0.55rem;
  line-height: 1.25;
}
.fh-feature-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5550;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .split, .product-detail, .contact-grid, .fh-footer__grid, .card-grid--2, .product-grid, .fh-profile-layout {
    grid-template-columns: 1fr;
  }
  .fh-profile-grid {
    grid-template-columns: 1fr;
  }
  .fh-feature-card, .fh-feature-card--wide {
    grid-column: span 1;
  }
  .fh-nav-toggle { display: inline-flex; }
  .fh-nav { display: none; position: absolute; left: 0; right: 0; top: 76px; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 1.2rem 1.4rem; }
  .fh-nav.is-open { display: block; }
  .fh-nav__list { flex-direction: column; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .fh-hero { min-height: 70vh; }
}
