:root {
  --ink: #102a43;
  --ink-2: #173f5f;
  --aqua: #087f8c;
  --aqua-soft: #dceff0;
  --sun: #ff6b35;
  --sun-soft: #ffe0d1;
  --limestone: #f3efe6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #5d6f7c;
  --line: rgba(16, 42, 67, .18);
  --shadow: 0 24px 70px rgba(16, 42, 67, .13);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }
p { margin: 0 0 1.15rem; }
ul, ol { margin-top: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.9rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.72rem); line-height: 1.15; }
.page-home .section h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); }
.page-inner h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.subsection-title { max-width: 790px; font-size: clamp(1.5rem, 2.35vw, 2.2rem); line-height: 1.12; }
.compact-title { font-size: clamp(1.75rem, 2.8vw, 2.7rem); }
::selection { color: var(--white); background: var(--aqua); }

.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.skip-link { position: fixed; z-index: 1000; top: .5rem; left: .5rem; padding: .65rem 1rem; color: var(--white); background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.availability-bar {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  min-height: 34px;
  align-items: center;
  padding: .3rem 1rem;
  color: var(--white);
  background: var(--aqua);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .035em;
}
.availability-bar a { font-weight: 800; }
.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: rgba(251, 250, 247, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand-mark { display: grid; width: 46px; height: 46px; place-items: center; color: var(--ink); background: var(--sun-soft); border: 2px solid var(--ink); transform: rotate(-2deg); }
.brand-mark svg { width: 38px; height: 38px; }
.brand-mark path, .brand-mark rect { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .reach-line { stroke: var(--sun); }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.32rem; letter-spacing: -.045em; }
.brand-type em { color: var(--aqua); font-style: normal; }
.brand-type small { margin-top: .35rem; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { justify-self: center; }
.main-nav > ul { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); margin: 0; padding: 0; list-style: none; }
.main-nav li { list-style: none; }
.main-nav a { font-size: .84rem; font-weight: 750; letter-spacing: .035em; text-decoration: none; }
.main-nav > ul > li > a, .nav-line > a { padding: 1.9rem 0; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--aqua); }
.nav-parent { position: relative; }
.nav-line { display: flex; align-items: center; gap: .25rem; }
.nav-toggle { display: grid; width: 28px; height: 28px; place-items: center; padding: 0; color: var(--ink); background: transparent; border: 0; cursor: pointer; }
.nav-toggle span { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .16s ease; }
.nav-parent[data-open] .nav-toggle span { transform: translateY(2px) rotate(225deg); }
.nav-panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 24px);
  left: 50%;
  width: min(900px, calc(100vw - 2rem));
  padding: 1.4rem;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--aqua-soft), var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-panel::before { position: absolute; top: -28px; right: 0; left: 0; height: 28px; content: ""; }
.nav-parent[data-open] .nav-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.panel-head p { margin: 0; font-family: "Bitter", serif; font-size: 1.3rem; font-weight: 700; }
.panel-head a { color: var(--aqua); font-size: .77rem; }
.panel-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem 1rem; }
.panel-service-grid a { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: .7rem; padding: .55rem; color: var(--ink); }
.panel-service-grid a:hover { color: var(--ink); background: var(--limestone); }
.panel-service-grid span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--aqua); }
.panel-service-grid svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.panel-service-grid b { font-size: .82rem; }
.panel-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .2rem .75rem; }
.panel-area-grid a { padding: .48rem .55rem; color: var(--ink); font-size: .79rem; }
.panel-area-grid a:hover { color: var(--ink); background: var(--limestone); }
.header-call { display: grid; min-width: 164px; padding: .65rem 1rem; color: var(--white); background: var(--sun); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); line-height: 1.1; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.header-call:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.header-call span { font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.header-call b { margin-top: .2rem; font-size: .92rem; }
.menu-button { display: none; }

.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.1rem; color: var(--aqua); font-size: .76rem; font-weight: 800; letter-spacing: .15em; line-height: 1.1; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 4px; content: ""; background: var(--sun); }
.lede { max-width: 720px; font-size: clamp(1.08rem, 2vw, 1.33rem); line-height: 1.52; }
.big-copy { color: var(--ink-2); font-family: "Bitter", serif; font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.45; letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 51px; align-items: center; justify-content: center; padding: .75rem 1.2rem; border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); font-size: .91rem; font-weight: 800; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease; }
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button-sun { color: var(--white); background: var(--sun); }
.button-outline { color: var(--ink); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--aqua); }
.button-ink { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: .65rem; color: var(--aqua); font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .15s ease; }
.text-link:hover::after { transform: translateX(4px); }

.progressive { margin: 0; background-color: var(--aqua-soft); background-position: center; background-size: cover; }
.progressive img { height: 100%; object-fit: cover; }
.js .progressive img { opacity: 0; transition: opacity .2s ease; }
.js .progressive img.loaded { opacity: 1; }
.home-hero { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); min-height: 560px; background: var(--limestone); border-bottom: 2px solid var(--ink); }
.home-copy { display: grid; align-content: center; padding: clamp(2.8rem, 5vw, 5rem) clamp(1.2rem, 5vw, 5rem); }
.home-copy h1 { max-width: 680px; font-size: clamp(2.85rem, 4.8vw, 4.75rem); }
.home-copy .lede { max-width: 620px; margin-top: 1.4rem; }
.home-photo { position: relative; overflow: hidden; min-height: 560px; border-left: 2px solid var(--ink); }
.home-photo::after { position: absolute; right: 0; bottom: 0; padding: .6rem 1rem; color: var(--white); background: var(--aqua); content: "Austin, TX"; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-photo img { object-position: 61% center; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 2.6rem; border-top: 1px solid var(--line); }
.hero-proof span { display: grid; padding: 1rem .7rem 0 0; color: var(--muted); font-size: .74rem; line-height: 1.35; }
.hero-proof b { color: var(--ink); font-family: "Bitter", serif; font-size: 1.18rem; }

.inner-hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr); min-height: 520px; background: var(--limestone); border-bottom: 2px solid var(--ink); }
.inner-copy { display: grid; align-content: center; padding: clamp(3rem, 7vw, 6.5rem) max(1rem, calc((100vw - var(--max)) / 2)); padding-right: clamp(2rem, 6vw, 6rem); }
.inner-copy h1 { max-width: 760px; font-size: clamp(2.65rem, 4.4vw, 4.25rem); }
.inner-copy .lede { margin-top: 1.35rem; }
.inner-photo { min-height: 520px; overflow: hidden; border-left: 2px solid var(--ink); }
.inner-photo img { object-position: center; }
.crumbs { margin-bottom: clamp(2.6rem, 7vw, 5.5rem); color: var(--muted); font-size: .76rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.crumbs li:not(:last-child)::after { margin-left: .5rem; content: "/"; color: var(--sun); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--aqua); }

.ledger-grid { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.ledger-grid aside { position: static; }
.ledger-grid aside h2 { max-width: 510px; font-size: clamp(2.15rem, 3.4vw, 3.25rem); }
.ledger-copy { padding-left: 2rem; border-left: 2px solid var(--ink); }
.ledger-copy > p:not(.big-copy) { max-width: 760px; }
.ledger-copy .intro-lead { max-width: 680px; margin-bottom: 1.4rem; font-size: 1.18rem; font-weight: 700; line-height: 1.55; }
.ledger-note { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; margin-top: 2.2rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ledger-note span { color: var(--sun); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ledger-note p { margin: 0; }

.service-section { background: var(--ink); color: var(--white); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head > p { margin: 0 0 .35rem; color: var(--muted); }
.service-section .section-head > p { color: rgba(255,255,255,.68); }
.section-head.compact { grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr); }
.service-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.service-tile { position: relative; display: grid; min-height: 310px; align-content: start; padding: 1.35rem; color: var(--ink); background: var(--paper); border: 2px solid var(--white); text-decoration: none; transform: translateZ(0); transition: border-color .24s ease, box-shadow .24s ease; }
.service-tile:nth-child(3n + 2), .service-tile:nth-child(3n + 3) { min-height: 350px; }
.service-tile:hover { z-index: 2; border-color: var(--ink); box-shadow: 7px 7px 0 var(--sun); }
.service-tile > b { position: absolute; top: 1rem; right: 1rem; color: rgba(16,42,67,.45); font-size: .74rem; }
.tile-icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 2rem; color: var(--aqua); background: var(--aqua-soft); border: 2px solid var(--ink); border-radius: 50%; transition: color .24s ease, background-color .24s ease; }
.service-tile:hover .tile-icon { color: var(--sun); background: var(--white); }
.tile-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-tile h3 { max-width: 210px; margin-bottom: .85rem; }
.service-tile p { color: var(--muted); font-size: .89rem; line-height: 1.55; }
.tile-arrow { align-self: end; margin-top: auto; padding-top: 1.25rem; color: var(--aqua); font-size: .8rem; font-weight: 800; }
.tone-2 { background: var(--sun-soft); }
.tone-3 { background: var(--aqua-soft); }
.tone-4 { background: #eef1f4; }

.field-section { background: var(--limestone); }
.field-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.field-image { position: relative; }
.field-image figure { aspect-ratio: 4/5; overflow: hidden; border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--aqua); }
.field-image img { object-position: 58% center; }
.field-copy h2 { margin-bottom: 1.5rem; }
.decision-row { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.decision-row:last-of-type { border-bottom: 1px solid var(--line); }
.decision-row b { color: var(--sun); font-family: "Bitter", serif; font-size: 1.1rem; }
.decision-row p { margin: 0; }
.field-copy .text-link { margin-top: 1.4rem; }

.process-section { background: var(--white); }
.process-list { margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.process-list li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 1.5rem; padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--sun); font-family: "Bitter", serif; font-size: 1.75rem; font-weight: 700; }
.process-list div { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 2rem; align-items: baseline; }
.process-list p { margin: 0; color: var(--muted); }

.areas-teaser { background: var(--aqua-soft); }
.area-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.area-layout > div:first-child { position: sticky; top: 120px; }
.area-layout h2 { margin-bottom: 1.5rem; }
.area-layout .button { margin-top: 1rem; }
.area-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(16,42,67,.2); border: 1px solid rgba(16,42,67,.2); }
.area-chip-grid a { display: grid; min-height: 110px; align-content: center; padding: 1rem; background: var(--paper); text-decoration: none; transition: color .15s ease, background .15s ease; }
.area-chip-grid a:hover { color: var(--white); background: var(--aqua); }
.area-chip-grid span { margin-bottom: .2rem; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.area-chip-grid a:hover span { color: rgba(255,255,255,.72); }
.area-chip-grid b { font-family: "Bitter", serif; }

.faq-section { background: var(--limestone); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-layout > div:first-child { position: sticky; top: 120px; }
.faq-layout h2 { margin-bottom: 1rem; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 28px; align-items: center; gap: 1rem; padding: 1.3rem 0; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 { font-family: "DM Sans", sans-serif; font-size: 1.02rem; font-weight: 750; letter-spacing: -.015em; }
.faq-list summary span { position: relative; width: 28px; height: 28px; border: 1px solid var(--ink); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; content: ""; background: var(--ink); transform: translate(-50%, -50%); }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .16s ease; }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p { max-width: 780px; margin: 0; padding: 0 3.5rem 1.4rem 0; color: var(--muted); }
.faq-plain { border-top: 2px solid var(--ink); }
.faq-plain article { display: grid; grid-template-columns: 42px minmax(0, 1fr); column-gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.faq-plain article > span { grid-row: 1 / 3; padding-top: .15rem; color: var(--sun); font-family: "Bitter", serif; font-size: .85rem; font-weight: 800; }
.faq-plain h3 { margin-bottom: .55rem; font-family: "DM Sans", sans-serif; font-size: 1.04rem; font-weight: 750; letter-spacing: -.015em; }
.faq-plain p { grid-column: 2; max-width: 760px; margin: 0; color: var(--muted); }

.callout { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 2rem; align-items: center; padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100% - var(--max)) / 2)); color: var(--white); background: var(--sun); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.callout .eyebrow { color: var(--ink); }
.callout .eyebrow::before { background: var(--white); }
.callout h2 { max-width: 850px; }
.callout p { max-width: 720px; margin-top: 1rem; color: rgba(255,255,255,.88); }
.callout .button { min-width: 200px; }

.proof-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); color: var(--white); }
.proof-ribbon div { display: grid; padding: 1.25rem clamp(1rem, 3vw, 2.5rem); border-right: 1px solid rgba(255,255,255,.18); }
.proof-ribbon b { color: var(--sun-soft); font-family: "Bitter", serif; font-size: 1.2rem; }
.proof-ribbon span { color: rgba(255,255,255,.65); font-size: .74rem; }
.article-shell { display: grid; grid-template-columns: minmax(190px, .48fr) minmax(0, 1.52fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.article-nav { position: sticky; top: 120px; padding-top: 1rem; border-top: 4px solid var(--sun); }
.article-nav > p { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-nav > a { display: grid; grid-template-columns: 32px 1fr; gap: .5rem; padding: .55rem 0; color: var(--muted); font-size: .82rem; line-height: 1.35; text-decoration: none; }
.article-nav > a:hover { color: var(--aqua); }
.article-nav > a span { color: var(--sun); font-weight: 800; }
.article-nav .article-call, .faq-page-grid aside .article-call { display: block; margin-top: 1rem; padding: .8rem; color: var(--white); background: var(--aqua); text-align: center; }
.article-body { max-width: 840px; }
.quick-box { margin-bottom: clamp(4rem, 8vw, 7rem); padding: clamp(1.5rem, 4vw, 3rem); background: var(--aqua-soft); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--sun-soft); }
.quick-box h2 { margin-bottom: 1.5rem; }
.quick-box ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 2rem; margin: 0; padding: 0; list-style: none; }
.quick-box li { position: relative; padding: .75rem 0 .75rem 1.3rem; border-bottom: 1px solid rgba(16,42,67,.2); }
.quick-box li::before { position: absolute; top: 1.35rem; left: 0; width: 7px; height: 7px; background: var(--sun); border-radius: 50%; content: ""; }
.article-part { position: relative; margin-bottom: clamp(4rem, 8vw, 7rem); scroll-margin-top: 120px; }
.article-part .section-number { display: block; margin-bottom: 1rem; color: var(--sun); font-family: "Bitter", serif; font-size: 1.4rem; font-weight: 800; }
.article-part h2 { max-width: 790px; margin-bottom: 1.5rem; }
.article-part h3 { margin-bottom: 1.2rem; }
.article-part p { max-width: 780px; }
.field-note { margin: 0 0 clamp(4rem, 8vw, 7rem); padding: clamp(2rem, 5vw, 4rem); color: var(--white); background: var(--ink); border-left: 12px solid var(--sun); }
.field-note h2, .field-note h3 { margin-bottom: 1.4rem; }
.field-note p { color: rgba(255,255,255,.76); }
.service-faq > h2 { margin-bottom: 1.5rem; }

.service-editorial { background: var(--aqua-soft); }
.editorial-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 5rem); }
.editorial-columns article { padding-top: 1rem; border-top: 3px solid var(--ink); }
.number-tag { display: inline-grid; min-width: 38px; height: 38px; place-items: center; margin-bottom: 1.3rem; color: var(--white); background: var(--sun); font-family: "Bitter", serif; font-weight: 800; }
.editorial-columns h2, .editorial-columns h3 { margin-bottom: 1.2rem; font-size: clamp(1.55rem, 2.7vw, 2.35rem); }
.editorial-columns p { color: var(--muted); }

.area-hub { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.area-intro { position: sticky; top: 120px; }
.area-intro h2 { margin-bottom: 1.5rem; }
.area-groups { border-top: 2px solid var(--ink); }
.area-groups section { padding: 1.7rem 0; border-bottom: 1px solid var(--line); }
.area-groups h3 { margin-bottom: 1rem; color: var(--sun); font-size: 1.1rem; }
.area-groups section > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.area-groups a { display: grid; padding: .85rem; background: var(--limestone); border: 1px solid transparent; text-decoration: none; }
.area-groups a:hover { border-color: var(--ink); }
.area-groups b { font-family: "Bitter", serif; }
.area-groups span { color: var(--muted); font-size: .72rem; }
.route-section { color: var(--white); background: var(--aqua); }
.route-section .eyebrow { color: var(--white); }
.route-section .eyebrow::before { background: var(--sun); }
.route-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.route-grid p { color: rgba(255,255,255,.82); }

.area-story { background: var(--white); }
.area-story-grid { display: grid; grid-template-columns: minmax(240px, .62fr) minmax(0, 1.38fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.area-story-grid aside { position: sticky; top: 120px; }
.page-inner .area-story-grid aside h2 { margin-bottom: 1.5rem; font-size: clamp(1.95rem, 3vw, 2.9rem); }
.area-story-grid aside > a { color: var(--aqua); font-weight: 800; }
.area-story-grid article > p { max-width: 790px; font-size: 1.08rem; }
.story-card { margin-top: 2rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--limestone); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--aqua-soft); }
.story-card span { display: block; margin-bottom: .7rem; color: var(--sun); font-size: .73rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.story-card p { margin: 0; font-family: "Bitter", serif; font-size: clamp(1.18rem, 2.2vw, 1.7rem); font-weight: 600; line-height: 1.5; }
.practical-section { background: var(--aqua-soft); }
.practical-grid { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.practical-grid > div:first-child { position: sticky; top: 120px; align-self: start; }
.page-inner .practical-grid h2 { font-size: clamp(1.95rem, 3.2vw, 3.05rem); }
.practical-grid > div:last-child p { max-width: 790px; }
.area-service-section { color: var(--white); background: var(--ink); }
.area-service-section .section-head > p { color: rgba(255,255,255,.65); }
.three-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.three-links a { display: grid; min-height: 280px; align-content: start; padding: 1.4rem; color: var(--ink); background: var(--paper); border: 2px solid var(--white); text-decoration: none; }
.three-links a:hover { background: var(--sun-soft); }
.three-links a > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 2rem; color: var(--aqua); background: var(--aqua-soft); border: 2px solid var(--ink); border-radius: 50%; }
.three-links svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.three-links h3 { margin-bottom: .8rem; }
.three-links p { color: var(--muted); font-size: .9rem; }

.about-opening { display: grid; grid-template-columns: minmax(180px, .4fr) minmax(0, 1.6fr); gap: clamp(3rem, 9vw, 9rem); }
.about-opening aside { padding-top: 1rem; border-top: 4px solid var(--sun); }
.about-opening aside span { display: block; color: var(--aqua); font-family: "Bitter", serif; font-size: clamp(4rem, 9vw, 8rem); font-weight: 800; line-height: .9; }
.about-opening aside p { max-width: 170px; margin-top: 1rem; color: var(--muted); font-weight: 700; }
.about-opening article { max-width: 830px; }
.values-section { color: var(--white); background: var(--ink); }
.values-section .section-head > p { color: rgba(255,255,255,.65); }
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.value-cards article { min-height: 360px; padding: clamp(1.5rem, 3vw, 2.7rem); background: var(--ink); }
.value-cards span { color: var(--sun); font-family: "Bitter", serif; font-size: 1.7rem; font-weight: 800; }
.value-cards h3 { margin: 3.5rem 0 1rem; }
.value-cards p { color: rgba(255,255,255,.68); }
.about-story { background: var(--limestone); }
.story-split { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.story-split figure { aspect-ratio: 4/5; overflow: hidden; border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--sun); }
.story-split figure img { object-position: 58% center; }
.story-split h2 { margin-bottom: 1.4rem; }
.about-links { background: var(--white); }
.about-links h2 { max-width: 800px; margin-bottom: 2.5rem; }
.about-links .wrap > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-links a { display: grid; min-height: 150px; align-content: center; padding: 1.3rem; background: var(--paper); text-decoration: none; }
.about-links a:hover { color: var(--white); background: var(--aqua); }
.about-links b { font-family: "Bitter", serif; font-size: 1.25rem; }
.about-links span { color: var(--muted); font-size: .85rem; }
.about-links a:hover span { color: rgba(255,255,255,.72); }

.faq-page-grid { display: grid; grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-page-grid > aside { position: sticky; top: 120px; padding-top: 1rem; border-top: 4px solid var(--sun); }
.faq-page-grid > aside > a { display: grid; grid-template-columns: 34px 1fr; gap: .5rem; padding: .55rem 0; color: var(--muted); font-size: .82rem; text-decoration: none; }
.faq-page-grid > aside > a:hover { color: var(--aqua); }
.faq-page-grid > aside span { color: var(--sun); font-weight: 800; }
.faq-group { margin-bottom: clamp(4rem, 8vw, 7rem); scroll-margin-top: 120px; }
.faq-group > h2 { margin-bottom: 1.5rem; }
.faq-ending { padding: clamp(2rem, 5vw, 4rem); background: var(--aqua-soft); border-left: 10px solid var(--sun); }
.faq-ending h2, .faq-ending h3 { margin-bottom: 1.2rem; }
.spanish-grid { display: grid; grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.spanish-grid aside { position: sticky; top: 120px; padding-top: 1rem; border-top: 4px solid var(--sun); }
.spanish-grid aside h2 { margin-bottom: 1rem; }
.spanish-grid aside > a { display: block; margin-bottom: 1rem; color: var(--aqua); font-size: 1.2rem; font-weight: 800; }
.spanish-grid aside p { color: var(--muted); }
.spanish-grid article { max-width: 820px; }
.spanish-grid article h2, .spanish-grid article h3 { margin: 3.5rem 0 1.2rem; }
.spanish-grid li { margin-bottom: .6rem; }

.not-found { min-height: 70vh; display: grid; place-items: center; padding: 4rem 1rem; background: var(--limestone); }
.not-found > div { max-width: 850px; }
.not-found h1 { margin-bottom: 1.5rem; }
.not-found p { max-width: 700px; }

.moment-section { background: var(--white); }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.moment-grid article { min-height: 380px; padding: clamp(1.4rem, 3vw, 2.5rem); background: var(--paper); }
.moment-grid article:nth-child(2) { background: var(--sun-soft); }
.moment-grid article:nth-child(3) { background: var(--aqua-soft); }
.moment-grid span { display: block; margin-bottom: 3rem; color: var(--aqua); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.moment-grid h3 { margin-bottom: 1rem; }
.moment-grid p { color: var(--muted); font-size: .9rem; }
.trust-proof { color: var(--white); background: var(--aqua); }
.trust-proof .eyebrow { color: var(--white); }
.trust-proof-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(3rem, 8vw, 8rem); }
.trust-proof-grid > div:last-child { padding-left: 2rem; border-left: 2px solid rgba(255,255,255,.5); }
.trust-proof-grid p { color: rgba(255,255,255,.82); }

.service-note-section { background: var(--white); }
.service-note-list { border-top: 2px solid var(--ink); }
.service-note-list > a { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.service-note-list > a > span { color: var(--sun); font-family: "Bitter", serif; font-size: 1.3rem; font-weight: 800; }
.service-note-list > a > div { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: 2rem; }
.service-note-list h3 { transition: color .15s ease; }
.service-note-list p { margin: 0; color: var(--muted); }
.service-note-list a:hover h3 { color: var(--aqua); }
.service-extra { margin-bottom: clamp(4rem, 8vw, 7rem); padding-top: 2rem; border-top: 4px solid var(--sun); }
.service-extra h2 { margin-bottom: 1.5rem; }
.service-extra p { max-width: 780px; }

.area-extra { background: var(--limestone); }
.extra-grid { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); gap: clamp(3rem, 8vw, 8rem); }
.extra-grid > div:first-child { position: sticky; top: 120px; align-self: start; }
.extra-grid > div:last-child { padding-left: 2rem; border-left: 2px solid var(--ink); }
.extra-grid p { max-width: 790px; }
.visit-situations { background: var(--white); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.visit-grid article { min-height: 210px; padding: 1.4rem; background: var(--paper); }
.visit-grid span { display: block; margin-bottom: 1.1rem; color: var(--sun); font-family: "Bitter", serif; font-size: 1.15rem; font-weight: 750; }
.visit-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.coverage-detail { background: var(--limestone); }
.coverage-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(3rem, 8vw, 8rem); }
.coverage-detail-grid article { padding-top: 1rem; border-top: 4px solid var(--sun); }
.page-inner .coverage-detail-grid h2 { margin-bottom: 1.4rem; font-size: clamp(1.9rem, 3.1vw, 2.95rem); }
.coverage-steps { background: var(--white); }
.coverage-steps ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border: 2px solid var(--ink); list-style: none; }
.coverage-steps li { min-height: 235px; padding: 1.2rem; border-right: 1px solid var(--line); }
.coverage-steps li:last-child { border-right: 0; }
.coverage-steps li > span { display: block; margin-bottom: 3rem; color: var(--sun); font-family: "Bitter", serif; font-size: 1.35rem; font-weight: 800; }
.coverage-steps h3 { margin-bottom: .7rem; }
.coverage-steps p { margin: 0; color: var(--muted); font-size: .88rem; }

.about-method { background: var(--white); }
.method-list { border-top: 2px solid var(--ink); }
.method-list article { display: grid; grid-template-columns: 90px minmax(230px, .7fr) minmax(0, 1.3fr); gap: 1.5rem 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.method-list article > span { color: var(--sun); font-family: "Bitter", serif; font-size: 1.2rem; font-weight: 800; }
.method-list h3 { grid-column: 2; }
.method-list p { grid-column: 3; margin: 0 0 1rem; color: var(--muted); }
.method-list p + p { grid-row: 2; }
.about-austin { color: var(--white); background: var(--aqua); }
.about-austin .eyebrow { color: var(--white); }
.about-austin-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.about-austin-grid > div:last-child { padding-left: 2rem; border-left: 2px solid rgba(255,255,255,.5); }
.about-austin-grid p { color: rgba(255,255,255,.82); }

.spanish-depth { background: var(--white); }
.spanish-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.spanish-cards article { min-height: 280px; padding: 1.5rem; background: var(--limestone); }
.spanish-cards article:nth-child(2), .spanish-cards article:nth-child(3) { background: var(--aqua-soft); }
.spanish-cards span { display: block; margin-bottom: 1.6rem; color: var(--sun); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.spanish-cards h3 { margin-bottom: .9rem; }
.spanish-cards p { color: var(--muted); }
.spanish-route { color: var(--white); background: var(--aqua); }
.spanish-route .eyebrow { color: var(--white); }
.spanish-route p { color: rgba(255,255,255,.82); }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.4fr .75fr .7fr 1fr; gap: clamp(2rem, 5vw, 5rem); padding: clamp(3.5rem, 7vw, 6.5rem) max(1rem, calc((100% - var(--max)) / 2)); }
.site-footer .brand { color: var(--white); }
.site-footer .brand-mark { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); }
.site-footer .brand-type small { color: rgba(255,255,255,.6); }
.footer-brand p, .footer-brand address { max-width: 390px; color: rgba(255,255,255,.65); font-size: .87rem; font-style: normal; }
.footer-brand p { margin-top: 1.3rem; }
.footer-top h3 { margin-bottom: 1.2rem; font-family: "DM Sans", sans-serif; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-top nav { display: grid; gap: .45rem; }
.footer-top nav a { color: rgba(255,255,255,.67); font-size: .82rem; text-decoration: none; }
.footer-top nav a:hover { color: var(--sun-soft); }
.footer-call { padding: 1.25rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); }
.footer-call p { margin-bottom: 1rem; font-family: "Bitter", serif; font-size: 1.2rem; font-weight: 650; }
.footer-call a { display: block; color: var(--sun-soft); font-size: 1.15rem; font-weight: 800; }
.footer-call small { color: rgba(255,255,255,.55); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem max(1rem, calc((100% - var(--max)) / 2)); color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.14); font-size: .73rem; }
.mobile-call { display: none; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (hover: hover) and (min-width: 961px) {
  .nav-parent:hover .nav-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .header-call { display: none; }
  .menu-button { display: grid; grid-template-columns: 22px 1fr; gap: 0 .55rem; align-items: center; padding: .55rem .75rem; color: var(--ink); background: transparent; border: 2px solid var(--ink); cursor: pointer; }
  .menu-button span { grid-column: 1; width: 20px; height: 2px; margin: 2px 0; background: currentColor; }
  .menu-button b { grid-column: 2; grid-row: 1 / span 3; font-size: .76rem; }
  .main-nav { position: fixed; z-index: 65; top: 116px; right: 0; bottom: 0; left: 0; display: block; padding: 1rem; background: var(--paper); overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .16s ease, transform .16s ease, visibility .16s ease; }
  body.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav > ul { display: grid; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav > ul > li > a, .nav-line > a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav-line { justify-content: space-between; }
  .nav-toggle { width: 44px; height: 44px; }
  .nav-panel { position: static; display: none; width: auto; padding: 1rem 0 1.5rem; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-parent[data-open] .nav-panel { display: block; }
  .panel-head { align-items: start; }
  .panel-service-grid, .panel-area-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero { max-height: none; }
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body { font-size: 16px; padding-bottom: 66px; }
  .availability-bar { justify-content: space-between; font-size: .7rem; }
  .availability-bar span { max-width: 210px; }
  .site-header { min-height: 76px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-mark svg { width: 34px; height: 34px; }
  .brand-type strong { font-size: 1.15rem; }
  .brand-type small { font-size: .58rem; }
  .main-nav { top: 110px; }
  .panel-head { display: grid; }
  .panel-service-grid, .panel-area-grid { grid-template-columns: 1fr; }
  .home-hero, .inner-hero { grid-template-columns: 1fr; }
  .home-copy { order: 1; padding: 3.2rem 1rem 2.8rem; }
  .home-photo { order: 0; min-height: 300px; border: 0; border-bottom: 2px solid var(--ink); }
  .home-photo img { object-position: 57% center; }
  .home-copy h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof span { grid-template-columns: 90px 1fr; padding: .65rem 0; border-bottom: 1px solid var(--line); }
  .inner-copy { order: 1; padding: 3rem 1rem; }
  .inner-photo { order: 0; min-height: 310px; border: 0; border-bottom: 2px solid var(--ink); }
  .inner-copy h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .crumbs { margin-bottom: 2.5rem; }
  .ledger-grid, .field-grid, .area-layout, .faq-layout, .article-shell, .area-hub, .route-grid, .area-story-grid, .practical-grid, .about-opening, .story-split, .faq-page-grid, .spanish-grid, .trust-proof-grid, .extra-grid, .coverage-detail-grid, .about-austin-grid { grid-template-columns: 1fr; }
  .ledger-grid aside, .area-layout > div:first-child, .faq-layout > div:first-child, .article-nav, .area-intro, .area-story-grid aside, .practical-grid > div:first-child, .faq-page-grid > aside, .spanish-grid aside, .extra-grid > div:first-child { position: static; }
  .ledger-copy { padding: 0; border-left: 0; }
  .ledger-note { grid-template-columns: 1fr; }
  .service-tiles { grid-template-columns: 1fr; }
  .service-tile, .service-tile:nth-child(3n + 2), .service-tile:nth-child(3n + 3) { min-height: 290px; }
  .field-image figure, .story-split figure { aspect-ratio: 4/3; }
  .section-head { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 62px 1fr; }
  .process-list div { grid-template-columns: 1fr; gap: .5rem; }
  .area-chip-grid, .area-groups section > div { grid-template-columns: 1fr; }
  .callout { grid-template-columns: 1fr; }
  .proof-ribbon { grid-template-columns: repeat(2, 1fr); }
  .proof-ribbon div:nth-child(2) { border-right: 0; }
  .quick-box ul { grid-template-columns: 1fr; }
  .editorial-columns, .three-links, .value-cards, .about-links .wrap > div, .moment-grid, .visit-grid, .spanish-cards { grid-template-columns: 1fr; }
  .trust-proof-grid > div:last-child, .extra-grid > div:last-child, .about-austin-grid > div:last-child { padding-left: 0; border-left: 0; }
  .service-note-list > a { grid-template-columns: 48px 1fr; }
  .service-note-list > a > div { grid-template-columns: 1fr; gap: .6rem; }
  .coverage-steps ol { grid-template-columns: repeat(2, 1fr); }
  .coverage-steps li:nth-child(2) { border-right: 0; }
  .coverage-steps li:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .method-list article { grid-template-columns: 70px 1fr; }
  .method-list h3 { grid-column: 2; }
  .method-list p { grid-column: 1 / -1; }
  .method-list p + p { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .mobile-call { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: center; min-height: 66px; padding: .65rem 1rem; color: var(--white); background: var(--sun); border-top: 2px solid var(--ink); text-decoration: none; }
  .mobile-call span { font-size: .8rem; font-weight: 750; }
  .mobile-call b { font-size: .98rem; }
}

@media (max-width: 440px) {
  .brand-type small { max-width: 120px; white-space: normal; }
  .availability-bar span { max-width: 170px; }
  .button { width: 100%; }
  .hero-actions .text-link { padding: .65rem 0; }
  .proof-ribbon { grid-template-columns: 1fr; }
  .proof-ribbon div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .article-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
