/* ============================================================
   THR Tax LLC — Brand System & Global Styles
   Navy #002848 · Green #68A820 · Cream #F4F1E8
   ============================================================ */

:root {
  --navy: #002848;
  --navy-90: #0b3358;
  --green: #68A820;
  --green-deep: #4E8018;
  --paper: #FFFFFF;
  --soft: #F4F1E8;
  --soft-2: #F7F4EB;
  --line: #E6E1D3;
  --muted: #5A6270;
  --ink: #002848;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 12px;
  --pill: 999px;
  --shadow-sm: 0 1px 3px rgba(0,40,72,.06), 0 4px 14px rgba(0,40,72,.05);
  --shadow-md: 0 8px 30px rgba(0,40,72,.10);

  --font: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; color: var(--navy); margin: 0; letter-spacing: -0.01em; }

.section { padding: 64px 0; }
.section-tight { padding: 44px 0; }

.eyebrow { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }

.center { text-align: center; }
.muted { color: var(--muted); }

/* Green underline accent under headings */
.accent-line { width: 76px; height: 4px; background: var(--green); border-radius: 4px; margin: 18px 0; }
.accent-line.center { margin: 14px auto 0; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 800; font-size: 15px;
  border-radius: var(--pill); padding: 13px 26px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .15s ease; white-space: nowrap;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--soft); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }

/* Extended button variants for 3-CTA model */
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-text-navy { background: transparent; border-color: transparent; color: var(--navy); padding: 12px 14px; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.btn-text-navy:hover { color: var(--green-deep); text-decoration-color: var(--green); }
.btn-text-white { background: transparent; border-color: transparent; color: #fff; padding: 12px 14px; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.btn-text-white:hover { color: var(--soft); }
.btn-text { background: transparent; border-color: transparent; color: var(--navy); padding: 10px 12px; }
.btn-text:hover { color: var(--green-deep); }
.btn-sm { padding: 10px 16px; font-size: 0.92rem; }

/* 3-CTA layout */
.hero-btns-3 { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-buttons-3 { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.btns-secondary { margin-top: 10px; }
.link-inline { color: var(--navy); text-decoration: none; font-weight: 700; border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.link-inline:hover { color: var(--green-deep); border-bottom-color: var(--green-deep); }

/* Header CTA cluster — keep tight on desktop, stack on mobile */
.header-cta { display: flex; gap: 8px; align-items: center; }
@media (max-width: 1200px) { .header-cta .btn-text, .header-cta .btn-text-navy { display: none; } }
@media (max-width: 980px) { .header-cta { flex-direction: column; align-items: stretch; gap: 6px; width: 100%; } .header-cta .btn { width: 100%; text-align: center; } }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 12px 24px; max-width: 1280px; margin: 0 auto; }
.brand { display: flex; align-items: flex-start; flex-direction: column; gap: 1px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.brand .tagline { font-size: 10.5px; letter-spacing: .04em; color: var(--navy); font-weight: 700; padding-left: 2px; }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a.navlink { font-weight: 700; font-size: 15px; color: var(--navy); padding: 8px 0; display: inline-flex; align-items: center; gap: 5px; }
.nav-links a.navlink:hover, .nav-links a.navlink.active { color: var(--green); }
.nav-links a.navlink.active { border-bottom: 2px solid var(--green); }
.caret { width: 9px; height: 9px; }

/* Dropdowns */
.has-menu .dropdown {
  position: absolute; top: 100%; left: -14px; min-width: 240px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease; z-index: 120;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.dropdown a:hover { background: var(--soft); color: var(--green-deep); }

.header-cta { flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* ---------------- Breadcrumb ---------------- */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--line); }
.breadcrumb .container { padding-top: 12px; padding-bottom: 12px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin: 0 8px; color: var(--line); }
.breadcrumb .current { color: var(--green); }

/* ---------------- Hero ---------------- */
.hero { background: linear-gradient(180deg,#fff 0%, var(--soft-2) 100%); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; padding-top: 56px; padding-bottom: 56px; }
.hero-copy { display: flex; flex-direction: column; }
.hero-copy-top { display: flex; flex-direction: column; }
.hero-copy-bottom { margin-top: auto; padding-top: 28px; }
.hero-see-how { margin: 6px 0 0; }
.hero-see-how .link-inline { font-size: 15px; font-weight: 700; }
.hero h1 { font-size: 52px; line-height: 1.08; }
.hero .subhead { font-size: 22px; font-weight: 800; color: var(--navy); margin-top: 16px; }
.hero p.lead { color: var(--muted); font-size: 16.5px; margin: 18px 0 0; max-width: 46ch; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art.plain { box-shadow: none; background: transparent; }
.text-green { color: var(--green); }

/* ---------------- Icon feature grid (attributes row) ---------------- */
.panel-soft { background: var(--soft); border-radius: var(--radius); border: 1px solid var(--line); }
.attr-grid { display: grid; gap: 8px; padding: 34px 20px; grid-template-columns: repeat(5,1fr); }
.attr-grid.cols-6 { grid-template-columns: repeat(6,1fr); }
.attr-grid.cols-5 { grid-template-columns: repeat(5,1fr); }
.attr { text-align: center; padding: 10px 12px; }
.icon-circle { width: 66px; height: 66px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.icon-circle svg { width: 32px; height: 32px; }
.attr h4 { font-size: 16px; margin-bottom: 6px; }
.attr p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.45; }

/* ---------------- Service / support cards ---------------- */
.cards-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
.cards-grid.cols-6 { grid-template-columns: repeat(6,1fr); }
.cards-grid.cols-5 { grid-template-columns: repeat(5,1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.card.center-card { text-align: center; align-items: center; }
.card.center-card .icon-circle { margin: 0 auto 14px; background: var(--soft); }
.pane-icon { width: 44px; height: 44px; border: 1.6px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pane-icon svg { width: 24px; height: 24px; color: var(--muted); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: box-shadow .18s ease, transform .18s ease; display: flex; flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .icon-circle { margin: 0 0 16px; width: 58px; height: 58px; background: var(--soft); border: none; }
.card .icon-circle svg { width: 28px; height: 28px; }
.card h4 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); margin: 0 0 16px; flex: 1; }
.learn-more { color: var(--green); font-weight: 800; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; }
.learn-more svg { width: 18px; height: 18px; flex-shrink: 0; }
.learn-more:hover { color: var(--green-deep); gap: 9px; }

/* audience cards (home) with images */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.aud-card { background: var(--soft); border-radius: var(--radius); overflow: hidden; display: grid;
  grid-template-columns: 1.15fr .85fr; min-height: 172px; border: 1px solid var(--line); transition: box-shadow .18s ease, transform .18s ease; }
.aud-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.aud-card .body { padding: 20px 18px; display: flex; flex-direction: column; }
.aud-card .ic { width: 40px; height: 40px; margin-bottom: 8px; color: var(--green); }
.aud-card .ic svg { width: 34px; height: 34px; }
.aud-card h4 { font-size: 18px; margin-bottom: 6px; line-height: 1.15; }
.aud-card p { font-size: 13px; color: var(--muted); margin: 0 0 12px; flex: 1; }
.aud-card .art { background-size: cover; background-position: center; }
.aud-card .learn-more { font-size: 13.5px; }

/* Value-prop mini row */
.value-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.value-item { padding: 26px 22px; display: flex; gap: 14px; align-items: flex-start; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: none; }
.value-item svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--navy); }
.value-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------------- Two-column split panels ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.split .pane { border-radius: var(--radius); padding: 34px 32px; }
.pane.cream { background: var(--soft); border: 1px solid var(--line); }
.pane.plain { background: #fff; border: 1px solid var(--line); }
.pane h3 { font-size: 24px; margin-bottom: 6px; }
.pane .pane-sub { color: var(--muted); font-size: 14.5px; margin: 10px 0 18px; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list.two-col { grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; }
.check-list li .chk { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.check-list li .chk svg { width: 20px; height: 20px; color: var(--green); }

.icon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.icon-list.two-col { grid-template-columns: 1fr 1fr; }
.icon-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; }
.icon-list li svg { width: 24px; height: 24px; color: var(--navy); flex-shrink: 0; }

.pane-illustration { border-radius: 12px; overflow: hidden; margin-bottom: 18px; max-width: 220px; }

/* ---------------- Process timeline ---------------- */
.process { }
.steps { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.step { text-align: center; flex: 1; position: relative; padding: 0 6px; }
.step .step-ic { width: 74px; height: 74px; border-radius: 50%; background: var(--soft); margin: 0 auto 4px; position: relative;
  display: flex; align-items: center; justify-content: center; }
.step .step-ic svg { width: 34px; height: 34px; color: var(--navy); }
.step .num { position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.step h4 { font-size: 15.5px; margin: 12px 0 6px; }
.step p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.4; }
.step-arrow { align-self: flex-start; margin-top: 30px; color: var(--line); flex-shrink: 0; }
.step-arrow svg { width: 28px; height: 20px; }

/* ---------------- FCB Pros band (FCB brand palette: navy #133a70 + red #c6283a) ---------------- */
.fcb-band {
  --fcb-navy: #133a70;
  --fcb-navy-hover: #0f2d56;
  --fcb-red: #c6283a;
  --fcb-red-soft: rgba(198, 40, 58, .16);
  background: var(--fcb-navy);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 4px solid var(--fcb-red);
}
.fcb-inner { display: grid; grid-template-columns: 240px 1fr; }
.fcb-photo { background-size: cover; background-position: center; min-height: 300px; }
.fcb-body { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: 34px 36px; }
.fcb-badge-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.fcb-badge {
  width: 128px; height: 128px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.fcb-badge-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #fff;
  background: var(--fcb-red);
  padding: 4px 10px;
  border-radius: 999px;
}
.fcb-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  opacity: .8;
  margin-bottom: 8px;
}
.fcb-mid h3 { color: #fff; font-size: 27px; margin-bottom: 10px; }
.fcb-mid p { color: rgba(255,255,255,.85); font-size: 14.5px; margin: 0 0 18px; max-width: 46ch; }
.fcb-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.fcb-checks li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.92); }
.fcb-checks ul { margin: 0; padding: 0; }
.fcb-checks .chk svg { width: 18px; height: 18px; color: var(--fcb-red); }
.fcb-right { border-left: 1px solid rgba(255,255,255,.18); padding-left: 30px; max-width: 240px; }
.fcb-right p.big { font-size: 15px; font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.4; }
.fcb-right .microcopy { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 14px; line-height: 1.4; }
.btn-fcb {
  background: var(--fcb-red);
  color: #fff;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: background .18s ease, transform .18s ease;
  box-shadow: 0 4px 12px rgba(198, 40, 58, .35);
}
.btn-fcb:hover { background: #a71e2e; transform: translateY(-1px); }
.btn-fcb svg { width: 14px; height: 14px; }

/* ---------------- Dark CTA band ---------------- */
.cta-band { background: var(--navy); border-radius: var(--radius); overflow: hidden; }
.cta-inner { display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: center; padding: 30px 40px; }
.cta-art { align-self: stretch; display: flex; align-items: center; }
.cta-art img { width: 130px; border-radius: 12px; }
.cta-copy h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-copy p { color: rgba(255,255,255,.82); font-size: 14.5px; margin: 0; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.cta-buttons .btn { width: 100%; }

/* Home bottom lifestyle CTA */
.lifestyle-cta { background: var(--soft-2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  display: grid; grid-template-columns: 320px 1fr auto; gap: 36px; align-items: center; }
.lifestyle-cta .photo { background-size: cover; background-position: center; align-self: stretch; min-height: 220px; }
.lifestyle-cta .copy { padding: 30px 0; }
.lifestyle-cta .copy h3 { font-size: 30px; line-height: 1.15; margin-bottom: 12px; }
.lifestyle-cta .copy p { color: var(--muted); font-size: 15px; margin: 0; max-width: 40ch; }
.lifestyle-cta .copy p + p.copy-explore { margin-top: 16px; }
.lifestyle-cta .copy-explore .link-inline { font-size: 14px; font-weight: 700; }
.lifestyle-cta .btns { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding-right: 34px; min-width: 240px; align-self: stretch; }
.lifestyle-cta .btns .btn { width: 100%; }
.lifestyle-cta-buttons { display: flex; flex-direction: column; gap: 10px; }

/* ---------------- Footer ---------------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand img { height: 40px; margin-bottom: 4px; }
.footer-brand .tagline { font-size: 10px; letter-spacing: .04em; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin: 0 0 18px; max-width: 32ch; }
.social { display: flex; gap: 10px; }
.social a { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.social a svg { width: 16px; height: 16px; color: #fff; }
.footer-col h5 { font-size: 14px; font-weight: 800; color: var(--navy); margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { font-size: 13px; color: var(--muted); }
.footer-col a:hover { color: var(--green); }
.footer-col a.active { color: var(--green); }
.footer-bottom { background: var(--navy); color: rgba(255,255,255,.8); margin-top: 44px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,.8); }
.footer-bottom a:hover { color: #fff; }
.footer-legal span { margin: 0 8px; color: rgba(255,255,255,.35); }

/* section headings */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 34px; display: inline-block; }
.section-head h2 .u { border-bottom: 4px solid var(--green); padding-bottom: 6px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .attr-grid, .attr-grid.cols-6, .attr-grid.cols-5 { grid-template-columns: repeat(3,1fr); }
  .cards-grid, .cards-grid.cols-6, .cards-grid.cols-5, .cards-grid.cols-4 { grid-template-columns: repeat(3,1fr); }
  .value-row { grid-template-columns: repeat(2,1fr); }
  .value-item:nth-child(2) { border-right: none; }
  .value-item:nth-child(1), .value-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 20px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav.open .nav-links > li { width: 100%; }
  .nav.open .has-menu .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 14px; }
  .nav.open .header-cta { display: block; margin-top: 12px; }
  .nav { position: static; }
  .header-inner { position: relative; }

  .hero .container { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .hero-copy-bottom { margin-top: 8px; padding-top: 0; }
  .hero h1 { font-size: 38px; }
  .hero-art { order: -1; }

  .split { grid-template-columns: 1fr; }
  .fcb-inner { grid-template-columns: 1fr; }
  .fcb-photo { min-height: 200px; }
  .fcb-body { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .fcb-shield { width: 96px; }
  .fcb-right { border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding-left: 0; padding-top: 22px; max-width: 100%; }
  .fcb-checks { grid-template-columns: 1fr 1fr; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .cta-art { justify-content: center; }
  .cta-buttons { min-width: 0; }
  .lifestyle-cta { grid-template-columns: 1fr; }
  .lifestyle-cta .photo { min-height: 180px; }
  .lifestyle-cta .copy { padding: 26px 24px 0; }
  .lifestyle-cta .btns { padding: 0 24px 26px; }

  .steps { flex-direction: column; gap: 22px; }
  .step-arrow { transform: rotate(90deg); align-self: center; margin: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .attr-grid, .attr-grid.cols-6, .attr-grid.cols-5 { grid-template-columns: repeat(2,1fr); }
  .cards-grid, .cards-grid.cols-6, .cards-grid.cols-5, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .aud-card { grid-template-columns: 1.2fr .8fr; }
  .value-row { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: none; }
  .check-list.two-col, .icon-list.two-col { grid-template-columns: 1fr; }
  .fcb-checks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .hero h1 { font-size: 32px; }
  .section-head h2 { font-size: 26px; }
  .pane h3, .lifestyle-cta .copy h3 { font-size: 21px; }
}

/* ---------------- Contact page ---------------- */
.contact-hero { padding-top: 32px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-copy h1 { margin: 0 0 6px; }
.contact-copy .lead { margin: 18px 0 28px; color: var(--ink-2); font-size: 1.05rem; line-height: 1.65; }
.contact-alt { background: var(--soft); border-radius: 14px; padding: 22px 24px; }
.contact-alt h4 { margin: 0 0 14px; font-size: 1.05rem; color: var(--navy); }
.contact-alt-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-alt-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-alt-list svg { width: 22px; height: 22px; color: var(--green-deep); flex-shrink: 0; margin-top: 2px; }
.contact-alt-list strong { color: var(--navy); }
.contact-alt-list a { color: var(--navy); text-decoration: none; border-bottom: 1.5px solid var(--green); }
.contact-alt-list a:hover { color: var(--green-deep); }

.contact-form-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 28px 30px; box-shadow: 0 4px 24px rgba(0, 40, 72, 0.06); }
.contact-form-card .field { margin-bottom: 16px; }
.contact-form-card label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.contact-form-card .req { color: var(--green-deep); }
.contact-form-card .opt { color: var(--ink-2); font-weight: 400; font-size: 0.85rem; }
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card select,
.contact-form-card textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #d1d5db; border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; box-sizing: border-box;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(104, 168, 32, 0.15); }
.contact-form-card textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-row .radio { font-weight: 400; color: var(--ink); cursor: pointer; margin-bottom: 0; }
.radio-row .radio input { margin-right: 6px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn-full { width: 100%; margin-top: 6px; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 0.95rem; }
.form-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-status.success { background: #f0fdf4; color: #14532d; border: 1px solid #bbf7d0; }
.form-status:empty { display: none; }
.form-note { color: var(--ink-2); font-size: 0.82rem; margin-top: 14px; line-height: 1.5; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   /brand page — Brand System reference
   ============================================================ */
.brand-hero { padding-top: 40px; padding-bottom: 40px; }
.brand-hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
.brand-hero-mark {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
}
.brand-hero-mark img { max-width: 100%; max-height: 320px; height: auto; }
.brand-hero .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Palette swatches */
.swatch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.swatch {
  border-radius: var(--radius); padding: 32px 24px; min-height: 180px;
  display: flex; flex-direction: column; justify-content: flex-end;
  font-family: var(--font);
}
.swatch-border { border: 1px solid var(--line); }
.swatch-role { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; margin-bottom: 8px; }
.swatch-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.swatch-hex { font-size: 15px; font-weight: 600; font-family: "SF Mono", ui-monospace, Menlo, monospace; opacity: 0.9; }
.palette-note {
  margin-top: 28px; padding: 20px 24px;
  background: var(--soft); border-radius: var(--radius-sm);
  border-left: 4px solid var(--green);
}
.palette-note p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.palette-note strong { color: var(--navy); }

/* Logo library */
.logo-group-title {
  font-size: 20px; font-weight: 700; color: var(--navy); margin: 40px 0 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.logo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.logo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.logo-frame {
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  padding: 32px 24px;
}
.logo-frame.light { background: #fff; }
.logo-frame.dark { background: var(--navy); }
.logo-frame img { max-width: 100%; max-height: 130px; height: auto; }
.logo-meta { padding: 18px 22px 22px; border-top: 1px solid var(--line); }
.logo-meta h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.logo-meta p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0 0 12px; }
.logo-download {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--green-deep);
  text-decoration: none;
}
.logo-download:hover { color: var(--navy); }
.logo-download svg { width: 14px; height: 14px; }

/* Typography specimens */
.type-specimens {
  display: flex; flex-direction: column; gap: 28px; margin-top: 36px;
}
.type-specimen {
  padding: 24px 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.type-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 14px;
}
.type-sample { color: var(--navy); }

/* Do & Don't */
.do-dont-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px;
}
.do-card, .dont-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--line);
}
.do-dont-head { margin-bottom: 20px; }
.do-badge, .dont-badge {
  display: inline-block; padding: 6px 14px; border-radius: var(--pill);
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
}
.do-badge { background: rgba(104, 168, 32, 0.15); color: var(--green-deep); }
.dont-badge { background: rgba(190, 40, 40, 0.12); color: #a11d1d; }
.do-dont-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.do-dont-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--navy); }
.do-dont-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }
.x-mark {
  flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  color: #a11d1d; font-weight: 900; font-size: 22px; line-height: 1; margin-top: 1px;
}

/* Downloads */
.download-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 36px;
}
.download-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.download-card:hover { border-color: var(--green); transform: translateY(-2px); }
.download-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(104, 168, 32, 0.14); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.download-ic svg { width: 22px; height: 22px; }
.download-card h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.download-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
  .brand-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-hero-mark { aspect-ratio: auto; padding: 40px 24px; }
  .brand-hero-mark img { max-height: 220px; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .do-dont-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .swatch-grid { grid-template-columns: 1fr; }
}
