@import url('https://fonts.googleapis.com/css2?family=Anybody:wdth,wght@62.5,600;62.5,700;75,800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --ink: #101736;
  --indigo: #151d48;
  --indigo-2: #202a62;
  --jade: #0d856e;
  --jade-dark: #086654;
  --saffron: #f5b63d;
  --chalk: #f8f5eb;
  --paper: #fffdf7;
  --mist: #dce8e3;
  --line: rgba(21, 29, 72, .18);
  --white-line: rgba(255, 255, 255, .2);
  --shadow: 0 24px 65px rgba(16, 23, 54, .16);
  --display: 'Anybody', sans-serif;
  --body: 'DM Sans', sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 1rem/1.72 var(--body); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-stretch: condensed; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(3.1rem, 8vw, 7.4rem); line-height: .96; }
h2 { font-size: clamp(2.1rem, 3.2vw, 3.25rem); line-height: 1.06; }
h3 { font-size: clamp(1.35rem, 1.7vw, 1.8rem); line-height: 1.13; }
p, li { max-width: 72ch; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; transform: translateY(-150%); color: white; background: var(--ink); }
.skip-link:focus { transform: none; }
.utility { display: flex; justify-content: center; gap: 2.25rem; padding: .45rem 1rem; color: white; background: var(--jade-dark); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255, 253, 247, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.masthead { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; min-height: 82px; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark { display: grid; width: 54px; height: 54px; place-items: center; color: var(--indigo); background: var(--saffron); border: 2px solid var(--indigo); box-shadow: 7px 7px 0 var(--jade); }
.brand-mark svg { width: 39px; height: 39px; }
.brand-mark path, .brand-mark rect { fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .reach-line { stroke: var(--jade-dark); }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { display: flex; align-items: baseline; gap: .04em; font-family: var(--display); font-size: 1.55rem; letter-spacing: -.025em; }
.brand-type strong em { color: var(--jade-dark); font-style: normal; }
.brand-type small { margin-top: .25rem; font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.mast-call { display: grid; justify-self: end; padding: .65rem 1rem; color: white; background: var(--indigo); text-align: right; text-decoration: none; }
.mast-call small { color: var(--saffron); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.mast-call b { font-size: 1.02rem; }
.menu-button { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line); background: none; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: currentColor; }
.menu-button b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.nav-rail { display: flex; align-items: center; justify-content: space-between; min-height: 48px; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; border-top: 1px solid var(--line); }
.nav-rail > ul { display: flex; align-items: stretch; gap: 2rem; height: 48px; margin: 0; padding: 0; list-style: none; }
.nav-rail > ul > li { display: flex; align-items: center; }
.nav-rail a { font-size: .86rem; font-weight: 700; text-decoration: none; }
.nav-parent > div { display: flex; align-items: center; gap: .35rem; }
.nav-parent button { display: grid; width: 28px; height: 28px; place-items: center; background: var(--saffron); border: 1px solid var(--indigo); transform: rotate(-3deg); cursor: pointer; }
.nav-parent button span { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); }
.nav-parent:nth-child(2) button { color: white; background: var(--jade); border-color: var(--indigo); transform: rotate(-3deg); }
.nav-parent.is-open button { color: white; background: var(--indigo); border-color: rgba(255,255,255,.55); }
.nav-parent.is-open button span { transform: rotate(225deg) translate(-1px, -1px); }
.nav-drawer { position: absolute; top: 100%; left: 50%; display: none; grid-template-columns: 200px 1fr; gap: 2rem; width: min(calc(100% - 2rem), var(--max)); padding: 1.5rem; transform: translateX(-50%); color: white; background: var(--indigo); border-top: 5px solid var(--saffron); box-shadow: var(--shadow); }
.nav-parent.is-open .nav-drawer { display: grid; }
.nav-drawer p { color: var(--saffron); font: 700 1.65rem/1 var(--display); }
.nav-drawer .drawer-all { display: inline-block; padding-bottom: .25rem; border-bottom: 1px solid currentColor; }
.drawer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem 1.25rem; }
.drawer-links a { padding: .5rem 0; border-bottom: 1px solid var(--white-line); }
.area-drawer .drawer-links { grid-template-columns: repeat(4, 1fr); }
.nav-call { display: none; color: var(--jade-dark); }
.kicker { margin-bottom: .75rem; color: var(--jade-dark); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero { position: relative; min-height: 590px; overflow: hidden; color: white; background: var(--indigo); }
.hero::before { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(10,15,42,.98) 0 43%, rgba(10,15,42,.48) 68%, rgba(10,15,42,.08)), url('/assets/sugar-land-hero.webp') center/cover; }
.hero::after { position: absolute; right: -8%; bottom: -115px; width: 64%; height: 220px; content: ''; background: var(--jade); border: 22px solid var(--saffron); border-radius: 50% 50% 0 0; transform: rotate(-5deg); opacity: .93; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 5rem; min-height: 590px; width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 4rem 0 6rem; }
.hero-copy { max-width: 710px; }
.hero .kicker { color: var(--saffron); }
.hero h1 { max-width: 14ch; margin-bottom: 1.4rem; }
.hero-copy > p:not(.kicker) { max-width: 58ch; color: rgba(255,255,255,.84); font-size: 1.15rem; }
.hero-note { align-self: center; justify-self: end; width: min(100%, 330px); padding: 1.6rem; color: var(--ink); background: var(--chalk); box-shadow: 14px 14px 0 var(--saffron); transform: rotate(1.5deg); }
.hero-note strong { display: block; margin-bottom: .55rem; font: 700 2rem/1 var(--display); }
.hero-note p { margin-bottom: 0; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 1.7rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .75rem 1.2rem; border: 2px solid currentColor; font-weight: 800; text-decoration: none; }
.button.primary { color: var(--indigo); background: var(--saffron); border-color: var(--saffron); }
.button.ghost { color: white; background: transparent; }
.button.light { color: var(--indigo); background: var(--chalk); border-color: var(--chalk); }
.text-action { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--saffron); }
.text-action::after { display: inline-grid; width: 1.45rem; height: 1.45rem; place-items: center; color: white; background: var(--jade-dark); content: '↗'; font-size: .85rem; line-height: 1; transform: rotate(-5deg); }
.section { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; padding-block: clamp(4.5rem, 8vw, 8rem); }
.trust-opening { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.side-label { position: sticky; top: 155px; padding-left: 1rem; border-left: 6px solid var(--saffron); }
.side-label span { display: block; color: var(--jade-dark); font: 800 3.6rem/1 var(--display); }
.side-label p { margin: .5rem 0 0; font-weight: 700; }
.lead { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.48; }
.trust-intro { max-width: 68ch; font-size: 1.05rem; line-height: 1.72; }
.trust-opening h2 { max-width: none; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.trust-strip span { min-width: 160px; font-weight: 700; }
.service-river { position: relative; padding: 7rem max(1rem, calc((100% - var(--max))/2)); color: white; background: var(--indigo); overflow: hidden; }
.service-river::after { position: absolute; left: -10%; bottom: -115px; width: 120%; height: 200px; content: ''; border: 34px solid var(--jade); border-radius: 50%; transform: rotate(4deg); opacity: .7; }
.service-river-head { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.service-river .kicker { color: var(--saffron); }
.service-river h2 { max-width: none; margin-bottom: 0; }
.service-river-head > p { color: rgba(255,255,255,.75); }
.service-list { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; margin-top: 3rem; }
.service-link { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 1rem; min-height: 95px; padding: 1rem 0; border-bottom: 1px solid var(--white-line); text-decoration: none; }
.service-link:nth-child(2n) { transform: none; }
.service-link .icon, .cascade-row .icon, .hero-symbol .icon { position: relative; display: grid; width: 54px; height: 54px; place-items: center; color: var(--indigo); background: var(--saffron); border: 2px solid var(--indigo); box-shadow: none; clip-path: polygon(0 5%, 95% 0, 100% 91%, 7% 100%); transform: rotate(-3deg); }
.service-link:nth-child(even) .icon, .cascade-row:nth-child(even) .icon { color: white; background: var(--jade); border: 2px solid var(--indigo); box-shadow: none; transform: rotate(-3deg); }
.service-link svg, .cascade-row .icon svg, .hero-symbol svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }
.service-link b { font-family: var(--display); font-size: 1.45rem; }
.design-arrow { display: grid; width: 34px; height: 34px; place-items: center; color: var(--indigo); background: var(--saffron); border: 2px solid var(--indigo); font: 800 1.2rem/1 var(--display); transform: rotate(-5deg); }
.service-link:nth-child(even) .design-arrow, .cascade-row:nth-child(even) .design-arrow { color: white; background: var(--jade); border: 2px solid var(--indigo); transform: rotate(-5deg); }
.human-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.human-grid figure { position: relative; margin: 0; }
.human-grid figure::before { position: absolute; z-index: -1; top: -22px; right: -22px; width: 52%; height: 70%; content: ''; background: var(--saffron); }
.human-grid img { width: 100%; min-height: 510px; object-fit: cover; clip-path: polygon(0 8%, 92% 0, 100% 90%, 8% 100%); }
.human-copy h2 { max-width: none; }
.mini-story { margin: 2rem 0; padding: 1.4rem 1.6rem; background: var(--mist); border-left: 6px solid var(--jade); }
.mini-story b { display: block; margin-bottom: .5rem; font-family: var(--display); font-size: 1.35rem; }
.local-flow { position: relative; color: white; background: var(--indigo); overflow: hidden; }
.local-flow::before { position: absolute; top: -22%; right: -8%; width: 48%; height: 150%; content: ''; background: var(--indigo-2); border-left: 24px solid var(--jade); transform: rotate(7deg); }
.local-flow .section { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(380px, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.local-flow .section > div:first-child { position: relative; padding: clamp(2rem, 4vw, 3.2rem); color: var(--ink); background: var(--saffron); box-shadow: 14px 14px 0 var(--jade); clip-path: polygon(0 0, 96% 4%, 100% 94%, 4% 100%); }
.local-flow .section > div:first-child .kicker { color: var(--indigo); }
.local-flow .section > div:first-child .text-action::after { background: var(--indigo); }
.local-flow h2 { max-width: none; }
.place-lines { position: relative; display: grid; min-width: 0; gap: 0; }
.place-lines::before { position: absolute; top: 0; bottom: 0; left: 22px; width: 3px; content: ''; background: rgba(255,255,255,.38); transform: rotate(1deg); }
.place-line { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 1.25rem; padding: .7rem 0 1.9rem; }
.place-line::before { z-index: 2; width: 25px; height: 25px; margin-top: .25rem; margin-left: 10px; content: ''; background: var(--saffron); border: 2px solid var(--indigo); box-shadow: none; clip-path: polygon(0 8%, 93% 0, 100% 92%, 8% 100%); transform: rotate(-5deg); }
.place-line:nth-child(even)::before { background: var(--jade); border: 2px solid var(--indigo); box-shadow: none; transform: rotate(-5deg); }
.place-line > div { min-width: 0; }
.place-line h3 { margin-bottom: .45rem; }
.place-line p { margin-bottom: 0; color: rgba(255,255,255,.76); }
.call-shape { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(2rem, 7vw, 6rem); align-items: center; padding: 3.5rem max(1rem, calc((100% - var(--max))/2)); color: white; background: var(--jade-dark); }
.call-shape h2 { max-width: none; margin-bottom: 0; }
.call-shape .button { justify-self: end; min-width: 300px; min-height: 72px; padding: 1rem 1.6rem; color: var(--indigo); background: var(--saffron); border-color: var(--saffron); box-shadow: 8px 8px 0 var(--indigo); font-size: 1.18rem; transform: rotate(1deg); }
.faq-split { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.faq-split h2 { max-width: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: grid; grid-template-columns: 1fr auto; gap: 1rem; width: 100%; padding: 1.3rem 0; border: 0; background: none; text-align: left; cursor: pointer; }
.faq-item button span:first-child { font-family: var(--display); font-size: 1.45rem; font-weight: 700; }
.faq-symbol { display: grid; width: 32px; height: 32px; place-items: center; color: var(--indigo); background: var(--saffron); border: 2px solid var(--indigo); font-size: 1.35rem; line-height: 1; transform: rotate(-4deg); }
.faq-item:nth-child(even) .faq-symbol { color: white; background: var(--jade); transform: rotate(-4deg); }
.faq-item .answer { display: none; padding: 0 3rem 1.4rem 0; }
.faq-item.is-open .answer { display: block; }
.faq-item.is-open .faq-symbol { color: white; background: var(--jade-dark); border-color: rgba(21,29,72,.55); transform: rotate(45deg); }
.inner-hero { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; color: white; background: var(--indigo); overflow: hidden; }
.inner-hero figure { min-height: 520px; margin: 0; order: 2; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 92%); }
.inner-hero img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero > div { align-self: center; width: 100%; padding: 4rem 3rem 4.5rem max(1rem, calc((100vw - var(--max))/2)); }
.inner-hero h1 { max-width: 16ch; font-size: clamp(3rem, 4.8vw, 5.15rem); }
.inner-hero .kicker { color: var(--saffron); }
.inner-hero p { color: rgba(255,255,255,.8); }
.hero-symbol { margin-bottom: 1.4rem; }
.hero-symbol .icon { width: 62px; height: 62px; color: var(--indigo); background: var(--saffron); border-color: var(--indigo); box-shadow: none; }
.hero-symbol svg { width: 35px; height: 35px; }
.inner-hero.variant-flip figure { order: 0; clip-path: polygon(0 0, 92% 7%, 100% 100%, 0 100%); }
.inner-hero.variant-flip > div { padding-left: 4rem; padding-right: max(1rem, calc((100vw - var(--max))/2)); }
.breadcrumb { width: min(calc(100% - 2rem), var(--max)); margin: 1.2rem auto 0; color: var(--jade-dark); font-size: .78rem; font-weight: 700; }
.article-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.article-side { position: sticky; top: 165px; }
.article-side .number { display: block; color: var(--saffron); font: 800 5.4rem/.8 var(--display); text-shadow: 3px 3px 0 var(--indigo); }
.article-side p { margin-top: 1.2rem; font-weight: 700; }
.article-body > section { margin-bottom: 4.5rem; }
.article-body { min-width: 0; }
.article-body h2 { max-width: none; }
.article-body h3 { margin-top: 2rem; margin-bottom: .7rem; }
.article-body .lead { max-width: 61ch; }
.field-note { margin: 2.2rem 0; padding: 1.5rem 1.7rem; background: var(--saffron); box-shadow: 8px 8px 0 var(--jade); transform: rotate(-.7deg); }
.field-note b { display: block; margin-bottom: .4rem; font-family: var(--display); font-size: 1.35rem; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 2rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before { position: absolute; top: .48em; left: 0; width: 13px; height: 13px; content: ''; background: var(--saffron); border: 2px solid var(--jade-dark); clip-path: polygon(0 9%, 91% 0, 100% 91%, 9% 100%); transform: rotate(-6deg); }
.check-list li:nth-child(even)::before { background: var(--jade); border-color: var(--indigo); transform: rotate(6deg); }
.plain-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3.5rem; }
.plain-faq article { padding-top: 1rem; border-top: 4px solid var(--jade); }
.plain-faq h3 { margin-bottom: .7rem; }
.related-rail { padding: 3rem max(1rem, calc((100% - var(--max))/2)); color: white; background: var(--indigo-2); }
.related-rail h2 { font-size: 2rem; }
.related-links { display: flex; flex-wrap: wrap; gap: .7rem; }
.related-links a { display: inline-flex; align-items: center; gap: .55rem; padding: .7rem 1rem; border: 1px solid var(--white-line); text-decoration: none; }
.related-links a::after { display: inline-grid; width: 1.5rem; height: 1.5rem; place-items: center; color: var(--indigo); background: var(--saffron); content: '↗'; font-size: .85rem; line-height: 1; transform: rotate(-5deg); }
.related-links a:nth-child(even)::after { color: white; background: var(--jade); transform: rotate(5deg); }
.hub-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }
.hub-intro h1 { max-width: 16ch; color: var(--indigo); font-size: clamp(3rem, 5vw, 5.4rem); }
.link-cascade { margin-top: 3rem; }
.cascade-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 1.2rem; align-items: center; padding: 1.3rem 0; border-top: 1px solid var(--line); text-decoration: none; }
.cascade-row .route-index { display: grid; width: 46px; height: 42px; place-items: center; color: var(--indigo); background: var(--mist); border: 2px solid var(--jade); font-family: var(--display); font-weight: 800; transform: rotate(-4deg); }
.cascade-row:nth-child(even) .route-index { background: var(--saffron); border-color: var(--indigo); transform: rotate(4deg); }
.cascade-row strong { font: 700 clamp(1.35rem,3vw,2.2rem)/1 var(--display); }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: start; }
.contact-card { padding: 2.2rem; color: white; background: var(--indigo); box-shadow: 16px 16px 0 var(--saffron); }
.contact-card h2 { font-size: 2rem; }
.contact-card a.phone { display: block; margin: 1rem 0; color: var(--saffron); font: 700 clamp(2rem,4vw,3.4rem)/1 var(--display); text-decoration: none; }
.contact-card address { font-style: normal; }
.legal { width: min(calc(100% - 2rem), 820px); }
.legal h1 { color: var(--indigo); font-size: clamp(3rem,7vw,6rem); }
.legal h2 { margin-top: 3rem; font-size: 2.2rem; }
.site-footer { padding: 4.5rem max(1rem, calc((100% - var(--max))/2)) 1.5rem; color: rgba(255,255,255,.8); background: #0b1028; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr .85fr; gap: 3rem; }
.site-footer .brand { color: white; }
.site-footer .brand { margin-bottom: 1.6rem; }
.site-footer .brand-mark { color: var(--indigo); box-shadow: none; }
.site-footer .brand-type strong { font-size: 1.65rem; letter-spacing: -.015em; }
.site-footer .brand-type small { display: none; }
.site-footer .brand + p { max-width: 35ch; }
.site-footer h2 { color: var(--saffron); font-size: 1.25rem; letter-spacing: 0; }
.site-footer section > a:not(.brand) { display: block; margin-bottom: .55rem; text-decoration: none; }
.site-footer address { font-style: normal; }
.footer-contact b { color: white; font-size: 1.5rem; }
.footer-floor { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--white-line); font-size: .78rem; }
.mobile-call { display: none; }
.not-found { min-height: 62vh; padding: 7rem max(1rem, calc((100% - var(--max))/2)); }
.not-found h1 { max-width: 13ch; color: var(--indigo); }

@media (max-width: 940px) {
  .utility { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .masthead { grid-template-columns: 1fr auto auto; gap: .7rem; }
  .mast-call { padding: .5rem .7rem; }
  .menu-button { display: block; }
  .nav-rail { position: absolute; top: 100%; left: 0; display: none; width: 100%; max-height: calc(100vh - 100px); padding: 1rem; overflow: auto; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav-rail.is-open { display: block; }
  .nav-rail > ul { display: grid; height: auto; gap: 0; }
  .nav-rail > ul > li { display: block; border-bottom: 1px solid var(--line); }
  .nav-parent > div { justify-content: space-between; min-height: 48px; }
  .nav-drawer { position: static; grid-template-columns: 1fr; width: auto; padding: 1rem; transform: none; box-shadow: none; }
  .drawer-links, .area-drawer .drawer-links { grid-template-columns: 1fr 1fr; }
  .nav-call { display: block; margin-top: 1rem; padding: .8rem; color: white; background: var(--jade-dark); text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-note { display: none; }
  .hero::before { background: linear-gradient(90deg, rgba(10,15,42,.98), rgba(10,15,42,.62)), url('/assets/sugar-land-hero.webp') center/cover; }
  .trust-opening, .service-river-head, .human-grid, .local-flow .section, .faq-split, .article-layout, .hub-intro, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .local-flow .section > div:first-child { max-width: 720px; }
  .side-label, .article-side { position: static; }
  .service-list { gap: 0 2rem; }
  .inner-hero { grid-template-columns: 1fr; }
  .inner-hero figure, .inner-hero.variant-flip figure { order: 0; min-height: 300px; clip-path: none; }
  .inner-hero > div, .inner-hero.variant-flip > div { width: 100%; padding: 3.5rem max(1rem, calc((100vw - var(--max))/2)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 66px; }
  .utility { gap: 1rem; font-size: .65rem; }
  .masthead { min-height: 70px; }
  .brand-mark { width: 44px; height: 44px; box-shadow: 4px 4px 0 var(--jade); }
  .brand-mark svg { width: 32px; height: 32px; }
  .brand-type strong { font-size: 1.25rem; }
  .brand-type small { font-size: .57rem; }
  .mast-call { display: none; }
  .drawer-links, .area-drawer .drawer-links, .service-list, .check-list, .plain-faq { grid-template-columns: 1fr; }
  .hero, .hero-inner { min-height: 530px; }
  .hero-inner { padding: 3rem 0 5.5rem; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .service-link:nth-child(2n) { transform: none; }
  .local-flow::before { right: -40%; width: 100%; }
  .local-flow .section > div:first-child { padding: 2rem 1.5rem; box-shadow: 9px 9px 0 var(--jade); }
  .human-grid img { min-height: 340px; }
  .call-shape { grid-template-columns: 1fr; gap: 1.5rem; }
  .call-shape .button { justify-self: start; width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-floor { display: grid; }
  .mobile-call { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: center; min-height: 66px; padding: .7rem 1rem; color: var(--indigo); background: var(--saffron); border-top: 2px solid var(--indigo); text-decoration: none; }
  .mobile-call span { font-size: .78rem; font-weight: 800; text-transform: uppercase; }
  .mobile-call b { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
