:root {
  --green: #203e32;
  --green-deep: #152c24;
  --green-light: #eef0e9;
  --gold: #d6b77c;
  --gold-dark: #8b6b37;
  --ink: #253d32;
  --muted: #626a61;
  --paper: #faf9f6;
  --cream: #f0efe8;
  --line: #dedfd5;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-height: 94px;
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.dialog-open, body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { border-radius: 0; }
button { color: inherit; }
button:disabled { cursor: default; }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 5px; }
::selection { background: var(--gold); color: var(--green-deep); }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
h2 { font-size: clamp(2.6rem, 3.7vw, 3.65rem); font-weight: 500; line-height: 1.15; letter-spacing: -.055em; }
h2 em { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.045em; }
.container { width: min(1280px, calc(100% - 112px)); margin-inline: auto; }
.section-space { padding-block: 120px; }
.icon { width: 22px; height: 22px; display: inline-block; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: middle; }
.service-icon { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; transform: translateY(-150%); padding: 12px 22px; background: var(--paper); color: var(--green); }
.skip-link:focus { transform: none; }
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; line-height: 1.6; font-weight: 650; letter-spacing: .17em; }
.eyebrow-line { display: block; width: 29px; height: 1px; background: var(--gold-dark); }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 18px; min-height: 54px; padding: 15px 24px; border: 1px solid transparent; font-size: 13px; font-weight: 600; line-height: 1.4; border-radius: 4px; transition: background .25s, color .25s, border-color .25s, transform .3s var(--ease), box-shadow .3s; }
.button .icon { width: 19px; height: 19px; transition: transform .3s var(--ease); }
.button:hover .icon:last-child { transform: translate(2px, -2px); }
.button:active { transform: translateY(1px); }
.button-green { background: var(--green); color: white; }
.button-green:hover { background: #304f3f; box-shadow: 0 5px 15px #152c2410; }
.button-gold { background: var(--gold); color: #203b2f; }
.button-gold:hover { background: #e5c990; box-shadow: 0 5px 20px #1113; }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { background: var(--cream); border-color: var(--green); }
.text-link { display: inline-flex; align-items: center; gap: 18px; min-height: 44px; font-size: 13px; font-weight: 650; }
.text-link .icon { width: 19px; height: 19px; transition: transform .25s var(--ease); }
.text-link:hover .icon { transform: translate(3px,-3px); }
.text-link:hover { color: var(--gold-dark); }

/* A quiet header, an expansive landscape. */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-height); background: var(--paper); transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: 0 1px 0 #203e3220, 0 4px 20px #203e3206; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 64px; height: 48px; object-fit: contain; border-radius: 5px; flex-shrink: 0; background: var(--green); }
.brand-needle { fill: #a1854d; stroke: none; }
.brand-type { font-family: var(--font-heading); font-size: 22px; font-weight: 800; letter-spacing: -.04em; line-height: 1.2; }
.brand-type strong { font-weight: 500; }
.brand-type small { display: block; font-family: var(--font-body); font-size: 8px; font-weight: 500; letter-spacing: .21em; margin-top: 6px; }
.desktop-nav { display: flex; align-items: center; gap: 31px; }
.desktop-nav a { position: relative; padding-block: 15px; font-size: 12px; color: #495249; }
.desktop-nav a::after { content: ''; position: absolute; bottom: 8px; left: 0; height: 1px; width: 100%; background: var(--gold-dark); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.nav-energy { color: var(--green); font-weight: 700; }
.header-cta { min-height: 45px; padding: 11px 20px; font-size: 12px; }
.menu-toggle, .mobile-menu { display: none; }
.hero { position: relative; overflow: hidden; color: #fff; min-height: 680px; height: calc(100svh - 154px); max-height: 870px; background: #304335; }
.hero-image { position: absolute; width: 100%; height: 100%; inset: 0; object-fit: cover; object-position: center 60%; animation: landscape-in 1.8s var(--ease) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,31,24,.86) 0%, rgba(13,32,24,.67) 37%, rgba(18,33,22,.15) 79%), linear-gradient(0deg, rgba(13,29,23,.65), transparent 40%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(#ffffff07 1px,transparent 1px),linear-gradient(90deg,#ffffff07 1px,transparent 1px); background-size: 120px 120px; mask-image: linear-gradient(90deg, transparent 35%,black); }
.hero-inner { height: 100%; position: relative; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 2; padding-bottom: 30px; max-width: 880px; }
.hero-eyebrow { font-size: 10px; letter-spacing: .2em; margin-bottom: 30px; color: #f1eade; }
.status-dot { position: relative; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; flex-shrink: 0; }
.hero-eyebrow .status-dot { margin-right: 2px; box-shadow: 0 0 0 5px #d6b77c15; }
.hero h1 { font-size: clamp(4rem,6.3vw,6rem); font-weight: 500; line-height: 1.11; letter-spacing: -.06em; overflow-wrap: anywhere; }
.hero h1 em { color: #e0c795; font-family: var(--font-serif); font-weight: 500; letter-spacing: -.05em; }
.hero-description { max-width: 455px; font-size: 15px; line-height: 1.85; color: #f0f0e4; margin-top: 29px; }
.hero-actions { display: flex; align-items: center; gap: 29px; margin-top: 32px; }
.hero-secondary { display: inline-flex; align-items: center; gap: 16px; font-size: 12px; min-height: 48px; transition: color .2s; }
.hero-secondary .icon { width: 16px; height: 16px; transition: transform .25s; }
.hero-secondary:hover { color: var(--gold); }
.hero-secondary:hover .icon { transform: translateX(4px); }
.hero-signature { display: flex; align-items: center; gap: 9px; color: #e0e5d6; font-size: 10px; letter-spacing: .015em; margin-top: 28px; }
.hero-signature .icon { width: 15px; height: 15px; color: #d3bc8a; }
.hero-bottom { position: absolute; left: 0; right: 0; bottom: 26px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #ffffff25; padding-top: 22px; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; min-height: 28px; font-size: 8px; font-weight: 500; letter-spacing: .15em; }
.scroll-line { width: 17px; height: 25px; border: 1px solid #ffffff65; border-radius: 12px; position: relative; }
.scroll-line::after { content: ''; position: absolute; height: 5px; width: 1px; left: 7px; top: 6px; background: #f5f0e2; animation: scroll-indicator 2s ease-in-out 2; }
.hero-location { display: inline-flex; align-items: center; gap: 10px; font-size: 8px; letter-spacing: .13em; }
.hero-location .icon { width: 13px; height: 13px; color: var(--gold); }
.location-rule { width: 23px; height: 1px; background: #ffffff70; margin-inline: 4px; }
.hero-survey { position: absolute; right: -18px; top: 13%; width: 350px; opacity: .65; pointer-events: none; }
.survey-art { width: 100%; }
.survey-orbits { stroke: #ffefd17a; stroke-width: .7; }
.survey-boundary { fill: #d6b77c0c; stroke: #f2dbaa; stroke-width: 1.6; stroke-dasharray: 650; stroke-dashoffset: 650; animation: survey-draw 2.3s .6s var(--ease) forwards; }
.survey-internal { stroke: #faeaca75; stroke-width: .65; stroke-dasharray: 3 4; }
.survey-points { fill: #e0c186; stroke: #1d3629; stroke-width: 2; }
.survey-labels { fill: #f8e9c8; font-family: var(--font-body); font-size: 9px; letter-spacing: .1em; }
.survey-center { stroke: #faebcf80; stroke-width: .8; }
.survey-tag { display: flex; gap: 9px; align-items: center; justify-content: center; margin-top: -15px; color: #fff4d6; font-size: 8px; letter-spacing: .14em; }
.hero-content > * { animation: enter-up .9s var(--ease) both; }
.hero-content > :nth-child(2) { animation-delay: .12s; }
.hero-content > :nth-child(3) { animation-delay: .22s; }
.hero-content > :nth-child(4) { animation-delay: .32s; }
.hero-content > :nth-child(5) { animation-delay: .42s; }
.expertise-strip { border-bottom: 1px solid var(--line); background: #f3f2ec; }
.expertise-inner { min-height: 94px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; gap: 20px; }
.expertise-inner > span { display: flex; align-items: center; justify-content: center; gap: 13px; font-size: 11px; font-weight: 500; padding-block: 3px; }
.expertise-inner > span + span { border-left: 1px solid #dcded2; }
.expertise-inner .icon { color: #8c805c; width: 24px; height: 24px; }

/* An editorial introduction, with space to breathe. */
.about-grid { display: grid; grid-template-columns: 1fr 1.04fr; align-items: center; gap: 110px; }
.about-visual { position: relative; padding: 0 20px 28px 0; }
.about-image-wrap { position: relative; aspect-ratio: .95; overflow: hidden; background: var(--green); }
.about-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,#14291c60,transparent 50%); }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.about-visual:hover img { transform: scale(1.035); }
.image-corner { position: absolute; width: 20px; height: 20px; z-index: 1; border-color: #fff9; border-style: solid; }
.top-left { top: 19px; left: 19px; border-width: 1px 0 0 1px; }
.bottom-right { bottom: 19px; right: 19px; border-width: 0 1px 1px 0; }
.photo-label { position: absolute; top: 24px; left: 35px; display: flex; align-items: center; gap: 9px; color: white; z-index: 1; font-size: 8px; letter-spacing: .16em; text-shadow: 0 1px 3px #0008; }
.about-seal { position: absolute; right: -20px; bottom: 0; display: flex; align-items: center; gap: 18px; padding: 25px 30px; color: #f7f4e9; background: var(--green); box-shadow: 10px -10px 0 var(--paper); }
.about-seal .icon { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.1; }
.about-seal span { font-size: 13px; line-height: 1.8; }
.about-seal strong { font-weight: 500; color: #e1c898; }
.image-side-note { position: absolute; left: -25px; top: 0; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 7px; letter-spacing: .18em; color: #626a5d; }
.about-content .eyebrow { margin-bottom: 23px; }
.about-content .lead { font-size: 17px; line-height: 1.75; color: #344b3e; margin-top: 24px; }
.about-content > p:not(.lead) { margin-top: 16px; font-size: 13px; color: var(--muted); line-height: 1.9; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 15px; margin-block: 23px; padding-top: 22px; border-top: 1px solid var(--line); }
.about-values span { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 500; }
.about-values .icon { width: 15px; height: 15px; color: #907440; }

/* Services use the same geometry as a divided parcel. */
.services { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; margin-bottom: 46px; }
.section-heading .eyebrow { margin-bottom: 21px; }
.section-heading > p { max-width: 330px; font-size: 13px; color: var(--muted); line-height: 1.9; padding-bottom: 8px; }
.service-filters { display: flex; gap: 9px; padding-bottom: 28px; flex-wrap: wrap; }
.filter { min-height: 41px; padding: 9px 18px; font-size: 11px; border-radius: 3px; border: 1px solid #d7dace; background: transparent; transition: background .2s, border-color .2s, color .2s; }
.filter span { margin-left: 7px; font-size: 9px; opacity: .8; }
.filter:hover { background: #e6e7dd; }
.filter.active { background: var(--green); border-color: var(--green); color: white; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid #e0e1d7; padding: 34px 32px 22px; min-height: 325px; overflow: hidden; transition: background .3s, border-color .3s, transform .4s var(--ease); }
.service-card:hover { border-color: #a8b3a0; transform: translateY(-4px); }
.service-card[hidden] { display: none; }
.service-card.filter-enter { animation: filter-in .35s var(--ease) backwards; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.service-number { font-size: 10px; color: #626a5d; letter-spacing: .08em; }
.service-card h3 { font-size: 19px; font-weight: 600; line-height: 1.4; letter-spacing: -.045em; margin-bottom: 13px; }
.service-card > p { color: var(--muted); font-size: 12px; line-height: 1.9; margin-bottom: 26px; }
.service-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: none; border: 0; border-top: 1px solid var(--line); width: 100%; margin-top: auto; padding: 14px 0 0; font-size: 10px; font-weight: 600; text-align: left; min-height: 47px; }
.service-link > span { display: flex; align-items: center; justify-content: center; width: 29px; height: 29px; border-radius: 50%; background: #eef0e6; transition: background .25s, transform .25s; }
.service-link .icon { width: 16px; height: 16px; }
.service-link:hover > span { background: var(--gold); transform: rotate(45deg); }
.service-card-featured { background: var(--green); color: #f7f5ec; border-color: var(--green); }
.service-card-featured > p { color: #ccd4c6; }
.service-card-featured .service-number { color: #bfccb7; }
.service-card-featured .service-icon { color: var(--gold); }
.service-card-featured .service-link { border-color: #ffffff25; }
.service-card-featured .service-link > span { background: #ffffff13; color: var(--gold); }
.service-card-featured .service-link:hover > span { background: var(--gold); color: var(--green); }
.service-card-featured > *:not(.card-contours) { position: relative; z-index: 1; }
.card-contours { position: absolute; width: 230px; height: 300px; right: -130px; top: -60px; border-radius: 43%; border: 1px solid #d6b77c19; box-shadow: 0 0 0 17px #203e32,0 0 0 18px #d6b77c19,0 0 0 35px #203e32,0 0 0 36px #d6b77c19,0 0 0 53px #203e32,0 0 0 54px #d6b77c19,0 0 0 71px #203e32,0 0 0 72px #d6b77c19; transform: rotate(-35deg); pointer-events: none; }
.services-note { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 14px; margin-top: 25px; font-size: 11px; color: var(--muted); }
.services-note .text-link { font-size: 11px; color: var(--green); gap: 10px; }

.precision-grid { display: grid; grid-template-columns: 1fr 1.14fr; gap: 90px; align-items: center; }
.precision-content .eyebrow { margin-bottom: 23px; }
.precision-content h2 { font-size: clamp(2.3rem,3.25vw,3.15rem); }
.precision-content > p { color: var(--muted); font-size: 13px; line-height: 1.9; margin-top: 24px; max-width: 395px; }
.precision-feature { display: flex; gap: 15px; margin-top: 25px; }
.precision-feature > .icon { color: #8d7a50; width: 25px; height: 25px; margin-top: 2px; }
.precision-feature h3 { font-size: 13px; font-weight: 650; letter-spacing: -.02em; }
.precision-feature p { font-size: 12px; color: var(--muted); margin-top: 4px; max-width: 280px; }
.precision-content .text-link { margin-top: 25px; }
.field-map { background: #e9ece1; border: 1px solid #d2d7c9; box-shadow: 0 18px 44px #1e382312; transform: rotate(1deg); }
.field-map.reveal.is-visible { transform: rotate(1deg); }
.map-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 23px; background: #eef0e8; border-bottom: 1px solid #d2d7c9; }
.map-toolbar > span { display: flex; align-items: center; gap: 9px; font-size: 8px; font-weight: 600; letter-spacing: .12em; }
.map-toolbar .status-dot { background: #6a8053; }
.map-toolbar .icon { width: 24px; height: 24px; stroke-width: 1; }
.map-canvas { position: relative; overflow: hidden; aspect-ratio: 1.38; background: #344b36; }
.map-canvas > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.54) saturate(.5); transform: scale(1.15); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(#ffffff13 1px,transparent 1px),linear-gradient(90deg,#ffffff13 1px,transparent 1px); background-size: 44px 44px; }
.parcel-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.parcel-boundary { stroke: #ead593; stroke-width: 2; fill: #e8d7a51f; }
.parcel-inner { stroke: #eee0b680; stroke-width: 1; stroke-dasharray: 5 6; }
.map-points circle { fill: #f5e6bc; stroke: #253d28; stroke-width: 3; }
.map-points text { fill: #fff0c8; font-size: 9px; letter-spacing: .12em; }
.map-limits, .map-points { transition: opacity .35s; }
.field-map.hide-limits .map-limits, .field-map.hide-points .map-points { opacity: 0; }
.map-center-label { position: absolute; left: 45%; top: 43%; display: flex; align-items: center; gap: 10px; padding: 13px 17px; background: #f7f5ebe8; color: var(--green); box-shadow: 0 4px 15px #14251b20; border: 1px solid #e9e9d4; }
.map-center-label > span { font-size: 10px; line-height: 1.7; }
.map-center-label strong { font-weight: 650; }
.map-center-label .icon { width: 20px; height: 20px; }
.map-north { position: absolute; top: 20px; right: 22px; color: #f0e9d7; font-size: 9px; display: flex; flex-direction: column; align-items: center; line-height: 1.6; }
.map-north span { font-size: 26px; }
.map-caption { position: absolute; bottom: 13px; left: 17px; font-size: 8px; color: #ffffffcf; background: #152c2450; padding: 2px 6px; }
.map-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 18px; }
.map-controls > span { font-size: 10px; color: #626a5d; }
.map-controls > div { display: flex; gap: 7px; }
.map-layer { display: inline-flex; gap: 7px; align-items: center; min-height: 38px; padding: 7px 11px; border: 1px solid #c8cebf; background: transparent; font-size: 10px; border-radius: 3px; }
.map-layer.active { background: var(--green); color: #fff8e9; border-color: var(--green); }
.layer-line { width: 12px; height: 2px; background: currentColor; }
.layer-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* A continuous four-step path. */
.process { position: relative; background: var(--green-deep); color: #f4f4e9; overflow: hidden; }
.process .container { position: relative; z-index: 1; }
.process .eyebrow { color: #d2d6c5; }
.process .eyebrow-line { background: var(--gold); }
.process h2 em { color: var(--gold); }
.process .section-heading > p { color: #bbc6b9; }
.process-contours { position: absolute; width: 490px; height: 700px; right: -80px; top: -290px; border: 1px solid #b8bb8020; border-radius: 43% 60% 40% 60%; box-shadow: 0 0 0 27px var(--green-deep),0 0 0 28px #b8bb8020,0 0 0 55px var(--green-deep),0 0 0 56px #b8bb8020,0 0 0 83px var(--green-deep),0 0 0 84px #b8bb8020,0 0 0 111px var(--green-deep),0 0 0 112px #b8bb8020,0 0 0 139px var(--green-deep),0 0 0 140px #b8bb8020; transform: rotate(-42deg); opacity: .5; pointer-events: none; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 58px; }
.process-step { padding-right: 38px; }
.step-number { display: block; position: relative; color: var(--gold); font-family: var(--font-serif); font-size: 41px; font-style: italic; line-height: 1; padding-bottom: 36px; border-bottom: 1px solid #bfc9b43b; margin-bottom: 27px; }
.step-number::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px var(--green-deep); }
.step-number span { position: absolute; top: 23px; right: 0; width: 19px; height: 1px; background: #ffffff35; }
.step-number span::after { content: ''; width: 5px; height: 5px; border: solid #ffffff35; border-width: 1px 1px 0 0; position: absolute; right: 0; top: -2px; transform: rotate(45deg); }
.process-step:last-child .step-number span { display: none; }
.process-step h3 { font-size: 16px; font-weight: 550; letter-spacing: -.03em; margin-bottom: 12px; }
.process-step > p { font-size: 12px; color: #c0c9ba; line-height: 1.9; max-width: 236px; }
.step-tag { display: block; font-size: 8px; color: #c8b889; letter-spacing: .14em; margin-top: 24px; }
.process-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 60px; border-top: 1px solid #bfc9b426; padding-top: 30px; }
.process-bottom > span { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #d6decf; }
.process-bottom > span .icon { color: var(--gold); }

.faq-grid { display: grid; grid-template-columns: .9fr 1.2fr; gap: 100px; }
.faq-intro .eyebrow { margin-bottom: 23px; }
.faq-intro h2 { font-size: clamp(2.4rem,3.5vw,3.25rem); }
.faq-intro > p { font-size: 13px; color: var(--muted); max-width: 260px; margin-top: 23px; }
.faq-intro .text-link { margin-top: 19px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; min-height: 78px; font-size: 13px; font-weight: 550; line-height: 1.7; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .icon { width: 20px; height: 20px; color: #808568; transition: transform .3s var(--ease); }
.faq-list details[open] summary .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 36px 25px 0; font-size: 12px; color: var(--muted); line-height: 1.95; }
.faq-list details[open] .faq-answer { animation: answer-in .3s var(--ease); }

.contact { background: #eeeee4; position: relative; }

/* Energy: shared forest, paper and brass palette; editorial technical layout. */
.energy-section { --energy-rule: #d4d9cd; position: relative; color: var(--ink); background: var(--paper); border-top: 1px solid var(--line); }
.energy-section :is(h2, h3, h4, h5) { text-wrap: balance; letter-spacing: -.035em; }
.energy-section :is(h3, h4, h5) { font-family: var(--font-heading); font-weight: 500; }
.energy-section :is(h3, h4) em { font-family: var(--font-serif); font-weight: 500; }
.energy-section :is(h3[id], h4[id]) { scroll-margin-top: 125px; }
.energy-section :is(button, a, summary):focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 6px; }
.energy-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.energy-intro h2 { color: var(--green); font-size: clamp(2.8rem, 4.6vw, 4.4rem); line-height: 1.08; }
.energy-intro h2 em { color: var(--gold-dark); }
.energy-intro-copy { max-width: 440px; padding-bottom: 2px; }
.energy-intro-copy > p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.energy-page-link { margin-top: 22px; }
.energy-showcase { display: grid; grid-template-columns: 1.6fr 1fr; background: var(--green); }
.energy-route { min-width: 0; padding: 32px; }
.energy-route-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 18px; color: #e1e5d9; font-size: 12px; }
.energy-route-top strong { display: flex; align-items: center; gap: 7px; color: var(--gold); font-size: 12px; font-weight: 500; }
.energy-route-top .icon { width: 15px; height: 15px; }
.route-map { position: relative; margin-top: 22px; background: var(--green-deep); overflow: hidden; }
.route-map svg { display: block; width: 100%; height: auto; }
.route-contours { stroke: #d6b77c29; stroke-width: 1; }
.route-trace { stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.route-nodes { stroke: var(--gold); stroke-width: 2; fill: var(--green-deep); }
.route-labels { fill: #e1d4b5; font: 11px var(--font-body); letter-spacing: .5px; }
.route-caption { display: block; padding: 0 16px 12px; color: #c8d3c6; text-align: right; font-size: 11px; }
.energy-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 24px 0 0; }
.energy-metrics > div { padding-inline: 24px; border-left: 1px solid #d6b77c55; }
.energy-metrics > div:first-child { padding-left: 0; border-left: 0; }
.energy-metrics > div:last-child { padding-right: 0; }
.energy-metrics dt { color: #c8d3c6; font-size: 11px; }
.energy-metrics dd { margin: 6px 0 0; color: var(--paper); font-family: var(--font-heading); font-size: clamp(24px, 2.5vw, 34px); font-weight: 500; line-height: 1.2; letter-spacing: -.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.energy-metrics dd span { font-family: var(--font-body); font-size: .5em; font-weight: 400; letter-spacing: 0; color: var(--gold); }
.energy-note { display: flex; flex-direction: column; justify-content: center; padding: 40px; background: var(--green-deep); }
.energy-note-icon { width: 36px; height: 36px; fill: none; stroke: var(--gold); stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
.energy-note h3 { margin-top: 26px; color: var(--paper); font-size: clamp(26px, 2.4vw, 34px); line-height: 1.25; }
.energy-note h3 em { color: var(--gold); }
.energy-note p { margin-top: 18px; color: #c8d3c6; font-size: 14px; line-height: 1.85; }
.energy-text-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 48px; padding-top: 16px; margin-top: 24px; border-top: 1px solid #d6b77c40; color: var(--gold); font-size: 13px; font-weight: 600; }
.energy-text-link .icon { width: 19px; height: 19px; transition: transform .2s var(--ease); }
.energy-text-link:hover { color: #f1d6a4; }
.energy-text-link:hover .icon { transform: translate(2px, -2px); }
.energy-section .energy-text-link:focus-visible { outline-color: var(--gold); }

/* Three clear services, each with an action that names the visitor's task. */
.energy-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--energy-rule); }
.energy-cards article { min-width: 0; display: flex; flex-direction: column; padding: 40px 32px 28px; }
.energy-cards article + article { border-left: 1px solid var(--energy-rule); }
.energy-cards article:first-child { padding-left: 0; }
.energy-cards article:last-child { padding-right: 0; }
.energy-service-icon { width: 32px; height: 32px; fill: none; stroke: var(--gold-dark); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.energy-cards h3 { margin-top: 22px; color: var(--green); font-size: clamp(24px, 2.2vw, 30px); line-height: 1.22; }
.energy-cards p { max-width: 36ch; margin: 16px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.energy-cards button { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 52px; width: 100%; margin-top: auto; padding: 12px 0; border: 0; border-top: 1px solid var(--energy-rule); background: transparent; color: var(--green); font-family: var(--font-body); font-size: 13px; font-weight: 650; line-height: 1.5; text-align: left; }
.energy-cards button .icon { width: 20px; height: 20px; transition: transform .2s var(--ease), color .2s; }
.energy-cards button:hover { color: var(--gold-dark); }
.energy-cards button:hover .icon { transform: translate(2px, -2px); }
.energy-cards button:active .icon { transform: translate(1px, -1px); }

/* Product data reads as a dossier, with the full reference one click away. */
.energy-technical { margin-top: 88px; }
.energy-spec-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.energy-technical-heading h3 { color: var(--green); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.15; }
.energy-technical-heading h3 em { color: var(--gold-dark); }
.energy-technical-heading p { max-width: 36ch; margin-top: 20px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.energy-technical-heading .energy-project-name { color: var(--green); font-size: 13px; font-weight: 600; line-height: 1.8; margin-top: 26px; }
.energy-technical-heading .text-link { margin-top: 20px; font-size: 13px; }
.energy-spec-grid { min-width: 0; border-top: 1px solid var(--energy-rule); }
.energy-detail { border-bottom: 1px solid var(--energy-rule); background: transparent; }
.energy-detail summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; padding: 24px 20px; color: var(--green); cursor: pointer; list-style: none; transition: background .2s; }
.energy-detail summary::-webkit-details-marker { display: none; }
.energy-detail summary:hover { background: var(--cream); }
.energy-detail summary > span { display: flex; align-items: center; gap: 16px; font-size: 16px; font-weight: 600; }
.energy-detail summary .icon { width: 23px; height: 23px; color: var(--gold-dark); }
.energy-detail summary small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 400; }
.energy-disclosure-icon { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s var(--ease); }
.energy-detail[open] .energy-disclosure-icon { transform: rotate(45deg); }
.energy-detail dl { margin: 0; padding: 0 20px 20px; }
.energy-detail dl > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 24px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.7; }
.energy-detail dt { color: var(--muted); }
.energy-detail dd { margin: 0; color: var(--green); font-weight: 500; font-variant-numeric: tabular-nums; }
.energy-source { margin: 16px 20px 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.energy-protection { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; margin-top: 52px; padding: 36px 40px; background: var(--green-light); }
.energy-protection-icon { width: 30px; height: 30px; fill: none; stroke: var(--gold-dark); stroke-width: 1.3; stroke-linejoin: round; stroke-linecap: round; }
.energy-protection h4 { margin: 16px 0 0; color: var(--green); font-size: 27px; line-height: 1.2; }
.energy-protection-heading > p { margin-top: 12px; color: var(--muted); font-size: 12px; }
.energy-protection-content { align-self: center; }
.energy-protection ul { list-style: none; margin: 0; padding: 0; }
.energy-protection li { display: flex; align-items: start; gap: 12px; padding: 6px 0; color: var(--green); font-size: 14px; line-height: 1.7; }
.energy-protection li .icon { width: 18px; height: 18px; margin-top: 3px; color: var(--green); }
.energy-protection-content > p { margin-top: 18px; padding-top: 18px; border-top: 1px solid #cdd3c5; color: var(--muted); font-size: 12px; line-height: 1.85; }

.energy-branches-section { margin-top: 72px; }
.energy-subheading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.energy-subheading h4 { margin: 0; color: var(--green); font-size: clamp(28px, 3vw, 38px); line-height: 1.2; }
.energy-subheading h4 em { color: var(--gold-dark); }
.energy-subheading > p { max-width: 35ch; color: var(--muted); font-size: 13px; line-height: 1.7; }
.energy-branches { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 32px; border-top: 1px solid var(--energy-rule); }
.energy-branches article { display: grid; grid-template-columns: 36px 1fr; align-content: start; gap: 0 16px; padding: 28px 32px; }
.energy-branches article + article { border-left: 1px solid var(--energy-rule); }
.energy-branches article:first-child { padding-left: 0; }
.energy-branches article:last-child { padding-right: 0; }
.energy-branch-icon { grid-column: 1; width: 27px; height: 27px; fill: none; stroke: var(--gold-dark); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.energy-branches h5 { grid-column: 2; margin: 0; color: var(--green); font-size: 22px; line-height: 1.3; }
.energy-branches ul { grid-column: 2; margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; line-height: 2; }

/* The main line and its branches share the geometry of a distribution network. */
.energy-flow { margin-top: 48px; padding: 40px; background: var(--cream); }
.energy-network { display: grid; grid-template-columns: 1fr 1.5fr 1fr; column-gap: 24px; margin-top: 38px; color: var(--green); }
.energy-network-source, .energy-network-end { padding: 16px 0 20px; border-block: 1px solid #b3beaa; }
.energy-network-source > span, .energy-network-end > span, .energy-network-branches > span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.energy-network strong { display: block; margin-top: 8px; font-family: var(--font-heading); font-size: 17px; font-weight: 550; letter-spacing: -.025em; }
.energy-network small { display: block; margin-top: 4px; font-size: 12px; }
.energy-network-path { display: flex; flex-direction: column; justify-content: center; min-width: 0; text-align: center; }
.energy-network-path > span { font-size: 12px; }
.energy-network-path > small { color: var(--muted); font-size: 11px; }
.energy-network-wire { position: relative; display: flex; justify-content: space-around; align-items: center; height: 2px; margin-block: 16px; background: var(--gold-dark); }
.energy-network-wire i { display: block; width: 9px; height: 9px; border: 1px solid var(--gold-dark); background: var(--cream); border-radius: 50%; }
.energy-network-wire::after { content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 92px; background: var(--gold-dark); }
.energy-network-branches { position: relative; grid-column: 2; margin-top: 34px; padding-top: 16px; text-align: center; }
.energy-network-branches > span { position: relative; display: inline-block; padding: 4px 10px; background: var(--cream); color: var(--green); }
.energy-network-branches > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 10px; font-size: 12px; }
.energy-flow-caption { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--energy-rule); }
.energy-flow-caption > p { font-size: 11px; line-height: 1.8; color: var(--muted); }
.energy-legend { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 16px 0 0; padding: 0; list-style: none; }
.energy-legend li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.energy-legend li > span { display: inline-block; flex-shrink: 0; color: var(--gold-dark); }
.legend-line { width: 18px; height: 1px; background: currentColor; }
.legend-node { width: 9px; height: 9px; border: 1px solid currentColor; border-radius: 50%; }
.legend-branch { position: relative; width: 14px; height: 1px; background: currentColor; }
.legend-branch::after { content: ''; position: absolute; left: 50%; top: -4px; height: 10px; width: 1px; background: currentColor; }
.legend-transformer { width: 11px; height: 11px; border: 3px double currentColor; }
.energy-signoff { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 56px 0; }
.energy-signoff h4 { margin: 0; color: var(--green); font-size: clamp(26px, 2.8vw, 36px); line-height: 1.3; }
.energy-signoff h4 em { color: var(--gold-dark); }
.energy-signoff p { max-width: 54ch; margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.energy-signoff .button { flex-shrink: 0; padding: 18px 22px; }
.energy-signoff .button > span { text-align: left; }
.energy-signoff .button small { display: block; color: #dbe4d5; font-size: 12px; font-weight: 400; margin-top: 4px; }
.company-ledger { display: grid; grid-template-columns: 1fr .9fr .9fr 1.8fr; gap: 24px; margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--line); }
.company-ledger div { min-width: 0; }
.company-ledger dt { color: var(--muted); font-size: 11px; }
.company-ledger dd { margin: 7px 0 0; color: var(--green); font-size: 12px; font-weight: 500; line-height: 1.75; overflow-wrap: anywhere; }

@media (max-width: 1100px) {
  .energy-intro { gap: 40px; }
  .energy-showcase { grid-template-columns: 1.35fr 1fr; }
  .energy-route, .energy-note { padding: 28px; }
  .energy-metrics > div { padding-inline: 14px; }
  .energy-cards article, .energy-branches article { padding-inline: 24px; }
  .energy-cards button { font-size: 12px; }
  .energy-spec-layout { gap: 40px; grid-template-columns: 1fr 1.5fr; }
  .energy-protection { gap: 40px; padding: 32px; }
  .energy-branches article { gap: 0 8px; }
  .energy-branches h5 { font-size: 20px; }
  .company-ledger { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .energy-intro, .energy-showcase, .energy-spec-layout, .energy-protection { grid-template-columns: 1fr; }
  .energy-intro { gap: 24px; margin-bottom: 32px; }
  .energy-intro h2 { font-size: clamp(42px, 8vw, 58px); }
  .energy-intro-copy > p { font-size: 14px; }
  .energy-route { padding: 24px; }
  .energy-route-top { font-size: 11px; }
  .energy-note { padding: 30px; }
  .energy-note h3 { font-size: 30px; }
  .energy-metrics > div { padding-inline: 12px; }
  .energy-metrics dt { font-size: 10px; }
  .energy-metrics dd { font-size: 28px; }
  .energy-cards { grid-template-columns: 1fr; }
  .energy-cards article { position: relative; display: grid; grid-template-columns: 36px minmax(0, 1fr); column-gap: 20px; padding: 30px 0; }
  .energy-cards article + article { border-left: 0; border-top: 1px solid var(--energy-rule); }
  .energy-service-icon { grid-column: 1; width: 28px; height: 28px; margin-top: 3px; }
  .energy-cards h3 { grid-column: 2; margin: 0; font-size: 25px; }
  .energy-cards h3 br { display: none; }
  .energy-cards p, .energy-cards button { grid-column: 2; }
  .energy-cards p { margin: 12px 0 20px; font-size: 14px; }
  .energy-cards button { font-size: 13px; min-height: 48px; }
  .energy-technical { margin-top: 56px; }
  .energy-spec-layout { gap: 28px; }
  .energy-technical-heading h3 { font-size: 36px; }
  .energy-technical-heading p { max-width: 48ch; }
  .energy-detail summary { padding: 20px 8px; gap: 16px; }
  .energy-detail summary > span { gap: 12px; font-size: 15px; }
  .energy-detail summary small { font-size: 11px; }
  .energy-detail dl { padding: 0 8px 16px; }
  .energy-detail dl > div { gap: 16px; font-size: 12px; }
  .energy-source { margin-inline: 8px; }
  .energy-protection { margin-top: 32px; gap: 24px; padding: 28px; }
  .energy-protection-heading { display: grid; grid-template-columns: 32px 1fr; gap: 0 16px; }
  .energy-protection h4 { margin: 0; font-size: 26px; }
  .energy-protection-heading > p { grid-column: 2; margin-top: 8px; }
  .energy-branches-section { margin-top: 48px; }
  .energy-subheading { display: block; }
  .energy-subheading h4 { font-size: 32px; }
  .energy-subheading > p { margin-top: 16px; }
  .energy-branches { grid-template-columns: 1fr; margin-top: 24px; }
  .energy-branches article { grid-template-columns: 32px 1fr; column-gap: 16px; padding: 24px 0; }
  .energy-branches article + article { border-left: 0; border-top: 1px solid var(--energy-rule); }
  .energy-branches h5 { font-size: 22px; }
  .energy-branches ul { margin-top: 8px; columns: 2; column-gap: 20px; }
  .energy-branches li { break-inside: avoid; }
  .energy-flow { margin-top: 24px; padding: 28px; }
  .energy-network { position: relative; grid-template-columns: 1fr; margin-top: 26px; padding-left: 24px; gap: 0; }
  .energy-network::before { content: ''; position: absolute; top: 22px; bottom: 22px; left: 0; width: 1px; background: var(--gold-dark); }
  .energy-network-source, .energy-network-end { position: relative; padding: 16px 0; border: 0; }
  .energy-network-source::before, .energy-network-end::before { content: ''; position: absolute; top: 23px; left: -28px; width: 9px; height: 9px; background: var(--cream); border: 1px solid var(--gold-dark); }
  .energy-network-source::before { border-radius: 50%; }
  .energy-network-path { align-items: start; padding: 16px 0; text-align: left; border-block: 1px solid var(--energy-rule); }
  .energy-network-wire { display: none; }
  .energy-network-branches { grid-column: 1; grid-row: 3; margin: 0; padding: 16px 0 16px 16px; text-align: left; border-left: 1px solid var(--gold-dark); }
  .energy-network-branches > span { padding: 0; }
  .energy-network-branches > div { justify-content: flex-start; gap: 6px 14px; margin-top: 8px; }
  .energy-signoff { flex-direction: column; align-items: start; gap: 24px; padding-top: 40px; }
  .energy-signoff .button { width: 100%; justify-content: space-between; }
  .company-ledger { margin-top: 32px; gap: 20px; }
  .company-ledger div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
  .energy-route, .energy-note { padding: 20px; }
  .energy-metrics dd { font-size: 24px; }
  .energy-metrics > div { padding-inline: 8px; }
  .energy-cards article { grid-template-columns: 1fr; }
  .energy-cards h3, .energy-cards p, .energy-cards button { grid-column: 1; }
  .energy-cards h3 { margin-top: 16px; }
  .energy-detail summary small { max-width: 23ch; }
  .energy-detail dl > div { grid-template-columns: 1fr; gap: 3px; }
  .energy-protection, .energy-flow { padding: 24px 20px; }
  .energy-branches ul { columns: 1; }
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: 100px; align-items: start; }
.contact-content { padding-top: 8px; }
.contact-content .eyebrow { font-size: 9px; margin-bottom: 25px; }
.contact-content h2 { font-size: clamp(3.3rem,4.5vw,4.4rem); }
.contact-content > p { max-width: 370px; font-size: 13px; line-height: 1.9; color: var(--muted); margin-top: 23px; }
.contact-direct { margin-top: 28px; font-size: 12px; }
.contact-direct .icon:first-child { width: 20px; height: 20px; }
.contact-address { display: flex; align-items: flex-start; gap: 16px; border-top: 1px solid #d6d9cb; margin-top: 37px; padding-top: 28px; }
.contact-address > .icon { margin-top: 3px; color: #8b784d; width: 21px; height: 21px; }
.contact-address > div > span { font-size: 8px; font-weight: 600; letter-spacing: .14em; color: #626a5d; }
.contact-address address { font-size: 12px; color: #4c5949; font-style: normal; line-height: 1.9; margin-top: 10px; }
.contact-address .text-link { font-size: 11px; gap: 10px; margin-top: 3px; }
.contact-address .text-link .icon { width: 15px; height: 15px; }
.instagram-handle { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 10px; color: #626a5d; margin-top: 21px; min-height: 38px; }
.instagram-handle .icon { width: 17px; height: 17px; margin-right: 5px; }
.instagram-handle strong { font-weight: 600; color: var(--green); }
.contact-form-card { padding: 35px 36px 30px; border: 1px solid #dfe0d3; background: #fbfaf5; box-shadow: 0 15px 40px #1e35220a; }
.form-step-label { font-size: 8px; letter-spacing: .13em; color: #626a5d; }
.contact-form-card h3 { margin-top: 9px; font-size: 23px; font-weight: 550; letter-spacing: -.045em; }
.contact-form-card > p { color: var(--muted); font-size: 11px; margin-top: 7px; }
#contact-form { margin-top: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 19px; }
.form-field label { font-size: 10px; font-weight: 550; color: #3e5142; }
.form-field label > span { color: #786239; }
.form-field .optional { color: #626a5d; font-weight: 400; margin-left: 4px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-width: 0; background: #fffefa; border: 1px solid #d7dccf; padding: 13px 12px; min-height: 46px; font-size: 11px; line-height: 1.65; color: var(--green); border-radius: 2px; transition: border-color .2s, background .2s; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #626a5d; opacity: 1; }
.form-field select:has(option:checked[value=""]) { color: #626a5d; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { background: white; border-color: #768568; }
.form-field textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; margin-top: 2px; justify-content: space-between; font-size: 12px; }
.form-privacy { display: flex; align-items: flex-start; gap: 8px; font-size: 9px; line-height: 1.8; color: #626a5d; margin-top: 15px; }
.form-privacy .icon { width: 13px; height: 13px; margin-top: 2px; }
.closing-landscape { position: relative; background: #233a2b; color: #fff; overflow: hidden; }
.closing-landscape > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 80%; }
.closing-landscape::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#172e24d9,#1b332d3d); }
.closing-landscape .container { position: relative; padding-block: 65px; z-index: 1; }
.closing-landscape .eyebrow { font-size: 8px; color: #efe4cc; margin-bottom: 20px; }
.closing-landscape p { font-family: var(--font-heading); font-size: 49px; line-height: 1.17; letter-spacing: -.05em; }
.closing-landscape p em { font-family: var(--font-serif); font-weight: 500; color: #e3cc9f; }
.closing-arrow { position: absolute; right: 0; top: calc(50% - 36px); display: flex; align-items: center; justify-content: center; width: 73px; height: 73px; border: 1px solid #f0efda85; border-radius: 50%; transition: background .3s, transform .3s var(--ease); }
.closing-arrow:hover { transform: rotate(45deg); background: #ffffff10; }
.closing-arrow .icon { width: 33px; height: 33px; stroke-width: 1; }

.site-footer { background: #f7f6f0; }
.footer-main { display: grid; grid-template-columns: 1.6fr .8fr 1.25fr 1fr; gap: 40px; padding-block: 70px 56px; }
.footer-brand > p { margin-top: 19px; font-size: 11px; line-height: 1.9; color: var(--muted); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; }
.footer-column h3 { font-family: var(--font-body); font-size: 11px; font-weight: 650; margin-bottom: 16px; }
.footer-column > a { display: inline-flex; align-items: center; gap: 9px; min-height: 32px; font-size: 10px; color: #66705f; transition: color .2s; }
.footer-column > a:hover { color: var(--gold-dark); }
.footer-column .icon { width: 14px; height: 14px; }
.footer-column .footer-contact-link { color: var(--green); font-weight: 650; margin-top: 19px; gap: 17px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; align-items: center; gap: 32px; font-size: 9px; color: #626a5d; }
.footer-bottom > a { display: flex; align-items: center; gap: 10px; margin-left: auto; font-size: 8px; letter-spacing: .08em; min-height: 34px; }
.footer-bottom .icon { width: 15px; height: 15px; transform: rotate(-90deg); }
.privacy-button { border: 0; padding: 8px; background: transparent; font-size: 9px; }
.privacy-button:hover { text-decoration: underline; }
.floating-contact { position: fixed; z-index: 35; right: 25px; bottom: 24px; display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; color: white; background: var(--green); border: 1px solid #e0d0a265; border-radius: 50%; box-shadow: 0 4px 22px #11241835; transform: translateY(90px); visibility: hidden; opacity: 0; transition: transform .4s var(--ease),opacity .3s,visibility .3s,background .2s; }
.floating-contact.visible { transform: translateY(0); visibility: visible; opacity: 1; }
.floating-contact:hover { background: #3d5944; }
.floating-contact .icon { width: 25px; height: 25px; }
.floating-contact > span { position: absolute; right: 65px; width: max-content; background: var(--green); color: white; border-radius: 3px; padding: 7px 12px; font-size: 10px; visibility: hidden; opacity: 0; transform: translateX(5px); transition: opacity .2s, transform .2s, visibility .2s; }
.floating-contact:hover > span, .floating-contact:focus-visible > span { visibility: visible; opacity: 1; transform: none; }
.scroll-progress { position: fixed; bottom: 0; left: 0; width: 100%; height: 2px; z-index: 60; background: #aa8d50; transform: scaleX(0); transform-origin: left; pointer-events: none; }

/* Native dialogs keep keyboard navigation and focus contained. */
.content-dialog { width: min(540px,calc(100% - 36px)); max-height: min(88svh,850px); padding: 43px; background: var(--paper); color: var(--ink); border: 1px solid #d3d8c8; box-shadow: 0 25px 80px #071b2e20; border-radius: 6px; }
.content-dialog::backdrop { background: #13291fcc; backdrop-filter: blur(4px); }
.content-dialog[open] { animation: dialog-in .3s var(--ease); }
.dialog-close { position: absolute; top: 12px; right: 12px; border: 0; width: 40px; height: 40px; background: #e9ece1; color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.dialog-close:hover { background: #dce1d0; }
.dialog-close .icon { width: 20px; height: 20px; }
.dialog-service-icon { color: var(--gold-dark); margin-bottom: 22px; }
.content-dialog .eyebrow { font-size: 8px; color: #7b7158; margin-bottom: 15px; }
.content-dialog h2 { font-size: 35px; line-height: 1.2; margin-bottom: 21px; }
.content-dialog > p { font-size: 13px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.content-dialog > p a { color: var(--green); text-decoration: underline; }
.dialog-list { padding: 0; list-style: none; margin-block: 22px; }
.dialog-list li { display: flex; align-items: flex-start; gap: 12px; padding-block: 12px; border-top: 1px solid var(--line); font-size: 12px; }
.dialog-list .icon { width: 16px; height: 16px; color: #8d7848; margin-top: 2px; }
.content-dialog .dialog-note { background: var(--cream); padding: 12px 15px; font-size: 11px; }
.content-dialog > .button { width: 100%; }
.message-dialog { width: min(600px,calc(100% - 36px)); }
#prepared-message { width: 100%; resize: vertical; padding: 18px; font-size: 12px; line-height: 1.8; color: var(--green); border: 1px solid #d5daca; background: #eef0e7; margin: 0 0 20px; border-radius: 3px; min-height: 180px; }
.message-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.message-actions .button { flex: 1; padding: 13px 15px; font-size: 11px; gap: 10px; }
.content-dialog .copy-status { min-height: 20px; font-size: 11px; margin: 10px 0 0; color: var(--green); }

/* Motion is finite and content remains available without JavaScript. */
.motion-ready .reveal { opacity: 1; transform: none; transition: transform .3s var(--ease); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .field-map.reveal.is-visible { transform: rotate(1deg); }
.services-grid .reveal:nth-child(3n + 2), .process-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3n + 3), .process-grid .reveal:nth-child(3) { transition-delay: .16s; }
.process-grid .reveal:nth-child(4) { transition-delay: .24s; }
@keyframes enter-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes landscape-in { from { transform: scale(1.045); opacity: .5; } to { transform: scale(1); opacity: 1; } }
@keyframes survey-draw { to { stroke-dashoffset: 0; } }
@keyframes scroll-indicator { 0%,100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(5px); opacity: 1; } }
@keyframes filter-in { from { opacity: .3; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes answer-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }

@media (min-width: 1700px) { .hero-survey { right: -30px; width: 400px; } }
@media (max-width: 1200px) {
  .container { width: calc(100% - 80px); }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 11px; }
  .header-inner { gap: 18px; }
  .hero-survey { width: 280px; right: -18px; top: 19%; opacity: .5; }
  .hero-content { max-width: 800px; }
  .about-grid { gap: 70px; }
  .about-seal { right: -10px; padding: 23px; }
  .precision-grid, .contact-grid { gap: 55px; }
  .faq-grid { gap: 60px; }
  .service-card { padding: 27px 25px 20px; }
  .service-card h3 { font-size: 17px; }
  .expertise-inner { gap: 10px; }
  .expertise-inner > span { gap: 9px; font-size: 10px; }
  .footer-main { gap: 25px; }
}
@media (max-width: 1023px) {
  :root { --header-height: 82px; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-toggle { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: transparent; border: 1px solid var(--line); border-radius: 3px; }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: var(--green); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { display: flex; position: fixed; top: var(--header-height); left: 0; right: 0; height: calc(100dvh - var(--header-height)); background: var(--paper); padding: 32px 40px; flex-direction: column; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .25s,transform .3s var(--ease),visibility .3s; overflow-y: auto; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu > a { display: flex; align-items: center; justify-content: space-between; padding-block: 20px; border-bottom: 1px solid var(--line); font-family: var(--font-heading); font-size: 24px; letter-spacing: -.04em; }
  .mobile-menu > a > span { font-size: 10px; font-family: var(--font-body); color: var(--gold-dark); }
  .mobile-menu > a.nav-energy { color: var(--green); font-weight: 800; }
  .mobile-menu > p { margin-top: auto; padding-top: 35px; font-size: 11px; color: var(--muted); }
  .section-space { padding-block: 90px; }
  .hero { min-height: 680px; max-height: 760px; }
  .hero h1 { font-size: 72px; }
  .hero-survey { opacity: .3; top: 15%; width: 260px; }
  .hero-content { max-width: 730px; }
  .hero-actions { gap: 22px; }
  .about-grid { gap: 50px; }
  .about-image-wrap { aspect-ratio: .78; }
  .about-content h2 { font-size: 42px; }
  .about-content .lead { font-size: 15px; }
  .about-values { grid-template-columns: 1fr; }
  .about-seal { padding: 20px; gap: 13px; right: -20px; }
  .about-seal span { font-size: 11px; }
  .services-grid { gap: 12px; }
  .service-card { min-height: 340px; padding: 26px 22px 20px; }
  .service-card h3 { font-size: 16px; }
  .service-card > p { font-size: 11px; }
  .precision-grid { gap: 38px; }
  .precision-content h2 { font-size: 37px; }
  .map-controls { padding-inline: 12px; }
  .map-controls > span { font-size: 9px; }
  .map-toolbar { padding-inline: 15px; }
  .map-toolbar > span { font-size: 7px; }
  .map-center-label { left: 39%; padding: 10px; }
  .process-step { padding-right: 24px; }
  .process-step h3 { font-size: 14px; }
  .process-step > p { font-size: 11px; }
  .contact-grid { gap: 40px; }
  .contact-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1.3fr; }
  .footer-connect { grid-column: 1 / -1; flex-direction: row; gap: 30px; align-items: center; border-top: 1px solid var(--line); padding-top: 20px; }
  .footer-connect h3, .footer-connect .footer-contact-link { margin: 0; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 44px); }
  .section-space { padding-block: 75px; }
  .brand-mark { width: 52px; height: 39px; }
  .brand-type { font-size: 20px; }
  .brand-type small { font-size: 7px; }
  .header-cta { display: none; }
  .header-inner { gap: 16px; }
  .hero { height: 740px; min-height: 0; max-height: none; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg,#0c1f18d9,#12211861),linear-gradient(0deg,#0d1d17b3,transparent 45%); }
  .hero-content { width: 100%; min-width: 0; max-width: 100%; padding-bottom: 36px; }
  .hero-eyebrow { font-size: 8px; gap: 10px; margin-bottom: 26px; }
  .hero h1 { font-size: clamp(3rem,8.7vw,4.25rem); }
  .hero h1 em { display: block; }
  .hero-description { max-width: 380px; font-size: 14px; margin-top: 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 28px; }
  .hero-actions .button { min-height: 54px; font-size: 12px; gap: 25px; }
  .hero-secondary { font-size: 11px; min-height: 42px; }
  .hero-signature { margin-top: 17px; font-size: 9px; }
  .hero-survey { width: 250px; right: -45px; top: 27%; opacity: .22; }
  .hero-bottom { bottom: 20px; padding-top: 18px; }
  .hero-location { font-size: 7px; gap: 5px; }
  .location-rule { display: none; }
  .hero-location { font-size: 0; }
  .hero-location::after { content: 'PALMAS, TO'; font-size: 8px; }
  .hero-location .icon { width: 12px; }
  .scroll-cue { font-size: 7px; }
  .expertise-inner { grid-template-columns: 1fr 1fr; padding-block: 17px; gap: 17px 0; }
  .expertise-inner > span { justify-content: flex-start; padding-left: 8px; font-size: 9px; gap: 8px; }
  .expertise-inner > span:nth-child(3) { border-left: 0; }
  .expertise-inner > span:nth-child(even) { padding-left: 15px; }
  .expertise-inner .icon { width: 20px; height: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 54px; }
  .about-visual { width: calc(100% - 16px); margin-left: 12px; padding: 0 16px 25px 0; }
  .about-image-wrap { aspect-ratio: 1.1; }
  .about-seal { right: -4px; bottom: 0; padding: 22px 25px; }
  .about-seal span { font-size: 12px; }
  .image-side-note { left: -21px; }
  .about-content h2 { font-size: 45px; }
  .about-content .eyebrow { margin-bottom: 19px; }
  .about-content .lead { font-size: 17px; }
  .about-content > p:not(.lead) { font-size: 14px; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 12px 8px; }
  .about-values span { font-size: 11px; }
  h2 { font-size: 44px; }
  .eyebrow { font-size: 9px; letter-spacing: .14em; gap: 10px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 21px; margin-bottom: 28px; }
  .section-heading > p { max-width: 420px; font-size: 13px; padding: 0; }
  .section-heading .eyebrow { margin-bottom: 19px; }
  .service-filters { gap: 7px; padding-bottom: 24px; }
  .filter { min-height: 42px; padding: 9px 13px; font-size: 10px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { min-height: 328px; padding: 23px 20px 18px; }
  .service-card h3 { font-size: 17px; }
  .service-card > p { font-size: 12px; }
  .service-icon { width: 32px; height: 32px; }
  .service-number { font-size: 9px; }
  .service-link { font-size: 9px; }
  .services-note { margin-top: 25px; gap: 0; flex-direction: column; font-size: 11px; }
  .precision-grid { grid-template-columns: 1fr; gap: 40px; }
  .precision-content h2 { font-size: 40px; }
  .precision-content > p { font-size: 14px; max-width: 100%; }
  .precision-feature h3 { font-size: 14px; }
  .precision-feature p { font-size: 13px; max-width: 100%; }
  .field-map { width: calc(100% - 8px); margin-inline: auto; }
  .map-toolbar { padding: 16px; }
  .map-toolbar > span { font-size: 8px; }
  .map-controls { padding: 12px 15px; }
  .map-controls > span { font-size: 10px; }
  .map-center-label { left: 43%; }
  .map-canvas { aspect-ratio: 1.4; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px 22px; margin-top: 42px; }
  .process-step { padding-right: 10px; }
  .process-step h3 { font-size: 16px; }
  .process-step > p { font-size: 12px; }
  .step-number { margin-bottom: 23px; padding-bottom: 25px; }
  .step-tag { font-size: 7px; margin-top: 18px; }
  .process-bottom { flex-direction: column; align-items: flex-start; gap: 21px; margin-top: 37px; }
  .process-bottom > span { font-size: 12px; }
  .process-bottom .button { font-size: 12px; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-intro h2 { font-size: 44px; }
  .faq-intro > p { max-width: 100%; margin-top: 19px; }
  .faq-intro .text-link { margin-top: 12px; }
  .faq-list summary { font-size: 13px; padding-block: 23px; }
  .faq-answer { font-size: 13px; padding-right: 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .contact-content h2 { font-size: 54px; }
  .contact-content > p { max-width: 100%; font-size: 14px; }
  .contact-content .eyebrow { font-size: 8px; letter-spacing: .09em; }
  .contact-form-card { padding: 30px 25px; }
  .contact-form-card > p { font-size: 12px; }
  .form-field label { font-size: 12px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 15px; }
  .form-field input::placeholder, .form-field textarea::placeholder { font-size: 13px; }
  .form-privacy { font-size: 10px; }
  .contact-address address { font-size: 13px; }
  .instagram-handle { font-size: 11px; }
  .closing-landscape .container { padding-block: 48px; }
  .closing-landscape p { font-size: 37px; }
  .closing-landscape .eyebrow { font-size: 7px; }
  .closing-arrow { width: 51px; height: 51px; top: calc(50% - 15px); }
  .closing-arrow .icon { width: 25px; height: 25px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding-block: 45px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column h3 { font-size: 12px; margin-bottom: 10px; }
  .footer-column > a { font-size: 11px; min-height: 36px; }
  .footer-connect { gap: 15px; flex-wrap: wrap; }
  .footer-connect h3 { width: 100%; }
  .footer-connect .footer-contact-link { margin-left: auto; }
  .footer-bottom { flex-wrap: wrap; gap: 9px 13px; padding-block: 18px; }
  .footer-bottom > span { width: 100%; font-size: 9px; }
  .footer-bottom .privacy-button { padding-left: 0; }
  .floating-contact { right: 17px; bottom: 19px; width: 49px; height: 49px; }
  .content-dialog { padding: 45px 25px 28px; }
  .content-dialog h2 { font-size: 31px; }
}
@media (max-width: 460px) {
  .hero { height: 700px; }
  .hero h1 { font-size: clamp(2.85rem,11.8vw,3.5rem); line-height: 1.1; }
  .hero-description { max-width: 305px; font-size: 13px; }
  .hero-survey { width: 230px; top: 24%; right: -95px; opacity: .18; }
  .hero h1 em { letter-spacing: -.055em; }
  .hero-signature { font-size: 8px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 285px; padding: 29px 28px 21px; }
  .service-card h3 { font-size: 20px; }
  .service-card > p { font-size: 13px; margin-bottom: 21px; }
  .service-link { font-size: 11px; }
  .service-card-top { margin-bottom: 22px; }
  .service-icon { width: 36px; height: 36px; }
  .filter { font-size: 9px; padding-inline: 11px; }
  .about-content h2, h2, .faq-intro h2 { font-size: 40px; }
  .precision-content h2 { font-size: 36px; }
  .about-values { grid-template-columns: 1fr; }
  .map-toolbar > span { font-size: 6px; }
  .map-controls { gap: 6px; padding-inline: 11px; }
  .map-controls > span { font-size: 9px; }
  .map-layer { padding-inline: 9px; }
  .map-center-label { padding: 8px; left: 39%; }
  .map-center-label > span { font-size: 8px; }
  .map-center-label .icon { width: 16px; }
  .map-caption { font-size: 7px; }
  .map-north { top: 9px; right: 12px; }
  .process-grid { column-gap: 20px; }
  .process-step { padding-right: 0; }
  .process-step h3 { font-size: 14px; }
  .process-step > p { font-size: 11px; }
  .contact-form-card { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-content h2 { font-size: 50px; }
  .contact-direct { font-size: 11px; gap: 15px; padding-inline: 18px; }
  .closing-landscape p { font-size: 33px; }
  .closing-arrow { width: 44px; height: 44px; }
  .closing-landscape .eyebrow { font-size: 6px; }
  .footer-column > a { font-size: 10px; }
  .message-actions { flex-direction: column; }
}
/* Parallax uses overscanned images: their edges stay inside the photograph frame. */
.parallax-image { scale: 1.16; }
.parallax-active { will-change: translate; }
.photo-label { padding: 5px 9px; background: #203e32e6; border-radius: 2px; }
.motion-ready .about-visual .about-image-wrap { clip-path: inset(0); }
.motion-ready .about-visual.is-visible .about-image-wrap { clip-path: inset(0 0 0 0); }
.motion-ready .field-map .parcel-boundary { stroke-dasharray: 1200; stroke-dashoffset: 0; }
.motion-ready .field-map.is-visible .parcel-boundary { stroke-dashoffset: 0; }
.motion-ready .field-map .map-points { opacity: 1; transition: opacity .35s var(--ease); }
.motion-ready .field-map.is-visible .map-points { opacity: 1; }
.motion-ready .field-map.hide-points .map-points { opacity: 0; transition-delay: 0s; }
.motion-ready .process-step .step-number::before { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 1px; background: #d6b77c9c; transform: scaleX(0); transform-origin: left; transition: transform .9s .2s var(--ease); }
.motion-ready .process-step.is-visible .step-number::before { transform: scaleX(1); }

/* Small, immediate responses to touch, pointer, focus, and successful copying. */
.button { position: relative; overflow: hidden; isolation: isolate; transition: background .2s, color .2s, border-color .2s, transform .16s var(--ease), box-shadow .25s; }
.button:active:not(:focus-visible) { transform: translateY(1px) scale(.975); }
.filter, .map-layer, .carousel-arrow, .dialog-close { transition: background .2s, color .2s, border-color .2s, transform .16s var(--ease), opacity .2s; }
.filter:active:not(:focus-visible), .map-layer:active:not(:focus-visible), .carousel-arrow:active:not(:focus-visible), .dialog-close:active:not(:focus-visible) { transform: scale(.94); }
.service-icon { transition: transform .28s var(--ease); }
.form-field label { transition: color .2s, transform .2s var(--ease); transform-origin: left; }
.form-field:focus-within label { color: var(--green); transform: translateX(3px); }
.form-field input:user-valid { border-color: #839476; }
.copy-status:not(:empty) { animation: enter-up .24s var(--ease); }
.is-copied .icon { animation: confirm-copy .32s var(--ease); }
@keyframes confirm-copy { from { opacity: .3; transform: scale(.8) rotate(-15deg); } to { opacity: 1; transform: scale(1) rotate(0); } }

.carousel-controls { display: none; }
@media (hover: hover) and (pointer: fine) {
  .button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, #ffffff19 48%, transparent 76%); transform: translateX(-110%); transition: transform .55s var(--ease); pointer-events: none; }
  .button:hover::before { transform: translateX(110%); }
  .motion-ready .service-card.is-visible:hover { transform: translateY(-4px); }
  .service-card:hover .service-icon { transform: translateY(-3px) rotate(-5deg); }
  .carousel-arrow:not(:disabled):hover { background: var(--green); color: var(--paper); border-color: var(--green); }
  .service-filters .filter:not(.active):hover { transform: translateY(-2px); }
}
@media (hover: none) {
  .service-card:hover, .about-visual:hover img { transform: none; }
  .button:hover .icon:last-child, .service-link:hover > span, .text-link:hover .icon { transform: none; }
}

/* The menu expands from the header, while its control morphs into a close button. */
@media (max-width: 1023px) {
  .menu-toggle { transition: border-radius .28s var(--ease-drawer), background .22s, border-color .22s, transform .16s; }
  .menu-toggle span { transition: transform .3s var(--ease-drawer), background .2s; }
  .menu-toggle[aria-expanded="true"] { border-radius: 50%; background: var(--green); border-color: var(--green); }
  .menu-toggle[aria-expanded="true"] span { background: #f3e7c8; }
  .menu-toggle:active:not(:focus-visible) { transform: scale(.94); }
  .mobile-menu { opacity: 1; transform: none; clip-path: inset(0 0 100% 0 round 0 0 30% 30%); transition: clip-path .4s var(--ease-drawer), visibility .4s; }
  .mobile-menu.open { clip-path: inset(0 0 0 0 round 0 0 0 0); }
  .mobile-menu > a { opacity: 0; transform: translateY(14px); transition: opacity .16s, transform .22s var(--ease); }
  .mobile-menu.open > a { opacity: 1; transform: none; transition-duration: .28s; transition-delay: calc(var(--menu-index, 0) * 40ms + 65ms); }
  .mobile-menu > a:nth-child(2) { --menu-index: 1; }
  .mobile-menu > a:nth-child(3) { --menu-index: 2; }
  .mobile-menu > a:nth-child(4) { --menu-index: 3; }
  .mobile-menu > a:nth-child(5) { --menu-index: 4; }
  .mobile-menu > p { opacity: 0; transition: opacity .2s; }
  .mobile-menu.open > p { opacity: 1; transition-delay: .22s; }
  .mobile-menu a:hover { color: var(--gold-dark); }
  html[data-input="keyboard"] .mobile-menu, html[data-input="keyboard"] .mobile-menu > *, html[data-input="keyboard"] .menu-toggle, html[data-input="keyboard"] .menu-toggle span { transition: none; }
}

/* Swipe is native on touchscreens; scroll snap settles each card into place. */
@media (max-width: 760px) {
  .services-grid { display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-inline: 4px; overscroll-behavior-x: contain; scrollbar-width: none; padding: 8px 4px 16px; margin-inline: -4px; align-items: stretch; }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid > .service-card { flex: 0 0 min(360px, calc(100% - 30px)); scroll-snap-align: start; min-height: 310px; }
  .services-grid > .service-card:last-child { scroll-snap-align: end; }
  .services-grid.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; }
  .services-grid.is-dragging > .service-card { pointer-events: none; }
  .carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 2px; }
  .swipe-hint { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--muted); }
  .swipe-hint .icon { width: 19px; height: 19px; }
  .carousel-navigation { display: flex; align-items: center; gap: 7px; }
  #carousel-count { min-width: 49px; margin-right: 7px; font-size: 10px; font-variant-numeric: tabular-nums; color: #5a6657; }
  .carousel-arrow { display: flex; justify-content: center; align-items: center; width: 42px; height: 42px; border: 1px solid #b5bfaa; border-radius: 50%; background: transparent; color: var(--green); }
  .carousel-arrow:disabled { opacity: .35; cursor: default; }
  .carousel-arrow .icon { width: 19px; height: 19px; }
  #carousel-prev .icon { transform: rotate(180deg); }
  .carousel-meter { width: 100%; height: 2px; margin-top: 9px; background: #dce0d3; overflow: hidden; }
  .carousel-meter > span { display: block; width: 100%; height: 100%; transform: scaleX(.1667); transform-origin: left; background: #9b7d43; transition: transform .35s var(--ease); }
  .services-note { margin-top: 17px; }
  .motion-ready .services-grid .reveal { transition-delay: 0s; }
  html[data-input="keyboard"] .carousel-meter > span { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .survey-boundary { stroke-dashoffset: 0; }
  .hero-image { transform: none; }
  .parallax-image { scale: 1; translate: none !important; will-change: auto; }
  .motion-ready .about-visual .about-image-wrap { clip-path: none; }
  .motion-ready .field-map .parcel-boundary { stroke-dashoffset: 0; }
  .button::before { display: none; }
}
