:root {
  --forest: #17372f;
  --forest-deep: #0d2822;
  --forest-soft: #2b5147;
  --clay: #c96743;
  --clay-deep: #a94d30;
  --gold: #d5aa53;
  --cream: #f4eddf;
  --paper: #fffaf2;
  --sage: #dce5da;
  --sage-light: #edf2e9;
  --ink: #202b27;
  --muted: #66736d;
  --line: #d9d4c7;
  --white: #ffffff;
  --container: 1220px;
  --shadow: 0 24px 70px rgba(23, 55, 47, .13);
  --shadow-small: 0 12px 34px rgba(23, 55, 47, .10);
  --radius: 26px;
  --radius-small: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 1.4rem; font-size: clamp(3.2rem, 7vw, 6.7rem); font-weight: 600; }
h2 { margin-bottom: 1.1rem; font-size: clamp(2.2rem, 4.2vw, 4.15rem); font-weight: 600; }
h3 { font-size: 1.55rem; font-weight: 600; }
p { font-size: 1.04rem; }
.container { width: min(calc(100% - 2.4rem), var(--container)); margin-inline: auto; }
.section { padding: 7.2rem 0; }
.section-muted { background: var(--sage-light); }
.section-dark { background: var(--forest-deep); color: rgba(255,255,255,.75); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.align-center { align-items: center; }
.skip-link { position: fixed; z-index: 9999; top: .6rem; left: 1rem; transform: translateY(-150%); padding: .8rem 1rem; border-radius: 8px; background: var(--gold); color: var(--forest-deep); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--forest-deep); color: rgba(255,255,255,.82); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-inner span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: .65rem; border-radius: 50%; background: var(--gold); }
.utility-inner a { color: var(--white); text-decoration: none; font-weight: 800; }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,250,242,.96); border-bottom: 1px solid rgba(23,55,47,.13); backdrop-filter: blur(14px); }
.nav-shell { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .9rem; min-width: 280px; text-decoration: none; }
.brand-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50% 50% 46% 54%; background: var(--forest); color: var(--cream); border: 3px solid var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 700; box-shadow: 0 7px 20px rgba(23,55,47,.18); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; font-weight: 700; }
.brand-copy small { margin-top: .35rem; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.45rem; }
.main-nav > a, .dropdown-toggle { border: 0; background: transparent; color: var(--forest); padding: .55rem 0; text-decoration: none; font-size: .88rem; font-weight: 800; }
.main-nav > a:hover, .dropdown-toggle:hover { color: var(--clay); }
.nav-dropdown { position: relative; }
.dropdown-toggle::after { content: "⌄"; margin-left: .38rem; color: var(--clay); }
.dropdown-panel { position: absolute; top: calc(100% + 1rem); left: -1rem; min-width: 290px; padding: .65rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-small); box-shadow: var(--shadow); transform: translateY(8px); opacity: 0; visibility: hidden; transition: .18s ease; }
.dropdown-panel a { display: block; padding: .78rem .9rem; border-radius: 10px; text-decoration: none; color: var(--forest); font-weight: 750; }
.dropdown-panel a:hover { background: var(--sage-light); color: var(--clay-deep); }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel, .nav-dropdown.is-open .dropdown-panel { transform: translateY(0); opacity: 1; visibility: visible; }
.nav-toggle { display: none; border: 0; border-radius: 999px; background: var(--forest); color: var(--white); padding: .72rem 1rem; font-weight: 800; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .55rem; padding: .82rem 1.35rem; border: 1px solid var(--clay); border-radius: 999px; background: var(--clay); color: var(--white); text-decoration: none; font-weight: 800; box-shadow: 0 10px 25px rgba(169,77,48,.22); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--clay-deep); box-shadow: 0 14px 30px rgba(169,77,48,.28); }
.button-secondary { border-color: rgba(23,55,47,.24); background: transparent; color: var(--forest); box-shadow: none; }
.button-secondary:hover { background: var(--forest); color: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--forest); }
.button-light:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-deep); }
.button-small { min-height: 43px; padding: .62rem 1rem !important; background: var(--forest) !important; border-color: var(--forest) !important; color: var(--white) !important; box-shadow: none; }
.button-full { width: 100%; }
.text-link { color: var(--clay-deep); text-decoration-thickness: 1px; text-underline-offset: 5px; font-weight: 800; }
.text-link::after { content: "  →"; }
.text-link.light { color: var(--gold); }
.eyebrow { margin-bottom: 1rem; color: var(--clay-deep); font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .eyebrow, .cta-band .eyebrow { color: var(--gold); }

.hero { position: relative; overflow: hidden; background: var(--cream); color: var(--ink); }
.hero::before { content: ""; position: absolute; width: 720px; height: 720px; right: -260px; top: -250px; border-radius: 50%; background: rgba(201,103,67,.10); }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; left: -270px; bottom: -260px; border-radius: 50%; border: 1px solid rgba(23,55,47,.15); }
.hero-grid { position: relative; z-index: 1; min-height: 720px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr); align-items: center; gap: 5rem; padding-block: 6rem; }
.hero-copy h1 { max-width: 830px; color: var(--forest); }
.hero-copy h1::after { content: ""; display: block; width: 92px; height: 5px; margin-top: 1.5rem; border-radius: 999px; background: var(--gold); }
.hero-lead { max-width: 690px; color: var(--muted); font-size: 1.23rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero .button-secondary { border-color: rgba(23,55,47,.35); color: var(--forest); }
.hero .button-secondary:hover { background: var(--forest); color: var(--white); }
.trust-list { display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; margin: 2.1rem 0 0; list-style: none; }
.trust-list li { padding: .55rem .82rem; border: 1px solid rgba(23,55,47,.14); border-radius: 999px; background: rgba(255,255,255,.58); color: var(--forest); font-size: .75rem; font-weight: 800; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: var(--clay); }
.browser-scene { position: relative; min-height: 530px; }
.browser-scene::before { content: ""; position: absolute; width: 360px; height: 360px; right: 0; top: 15px; border-radius: 50%; background: var(--sage); }
.browser-window { position: absolute; inset: 54px 12px 50px 48px; overflow: hidden; background: var(--white); border: 1px solid rgba(23,55,47,.13); border-radius: 30px; box-shadow: var(--shadow); transform: rotate(1.6deg); }
.browser-top { height: 55px; display: flex; align-items: center; gap: 8px; padding: 0 20px; background: var(--forest); }
.browser-top::after { content: "LOCAL BUSINESS WEBSITE"; margin-left: 13px; color: rgba(255,255,255,.65); font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.browser-top span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.browser-top span:nth-child(2) { background: var(--clay); }
.browser-top span:nth-child(3) { background: var(--sage); }
.browser-content { padding: 44px; }
.mock-nav { width: 44%; height: 11px; border-radius: 999px; background: var(--forest); margin-bottom: 52px; }
.mock-kicker { width: 28%; height: 8px; border-radius: 999px; background: var(--clay); margin-bottom: 18px; }
.mock-heading { width: 85%; height: 24px; border-radius: 999px; background: var(--forest); margin-bottom: 14px; }
.mock-heading.short { width: 57%; }
.mock-copy { width: 92%; height: 9px; border-radius: 999px; background: #ced7d2; margin-top: 28px; }
.mock-copy.small { width: 73%; margin-top: 10px; }
.mock-button { width: 125px; height: 42px; border-radius: 999px; background: var(--clay); margin-top: 32px; }
.mock-card-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 42px; }
.mock-card-row i { min-height: 86px; border-radius: 14px; background: var(--sage-light); border: 1px solid var(--line); }
.result-card { position: absolute; left: 5px; bottom: 6px; max-width: 280px; padding: 1.25rem 1.4rem; border-radius: 18px; background: var(--clay); color: var(--white); box-shadow: 0 18px 45px rgba(169,77,48,.27); transform: rotate(-3deg); }
.result-card strong, .result-card span { display: block; }
.result-card strong { margin-bottom: .3rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.result-card span { color: rgba(255,255,255,.78); font-size: .86rem; }

.proof-strip { background: var(--forest); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid > div { min-height: 128px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.12); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.proof-grid span { color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 700; }

.page-hero { position: relative; overflow: hidden; padding: 5.8rem 0 6.3rem; background: var(--forest); color: rgba(255,255,255,.76); }
.page-hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -130px; bottom: -230px; border-radius: 50%; background: rgba(213,170,83,.14); }
.page-hero::after { content: ""; position: absolute; width: 230px; height: 230px; right: 145px; top: -120px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; color: var(--white); font-size: clamp(3rem, 6.5vw, 6.1rem); }
.page-hero h2 { max-width: 900px; color: var(--gold); font-size: clamp(1.5rem, 3vw, 2.45rem); }
.page-hero p { max-width: 830px; font-size: 1.16rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .button-secondary { border-color: rgba(255,255,255,.45); color: var(--white); }
.page-hero .button-secondary:hover { background: var(--white); color: var(--forest); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .48rem; margin-bottom: 2.1rem; color: rgba(255,255,255,.58); font-size: .76rem; font-weight: 750; }
.breadcrumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.crumb-home { display: none; }
.crumb-separator { color: rgba(255,255,255,.28); }

.split-heading { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr); align-items: end; gap: 5rem; margin-bottom: 3.2rem; }
.split-heading > p { max-width: 570px; margin-bottom: .5rem; color: var(--muted); font-size: 1.08rem; }
.two-column { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 5.2rem; }
.content-block > p { color: var(--muted); }
.check-list { display: grid; gap: .8rem; padding: 0; margin: 1.7rem 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: inset 0 0 0 3px var(--paper); outline: 1px solid var(--gold); }
.card-grid { display: grid; gap: 1.25rem; }
.service-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { position: relative; min-height: 350px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -90px; border-radius: 50%; background: var(--sage); transition: transform .3s ease; }
.card:hover::after { transform: scale(1.2); }
.card-number { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 3rem; border-radius: 50%; background: var(--forest); color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; }
.card h3 { min-height: 3.2rem; font-size: 1.65rem; }
.card h3 a { text-decoration: none; }
.card p { position: relative; z-index: 1; color: var(--muted); }
.card .text-link { position: relative; z-index: 1; }
.location-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.2rem; }
.location-card { position: relative; min-height: 230px; padding: 1.8rem; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 8px 28px rgba(23,55,47,.07); }
.location-card:nth-child(4n+2) { background: var(--sage-light); }
.location-card::after { content: "AL"; position: absolute; right: 1rem; bottom: -.6rem; color: rgba(23,55,47,.05); font-family: Georgia, "Times New Roman", serif; font-size: 5.2rem; font-weight: 700; }
.location-card > span { display: block; margin-bottom: 1.45rem; color: var(--clay-deep); font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.location-card h3 { position: relative; z-index: 1; margin-bottom: .75rem; }
.location-card h3 a { text-decoration: none; }
.location-card p { position: relative; z-index: 1; color: var(--muted); font-size: .93rem; }
.location-card .text-link { position: relative; z-index: 1; }
.process-panel { display: grid; gap: 1rem; }
.process-panel > div { position: relative; display: grid; grid-template-columns: 66px 1fr; column-gap: 1.2rem; padding: 1.65rem; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-small); }
.process-panel span { grid-row: span 2; width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--forest-deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 700; }
.process-panel h3 { margin: .1rem 0 .35rem; }
.process-panel p { margin: 0; color: var(--muted); font-size: .93rem; }
.price-highlight { padding: 2.6rem; border-radius: 30px; background: var(--cream); color: var(--forest); border: 1px solid rgba(213,170,83,.5); box-shadow: var(--shadow); }
.price-highlight span, .price-highlight strong, .price-highlight small { display: block; }
.price-highlight strong { margin: .55rem 0 1.1rem; color: var(--clay-deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem,8vw,6.4rem); line-height: .9; letter-spacing: -.05em; }
.price-highlight small { color: var(--muted); }
.side-card { align-self: start; padding: 2.25rem; border-radius: 26px; background: var(--forest); color: rgba(255,255,255,.76); box-shadow: var(--shadow); }
.side-card h2 { color: var(--white); font-size: 2.25rem; }
.side-card .text-link { color: var(--gold); }
.quote-card { position: sticky; top: 145px; }
.mini-label { display: inline-block; margin-bottom: 1rem; padding: .35rem .62rem; border-radius: 999px; background: rgba(213,170,83,.16); color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.side-phone { display: block; margin-top: 1.1rem; color: var(--white); text-align: center; font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-top: 3rem; }
.feature-grid article { padding: 2.15rem; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 8px 25px rgba(23,55,47,.06); }
.feature-grid span { display: inline-flex; margin-bottom: 1.8rem; color: var(--clay); font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 700; }
.feature-grid h3 { font-size: 1.55rem; }
.feature-grid p { color: var(--muted); font-size: .95rem; }
.step-list { display: grid; gap: 0; padding: 0; margin: 2rem 0 0; list-style: none; border-top: 1px solid var(--line); }
.step-list li { display: grid; grid-template-columns: 140px 1fr; gap: 1.4rem; padding: 1.35rem .2rem; border-bottom: 1px solid var(--line); }
.step-list strong { color: var(--clay-deep); }
.step-list span { color: var(--muted); }
.faq-list { display: grid; gap: .8rem; max-width: 980px; margin-top: 2rem; }
details { padding: 1.25rem 1.4rem; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 5px 20px rgba(23,55,47,.05); }
summary { color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 700; cursor: pointer; }
details p { margin: .9rem 0 0; color: var(--muted); }
.related-links { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.7rem; }
.related-links a { padding: .78rem 1rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--white); text-decoration: none; font-weight: 800; }
.related-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--forest-deep); }
.url-example { display: grid; gap: 1rem; align-content: center; }
.url-example code { padding: 1rem 1.2rem; border-radius: 12px; background: var(--forest); color: var(--gold); overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pricing-card { padding: 2.2rem; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-small); }
.pricing-card.featured { background: var(--forest); color: rgba(255,255,255,.8); transform: translateY(-12px); box-shadow: var(--shadow); }
.pricing-card.featured h2, .pricing-card.featured strong { color: var(--white); }
.pricing-card > span { color: var(--clay-deep); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card.featured > span { color: var(--gold); }
.pricing-card > strong { display: block; margin: 1.5rem 0; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 2.8rem; }
.pricing-card .button { margin-top: 1rem; }
.portfolio-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.3rem; }
.portfolio-grid article { padding: 1rem; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-small); }
.portfolio-grid article:first-child { grid-row: span 2; }
.portfolio-grid h2 { padding: 1rem 1rem 0; font-size: 1.75rem; }
.portfolio-grid p { padding: 0 1rem 1rem; color: var(--muted); }
.portfolio-visual { min-height: 300px; display: grid; place-items: center; border-radius: 17px; background: linear-gradient(140deg,var(--forest),var(--forest-soft)); color: var(--white); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.portfolio-grid article:first-child .portfolio-visual { min-height: 520px; }
.portfolio-visual.variation-two { background: linear-gradient(140deg,var(--gold),#e7c879); color: var(--forest-deep); }
.portfolio-visual.variation-three { background: linear-gradient(140deg,var(--clay),#df8c69); color: var(--white); }
.template-note { margin-top: 2rem; padding: 1rem 1.2rem; border: 1px solid #e6cf8c; border-radius: 14px; background: #fff6d9; color: #5f5126; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }
.contact-details { display: grid; gap: .8rem; margin: 2rem 0; }
.contact-details a { display: grid; padding: 1.15rem; border: 1px solid var(--line); border-radius: 14px; background: var(--white); text-decoration: none; }
.contact-details span { color: var(--clay-deep); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.contact-details strong { color: var(--forest); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2.2rem; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: .45rem; color: var(--forest); font-size: .82rem; font-weight: 800; }
.contact-form label:nth-last-of-type(1), .contact-form label:nth-last-of-type(2), .contact-form .button { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: .88rem .95rem; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(213,170,83,.38); border-color: var(--gold); }
.legal-copy { max-width: 900px; }
.legal-copy h2 { margin-top: 2.8rem; font-size: 2rem; }

.cta-band { position: relative; overflow: hidden; padding: 5rem 0; background: var(--clay); color: rgba(255,255,255,.8); }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; right: -100px; top: -170px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.cta-band h2 { color: var(--white); margin-bottom: .65rem; }
.cta-band p { margin-bottom: 0; }
.cta-band-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.cta-actions { min-width: 280px; display: grid; justify-items: start; gap: 1rem; }
.cta-band .text-link.light { color: var(--white); }
.site-footer { padding: 5.5rem 0 1.5rem; background: var(--forest-deep); color: rgba(255,255,255,.66); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3,1fr); gap: 3rem; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.48); }
.footer-grid h2 { color: var(--gold); font-family: Arial, Helvetica, sans-serif; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: .58rem; list-style: none; padding: 0; }
.footer-grid a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-phone { display: inline-block; margin-top: .8rem; color: var(--white) !important; font-size: 1.18rem; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.mobile-call { display: none; }

@media (max-width: 1050px) {
  .main-nav { position: fixed; inset: 130px 1rem auto; display: none; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav > a, .dropdown-toggle { text-align: left; }
  .nav-toggle { display: inline-flex; }
  .dropdown-panel { position: static; display: none; margin: .5rem 0 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; }
  .nav-dropdown.is-open .dropdown-panel { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .browser-scene { min-height: 500px; max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .location-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 1.35rem), var(--container)); }
  .section { padding: 5.2rem 0; }
  .utility-inner span { display: none; }
  .utility-inner { justify-content: center; }
  .nav-shell { min-height: 80px; }
  .brand { min-width: 0; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .main-nav { inset: 119px .7rem auto; }
  h1 { font-size: clamp(3rem,15vw,4.7rem); }
  h2 { font-size: clamp(2.15rem,11vw,3.35rem); }
  .hero-grid { min-height: auto; padding-block: 4.4rem; }
  .hero-lead { font-size: 1.08rem; }
  .browser-scene { min-height: 430px; }
  .browser-window { inset: 42px 5px 45px 22px; }
  .browser-content { padding: 30px; }
  .result-card { max-width: 230px; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div { min-height: 105px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .split-heading, .two-column, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-grid, .location-grid, .feature-grid, .pricing-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid article:first-child { grid-row: auto; }
  .portfolio-grid article:first-child .portfolio-visual { min-height: 330px; }
  .card { min-height: auto; }
  .step-list li { grid-template-columns: 1fr; gap: .4rem; }
  .pricing-card.featured { transform: none; }
  .contact-form { grid-template-columns: 1fr; padding: 1.35rem; }
  .contact-form label, .contact-form .button { grid-column: 1; }
  .cta-band-inner { display: grid; }
  .cta-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .mobile-call { position: fixed; z-index: 1300; left: .7rem; right: .7rem; bottom: .6rem; display: grid; place-items: center; min-height: 48px; border-radius: 999px; background: var(--clay); color: var(--white); text-decoration: none; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
  .quote-card { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.hidden-field { position: absolute !important; left: -9999px !important; }

.hero-art-band { width: 100%; margin: 0; padding: 0; line-height: 0; overflow: hidden; }
.hero-art-band svg.hero-art { display: block; width: 100%; height: clamp(180px, 26vw, 340px); }
@media (max-width: 720px) { .hero-art-band svg.hero-art { height: 190px; } }
