/* Woodland Oaks Appliance Repair — editable design tokens */
:root {
  --forest: #173e32;
  --forest-dark: #103127;
  --green: #306649;
  --sage: #e9eee5;
  --ivory: #f8f7f2;
  --white: #fff;
  --ink: #202b25;
  --muted: #60665e;
  --line: #e2e4da;
  --plum: #624171;
  --gold: #d4bd80;
  --heading: 'Manrope', sans-serif;
  --body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.23,1,.32,1);
  --header-height: 120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; color: var(--ink); background: var(--ivory); font: 400 16px/1.65 var(--body); -webkit-font-smoothing: antialiased; }
::selection { background: #d7e4ce; color: var(--forest-dark); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a, input[type='checkbox'], summary { -webkit-tap-highlight-color: transparent; }
button, summary { cursor: pointer; }
button { color: inherit; }
img { display: block; max-width: 100%; }
button, a { touch-action: manipulation; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); }
h2 { font-size: clamp(32px,3.2vw,46px); line-height: 1.2; letter-spacing: -1.8px; font-weight: 750; margin-bottom: 24px; }
h2 span { color: var(--green); }
h3 { font-weight: 750; }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--plum); outline-offset: 5px; }
[hidden] { display: none !important; }
.wrap { width: min(1280px, calc(100% - 112px)); margin-inline: auto; }
.icon { width: 22px; height: 22px; flex-shrink: 0; display: inline-block; vertical-align: middle; }
.section { padding: 100px 0; }
.section-anchor { scroll-margin-top: 15px; }
.eyebrow { color: var(--green); font-size: 11px; line-height: 1.5; font-weight: 750; letter-spacing: 2px; margin-bottom: 20px; display: flex; align-items: center; gap: 11px; }
.tiny-line { width: 26px; height: 2px; background: var(--green); }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 54px; padding: 14px 23px; border-radius: 7px; font-size: 13px; font-weight: 650; line-height: 1.3; border: 1px solid transparent; transition: background .2s var(--ease), transform .18s var(--ease), box-shadow .2s var(--ease); white-space: nowrap; }
.button .icon { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button-green { background: var(--forest); color: white; }
.button-green:hover { background: #245441; box-shadow: 0 6px 14px #173e3215; }
.button-outline { border-color: #aeb8ab; background: transparent; color: var(--forest); }
.button-outline:hover { background: #e9eee5; }
.button-light { background: var(--ivory); color: var(--forest); }
.button-light:hover { background: #e9eee0; }
.button-divider { height: 15px; width: 1px; background: #ffffff45; }
.text-link { display: inline-flex; align-items: center; gap: 13px; font-size: 13px; font-weight: 650; color: var(--forest); }
.text-link .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }
.text-link:hover { color: var(--plum); }
.status-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #bcd4a0; flex-shrink: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; padding: 10px 20px; z-index: 100; background: white; border: 2px solid var(--forest); }
.skip-link:focus { top: 10px; }
/* Fixed navigation */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #faf9f5; transition: box-shadow .2s var(--ease); }
.site-header.scrolled { box-shadow: 0 4px 24px #173e320c; }
.utility-bar { height: 32px; background: var(--forest); color: #ecf0e8; font-size: 10px; letter-spacing: .2px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.utility-inner > span, .utility-inner > a { display: flex; gap: 7px; align-items: center; }
.utility-inner .icon { width: 12px; height: 12px; }
.nav-bar { height: 88px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.brand { flex-shrink: 0; width: 234px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a { position: relative; color: #4e554e; font-size: 11px; font-weight: 550; white-space: nowrap; padding: 18px 0; }
.desktop-nav a:after { content: ''; height: 2px; background: var(--green); position: absolute; bottom: 8px; left: 0; right: 0; transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--forest); }
.desktop-nav a.active:after, .desktop-nav a:hover:after { transform: scaleX(1); }
.nav-call { min-height: 43px; padding: 12px 18px; font-size: 12px; flex-shrink: 0; gap: 9px; }
.nav-call .icon { width: 15px; height: 15px; }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); border-radius: 6px; width: 42px; height: 42px; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--ivory); padding: 12px 24px 20px; max-height: calc(100dvh - var(--header-height)); overflow-y: auto; }
.mobile-nav > a { display: block; padding: 9px 0; font-size: 15px; }
.mobile-nav > a.active { font-weight: 700; color: var(--green); }
.mobile-nav .mobile-menu-call { color: var(--forest); border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; font-weight: 700; }
/* Editorial hero */
.hero { padding: calc(var(--header-height) + 54px) 0 65px; overflow: hidden; background: radial-gradient(ellipse at 58% 90%,#ecede1 0,transparent 55%),var(--ivory); }
.hero-grid { display: grid; grid-template-columns: 1.13fr 1fr; align-items: center; gap: 58px; }
.hero-copy { padding: 7px 0 0; }
.hero .eyebrow { font-size: 10px; letter-spacing: 1.7px; margin-bottom: 22px; }
h1 { font-size: clamp(38px,4.35vw,64px); font-weight: 800; line-height: 1.14; letter-spacing: -2.7px; margin-bottom: 25px; }
h1 span { color: var(--green); }
.hero-description { max-width: 515px; font-size: 14px; line-height: 1.9; margin-bottom: 27px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .button { font-size: 11px; padding: 16px 17px; min-height: 51px; gap: 9px; }
.hero-assurance { font-size: 11px; color: #70766b; display: flex; align-items: center; gap: 7px; margin-top: 17px; }
.hero-assurance .icon { width: 14px; height: 14px; color: var(--green); }
.hero-seo { margin-top: 38px; font-size: 10px; font-weight: 550; border-bottom: 1px solid #bec8b9; padding-bottom: 5px; }
.hero-seo .icon { width: 14px; height: 14px; }
.hero-visual { position: relative; padding-right: 6px; padding-bottom: 19px; }
.hero-photo-wrap { position: relative; height: 525px; border-radius: 13px 90px 13px 13px; overflow: hidden; background: #d7d2bd; }
.hero-photo { height: 100%; width: 100%; object-fit: cover; object-position: center 51%; }
.photo-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 52px 24px 23px; background: linear-gradient(transparent,#152419a3); color: white; display: flex; align-items: center; gap: 8px; font-size: 8px; font-weight: 500; letter-spacing: 1.5px; }
.availability-stamp { position: absolute; width: 104px; height: 104px; right: -26px; top: 33px; border-radius: 50%; background: var(--forest); color: var(--ivory); border: 6px solid var(--ivory); outline: 1px solid #cbd1bd; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(9deg); }
.availability-stamp span { font-size: 6px; letter-spacing: 1px; font-weight: 650; }
.availability-stamp strong { font-size: 32px; font-family: var(--heading); line-height: 1.35; font-weight: 750; }
.home-card { position: absolute; left: -25px; bottom: -2px; display: flex; align-items: center; gap: 14px; padding: 18px 25px 18px 17px; background: #fff; border: 1px solid #eeeee7; border-radius: 9px; box-shadow: 0 12px 30px #2331210d; }
.home-card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--forest); background: var(--sage); }
.home-card-icon .icon { width: 24px; height: 24px; }
.home-card strong { font-family: var(--heading); display: block; font-weight: 750; font-size: 13px; }
.home-card div > span { display: block; font-size: 9px; color: var(--muted); margin-top: 3px; }
/* Trust strip */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f1f2e9; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); padding: 24px 0; }
.trust-grid > div { display: flex; justify-content: center; align-items: center; gap: 16px; border-right: 1px solid #d7ddcd; }
.trust-grid > div:first-child { justify-content: flex-start; }
.trust-grid > div:last-child { border: 0; justify-content: flex-end; }
.trust-grid .icon { width: 27px; height: 27px; color: var(--green); }
.trust-grid strong { display: block; font-size: 12px; font-weight: 650; }
.trust-grid small { display: block; color: #626a5a; font-size: 10px; margin-top: 2px; }
/* Services */
.services-section { background: #fdfcf9; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 41px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading-aside { padding-bottom: 5px; }
.section-heading-aside p { font-size: 13px; line-height: 1.8; margin-bottom: 17px; }
.section-heading-aside .text-link { font-size: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { background: var(--ivory); border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px 21px; display: flex; flex-direction: column; scroll-margin-top: 145px; transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease); }
.service-card:hover { transform: translateY(-4px); border-color: #a2b39a; box-shadow: 0 8px 25px #1c3e3210; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.service-icon { background: #e9eddf; color: var(--forest); width: 47px; height: 47px; border-radius: 8px; display: grid; place-items: center; }
.service-icon .icon { width: 27px; height: 27px; stroke-width: 1.4; }
.service-number { font-size: 11px; color: #6a735f; font-family: var(--heading); }
.service-card:nth-child(3n+2) .service-icon { color: var(--plum); background: #eee8ef; }
.service-card h3 { font-size: 15px; letter-spacing: -.4px; line-height: 1.4; margin-bottom: 12px; }
.service-card p { font-size: 12px; line-height: 1.85; margin-bottom: 25px; }
.service-link { display: flex; align-items: center; justify-content: space-between; padding-top: 17px; border-top: 1px solid var(--line); margin-top: auto; font-size: 11px; font-weight: 600; color: var(--forest); }
.service-link .icon { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.service-link:hover .icon { transform: translate(2px,-2px); }
.services-note { margin-top: 26px; display: flex; justify-content: center; align-items: center; gap: 24px; color: var(--muted); font-size: 11px; }
.services-note > span { display: flex; align-items: center; gap: 10px; }
.services-note > span .icon { color: var(--green); width: 16px; height: 16px; }
.services-note > a { display: flex; align-items: center; gap: 9px; color: var(--green); font-weight: 650; }
.services-note > a .icon { width: 17px; height: 17px; }
/* About */
.about-section { background: #efefe6; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.about-visual { position: relative; padding-bottom: 28px; }
.about-visual > img { height: 455px; width: 100%; object-fit: cover; border-radius: 70px 10px 10px 10px; }
.local-note { position: absolute; bottom: 0; right: -20px; display: flex; align-items: center; gap: 16px; background: var(--forest); color: #e6ecd8; padding: 22px 28px; border-radius: 8px; font-size: 14px; line-height: 1.65; }
.local-note .icon { width: 35px; height: 35px; color: #c3d4a8; }
.local-note strong { color: white; font-weight: 650; }
.about-copy h2 { margin-bottom: 23px; }
.about-copy p { font-size: 13px; line-height: 1.9; margin-bottom: 15px; }
.about-copy .text-link { margin-top: 10px; font-size: 12px; }
/* Why Woodland Oaks */
.why-section { background: var(--forest); color: var(--ivory); position: relative; overflow: hidden; }
.why-section:before { content: ''; position: absolute; width: 450px; height: 450px; border: 1px solid #ffffff07; border-radius: 50%; right: -200px; top: -270px; box-shadow: 0 0 0 40px #ffffff03,0 0 0 80px #ffffff02; pointer-events: none; }
.why-section .eyebrow { color: #cad9b4; }
.why-section h2 span { color: #c6d7b1; }
.why-intro { color: #c0ccbf; font-size: 13px; line-height: 1.9; margin-bottom: 8px; }
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; padding: 16px 0 42px; }
.why-card { border-right: 1px solid #ffffff23; padding: 0 24px; }
.why-card:first-child { padding-left: 0; }
.why-card:last-child { border: 0; padding-right: 0; }
.why-card > .icon { width: 29px; height: 29px; color: #c8d8b1; margin-bottom: 22px; }
.why-card h3 { font-size: 14px; line-height: 1.6; margin-bottom: 12px; font-weight: 650; }
.why-card p { color: #bfcdbe; font-size: 11px; line-height: 1.9; margin-bottom: 0; }
.why-bottom { display: flex; justify-content: space-between; gap: 25px; align-items: center; border-top: 1px solid #ffffff25; padding-top: 32px; }
.why-bottom > span { display: flex; align-items: center; gap: 10px; color: #d3dfcd; font-size: 12px; }
.why-bottom > span .icon { width: 19px; height: 19px; }
.why-bottom .button { font-size: 11px; min-height: 48px; }
/* How it works */
.process-section { background: #fdfcf9; padding-bottom: 95px; }
.center-heading { text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading h2 { font-size: clamp(30px,3vw,40px); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; margin-top: 45px; }
.process-grid article { display: flex; gap: 18px; }
.step-number { display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; color: var(--green); background: #ecefdf; border-radius: 50%; font: 600 14px var(--heading); }
.process-grid article:nth-child(2) .step-number { background: #eee8ef; color: var(--plum); }
.process-grid h3 { font-size: 14px; letter-spacing: -.2px; margin: 4px 0 10px; }
.process-grid p { font-size: 12px; line-height: 1.8; margin-bottom: 0; }
/* FAQ */
.faq-section { border-top: 1px solid var(--line); background: #f3f3ec; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; }
.faq-intro .eyebrow { font-size: 10px; letter-spacing: 1.6px; }
.faq-intro > p { font-size: 13px; line-height: 1.9; }
.faq-contact { padding: 25px 0 0; margin-top: 25px; border-top: 1px solid #d7ddcd; }
.faq-contact > .icon { width: 26px; height: 26px; color: var(--plum); margin-bottom: 13px; }
.faq-contact h3 { font-size: 14px; margin-bottom: 5px; }
.faq-contact p { font-size: 12px; margin-bottom: 13px; }
.faq-contact .text-link { font-size: 15px; }
.faq-item { border-bottom: 1px solid #daddd2; }
.faq-item:first-child { border-top: 1px solid #daddd2; }
.faq-item summary { list-style: none; display: flex; gap: 20px; align-items: center; padding: 21px 0; font-size: 12px; font-weight: 600; line-height: 1.7; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-number { color: #67715d; font-size: 10px; font-weight: 500; flex-shrink: 0; }
.faq-item summary > .icon { width: 17px; height: 17px; margin-left: auto; color: var(--green); transition: transform .2s var(--ease); }
.faq-item[open] summary > .icon { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--green); }
.faq-answer { padding: 0 34px 19px; }
.faq-answer p { margin: 0; font-size: 12px; line-height: 1.9; }
/* Service area */
.area-section { background: #fdfcf9; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.area-copy h2 { font-size: clamp(31px,3.1vw,43px); }
.area-copy > p { font-size: 13px; line-height: 1.9; max-width: 450px; }
.area-tags { display: grid; grid-template-columns: 1fr 1fr; list-style: none; margin: 24px 0; padding: 0; gap: 12px; }
.area-tags li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #4f5e4b; }
.area-tags .icon { width: 16px; height: 16px; color: var(--green); }
.area-copy .area-footnote { font-size: 11px; margin-bottom: 12px; }
.area-copy .text-link { font-size: 12px; }
.map-card { border-radius: 12px; overflow: hidden; border: 1px solid #d9dfd1; background: #e3e7da; }
.map-card iframe { display: block; border: 0; width: 100%; height: 335px; }
.map-address { display: flex; align-items: center; gap: 14px; background: var(--ivory); padding: 22px 23px; }
.map-address > .icon { color: var(--green); width: 24px; height: 24px; }
.map-address strong { display: block; font-size: 13px; font-weight: 650; }
.map-address span { display: block; font-size: 10px; color: var(--muted); margin-top: 3px; }
.map-address a { margin-left: auto; padding: 6px; color: var(--green); }
/* Contact */
.contact-section { background: #ecefe3; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: start; gap: 100px; }
.contact-copy { padding-top: 15px; }
.contact-copy h2 { font-size: clamp(33px,3.3vw,46px); }
.contact-copy > p { font-size: 13px; line-height: 1.9; }
.contact-phone { display: flex; align-items: center; gap: 16px; margin: 31px 0; }
.contact-icon { width: 49px; height: 49px; border-radius: 50%; background: #dce5cf; color: var(--forest); display: grid; place-items: center; }
.contact-icon .icon { width: 22px; height: 22px; }
.contact-phone small { display: block; font-size: 8px; color: var(--green); letter-spacing: 1.25px; font-weight: 650; }
.contact-phone strong { display: block; font: 750 27px/1.6 var(--heading); letter-spacing: -.8px; color: var(--forest); }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin: 24px 0; }
.contact-detail > .icon { color: var(--green); width: 20px; height: 20px; margin-top: 4px; }
.contact-detail p { font-size: 12px; line-height: 1.9; margin-bottom: 0; }
.contact-detail strong { color: var(--ink); font-weight: 600; }
.contact-detail p span { font-size: 11px; }
.urgent-note { display: flex; align-items: flex-start; gap: 12px; border-top: 1px solid #d1dac6; padding-top: 23px; margin-top: 30px; max-width: 370px; }
.urgent-note > .icon { color: var(--plum); width: 18px; height: 18px; margin-top: 4px; }
.urgent-note p { font-size: 11px; line-height: 1.8; margin: 0; }
.urgent-note strong { font-size: 12px; font-weight: 600; color: var(--ink); }
.form-card { border-radius: 12px; background: #fdfcf9; padding: 34px; border: 1px solid #e0e5d6; box-shadow: 0 6px 24px #273e2004; }
.form-heading h3 { font-size: 24px; letter-spacing: -.8px; margin-bottom: 5px; }
.form-heading p { font-size: 12px; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 15px; }
.field label { display: block; color: #364534; font-size: 11px; font-weight: 600; margin-bottom: 7px; }
.field label > span { color: var(--plum); }
.field input, .field textarea { width: 100%; border: 1px solid #dce1d5; background: #fff; border-radius: 5px; padding: 12px 13px; color: var(--ink); font-size: 12px; line-height: 1.5; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.field input { height: 44px; }
.field input::placeholder, .field textarea::placeholder { color: #6e7567; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px #30664912; }
.field textarea { resize: vertical; min-height: 110px; }
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'] { border-color: #a43838; }
.field-error { display: block; color: #a02e2e; font-size: 10px; line-height: 1.5; margin-top: 4px; }
.field-error:empty { display: none; }
.consent-field { display: flex; align-items: flex-start; gap: 10px; }
.consent-field input { width: 15px; height: 15px; flex-shrink: 0; margin: 3px 0 0; accent-color: var(--forest); cursor: pointer; }
.consent-field label { font-size: 9px; line-height: 1.8; color: #69725f; cursor: pointer; }
.form-submit { display: flex; width: 100%; justify-content: space-between; margin-top: 21px; font-size: 12px; min-height: 49px; }
.form-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 9px; color: #69725f; margin: 12px 0 0; }
.form-note .icon { width: 11px; height: 11px; }
.form-status { margin-top: 16px; background: #ecf1e4; color: var(--forest); padding: 15px; border: 1px solid #bdcfae; border-radius: 6px; font-size: 12px; }
.form-status.error { background: #fbf2e9; color: #775024; border-color: #e3c9a7; }
.form-status a { text-decoration: underline; font-weight: 600; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Final CTA and footer */
.closing-cta { background: var(--forest); color: var(--ivory); padding: 35px 0; }
.closing-cta > .wrap { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.closing-cta .wrap > div { display: flex; align-items: center; gap: 21px; }
.closing-cta .wrap > div > .icon { width: 37px; height: 37px; color: #c6d5af; }
.closing-cta p { margin: 0; font-size: 13px; color: #c7d4be; line-height: 1.8; }
.closing-cta strong { font: 650 23px/1.5 var(--heading); letter-spacing: -.5px; color: white; }
.closing-cta .button { font-size: 12px; min-height: 49px; }
.site-footer { background: #f8f7f2; padding: 65px 0 25px; }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1.1fr; gap: 55px; padding-bottom: 46px; }
.footer-brand img { width: 230px; height: auto; margin-bottom: 17px; }
.footer-brand p { font-size: 12px; line-height: 1.85; margin-bottom: 17px; }
.footer-available { display: flex; align-items: center; gap: 7px; color: var(--green); font-size: 11px; font-weight: 550; }
.footer-available .status-dot { background: var(--green); }
.footer-column h3 { font-size: 12px; margin: 0 0 18px; font-weight: 700; }
.footer-column > a { display: block; font-size: 11px; line-height: 2.3; color: var(--muted); }
.footer-column > a:hover { color: var(--green); text-decoration: underline; }
.footer-column .footer-phone { font-size: 17px; line-height: 1.3; font-weight: 700; letter-spacing: -.4px; color: var(--forest); margin-bottom: 15px; }
.footer-get-in-touch p { font-size: 11px; line-height: 1.85; margin-bottom: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 21px 0; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 10px; margin: 0; }
.footer-bottom a { display: flex; align-items: center; gap: 10px; font-size: 10px; color: var(--green); }
.footer-bottom .icon { width: 13px; height: 13px; transform: rotate(-90deg); }
.disclaimer { border-top: 1px solid var(--line); padding-top: 20px; font-size: 9px; line-height: 1.9; color: #6a705f; margin-bottom: 0; }
.mobile-call { display: none; }
/* Tablet */
@media (min-width: 1500px) {
  .hero { padding-top: calc(var(--header-height) + 70px); padding-bottom: 75px; }
  .hero-photo-wrap { height: 565px; }
  .hero-description { font-size: 15px; }
  .hero-actions .button { font-size: 12px; }
}
@media (max-width: 1199px) {
  .wrap { width: calc(100% - 72px); }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 10px; }
  .brand { width: 205px; }
  .nav-bar { gap: 17px; }
  .nav-call { font-size: 11px; padding: 11px 13px; }
  .hero-grid { gap: 35px; }
  h1 { font-size: clamp(38px,4.35vw,53px); letter-spacing: -2px; }
  .hero-photo-wrap { height: 510px; }
  .hero-description { font-size: 13px; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { padding: 14px 13px; font-size: 10px; gap: 7px; }
  .service-card { padding: 23px 19px 19px; }
  .service-card h3 { font-size: 14px; }
  .about-grid, .contact-grid { gap: 60px; }
  .faq-grid { gap: 60px; }
  .area-grid { gap: 50px; }
  .why-card { padding: 0 17px; }
  .footer-main { gap: 30px; }
}
@media (max-width: 1023px) {
  :root { --header-height: 110px; }
  .wrap { width: calc(100% - 56px); }
  .nav-bar { height: 78px; }
  .brand { width: 230px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-call { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero { padding-top: calc(var(--header-height) + 42px); padding-bottom: 55px; }
  h1 { font-size: clamp(34px,4.4vw,45px); letter-spacing: -1.8px; }
  .desktop-break { display: none; }
  .hero .eyebrow { font-size: 8px; letter-spacing: 1px; }
  .hero-description { font-size: 12px; line-height: 1.85; }
  .hero-photo-wrap { height: 475px; border-top-right-radius: 65px; }
  .availability-stamp { width: 85px; height: 85px; right: -20px; }
  .availability-stamp strong { font-size: 26px; }
  .availability-stamp span { font-size: 5px; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { font-size: 10px; min-height: 44px; }
  .hero-seo { margin-top: 24px; font-size: 9px; gap: 8px; }
  .home-card { left: -15px; padding: 14px; gap: 9px; }
  .home-card strong { font-size: 11px; }
  .home-card div > span { font-size: 8px; }
  .home-card-icon { width: 36px; height: 36px; }
  .photo-label { font-size: 6px; letter-spacing: 1px; padding-inline: 18px; }
  .trust-grid > div { gap: 11px; }
  .trust-grid .icon { width: 23px; height: 23px; }
  .trust-grid strong { font-size: 10px; }
  .trust-grid small { font-size: 8px; }
  .section { padding: 76px 0; }
  h2 { font-size: 36px; letter-spacing: -1.5px; }
  .eyebrow { font-size: 9px; letter-spacing: 1.6px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { padding: 25px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; }
  .service-link { font-size: 12px; }
  .service-top { margin-bottom: 18px; }
  .about-grid { gap: 42px; }
  .about-visual > img { height: 490px; }
  .about-copy p { font-size: 12px; }
  .about-copy h2 { font-size: 32px; }
  .local-note { right: -12px; font-size: 12px; padding: 18px 20px; }
  .why-grid { grid-template-columns: repeat(3,1fr); row-gap: 35px; }
  .why-card:nth-child(3) { border-right: 0; }
  .why-card:nth-child(4) { padding-left: 0; }
  .why-card:last-child { padding-inline: 17px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 12px; }
  .why-bottom > span { font-size: 10px; }
  .why-bottom .button { font-size: 10px; }
  .process-grid { gap: 25px; }
  .process-grid article { display: block; }
  .step-number { margin-bottom: 15px; }
  .faq-grid { grid-template-columns: .75fr 1.25fr; gap: 35px; }
  .faq-intro h2 { font-size: 32px; }
  .faq-intro .eyebrow { font-size: 8px; letter-spacing: 1px; }
  .faq-item summary { gap: 13px; }
  .faq-answer { padding-left: 25px; padding-right: 20px; }
  .area-grid { gap: 35px; }
  .area-copy h2 { font-size: 32px; }
  .area-tags { column-gap: 8px; }
  .area-tags li { font-size: 11px; gap: 6px; }
  .map-address { padding: 17px 15px; gap: 9px; }
  .map-address span { font-size: 8px; }
  .contact-grid { gap: 35px; }
  .contact-copy h2 { font-size: 34px; }
  .form-card { padding: 25px; }
  .form-heading h3 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1.2fr .8fr 1fr 1fr; gap: 25px; }
  .footer-brand img { width: 180px; }
  .footer-column .footer-phone { font-size: 14px; }
}
/* Mobile */
@media (max-width: 767px) {
  :root { --header-height: 101px; }
  .wrap { width: calc(100% - 40px); }
  .utility-bar { height: 29px; font-size: 9px; }
  .utility-inner { justify-content: center; }
  .utility-inner > span { display: none; }
  .nav-bar { height: 72px; gap: 12px; }
  .brand { width: 215px; max-width: calc(100% - 100px); }
  .nav-call { min-height: 39px; padding: 9px; border-radius: 50%; width: 39px; }
  .nav-call span { display: none; }
  .nav-call .icon { width: 17px; height: 17px; }
  .menu-toggle { width: 39px; height: 39px; border: 0; }
  .menu-toggle .icon { width: 25px; height: 25px; }
  .hero { padding-top: calc(var(--header-height) + 37px); padding-bottom: 46px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { padding: 0; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 18px; }
  h1 { font-size: clamp(36px,8.7vw,57px); letter-spacing: -1.9px; line-height: 1.16; margin-bottom: 21px; }
  .hero-description { font-size: 13px; line-height: 1.9; margin-bottom: 23px; max-width: 560px; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { font-size: 11px; min-height: 48px; padding: 13px 15px; }
  .hero-actions .button-green { flex: 1.3; }
  .hero-actions .button-outline { flex: 1; }
  .hero-actions .button-divider { display: none; }
  .hero-actions .button-green { font-size: 0; gap: 9px; }
  .hero-actions .button-green::after { content: 'Call Now'; font-size: 12px; }
  .hero-assurance { font-size: 10px; margin-top: 13px; }
  .hero-seo { font-size: 10px; margin-top: 22px; }
  .hero-visual { padding: 0 10px 15px 0; margin-left: 6px; }
  .hero-photo-wrap { height: 420px; border-radius: 10px 65px 10px 10px; }
  .hero-photo { object-position: center 52%; }
  .availability-stamp { width: 91px; height: 91px; right: -5px; top: 24px; }
  .availability-stamp span { font-size: 5.5px; }
  .availability-stamp strong { font-size: 28px; }
  .home-card { left: -6px; padding: 16px; gap: 12px; bottom: -7px; }
  .home-card strong { font-size: 12px; }
  .home-card div > span { font-size: 8px; }
  .home-card-icon { width: 39px; height: 39px; }
  .photo-label { padding-bottom: 40px; font-size: 6px; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 0; }
  .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:last-child { justify-content: flex-start; gap: 11px; padding: 20px 0; }
  .trust-grid > div:nth-child(2n) { border-right: 0; padding-left: 20px; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid #d7ddcd; }
  .trust-grid strong { font-size: 10px; }
  .trust-grid small { font-size: 8px; }
  .trust-grid .icon { width: 23px; height: 23px; }
  .section { padding: 61px 0; }
  h2 { font-size: 35px; letter-spacing: -1.4px; }
  .eyebrow { font-size: 9px; letter-spacing: 1.6px; margin-bottom: 17px; }
  .section-heading { display: block; margin-bottom: 27px; }
  .section-heading-aside { margin-top: 20px; padding: 0; }
  .section-heading-aside p { font-size: 12px; margin-bottom: 13px; }
  .services-grid { gap: 12px; }
  .service-card { padding: 19px 16px 17px; border-radius: 8px; }
  .service-top { margin-bottom: 19px; }
  .service-icon { width: 41px; height: 41px; }
  .service-icon .icon { width: 25px; height: 25px; }
  .service-number { font-size: 9px; }
  .service-card h3 { font-size: 13px; line-height: 1.5; letter-spacing: -.3px; }
  .service-card p { font-size: 11px; line-height: 1.8; margin-bottom: 20px; }
  .service-link { font-size: 9px; padding-top: 12px; }
  .service-link .icon { width: 14px; height: 14px; }
  .services-note { flex-direction: column; text-align: center; gap: 9px; font-size: 10px; margin-top: 24px; }
  .services-note > span { line-height: 1.8; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { padding-right: 10px; padding-bottom: 19px; }
  .about-visual > img { height: 340px; border-top-left-radius: 55px; }
  .local-note { right: 0; padding: 17px 21px; font-size: 12px; }
  .local-note .icon { width: 30px; height: 30px; }
  .about-copy h2 { font-size: 35px; }
  .about-copy p { font-size: 13px; }
  .why-intro { font-size: 12px; margin-top: 22px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; padding: 12px 0 30px; }
  .why-card { padding: 0 17px !important; }
  .why-card:nth-child(odd) { padding-left: 0 !important; border-right: 1px solid #ffffff23; }
  .why-card:nth-child(even) { padding-right: 0 !important; border-right: 0; }
  .why-card:last-child { grid-column: 1/-1; border: 0; border-top: 1px solid #ffffff23; padding-top: 25px !important; }
  .why-card > .icon { width: 26px; height: 26px; margin-bottom: 17px; }
  .why-card h3 { font-size: 13px; }
  .why-card p { font-size: 11px; }
  .why-bottom { align-items: flex-start; flex-direction: column; gap: 22px; padding-top: 25px; }
  .why-bottom > span { font-size: 10px; gap: 8px; }
  .why-bottom .button { font-size: 11px; }
  .center-heading { text-align: left; }
  .center-heading .eyebrow { justify-content: flex-start; font-size: 8px; letter-spacing: 1.4px; }
  .center-heading h2 { font-size: 33px; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .process-grid article { display: flex; gap: 18px; }
  .process-grid h3 { font-size: 14px; margin-top: 0; margin-bottom: 6px; }
  .process-grid p { font-size: 12px; }
  .step-number { width: 42px; height: 42px; margin-bottom: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro h2 { font-size: 35px; }
  .faq-intro .eyebrow { font-size: 9px; letter-spacing: 1.5px; }
  .faq-intro > p br { display: none; }
  .faq-contact { display: none; }
  .faq-item summary { font-size: 12px; padding: 21px 0; gap: 13px; }
  .faq-number { font-size: 9px; }
  .faq-answer p { font-size: 12px; }
  .area-grid { grid-template-columns: 1fr; gap: 30px; }
  .area-copy h2 { font-size: 33px; }
  .area-tags { margin: 22px 0; }
  .area-tags li { font-size: 12px; }
  .map-card iframe { height: 290px; }
  .map-address { padding: 19px; }
  .map-address span { font-size: 9px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-copy { padding: 0; }
  .contact-copy h2 { font-size: 35px; }
  .contact-phone strong { font-size: 28px; }
  .contact-detail p { font-size: 12px; }
  .contact-detail { margin: 19px 0; }
  .urgent-note { max-width: none; margin-top: 23px; }
  .form-card { padding: 25px 21px; }
  .form-heading h3 { font-size: 23px; }
  .form-heading p { font-size: 12px; }
  .field input, .field textarea { font-size: 16px; }
  .field input::placeholder, .field textarea::placeholder { font-size: 12px; }
  .field label { font-size: 12px; }
  .field input { height: 47px; }
  .consent-field label { font-size: 10px; }
  .form-submit { font-size: 13px; }
  .form-note { font-size: 9px; }
  .closing-cta { padding: 30px 0; }
  .closing-cta > .wrap { display: block; }
  .closing-cta .wrap > div { gap: 16px; }
  .closing-cta .wrap > div > .icon { width: 28px; height: 28px; }
  .closing-cta p { font-size: 11px; }
  .closing-cta strong { font-size: 18px; }
  .closing-cta .button { margin-top: 23px; font-size: 11px; width: 100%; }
  .site-footer { padding: 44px 0 94px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 25px; padding-bottom: 25px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-brand img { width: 235px; margin-bottom: 15px; }
  .footer-brand p { font-size: 12px; }
  .footer-column h3 { margin-bottom: 13px; }
  .footer-column > a { font-size: 11px; }
  .footer-get-in-touch { grid-column: 1/-1; padding-top: 5px; }
  .footer-column .footer-phone { font-size: 19px; }
  .footer-get-in-touch p { font-size: 12px; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .footer-bottom p { font-size: 9px; max-width: 240px; }
  .footer-bottom a { white-space: nowrap; font-size: 9px; }
  .disclaimer { font-size: 9px; line-height: 1.85; }
  .mobile-call { position: fixed; display: flex; justify-content: center; align-items: center; gap: 11px; bottom: max(14px,env(safe-area-inset-bottom)); left: 20px; right: 20px; z-index: 40; height: 52px; border-radius: 8px; background: var(--forest); color: white; border: 1px solid #ffffff25; box-shadow: 0 4px 20px #102f2440; font-size: 13px; font-weight: 650; }
  .mobile-call .icon { width: 18px; height: 18px; }
  .mobile-call span { border-left: 1px solid #ffffff40; padding-left: 12px; font-size: 10px; font-weight: 400; color: #dbe5d0; }
}
@media (max-width: 359px) {
  .wrap { width: calc(100% - 32px); }
  h1 { font-size: 34px; }
  .hero .eyebrow { font-size: 8px; letter-spacing: 1px; }
  .service-card { padding: 17px 13px; }
  .service-card h3 { font-size: 12px; }
  .service-card p { font-size: 10px; }
  .service-link { font-size: 8px; }
  .trust-grid strong { font-size: 9px; }
  .trust-grid small { font-size: 7px; }
  .hero-photo-wrap { height: 365px; }
  .brand { width: 195px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .site-header, .mobile-call, .hero-actions, .form-card, .map-card, .closing-cta { display: none !important; }
  .hero { padding-top: 20px; }
  .section { padding: 25px 0; }
  .wrap { width: 100%; }
  body, section, .trust-bar { background: white !important; color: black !important; }
  .why-section p, .why-section h2, .why-section h2 span, .why-section h3, .why-section .eyebrow { color: black !important; }
}

/* User-supplied photography: each photo is displayed once on the page. */
.hero-photo { object-position: 48% center; }
.service-card-photo { padding: 0 !important; overflow: hidden; }
.service-photo { width: 100%; height: 166px; object-fit: cover; }
.service-card-photo .service-top { margin: 22px 24px 18px; }
.service-card-photo h3 { margin-inline: 24px; }
.service-card-photo p { margin-inline: 24px; }
.service-card-photo .service-link { margin: auto 24px 21px; }
.about-primary { position: relative; padding-bottom: 15px; }
.about-main-photo { width: 100%; height: 345px; object-fit: cover; object-position: 40% center; border-radius: 70px 10px 10px 10px; }
.about-primary .local-note { bottom: 0; right: -18px; }
.about-detail-photos { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.about-detail-photos img { width: 100%; height: 106px; object-fit: cover; border-radius: 7px; }
.process-grid article { display: flex; flex-direction: column; gap: 0; }
.process-photo { width: 100%; height: 190px; object-fit: cover; border-radius: 9px; }
.process-step-body { display: flex; gap: 18px; padding-top: 23px; }
.process-step-body .step-number { margin: 0; }
.footer-wordmark { display: inline-flex; flex-direction: column; color: var(--forest); margin-bottom: 19px; }
.footer-wordmark-name { font: 800 27px/1.25 var(--heading); letter-spacing: -1.1px; }
.footer-wordmark-label { font: 650 9px/1.5 var(--body); color: var(--plum); letter-spacing: 3.6px; margin-top: 6px; }
@media (max-width: 1199px) and (min-width: 1024px) {
  .service-photo { height: 145px; }
  .service-card-photo .service-top { margin-inline: 19px; }
  .service-card-photo h3, .service-card-photo p, .service-card-photo .service-link { margin-inline: 19px; }
}
@media (max-width: 1023px) {
  .service-photo { height: 190px; }
  .about-main-photo { height: 380px; }
  .about-detail-photos { gap: 8px; }
  .about-detail-photos img { height: 85px; }
  .process-photo { height: 160px; }
  .process-step-body { gap: 13px; flex-direction: column; }
  .footer-wordmark-name { font-size: 23px; }
  .footer-wordmark-label { font-size: 8px; letter-spacing: 2.8px; }
}
@media (max-width: 767px) {
  .hero-photo { object-position: 45% center; }
  .service-photo { height: 133px; }
  .service-card-photo .service-top { margin: 17px 16px; }
  .service-card-photo h3, .service-card-photo p { margin-inline: 16px; }
  .service-card-photo .service-link { margin: auto 16px 17px; }
  .about-main-photo { height: 310px; border-top-left-radius: 55px; }
  .about-primary .local-note { right: -10px; }
  .about-detail-photos { margin-top: 17px; gap: 8px; }
  .about-detail-photos img { height: 92px; }
  .about-visual { padding-bottom: 0; }
  .process-photo { height: 215px; }
  .process-grid { gap: 30px; }
  .process-step-body { flex-direction: row; gap: 18px; padding-top: 19px; }
  .footer-wordmark-name { font-size: 29px; }
  .footer-wordmark-label { font-size: 9px; letter-spacing: 3.8px; }
}
@media (max-width: 359px) {
  .service-photo { height: 110px; }
  .service-card-photo .service-top, .service-card-photo h3, .service-card-photo p, .service-card-photo .service-link { margin-inline: 13px; }
  .about-detail-photos img { height: 75px; }
}
