/* Ground and Gate — site styles: the Branch and Bramble palette and Instrument Sans, with warm greys. One file, no build step. */
:root {
  --bg: #f7f1e3;
  --paper: #ffffff;
  --tint: #e9eddc;
  --sage-100: #e3e9d5;
  --sage: #8a9b6e;
  --green: #2b4a33;
  --green-2: #3b6445;
  --green-3: #223a29;
  --accent: #a5793f;
  --text: #22261f;
  --muted: #5e6358;
  --line: #e3dac4;
  --line-2: #d0c4a6;
  --alert: #9b3421;
  --accent-text: #86602c;
  --grey-50: #f3f3f0;
  --grey-100: #e8e9e5;
  --grey-300: #cfd1cb;
  --grey-600: #5c6059;
  --font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r: 12px;
  --r-lg: 22px;
  --shadow: 0 1px 2px rgba(43,74,51,.06), 0 14px 40px rgba(43,74,51,.10);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 16px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16.5px/1.65 var(--font); }
img, svg { max-width: 100%; }
img { height: auto; }
a { color: var(--green-2); text-decoration-color: rgba(59,100,69,.4); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3, h4 { font-family: var(--font); font-weight: 600; color: var(--green); line-height: 1.1; letter-spacing: -.022em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.25rem; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 700px) { .wrap { padding: 0 28px; } }
.narrow { max-width: 820px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--green); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 10; }
.skip:focus { left: 8px; }
.eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-2); margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }

/* utility bar + header */
.util { background: var(--grey-100); color: var(--green); font-size: .8rem; }
.util .wrap { display: flex; justify-content: space-between; gap: 12px; padding-top: 7px; padding-bottom: 7px; }
.util a { color: var(--green); text-decoration: none; }
.util strong { font-weight: 600; }
@media (max-width: 520px) { .util span { display: none; } .util .wrap { justify-content: center; } }
.site-head { background: var(--bg); position: relative; z-index: 5; }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.site-head--min .wrap { justify-content: center; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--green); }
.logo-mark { width: 42px; height: 42px; flex: none; color: var(--green-2); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; color: var(--green); }
.logo-tag { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { display: none; gap: 4px; }
.nav a { color: var(--text); text-decoration: none; font-size: .93rem; padding: 7px 13px; border-radius: 99px; }
.nav a:hover, .nav a[aria-current] { background: var(--sage-100); }
@media (min-width: 1040px) { .nav { display: flex; } }
.head-actions { display: flex; align-items: center; gap: 8px; }
.head-cta { background: var(--green); color: #fff; text-decoration: none; font-size: .88rem; font-weight: 600; padding: 11px 18px; border-radius: 99px; white-space: nowrap; }
.head-cta:hover { background: var(--green-2); }
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; border-radius: 50%; display: grid; place-content: center; gap: 4px; background: var(--sage-100); }
.menu summary::-webkit-details-marker { display: none; }
.menu summary span { display: block; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
.menu-panel { position: absolute; right: 0; top: 52px; background: var(--paper); border-radius: 16px; box-shadow: var(--shadow); padding: 8px; min-width: 220px; display: flex; flex-direction: column; }
.menu-panel a { padding: 10px 14px; border-radius: 10px; color: var(--text); text-decoration: none; }
.menu-panel a:hover { background: var(--sage-100); }
@media (min-width: 1040px) { .menu { display: none; } }
.cta-short { display: none; }
@media (max-width: 480px) {
  .site-head .wrap { min-height: 64px; gap: 8px; }
  .logo { gap: 8px; } .logo-name { font-size: 1.1rem; white-space: nowrap; } .logo-mark { width: 30px; height: 30px; } .logo-tag { display: none; }
  .head-cta { padding: 9px 12px; font-size: .78rem; }
  .menu summary { width: 40px; height: 40px; }
  .head-actions { gap: 6px; }
}
@media (max-width: 400px) {
  /* Narrow phones: shorten the button rather than drop the mark. */
  .cta-long { display: none; } .cta-short { display: inline; }
}
@media (max-width: 340px) {
  /* Last resort on very narrow phones: the name earns its place before the mark does. */
  .site-head .logo-mark { display: none; }
  .site-head--min .logo-mark { display: block; }
}

/* buttons */
.btn { display: inline-block; background: var(--green); color: #fff; font: inherit; font-weight: 600; text-decoration: none; padding: 14px 26px; border-radius: 99px; border: 0; cursor: pointer; }
.btn:hover { background: var(--green-2); }
.btn--ghost { background: transparent; color: var(--green); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--ghost:hover { background: var(--sage-100); }
.btn--light { background: #fff; color: var(--green); }
.btn--light:hover { background: var(--sage-100); }
.link-arrow { color: var(--green); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--sage); padding-bottom: 2px; }
.link-arrow::after { content: " →"; }

/* hero with photo */
.hero { position: relative; overflow: hidden; }
.hero--photo { background: var(--green-3); color: #fff; }
.hero-photo, .hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { z-index: 0; }
.hero-photo img { object-fit: cover; object-position: 55% 45%; }
.hero--photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(22,38,27,.8) 0%, rgba(22,38,27,.58) 45%, rgba(22,38,27,.4) 100%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 36px; background: var(--paper); border-radius: 50% 50% 0 0 / 100% 100% 0 0; z-index: 2; }
.hero--service::after { background: var(--bg); }
.hero-grid { position: relative; z-index: 3; display: grid; gap: 22px; padding-top: 24px; padding-bottom: 60px; }
.hero h1 { color: #fff; text-shadow: 0 1px 24px rgba(0,0,0,.18); }
.hero .eyebrow { color: #d8e4c4; }
.hero-sub { font-size: 1.06rem; color: rgba(255,255,255,.9); max-width: 34em; }
.hero-points { list-style: none; padding: 0; margin: 20px 0 0; display: none; }
.hero-points li { padding: 9px 0 9px 36px; position: relative; color: #fff; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: 10px; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' fill='none' stroke='%232b4a33' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M7 11.5l3 3 5-6'/%3E%3C/svg%3E") center / 100% no-repeat; }
.hero .crumbs, .hero .crumbs a { color: rgba(255,255,255,.82); }
.from-price { display: none; }
.districts { font-size: .85rem; color: rgba(255,255,255,.75); }
@media (max-width: 699px) {
  .hero .hero-sub { display: none; }
  .hero h1 { font-size: 2rem; margin-bottom: 0; }
  .hero--service h1 { font-size: 1.75rem; }
  .hero .eyebrow { margin-bottom: .6em; }
  .districts { display: none; }
}
@media (min-width: 700px) {
  .from-price { display: inline-flex; align-items: baseline; gap: 14px; margin: 18px 0 0; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 20px; }
  .from-price dt { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #d8e4c4; font-weight: 600; }
  .from-price dd { margin: 0; font-size: 1.6rem; font-weight: 600; color: #fff; }
}
@media (min-width: 980px) {
  .hero--photo::before { background: linear-gradient(90deg, rgba(22,38,27,.86) 0%, rgba(22,38,27,.62) 42%, rgba(22,38,27,.14) 75%, rgba(22,38,27,.06) 100%); }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 64px; padding-top: 60px; padding-bottom: 96px; align-items: start; min-height: 600px; }
  .hero-copy { padding-top: 22px; }
  .hero-points { display: block; }
}

/* page head (articles, indexes) */
.page-head { padding: 26px 0 8px; }
.page-head h1 { max-width: 22ch; }
.page-head .lede { font-size: 1.12rem; color: var(--muted); max-width: 44em; }
.page-head .meta { font-size: .85rem; color: var(--muted); }
.page-head-photo { margin-top: 14px; }
.page-head-photo img { display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--r-lg); }
@media (max-width: 699px) { .page-head-photo img { aspect-ratio: 3 / 2; } }
.crumbs { font-size: .82rem; color: var(--muted); margin: 0 0 16px; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "›"; margin-right: 6px; opacity: .7; }
.crumbs a { color: inherit; }

/* trust */
.trust { background: var(--paper); }
.trust ul { list-style: none; margin: 0 auto; padding-top: 18px; padding-bottom: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.trust li { display: flex; gap: 12px; align-items: center; font-size: .84rem; color: var(--muted); line-height: 1.35; }
.trust strong { display: block; font-weight: 600; font-size: 1rem; color: var(--green); }
.trust svg { width: 44px; height: 44px; flex: none; fill: none; stroke: var(--green-2); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; background: var(--sage-100); border-radius: 50%; padding: 7px; }
@media (min-width: 900px) { .trust ul { grid-template-columns: repeat(4, 1fr); } }

/* sections */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--article { padding-top: 36px; }
@media (min-width: 900px) { .section { padding: 96px 0; } .section--tight { padding: 56px 0; } .section--article { padding-top: 48px; } }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); font-size: 1.04rem; }
.how { background: var(--paper); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li { background: var(--grey-50); border-radius: 20px; padding: 26px; }
.num { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 600; margin-bottom: 14px; }
.steps p { color: var(--muted); margin: 0; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* hub cards */
.services { background: var(--tint); }
.hubs { display: grid; gap: 28px; }
@media (min-width: 900px) { .hubs { grid-template-columns: 1fr 1fr; gap: 32px; } }
.hub { background: var(--paper); border-radius: var(--r-lg); display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow); }
.hub-photo { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sage-100); }
.hub-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hub:hover .hub-photo img { transform: scale(1.03); }
.hub-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 700px) { .hub-body { padding: 32px 34px 36px; } }
.hub h3 { font-size: 1.7rem; }
.hub h3 a { color: inherit; text-decoration: none; }
.hub p { color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 6px 0 24px; border-top: 1px solid var(--line); }
.price-list li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.price-list a { color: var(--text); text-decoration: none; }
.price-list a:hover { color: var(--green-2); text-decoration: underline; }
.price-list span { color: var(--accent-text); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.hub .link-arrow { align-self: flex-start; margin-top: auto; }

/* generic cards */
.cards { display: grid; gap: 20px; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { display: flex; flex-direction: column; background: var(--paper); border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--text); box-shadow: 0 1px 2px rgba(43,74,51,.06); transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-photo { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sage-100); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.card-body strong { color: var(--green); font-size: 1.08rem; line-height: 1.25; letter-spacing: -.01em; }
.card-body span { color: var(--muted); font-size: .93rem; }
.card-body em { font-style: normal; color: var(--accent-text); font-weight: 600; font-size: .92rem; }
.more { margin-top: 28px; }

/* promise */
.promise { background: var(--green); color: rgba(255,255,255,.84); }
.promise h2 { color: #fff; }
.promise .eyebrow { color: #cfdcb8; }
.promise-grid { display: grid; gap: 40px; }
.promise-photo { display: none; }
@media (min-width: 900px) {
  .promise-grid { grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
  .promise-photo { display: block; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3 / 4; }
  .promise-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
}
.promise-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; }
.promise-list li { background: rgba(255,255,255,.07); border-radius: 14px; padding: 16px 20px; }
.promise-list strong { color: #fff; font-weight: 600; }

/* areas */
.areas { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
@media (min-width: 600px) { .areas { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .areas { grid-template-columns: repeat(3, 1fr); } }
.areas a, .area-soon { display: flex; flex-direction: column; background: var(--paper); border-radius: 14px; padding: 14px 44px 14px 18px; border: 1px solid var(--line); color: var(--green); font-weight: 600; font-size: 1.05rem; text-decoration: none; position: relative; transition: border-color .15s; }
.areas a::after { content: "→"; position: absolute; right: 18px; top: 20px; color: var(--accent); }
.areas a:hover { border-color: var(--sage); }
.areas small { font-weight: 400; font-size: .8rem; color: var(--muted); }
.area-soon { color: var(--muted); background: transparent; }
.note { margin-top: 24px; color: var(--muted); }
.guides-teaser { background: var(--grey-50); }
.area-lanes { display: grid; gap: 28px; }
@media (min-width: 800px) { .area-lanes { grid-template-columns: 1fr 1fr; gap: 48px; } }
.area-lane h2 { font-size: 1.5rem; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .faq-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; } }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; padding: 0 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative; font-weight: 600; font-size: 1.05rem; color: var(--green); letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 4px; top: 26px; width: 9px; height: 9px; border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq-a { color: var(--muted); padding-bottom: 6px; }
.faq-block { margin-top: 48px; }

/* CTA band + footer */
.cta-band { padding: 56px 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { margin: 0 0 .2em; }
.cta-band p { margin: 0; }
.cta-band--stone { position: relative; background: var(--green) url("/assets/img/band-stone.jpg") center / cover no-repeat; color: #fff; }
@supports (background-image: image-set(url("/assets/img/band-stone.webp") type("image/webp"))) {
  .cta-band--stone { background-image: image-set(url("/assets/img/band-stone.webp") type("image/webp"), url("/assets/img/band-stone.jpg") type("image/jpeg")); }
}
.cta-band--stone::before { content: ""; position: absolute; inset: 0; background: rgba(28,50,34,.8); }
.cta-band--stone .wrap { position: relative; }
.cta-band--stone h2 { color: #fff; }
.cta-band--stone p { color: rgba(255,255,255,.84); }
.site-foot { background: var(--green); color: rgba(255,255,255,.68); padding: 56px 0 30px; font-size: .9rem; }
.foot-grid { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 36px; } }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .foot-brand { grid-column: auto; } }
.foot-brand .logo { color: #fff; margin-bottom: 14px; }
.foot-brand .logo-mark { width: 40px; height: 40px; color: rgba(255,255,255,.8); }
.foot-brand .logo-name { color: #fff; }
.site-foot .logo-tag { display: block; color: rgba(255,255,255,.6); }
.foot-grid h3 { color: #cfdcb8; font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 6px 0 12px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin: 7px 0; }
.site-foot a { color: rgba(255,255,255,.9); text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.62); margin-top: 40px; padding-top: 22px; font-size: .8rem; }

/* article / service body */
.layout { display: grid; gap: 48px; }
@media (min-width: 1000px) { .layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 72px; } }
.prose { max-width: 720px; min-width: 0; }
.prose h2 { margin-top: 1.7em; font-size: clamp(1.45rem, 3vw, 1.9rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .4em 0; }
.prose--page h2 { font-size: 1.45rem; }
.table-wrap { background: var(--paper); border-radius: 16px; border: 1px solid var(--grey-300); padding: 4px 18px; margin: 12px 0 16px; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { text-align: left; padding: 12px 12px 12px 0; border-bottom: 1px solid var(--grey-100); vertical-align: top; }
.table tr:last-child td { border-bottom: 0; }
.table thead th { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-2); border-bottom-color: var(--line-2); }
.table td:first-child { color: var(--green); font-weight: 500; }
.callout { background: var(--sage-100); border-radius: 14px; padding: 16px 20px; margin: 28px 0; }
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }
.photo-guide { background: var(--sage-100); padding: 28px 24px; margin: 40px 0; border-radius: var(--r-lg); }
.photo-guide h2 { margin-top: 0 !important; font-size: 1.5rem; }
.photo-guide ol { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
@media (min-width: 640px) { .photo-guide ol { grid-template-columns: repeat(3, 1fr); } }
.photo-guide li { background: var(--paper); padding: 16px; font-size: .92rem; border-radius: 14px; margin: 0; }
.photo-guide svg { width: 50px; height: 50px; display: block; margin-bottom: 8px; fill: none; stroke: var(--green-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cta-box { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; background: var(--green); color: rgba(255,255,255,.86); border-radius: var(--r-lg); padding: 24px 26px; margin: 40px 0; }
.cta-box .cta-box-title { color: #fff; margin: 0 0 .3em !important; font-size: 1.35rem; }
.cta-box p { margin: 0; max-width: 34em; }
.cta-box .btn { background: #fff; color: var(--green); }
.aside-box { background: var(--paper); border: 1px solid var(--grey-300); border-radius: 16px; padding: 18px 20px; margin-bottom: 18px; }
.aside-box h3 { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-2); margin-bottom: 10px; }
.aside-box ul { list-style: none; padding: 0; margin: 0; }
.aside-box li a, .aside-box--cost a { display: block; padding: 6px 0; color: var(--green); text-decoration: none; font-weight: 500; line-height: 1.35; }
.aside-box a:hover { text-decoration: underline; }
.aside-box--cta { background: var(--sage-100); border: 0; }
.aside-box--cta p { font-size: .92rem; color: var(--muted); }
.aside-box--cta .btn { width: 100%; text-align: center; padding: 12px 18px; }
@media (min-width: 1000px) { .aside { position: sticky; top: 20px; align-self: start; } }
.link-list { padding-left: 1.2em; }

/* forms (holder interest) */
.holder-form { background: var(--paper); border-radius: var(--r-lg); padding: 26px; margin: 36px 0; box-shadow: var(--shadow); }
.holder-form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.holder-form input:not([type=checkbox]) { display: block; width: 100%; margin-top: 6px; font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; }
.form-grid { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.checks-inline { border: 0; padding: 0; margin: 4px 0 12px; }
.checks-inline legend { font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.checks-inline label { display: inline-flex; gap: 8px; align-items: center; font-weight: 400; margin-right: 18px; }
.tick { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; }
.tick input { width: 20px; height: 20px; accent-color: var(--green); flex: none; margin-top: 2px; }
.hp { position: absolute; left: -9999px; }
.form-ok { background: var(--sage-100); padding: 14px 16px; border-radius: 12px; }
.form-error { color: var(--alert); font-weight: 600; }

/* cookie banner */
.cookie { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; background: var(--paper); border-radius: 18px; box-shadow: 0 10px 40px rgba(0,0,0,.2); padding: 18px 20px; max-width: 560px; margin: 0 auto; font-size: .92rem; }
.cookie p { margin: 0 0 12px; }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; }

/* bare layout (quote page) */
.bare { background: var(--tint); }
.bare-main { min-height: 70vh; }
.quote-wrap { max-width: 640px; margin: 0 auto; padding: 28px 16px 64px; }
.quote-intro { text-align: center; margin-bottom: 22px; }
.quote-intro h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); margin-bottom: .2em; }
.quote-intro p { color: var(--muted); margin: 0; }
.quote-foot { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 22px; }
.link-card { text-align: center; }

/* ======== QUOTE WIDGET ======== */
.q { background: var(--paper); color: var(--text); border-radius: var(--r-lg); box-shadow: 0 1px 2px rgba(43,74,51,.06), 0 18px 50px rgba(43,74,51,.14); padding: 22px 20px 26px; position: relative; }
@media (min-width: 560px) { .q { padding: 28px 30px 32px; } }
.q--loading { min-height: 475px; } /* matches the rendered postcode step, so the page doesn't jump when the form loads (CLS) */
@media (min-width: 480px) { .q--loading { min-height: 432px; } }
.q-top { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.q-back { background: none; border: 0; padding: 4px 0; font: inherit; color: var(--green-2); cursor: pointer; }
.q-back:hover { text-decoration: underline; }
.q-back--off { color: var(--muted); cursor: default; }
.q-back--off:hover { text-decoration: none; }
.q-count { letter-spacing: .1em; text-transform: uppercase; font-size: .68rem; font-weight: 600; color: var(--green-2); }
.q-progress { height: 6px; background: var(--sage-100); margin: 0 0 22px; border-radius: 99px; overflow: hidden; }
.q-progress span { display: block; height: 100%; background: var(--sage); border-radius: 99px; transition: width .35s ease; }
.q-kicker { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green-2); margin: 0 0 8px; }
.q-title { font-size: clamp(1.5rem, 4.4vw, 1.9rem); margin: 0 0 .35em; outline: none; color: var(--green); }
.q-help { color: var(--muted); font-size: .93rem; margin: 0 0 16px; }
.q-label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin: 0 0 6px; }
.q-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.q-input { width: 100%; font: inherit; font-size: 1.05rem; padding: 13px 14px; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; color: var(--text); transition: border-color .15s, box-shadow .15s; }
.q-input:focus { outline: none; border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(59,100,69,.16); }
.q-input--pc { text-transform: uppercase; letter-spacing: .06em; }
.q-input--pc::placeholder { text-transform: none; letter-spacing: 0; }
.q-textarea { resize: vertical; min-height: 110px; }
.q-inline { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 480px) { .q-inline { flex-direction: row; } .q-inline .q-input { flex: 1; } }
.q-next { background: var(--green); color: #fff; border: 0; border-radius: 99px; font: inherit; font-weight: 600; font-size: 1rem; padding: 14px 24px; cursor: pointer; white-space: nowrap; transition: background .15s; }
.q-next:hover { background: var(--green-2); }
.q-next:disabled { background: #b9bfb3; cursor: not-allowed; }
.q-next--final { width: 100%; }
.q-actions { margin-top: 20px; display: flex; justify-content: flex-end; }
.q-actions .q-next { width: 100%; }
@media (min-width: 480px) { .q-actions .q-next { width: auto; } .q-actions .q-next--final { width: 100%; } }
.q-error { color: var(--alert); font-size: .9rem; margin: 10px 0 0; }
.q-ok { color: var(--green-2); font-weight: 600; }
.q-trust { list-style: none; padding: 16px 0 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line); }
.q-trust li::before { content: "✓"; color: var(--sage); margin-right: 6px; }
.q-options { display: grid; gap: 8px; }
.q-options--tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 560px) { .q-options--many { grid-template-columns: repeat(4, 1fr); } }
.q-opt { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; width: 100%; font: inherit; color: var(--text); background: #fff; border: 1px solid var(--grey-300); border-radius: 14px; padding: 14px 44px 14px 16px; cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.q-options--tiles .q-opt { align-items: center; text-align: center; padding: 16px 8px 14px; }
.q-opt:hover { border-color: var(--green-2); }
.q-opt.is-selected { border-color: var(--green); background: #f3f6ec; box-shadow: inset 0 0 0 1px var(--green); }
.q-opt .q-ico { width: 50px; height: 50px; color: var(--green-2); margin-bottom: 6px; stroke-width: 1.8; }
.q-opt-label { font-size: .96rem; line-height: 1.3; font-weight: 500; }
.q-opt-sub { font-size: .78rem; color: var(--muted); }
.q-options:not(.q-options--tiles) .q-opt::after { content: ""; position: absolute; right: 16px; top: 50%; width: 16px; height: 16px; margin-top: -8px; border: 1px solid var(--line-2); border-radius: 50%; }
.q-options:not(.q-options--tiles) .q-opt.is-selected::after { border: 5px solid var(--green); }
.q-check { position: absolute; top: 10px; right: 10px; width: 18px; height: 18px; border: 1px solid var(--line-2); border-radius: 4px; background: #fff; }
.q-options:not(.q-options--tiles) .q-opt:has(.q-check)::after { display: none; }
.q-options:not(.q-options--tiles) .q-check { top: 50%; margin-top: -9px; right: 14px; }
.q-opt.is-selected .q-check { background: var(--green); border-color: var(--green); }
.q-opt.is-selected .q-check::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.q-tick { display: flex; gap: 12px; align-items: flex-start; margin: 18px 0 0; font-size: .9rem; cursor: pointer; color: var(--muted); }
.q-tick input { width: 20px; height: 20px; accent-color: var(--green); flex: none; margin: 2px 0 0; }
.q-grid { display: grid; gap: 14px; }
@media (min-width: 520px) { .q-grid { grid-template-columns: 1fr 1fr; } }
.q-besttime { border: 0; padding: 0; margin: 16px 0 0; }
.q-besttime label { display: inline-block; margin-right: 6px; }
.q-besttime input { position: absolute; opacity: 0; }
.q-besttime span { display: inline-block; padding: 7px 16px; border: 1px solid var(--line-2); border-radius: 99px; font-size: .88rem; cursor: pointer; background: #fff; }
.q-besttime input:checked + span { border-color: var(--green); background: var(--green); color: #fff; }
.q-besttime input:focus-visible + span { outline: 2px solid var(--green-2); outline-offset: 2px; }
.q-hp { position: absolute; left: -9999px; }
.q-photoguide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 16px; }
.q-photoguide figure { margin: 0; background: var(--grey-50); padding: 12px 8px; border-radius: 12px; text-align: center; font-size: .75rem; line-height: 1.35; color: var(--muted); }
.q-photoguide .q-ico { width: 38px; height: 38px; color: var(--green-2); display: block; margin: 0 auto 6px; stroke-width: 1.8; }
.q-drop { display: flex; gap: 16px; align-items: center; border: 1px dashed var(--sage); background: #fdfdfb; border-radius: 14px; padding: 18px; cursor: pointer; font-size: .88rem; color: var(--muted); transition: background .15s; }
.q-drop:hover, .q-drop:focus-within { background: #f3f6ec; }
.q-drop strong { color: var(--green); font-size: 1.05rem; font-weight: 600; }
.q-drop .q-ico { width: 40px; height: 40px; color: var(--green-2); flex: none; stroke-width: 1.8; }
.q-thumbs { list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.q-thumbs li { position: relative; aspect-ratio: 1; }
.q-thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.q-thumbs button { position: absolute; top: 5px; right: 5px; width: 28px; height: 28px; border-radius: 50%; border: 0; background: rgba(22,41,31,.8); color: #fff; font-size: 1rem; cursor: pointer; }
.q-link { background: none; border: 0; padding: 0; font: inherit; color: var(--green-2); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; font-size: .9rem; }
.q-estimate { background: var(--green); color: rgba(255,255,255,.84); padding: 24px 22px; border-radius: 18px; margin: 6px 0 14px; text-align: center; }
.q-estimate-label { margin: 0; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: #cfdcb8; font-weight: 600; }
.q-estimate-value { font-weight: 600; font-size: clamp(2.4rem, 10vw, 3.2rem); line-height: 1; margin: 10px 0 12px; color: #fff; letter-spacing: -.03em; }
.q-estimate-value--sm { font-size: clamp(1.5rem, 6vw, 2rem); letter-spacing: -.02em; }
.q-estimate-note { margin: 0 auto; font-size: .9rem; max-width: 30em; }
.q-flags { list-style: none; padding: 0; margin: 0 0 14px; }
.q-flags li { border-radius: 10px; background: #f7efdf; padding: 10px 14px; margin-bottom: 6px; font-size: .88rem; }
.q-done > .q-ico { width: 54px; height: 54px; color: var(--green); border: 1px solid var(--green); border-radius: 50%; padding: 11px; margin-bottom: 14px; stroke-width: 3; }
.q-lead { font-size: 1.06rem; color: var(--text); }
.q-summary { margin: 18px 0; border-top: 1px solid var(--line-2); }
.q-summary div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.q-summary dt { color: var(--muted); }
.q-summary dd { margin: 0; font-weight: 600; color: var(--green); text-align: right; word-break: break-word; }
.q-ooa form { margin: 16px 0; }
.q-sending { opacity: .6; pointer-events: none; }
.q-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: q-spin .8s linear infinite; vertical-align: -3px; margin-right: 8px; }
@keyframes q-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }


/* Ground and Gate additions */
.logo-amp { color: var(--accent); }
.q-grid--measure { grid-template-columns: 1fr 1fr; }
.q-grid--measure .q-input { font-variant-numeric: tabular-nums; }
.q-measure-out { margin-top: 10px; }
.faq-section { background: var(--grey-50); }
