/* Bloom & Broom Co. — bloominbroomsco.com
   Palette from the brand mark: gold #d7a332, deep green #034c48, warm cream ground. */

/* Metric-matched fallbacks: until the web fonts arrive, text is set in Georgia/Arial scaled to the same
   average advance width (ratios measured in Chrome), so lines wrap alike and the font swap does not shift
   the layout. */
@font-face { font-family: 'Cormorant Fallback'; src: local('Georgia Bold'), local('Georgia-Bold'); font-weight: 600 700; size-adjust: 76.5%; }
@font-face { font-family: 'Cormorant Fallback'; src: local('Georgia Italic'), local('Georgia-Italic'); font-style: italic; font-weight: 400 500; size-adjust: 79.4%; }
@font-face { font-family: 'Cormorant Fallback'; src: local('Georgia'); font-weight: 400 500; size-adjust: 89.2%; }
@font-face { font-family: 'Jost Fallback'; src: local('Arial'), local('ArialMT'); font-weight: 400; size-adjust: 96.2%; }
@font-face { font-family: 'Jost Fallback'; src: local('Arial'), local('ArialMT'); font-weight: 500; size-adjust: 99.9%; }
@font-face { font-family: 'Jost Fallback'; src: local('Arial Bold'), local('Arial-BoldMT'); font-weight: 600 700; size-adjust: 95.1%; }

:root {
  --cream: #fbf8f2;
  --paper: #ffffff;
  --sand: #f4eee3;
  --ink: #1d2a28;
  --ink-soft: #4b5957;
  --line: #e7dfd1;
  --green: #034c48;
  --green-deep: #023431;
  --green-tint: #e6efec;
  --gold: #d7a332;
  --gold-soft: #f6ebcd;
  --gold-ink: #85610f;
  --danger: #a33a1b;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 1px 2px rgb(29 42 40 / .05), 0 18px 40px -20px rgb(29 42 40 / .28);
  --wrap: 1180px;
  --header-h: 78px;
  --serif: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  --sans: 'Jost', 'Jost Fallback', Arial, sans-serif;
  --sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d7a332' d='M12 2.5c.7 4.9 2.6 6.8 7.5 7.5-4.9.7-6.8 2.6-7.5 7.5-.7-4.9-2.6-6.8-7.5-7.5 4.9-.7 6.8-2.6 7.5-7.5z'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font: 400 1.0625rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a[href^="tel:"] { white-space: nowrap; }
a:hover { color: var(--green-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; color: var(--ink); margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2.05rem, 3.7vw, 3.1rem); }
h3 { font-size: 1.5rem; line-height: 1.2; }
p { margin: 0 0 1em; }
p, li { text-wrap: pretty; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
/* explicit display values (e.g. .signal-back) would otherwise defeat the hidden attribute */
[hidden] { display: none !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 1rem; top: -100px; z-index: 100; padding: .75rem 1.1rem; background: var(--green); color: #fff; border-radius: 10px; }
.skip:focus { top: 1rem; color: #fff; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 800px; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-intro { margin-inline: auto; }

/* ---------- Buttons & small type ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.6rem; border: 1.5px solid transparent; border-radius: 999px;
  font: 500 1rem/1.1 var(--sans); letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px -16px rgb(3 76 72 / .9); }
.btn-primary:hover { background: var(--green-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: rgb(3 76 72 / .35); color: var(--green); }
.btn-ghost:hover { background: var(--green-tint); border-color: var(--green); color: var(--green-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #e3b64f; color: var(--ink); transform: translateY(-1px); }
.btn-ghost-light { border-color: rgb(255 255 255 / .4); color: #fff; }
.btn-ghost-light:hover { background: rgb(255 255 255 / .1); border-color: #fff; color: #fff; }
.btn-sm { padding: .72rem 1.25rem; font-size: .95rem; }
.btn-block { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.actions-center { justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem;
  font: 600 .78rem/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink);
}
.eyebrow .icon { width: 1.1rem; height: 1.1rem; color: var(--gold); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 36em; }
.lead-sm { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2vw, 1.6rem); line-height: 1.4; color: var(--green); }
.fine { font-size: .92rem; color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; color: var(--green); text-decoration: none; }
.text-link .icon { width: 1.1rem; height: 1.1rem; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
/* The blur lives on a pseudo-element: backdrop-filter on the header itself would make it the containing
   block for the position:fixed mobile menu and collapse the menu to the header's height. */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgb(251 248 242 / .92); -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 26px -22px rgb(29 42 40 / .5); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .75rem; margin-right: auto; color: var(--ink); text-decoration: none; }
.brand-mark { width: 44px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; letter-spacing: .01em; color: var(--green); white-space: nowrap; }
.brand-co { font-style: italic; font-weight: 500; color: var(--gold-ink); }
.brand-tag { margin-top: .32rem; font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; margin: 0; padding: 0; list-style: none; }
.nav-list a, .sub-toggle {
  display: inline-flex; align-items: center; gap: .3rem; padding: .55rem 0;
  font: 500 1rem/1.2 var(--sans); color: var(--ink); text-decoration: none; background: none; border: 0; cursor: pointer;
}
.nav-list a:hover, .sub-toggle:hover, .has-sub.is-current > .sub-toggle { color: var(--green); }
.nav-list > li > a[aria-current="page"] { color: var(--green); box-shadow: inset 0 -2px 0 var(--gold); }
.has-sub { position: relative; }
.icon-chev { width: 1rem; height: 1rem; transition: transform .2s; }
.sub-toggle[aria-expanded="true"] .icon-chev { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + .7rem); left: -1rem; min-width: 300px; margin: 0; padding: .55rem; list-style: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .18s, transform .18s, visibility .18s;
}
.sub::before { content: ''; position: absolute; left: 0; right: 0; top: -.8rem; height: .8rem; }
.has-sub:hover > .sub, .sub-toggle[aria-expanded="true"] + .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; width: 100%; padding: .65rem .85rem; border-radius: 10px; }
.sub a:hover, .sub a[aria-current="page"] { background: var(--green-tint); color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; color: var(--green); text-decoration: none; white-space: nowrap; }
.nav-phone .icon { width: 1.1rem; height: 1.1rem; }
.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 46px; height: 46px; padding: 0;
  border: 1.5px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--green); cursor: pointer;
}
.nav-toggle .icon { width: 1.35rem; height: 1.35rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6.5rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -18%; right: -12%; width: min(62vw, 820px); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(215 163 50 / .16), rgb(215 163 50 / 0) 72%); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: .45em; }
.hero h1 .amp, .page-hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-ink); }
.trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 1.5rem; max-width: 34rem; margin: 2.3rem 0 0; padding: 0; list-style: none; }
.trust li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.trust .icon { width: 1.4rem; height: 1.4rem; color: var(--green); }
.hero-media { position: relative; width: 100%; max-width: 460px; margin-left: auto; }
.arch {
  margin: 0; overflow: hidden; background: var(--sand); box-shadow: var(--shadow);
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg) / 40% 40% var(--radius-lg) var(--radius-lg);
  outline: 1px solid rgb(215 163 50 / .55); outline-offset: 10px;
}
.arch img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-badge {
  position: absolute; left: -2.75rem; bottom: 9%; display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1.2rem .85rem .9rem; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.hero-badge img { width: 40px; }
.hero-badge p { margin: 0; line-height: 1.3; white-space: nowrap; }
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--green); }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Inner page hero ---------- */
.page-hero { padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.page-hero-compact { padding-bottom: clamp(1rem, 3vw, 2rem); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.page-hero-media { width: 100%; max-width: 420px; margin-left: auto; }
.page-hero .lead a { font-weight: 500; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1.6rem; padding: 0; list-style: none; font-size: .9rem; color: var(--ink-soft); }
.crumbs li + li::before { content: '/'; margin-right: .45rem; color: #b6a98f; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--green); }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
/* consecutive cream sections share one gap; tinted sections (.section-sand/.section-green) keep full padding */
.section:not([class*="section-"]) + .section:not([class*="section-"]), .cta-band + .section { padding-top: 0; }
.hero + .section, .page-hero + .section:not([class*="section-"]) { padding-top: clamp(1.5rem, 4vw, 3.5rem); }
.section-sand { background: var(--sand); }
.section-green { position: relative; overflow: hidden; background: var(--green); color: #d5e5e0; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green .eyebrow { color: var(--gold); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-intro { max-width: 40rem; font-size: 1.12rem; color: var(--ink-soft); }
.section-head .section-intro { margin-bottom: 0; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.service-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover, .service-card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgb(215 163 50 / .65); }
.service-media { overflow: hidden; }
.service-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-media img { transform: scale(1.04); }
.service-body { display: flex; flex: 1; flex-direction: column; padding: 0 1.4rem 1.5rem; }
.service-icon {
  width: 3.2rem; height: 3.2rem; margin: -1.6rem 0 .9rem; padding: .78rem; position: relative;
  border-radius: 50%; background: var(--green); color: var(--gold); box-shadow: 0 0 0 4px var(--paper);
}
.service-body h3 { margin-bottom: .5rem; font-size: 1.45rem; }
.card-link { color: var(--ink); text-decoration: none; }
.card-link::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.card-link:focus-visible { outline: none; }
.service-card:has(.card-link:focus-visible) { outline: 3px solid var(--gold); outline-offset: 3px; }
.service-body p { flex: 1; margin-bottom: 1.1rem; font-size: .98rem; color: var(--ink-soft); }
.service-card:hover .text-link .icon { transform: translateX(3px); }

/* ---------- Split / feature blocks ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.split-reverse { grid-template-columns: 1.1fr .9fr; }
.split-media { margin: 0; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.arch-soft {
  overflow: hidden; box-shadow: var(--shadow);
  border-radius: 38% 38% var(--radius) var(--radius) / 30% 30% var(--radius) var(--radius);
}
.brand-panel { display: grid; place-items: center; padding: clamp(2rem, 5vw, 3.5rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.brand-panel img { width: min(100%, 380px); aspect-ratio: auto; object-fit: contain; }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 2rem; margin-top: 2rem; }
.section-head + .feature-grid { margin-top: 0; }
.feature-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.feature-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.feature-grid-3 .feature, .feature-grid-4 .feature { padding: 1.7rem 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.feature-icon { width: 2.9rem; height: 2.9rem; margin-bottom: .95rem; padding: .68rem; border-radius: 14px; background: var(--gold-soft); color: var(--gold-ink); }
.feature h3 { margin-bottom: .35rem; font-size: 1.38rem; }
.feature p { margin: 0; font-size: .98rem; color: var(--ink-soft); }

.checklist { display: grid; gap: .85rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; }
.checklist .icon { width: 1.5rem; height: 1.5rem; margin-top: .12rem; padding: .28rem; border-radius: 50%; background: var(--green); color: #fff; stroke-width: 2.6; }
.checklist strong { color: var(--ink); font-weight: 600; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.compare > div { padding: 1.25rem 1.3rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.compare > div:last-child { background: var(--green); border-color: var(--green); color: #d5e5e0; }
.compare > div:last-child h3 { color: #fff; }
.compare h3 { margin-bottom: .3rem; font-size: 1.3rem; }
.compare p { margin: 0; font-size: .95rem; }

/* ---------- Markets ---------- */
.market-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.market-card { display: flex; flex-direction: column; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.market-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.market-body { padding: 1.8rem 2rem 2rem; }
.market-label { display: flex; align-items: center; gap: .4rem; margin-bottom: .45rem; font: 600 .78rem/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.market-label .icon { width: 1rem; height: 1rem; }
.market-body h3 { font-size: 2.05rem; }
.market-body p { color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.4rem; padding: 0; list-style: none; }
.chips li { padding: .42rem .9rem; border-radius: 999px; background: var(--green-tint); color: var(--green); font-size: .9rem; font-weight: 500; }
.chips-center { justify-content: center; }

/* ---------- Steps ---------- */
.section-green::after {
  content: ''; position: absolute; right: -3rem; top: -3rem; width: 16rem; height: 16rem; opacity: .1;
  background: var(--sparkle) center / contain no-repeat; pointer-events: none;
}
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.steps li { padding: 2rem 1.8rem; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .14); border-radius: var(--radius); }
.step-num { display: block; margin-bottom: 1rem; font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--gold); }
.steps h3 { font-size: 1.55rem; }
.steps p { margin: 0; color: #c7dbd5; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1.25; color: var(--ink); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green); }
.faq-chev { width: 1.4rem; height: 1.4rem; color: var(--gold-ink); transition: transform .25s; }
.faq details[open] .faq-chev { transform: rotate(180deg); }
.faq-a { max-width: 46rem; padding: 0 0 1.4rem; color: var(--ink-soft); }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 clamp(4rem, 8vw, 6rem); }
.cta-band-inner {
  position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 4.5vw, 3.5rem);
  background: var(--green); color: #d5e5e0; border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.cta-band-inner::before, .cta-band-inner::after { content: ''; position: absolute; background: var(--sparkle) center / contain no-repeat; pointer-events: none; }
.cta-band-inner::before { left: 1.4rem; top: 1.2rem; width: 1.6rem; height: 1.6rem; opacity: .6; }
.cta-band-inner::after { right: 28%; bottom: -2.5rem; width: 9rem; height: 9rem; opacity: .12; }
.cta-band-inner > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: .35rem; font-size: clamp(1.9rem, 3vw, 2.5rem); color: #fff; }
.cta-band p { max-width: 36rem; margin: 0; }
.cta-band a:not(.btn) { color: var(--gold); }
.cta-band .actions { margin-top: 0; }

/* ---------- Quote form ---------- */
.quote-section { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.section + .quote-section { padding-top: clamp(4rem, 9vw, 7rem); }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.quote-aside { position: sticky; top: calc(var(--header-h) + 2rem); }
.contact-cards { display: grid; gap: .8rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-cards a, .contact-static {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; color: var(--ink); text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow-wrap: anywhere;
}
.contact-cards a:hover { border-color: var(--green); color: var(--ink); }
.contact-icon { width: 2.6rem; height: 2.6rem; padding: .62rem; border-radius: 50%; background: var(--green-tint); color: var(--green); }
.contact-cards strong { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-ink); }
.quote-card { padding: clamp(1.4rem, 3.5vw, 2.5rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Agility Signal intake — structure adapted from the Ageless Marketing build's .signal-* rules
   (app/journey.css), restyled in Bloom & Broom's cream/gold/green palette. */
.signal-shell { display: flex; flex-direction: column; }
.signal-brand {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .7rem;
  font: 600 .72rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink);
}
.signal-brand span { display: inline-flex; align-items: center; gap: .45rem; }
.signal-brand .icon { width: 1rem; height: 1rem; color: var(--gold); }
.signal-progress { appearance: none; display: block; width: 100%; height: 3px; border: 0; border-radius: 999px; background: var(--line); color: var(--green); }
.signal-progress::-webkit-progress-bar { background: var(--line); border-radius: 999px; }
.signal-progress::-webkit-progress-value { background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 999px; transition: width .3s; }
.signal-progress::-moz-progress-bar { background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 999px; }
.signal-form { display: block; padding-top: 1.6rem; }
.signal-stages { display: flex; justify-content: space-between; gap: .3rem; margin: 0 0 1.9rem; padding: 0; list-style: none; }
.signal-stages li { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: .45rem; color: var(--ink-soft); }
.signal-stages li::after { content: ''; position: absolute; left: calc(50% + 15px); top: 13px; width: calc(100% - 30px); height: 1px; background: var(--line); }
.signal-stages li:last-child::after { display: none; }
.signal-stages li > span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); font-size: .78rem; font-weight: 500; }
.signal-stages li small { font-size: .7rem; letter-spacing: .04em; text-align: center; }
.signal-stages li.complete { color: var(--green); }
.signal-stages li.complete > span { background: var(--green-tint); border-color: var(--green); color: var(--green); }
.signal-stages li[aria-current] { color: var(--green); font-weight: 500; }
.signal-stages li[aria-current] > span { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 0 0 4px rgb(3 76 72 / .12); }
.signal-step-label { margin: 0 0 .3rem; font: 600 .72rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.signal-shell h2 { font-size: clamp(1.6rem, 2.6vw, 2.05rem); margin-bottom: .6rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.signal-shell h2:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.signal-direction { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.2rem; padding: .35rem .85rem .35rem .7rem; border-radius: 999px; background: var(--green-tint); color: var(--green); font-size: .86rem; font-weight: 500; }
.signal-direction::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.signal-goals { display: grid; gap: .6rem; margin: 0 0 1.2rem; padding: 0; border: 0; }
.signal-goals label, .signal-options label {
  position: relative; display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px; transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.signal-goals label:hover, .signal-options label:hover { border-color: rgb(3 76 72 / .45); }
.signal-goals input, .signal-options input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.signal-goals label > span { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.signal-goals strong { font-weight: 500; font-size: 1.02rem; color: var(--ink); }
.signal-goals small { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
.signal-tick { width: 1.35rem; height: 1.35rem; padding: .2rem; border-radius: 50%; background: var(--green); color: #fff; opacity: 0; transform: scale(.7); transition: opacity .15s, transform .15s; stroke-width: 2.6; }
.signal-goals label:has(input:checked), .signal-options label:has(input:checked) { background: var(--green-tint); border-color: var(--green); box-shadow: inset 3px 0 0 var(--gold); }
.signal-goals label:has(input:checked) .signal-tick, .signal-options label:has(input:checked) .signal-tick { opacity: 1; transform: none; }
.signal-goals label:has(input:focus-visible), .signal-options label:has(input:focus-visible), .signal-consent:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 3px; }
.signal-options { display: grid; gap: .55rem; margin: 0 0 1.4rem; padding: 0; border: 0; }
.signal-options legend { padding: 0; margin-bottom: .6rem; font-size: .95rem; font-weight: 500; color: var(--ink); }
.signal-options label { padding: .8rem 1rem; }
.signal-options label > span { flex: 1; }

.signal-fields { display: grid; gap: 1rem; margin-bottom: 1.2rem; }
/* block, not flex: a column flex container would push the "*" and "(optional)" onto their own lines */
.signal-fields label { display: block; font-size: .95rem; font-weight: 500; color: var(--ink); }
.signal-fields label > input, .signal-fields label > select, .signal-fields label > textarea { margin-top: .4rem; }
.signal-fields label small { font-weight: 400; color: var(--ink-soft); }
.signal-field-hint { display: block; margin-top: .15rem; font-size: .86rem; font-weight: 400; line-height: 1.55; color: var(--ink-soft); }
.signal-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.signal-fields input, .signal-fields select, .signal-fields textarea {
  width: 100%; padding: .8rem .95rem; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.signal-fields textarea { min-height: 6rem; resize: vertical; }
.signal-fields select {
  appearance: none; padding-right: 2.6rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23034c48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 1.1rem;
}
.signal-fields input::placeholder, .signal-fields textarea::placeholder { color: #8b958f; }
.signal-fields input:focus, .signal-fields select:focus, .signal-fields textarea:focus { outline: none; background-color: #fff; border-color: var(--green); box-shadow: 0 0 0 4px rgb(3 76 72 / .13); }
.signal-shell [aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px rgb(163 58 27 / .1); }
.signal-shell fieldset[aria-invalid="true"] { border: 0; box-shadow: none; }
.signal-shell fieldset[aria-invalid="true"] > label { border-color: var(--danger); }
.field-msg { margin: 0; font-size: .88rem; font-weight: 400; color: var(--danger); }
.req { color: var(--danger); }

.signal-review { margin: .4rem 0 1.2rem; padding: 0; border-top: 1px solid var(--line); }
.signal-review > div { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr) auto; align-items: start; gap: .3rem 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.signal-review dt { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-ink); }
.signal-review dd { margin: 0; overflow-wrap: anywhere; white-space: pre-wrap; font-size: .96rem; }
.signal-review button { padding: .2rem .3rem; border: 0; background: none; color: var(--green); font: 500 .86rem var(--sans); text-decoration: underline; cursor: pointer; }
.signal-review button:hover { color: var(--green-deep); }
.signal-consent { display: flex; align-items: flex-start; gap: .7rem; padding: .9rem 1rem; margin-bottom: 1.1rem; background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px; }
.signal-consent input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; accent-color: var(--green); flex: none; }
.signal-consent label { font-size: .92rem; font-weight: 400; color: var(--ink-soft); }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin: 0 0 1rem; padding: .75rem 1rem; border-radius: 10px; background: #fbeee9; color: var(--danger); font-weight: 500; }
.signal-fallback { margin: 0 0 1rem; padding: 1rem 1.15rem; background: var(--sand); border: 1px solid var(--line); border-radius: 14px; }
.signal-fallback p { margin: 0 0 .8rem; font-size: .92rem; color: var(--ink-soft); }
.signal-fallback-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.signal-actions { display: flex; align-items: center; gap: .8rem; }
.signal-actions .btn { flex: 1; min-height: 3rem; }
.signal-back { display: inline-flex; align-items: center; gap: .4rem; padding: .8rem .9rem; border: 0; background: none; color: var(--ink-soft); font: 500 .95rem var(--sans); cursor: pointer; }
.signal-back:hover { color: var(--green); }
.signal-entry-disclosure, .signal-disclosure { margin: 1rem 0 0; font-size: .84rem; color: var(--ink-soft); }
.signal-success { text-align: center; padding: 1rem 0 .5rem; }
.signal-check { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; margin: 0 auto 1rem; border-radius: 50%; background: var(--green); color: #fff; }
.signal-check .icon { width: 1.7rem; height: 1.7rem; stroke-width: 2.4; }
.signal-success h2:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.signal-success p { color: var(--ink-soft); }
.signal-success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.2rem 0 .8rem; }
button.text-link { border: 0; background: none; cursor: pointer; font: 500 .95rem var(--sans); text-decoration: underline; }

/* ---------- Service-area cards ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 1rem; }
.area-card { position: relative; padding: 1.4rem 1.4rem 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; }
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgb(215 163 50 / .65); }
.area-card h3 { margin-bottom: .4rem; font-size: 1.35rem; }
.area-card p { margin-bottom: .9rem; font-size: .94rem; color: var(--ink-soft); }
.area-card:has(.card-link:focus-visible) { outline: 3px solid var(--gold); outline-offset: 3px; }
.chips a { color: var(--green); text-decoration: none; }
.chips li:has(a):hover { background: var(--green); }
.chips li:has(a):hover a { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { padding: clamp(3.5rem, 7vw, 5rem) 0 0; background: var(--green-deep); color: #c3d6d0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.25fr; gap: 2.5rem; }
.footer-brand img { width: 64px; margin-bottom: 1rem; }
.footer-brand p:last-child { max-width: 22rem; }
.footer-name { margin: 0; font-family: var(--serif); font-size: 1.75rem; font-weight: 600; color: #fff; }
.footer-tag { margin: .3rem 0 1rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer-h { margin-bottom: 1.1rem; font: 600 .78rem/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.site-footer ul { display: grid; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; overflow-wrap: anywhere; }
.footer-contact .icon { width: 1.1rem; height: 1.1rem; color: var(--gold); }
.footer-contact + .btn { margin-top: 1.5rem; }
.site-footer .btn-gold, .site-footer .btn-gold:hover { color: var(--ink); text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; margin-top: 3rem; padding: 1.4rem 0; border-top: 1px solid rgb(255 255 255 / .12); font-size: .88rem; }
.footer-bottom p { margin: 0; }
.site-footer .footer-bottom a { color: #c3d6d0; text-decoration: underline; }
.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .service-grid, .feature-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 49; display: none; flex-direction: column; align-items: stretch; gap: 1.5rem;
    padding: 1.25rem 1.25rem calc(2rem + env(safe-area-inset-bottom)); overflow-y: auto; background: var(--cream); border-top: 1px solid var(--line);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list a, .sub-toggle { width: 100%; padding: 1rem .25rem; font-size: 1.15rem; }
  .nav-list > li > a[aria-current="page"] { box-shadow: none; }
  .sub-toggle { justify-content: space-between; pointer-events: none; font-family: var(--sans); color: var(--gold-ink); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; padding-bottom: .25rem; }
  .sub-toggle .icon-chev { display: none; }
  .sub { position: static; min-width: 0; padding: 0 0 .75rem; border: 0; box-shadow: none; background: none; opacity: 1; visibility: visible; transform: none; }
  .sub::before { display: none; }
  .sub a { padding: .7rem .25rem; font-size: 1.1rem; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: .75rem; }
  .nav-cta .btn, .nav-phone { justify-content: center; padding: 1rem; font-size: 1.05rem; }
  .nav-phone { border: 1.5px solid var(--green); border-radius: 999px; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 960px) {
  .hero-grid, .page-hero-grid, .split, .split-reverse, .quote-grid { grid-template-columns: 1fr; }
  .hero-media, .page-hero-media { max-width: 400px; margin: .5rem auto 0; }
  .hero-badge { left: -1rem; }
  .split-media { max-width: 460px; margin-inline: auto; }
  .split-reverse .split-media { order: -1; }
  .brand-panel { max-width: none; }
  .quote-aside { position: static; }
  .market-grid, .steps { grid-template-columns: 1fr; }
  .feature-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  :root { --header-h: 70px; }
  .brand-mark { width: 38px; }
  .brand-name { font-size: 1.35rem; }
  .brand-tag { font-size: .58rem; letter-spacing: .14em; }
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgb(255 255 255 / .96);
    border-top: 1px solid var(--line); box-shadow: 0 -10px 26px -18px rgb(0 0 0 / .35);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .45rem; padding: .85rem; border: 1.5px solid var(--green); border-radius: 999px; font-weight: 500; color: var(--green); text-decoration: none; }
  .mobile-cta a.is-primary { background: var(--green); color: #fff; }
  .mobile-cta .icon { width: 1.1rem; height: 1.1rem; }
  .mobile-cta .is-primary .icon { color: var(--gold); }
  body.nav-open .mobile-cta { display: none; }
  .footer-bottom { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
}
@media (max-width: 640px) {
  .service-grid, .service-grid-3, .feature-grid, .feature-grid-3, .feature-grid-4, .compare { grid-template-columns: 1fr; }
  .signal-stages li small { font-size: .62rem; }
  .signal-stages li > span { width: 24px; height: 24px; font-size: .72rem; }
  .signal-review > div { grid-template-columns: minmax(0, 1fr) auto; }
  .signal-review dt, .signal-review dd { grid-column: 1; }
  .signal-review button { grid-column: 2; grid-row: span 2; align-self: center; min-height: 2.75rem; }
  .signal-actions { flex-wrap: wrap; }
  .signal-actions .btn { flex: 1 1 100%; order: -1; }
  .signal-back { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .actions .btn { flex: 1 1 100%; }
  .market-body { padding: 1.5rem 1.4rem 1.6rem; }
  .faq summary { font-size: 1.25rem; }
}
@media (max-width: 440px) {
  .trust { grid-template-columns: 1fr; }
  .signal-pair { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .hero-badge { left: .75rem; right: .75rem; bottom: .75rem; }
  .hero-badge p { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
}
