/* ==========================================================================
   Greenfield Furnace & Air — Global Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --blue: #1A3FA0;
  --blue-600: #18378c;
  --blue-700: #14306f;
  --navy: #0D1F5C;
  --navy-900: #0a1849;
  --red: #CC2020;
  --red-600: #b81b1b;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray-200: #e7e9ef;
  --gray-300: #d6dae4;
  --gray-500: #8a8f9c;
  --gray-600: #5f6573;
  --text: #1A1A1A;
  --text-soft: #41454f;

  /* Typography */
  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Mulish', system-ui, sans-serif;

  --fs-xs: 0.8125rem;   /* 13 */
  --fs-sm: 0.9375rem;   /* 15 */
  --fs-base: 1.0625rem; /* 17 */
  --fs-lg: 1.25rem;     /* 20 */
  --fs-xl: 1.5rem;      /* 24 */
  --fs-2xl: 2rem;       /* 32 */
  --fs-3xl: 2.75rem;    /* 44 */
  --fs-4xl: 3.5rem;     /* 56 */

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* Radii + shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(13, 31, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 31, 92, 0.10);
  --shadow-lg: 0 18px 50px rgba(13, 31, 92, 0.16);

  --maxw: 1200px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-3xl); font-weight: 800; }
h2 { font-size: var(--fs-2xl); font-weight: 800; }
h3 { font-size: var(--fs-xl); font-weight: 700; }
h4 { font-size: var(--fs-lg); font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; overflow-wrap: break-word; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--gray { background: var(--gray); }
.section--navy { background: var(--navy); color: #e8ecfb; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
  display: inline-block;
}
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--text-soft); font-size: var(--fs-lg); margin-bottom: 0; }
.lead { font-size: var(--fs-lg); color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--red { --btn-bg: var(--red); box-shadow: 0 6px 18px rgba(204, 32, 32, 0.28); }
.btn--red:hover { background: var(--red-600); box-shadow: 0 10px 26px rgba(204, 32, 32, 0.34); }
.btn--ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn--ghost-white:hover { background: #fff; color: var(--blue); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { color: var(--blue-700); }
.btn--lg { padding: 1.15rem 2rem; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #c9d2f2;
  font-size: var(--fs-xs);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.55rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__right { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(13,31,92,0.10); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--blue);
  letter-spacing: 0.01em;
}
.brand__sub {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
  padding: 0.35rem 0;
  position: relative;
  letter-spacing: 0.01em;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--blue); }

.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 0;
  background: var(--gray);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 3px; width: 22px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 520px at 88% -10%, rgba(204,32,32,0.28), transparent 58%),
    radial-gradient(720px 480px at 0% 110%, rgba(26,63,160,0.55), transparent 60%),
    linear-gradient(150deg, #16358a 0%, var(--navy) 55%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__inner {
  max-width: 600px;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb3b3;
  margin-bottom: 1rem;
}
.hero h1 { color: #fff; font-size: var(--fs-4xl); max-width: 15ch; margin-bottom: 1rem; line-height: 1.08; }
.hero__sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: rgba(214,222,255,0.92);
  margin-bottom: 2rem;
}
.hero__sub .dot { color: #ff6b6b; margin-inline: 0.35rem; font-weight: 800; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.72);
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__trust-sep {
  width: 1px;
  height: 13px;
  background: rgba(255,255,255,0.22);
  flex: 0 0 auto;
}

/* Hero media (framed photo + rating chip) */
.hero__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(360px, 42vw, 520px);
  margin-block: clamp(1.5rem, 4vw, 3rem);
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(5,12,40,0.55);
  outline: 1px solid rgba(255,255,255,0.12);
  outline-offset: -1px;
}
.hero__chip {
  position: absolute;
  left: -18px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  color: var(--navy);
  border-radius: var(--r-md);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 16px 36px rgba(5,12,40,0.32);
}
.hero__chip-stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.hero__chip-text { font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--text-soft); }
.hero__chip-text strong { color: var(--navy); font-weight: 800; }

/* Work gallery cards */
.work-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.work-card__caption {
  padding: 1.1rem 1.35rem;
}
.work-card__caption h4 { margin-bottom: 0.15rem; font-size: var(--fs-base); }
.work-card__caption p { color: var(--text-soft); font-size: var(--fs-sm); margin: 0; }

/* ---------- Page banner (inner pages) ---------- */
.banner {
  background:
    radial-gradient(900px 400px at 90% -40%, rgba(204,32,32,0.22), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--navy) 75%);
  color: #fff;
}
.banner__inner { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.banner h1 { color: #fff; margin-bottom: 0.5rem; }
.banner p { color: #cdd6ff; font-size: var(--fs-lg); margin: 0; max-width: 60ch; }
.breadcrumb {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: #b9c4f6;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.6; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }

/* Service card */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .ic-badge { margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--text-soft); margin-bottom: 1.25rem; }
.service-card .learn {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap .2s ease;
}
.service-card .learn:hover { gap: 0.75rem; }

/* Icon badge */
.ic-badge {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26,63,160,0.10), rgba(26,63,160,0.04));
  color: var(--blue);
  border: 1px solid rgba(26,63,160,0.12);
}
.ic-badge svg { width: 32px; height: 32px; }
.ic-badge--red { background: linear-gradient(135deg, rgba(204,32,32,0.10), rgba(204,32,32,0.04)); color: var(--red); border-color: rgba(204,32,32,0.14); }

/* Feature block */
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature .ic-badge { flex: 0 0 auto; width: 56px; height: 56px; }
.feature h4 { margin-bottom: 0.25rem; }
.feature p { color: var(--text-soft); margin: 0; font-size: var(--fs-sm); }

/* Review card */
.review-card { display: flex; flex-direction: column; }
.stars { color: #f5a623; font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 0.85rem; }
.review-card blockquote { margin: 0 0 1.25rem; font-size: var(--fs-base); color: var(--text-soft); line-height: 1.6; }
.review-card .who {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}
.review-card .who span { display: block; font-weight: 600; font-size: var(--fs-sm); color: var(--gray-600); }
.reviews-summary {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 0.7rem 1.25rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.g-logo { font-weight: 800; font-family: var(--font-head); letter-spacing: 0.02em; }
.g-logo .b{color:#4285F4}.g-logo .r{color:#EA4335}.g-logo .y{color:#FBBC05}.g-logo .b2{color:#4285F4}.g-logo .g{color:#34A853}.g-logo .r2{color:#EA4335}

/* ---------- CTA banner (red) ---------- */
.cta-red {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, var(--red) 0%, var(--red-600) 100%);
  color: #fff;
  text-align: center;
}
.cta-red h2 { color: #fff; font-size: var(--fs-3xl); margin-bottom: 0.5rem; }
.cta-red p { color: #ffe3e3; font-size: var(--fs-lg); max-width: 60ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-red .badges-line {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem;
  font-family: var(--font-head); font-weight: 700; color: #fff;
  margin-bottom: 2rem;
}
.cta-red .badges-line span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ---------- Pills (service area) ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.6rem 1.15rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.pill:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }
.pill .check { color: var(--red); font-weight: 800; }

/* Area cards */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.area-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  transition: transform .15s ease, box-shadow .15s ease, border-left-color .15s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--red); }
.area-card .check {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: rgba(26,63,160,0.10);
  color: var(--blue);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ---------- Two-column service layout ---------- */
.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.prose h2 { margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-soft); }
.check-list { list-style: none; display: grid; gap: 0.75rem; margin: 1.25rem 0 1.5rem; }
.check-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  color: var(--text-soft);
}
.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 26px; height: 26px;
  margin-top: 1px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
}
.check-list.red li::before { background: var(--red); }
.check-list li strong { color: var(--navy); font-family: var(--font-head); }

/* Sign list (warning) */
.sign-list { list-style: none; display: grid; gap: 0.65rem; margin: 1.25rem 0; }
.sign-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  color: var(--text-soft);
  background: var(--gray);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
}
.sign-list li::before { content: "!"; flex: 0 0 auto; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.78rem; font-family: var(--font-head); margin-top: 1px; line-height: 1; }

/* Brand badge (Goodman) */
.brand-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; max-width: 100%;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 1rem 1.4rem;
  box-shadow: var(--shadow-sm); margin-top: 1rem;
}
.brand-badge .mark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: var(--blue); letter-spacing: -0.02em;
}
.brand-badge .mark em { color: var(--red); font-style: normal; }
.brand-badge .txt { font-size: var(--fs-sm); color: var(--text-soft); }
.brand-badge .txt strong { color: var(--navy); font-family: var(--font-head); display: block; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
}
.form-card.sticky { position: sticky; top: calc(var(--header-h) + 1.25rem); }
.form-card h3 { margin-bottom: 0.25rem; }
.form-card .form-note { color: var(--text-soft); font-size: var(--fs-sm); margin-bottom: 1.25rem; }
.field { display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--navy);
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-sm);
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,63,160,0.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.radio-row { display: flex; gap: 1.25rem; }
.radio-row label { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; }
.radio-row input { width: auto; }
.form-success {
  display: none;
  background: rgba(26,63,160,0.08);
  border: 1px solid rgba(26,63,160,0.2);
  color: var(--blue-700);
  border-radius: var(--r-sm);
  padding: 1rem 1.15rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}
.form-success.show { display: block; }

/* contact detail list */
.contact-list { list-style: none; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic-badge { width: 52px; height: 52px; flex: 0 0 auto; }
.contact-list .lbl { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: block; }
.contact-list a, .contact-list .val { color: var(--text-soft); }
.contact-list a:hover { color: var(--blue); }
.callout {
  background: rgba(204,32,32,0.06);
  border: 1px solid rgba(204,32,32,0.18);
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  margin-top: 1.5rem;
}
.callout strong { color: var(--red); font-family: var(--font-head); }

/* ---------- Values / about ---------- */
.value-card { text-align: center; }
.value-card .ic-badge { margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.35rem; }
.value-card p { color: var(--text-soft); font-size: var(--fs-sm); margin: 0; }

.stat-row { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.stat { }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: var(--fs-3xl); color: var(--blue); line-height: 1; }
.stat .lbl { font-family: var(--font-head); font-weight: 600; color: var(--text-soft); font-size: var(--fs-sm); }

/* image placeholder */
.img-ph {
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(45deg, var(--gray) 0 14px, #eceef3 14px 28px);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  color: var(--gray-600);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: var(--fs-xs);
  min-height: 280px;
  text-align: center;
  padding: 1rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c2ccef; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: #ff8a8a; }
.footer__brand p { margin-top: 1rem; color: #9fabd6; font-size: var(--fs-sm); max-width: 32ch; }
.footer h4 {
  color: #fff;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer a { color: #c2ccef; font-size: var(--fs-sm); }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.25rem;
  text-align: center;
  font-size: var(--fs-xs);
  color: #8c98c6;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr !important; }
  .form-card.sticky { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Shorten the header call button before things get tight */
@media (max-width: 1080px) {
  .nav .btn-call-top .num { display: none; }
}

/* Collapse nav into hamburger early enough that the row never overflows */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height: 420px; }
  .nav__links a {
    padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
    font-size: var(--fs-base);
  }
  .nav__links a::after { display: none; }
  .nav__links a.active { background: var(--gray); }
}

@media (max-width: 760px) {
  :root { --fs-4xl: 2.5rem; --fs-3xl: 2.1rem; --fs-2xl: 1.7rem; }
  .topbar__inner { justify-content: center; gap: 0.35rem 1.25rem; }
  .hero__cta .btn { flex: 1 1 auto; }
}

/* On small phones the topbar already carries the number — drop the header button */
@media (max-width: 600px) {
  .nav__cta .btn-call-top { display: none; }
}

/* On very small phones hide the email in the topbar — phone number is sufficient */
@media (max-width: 480px) {
  .topbar__right a[href^="mailto"] { display: none; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__inner { max-width: none; padding-bottom: 0.5rem; }
  .hero h1 { max-width: 20ch; }
  .hero__media { min-height: 300px; margin-top: 2rem; margin-bottom: clamp(2.5rem, 8vw, 3.5rem); }
  .hero__chip { left: 0; bottom: -16px; }
}

@media (max-width: 560px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}


/* ---------- Inline line icons (replaces emoji) ---------- */
.ico { width: 1.15em; height: 1.15em; flex: 0 0 auto; vertical-align: -0.2em; }
.btn .ico { width: 1.2em; height: 1.2em; }
.topbar__item .ico { width: 15px; height: 15px; }
.footer__contact .ico { width: 17px; height: 17px; margin-top: 2px; opacity: .85; }
.hero__badge .ic { display: inline-flex; align-items: center; }
.hero__badge .ico { width: 22px; height: 22px; color: #ffce5a; }
.cta-red .badges-line .ico { width: 1.05em; height: 1.05em; }
.callout strong .ico { width: 1.15em; height: 1.15em; margin-right: 2px; }
.form-success .ico { width: 1.1em; height: 1.1em; margin-right: 4px; color: var(--blue); vertical-align: -0.18em; }


/* ---------- Photography ---------- */
.card-media { margin: -2rem -2rem 1.5rem; height: 190px; background-size: cover; background-position: center; border-radius: 13px 13px 0 0; }
.media { border-radius: 14px; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.prose > .media { height: 300px; margin-bottom: 1.75rem; }
/* ---------- Map embeds ---------- */
.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { display: block; width: 100%; border: 0; }
