:root {
  --red: #ef2029;
  --red-deep: #bd141d;
  --lime: #94c93d;
  --lime-bright: #b8e461;
  --green: #173c2a;
  --green-deep: #10291d;
  --ink: #172019;
  --cream: #f7f5ee;
  --paper: #fffefa;
  --muted: #667168;
  --line: rgba(23, 32, 25, .14);
  --header-h: 80px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(23, 32, 25, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; scroll-padding-top: var(--header-h); background: var(--green-deep); }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 11px 15px; color: #fff; background: var(--red); border-radius: 10px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 200; inset: 0 0 auto; height: var(--header-h); display: grid; grid-template-columns: minmax(235px, .75fr) auto minmax(280px, .75fr); align-items: center; gap: clamp(16px, 2.1vw, 38px); padding: 7px clamp(18px, 3vw, 52px); color: var(--ink); background: rgba(255, 254, 250, .92); border-bottom: 1px solid rgba(23,32,25,.09); box-shadow: 0 8px 32px rgba(23,32,25,.08); backdrop-filter: blur(18px); }
.brand { min-width: 0; display: flex; align-items: center; gap: 11px; }
.brand-logo { flex: 0 0 auto; width: 61px; height: 64px; padding: 4px; display: grid; place-items: center; background: #fff; border: 1px solid rgba(23,32,25,.1); border-radius: 14px; box-shadow: 0 5px 18px rgba(23,32,25,.08); }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { min-width: 0; display: grid; line-height: 1; }
.brand-name strong { font-size: 1rem; letter-spacing: .15em; }
.brand-name small { margin-top: 6px; color: var(--muted); font-size: .66rem; letter-spacing: .045em; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.3vw, 22px); font-size: .74rem; font-weight: 800; letter-spacing: .015em; }
.primary-nav a { position: relative; padding: 13px 0; white-space: nowrap; opacity: .7; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; border-radius: 10px; background: var(--red); transition: right .22s ease; }
.primary-nav a:hover, .primary-nav a.active { opacity: 1; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 10px; }
.language-switch { display: inline-flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.lang-button { width: 33px; height: 30px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-size: .68rem; font-weight: 900; }
.lang-button.active { color: #fff; background: var(--green); }
.header-call { min-height: 46px; padding: 9px 15px; display: inline-flex; align-items: center; gap: 7px; color: #fff; background: var(--red); border-radius: 999px; box-shadow: 0 10px 25px rgba(239,32,41,.22); white-space: nowrap; }
.header-call span { font-size: .66rem; opacity: .82; }
.header-call strong { font-size: .82rem; }
.menu-button { display: none; width: 43px; height: 43px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; border-radius: 4px; transition: transform .2s, opacity .2s; }
.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button span:nth-child(2) { opacity: 0; }
.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.snap-panel { position: relative; min-height: 100svh; scroll-snap-align: start; scroll-snap-stop: always; overflow: hidden; }
.section-shell { width: min(1320px, calc(100% - 9vw)); min-height: 100svh; margin: 0 auto; padding: calc(var(--header-h) + 38px) 0 54px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 17px; color: var(--lime-bright); font-size: .71rem; font-weight: 900; letter-spacing: .19em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.red { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 21px; font-size: clamp(3.1rem, 5.8vw, 6.7rem); font-weight: 850; line-height: .91; letter-spacing: -.064em; }
h1 em, h2 em, h3 em { color: var(--red); font-style: normal; font-weight: 500; }
.button { min-height: 52px; padding: 13px 20px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 999px; font-size: .85rem; font-weight: 850; text-align: center; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #142018; background: var(--lime-bright); box-shadow: 0 12px 30px rgba(148,201,61,.25); }
.button-whatsapp { color: #fff; background: #168c52; box-shadow: 0 12px 30px rgba(22,140,82,.22); }
.button-outline { color: var(--ink); border-color: rgba(23,32,25,.32); background: rgba(255,255,255,.68); backdrop-filter: blur(8px); }
.button-outline-dark { color: var(--ink); border-color: rgba(23,32,25,.3); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green); font-weight: 850; }

.section-dots { position: fixed; z-index: 120; right: 12px; top: 50%; display: grid; gap: 10px; transform: translateY(-50%); }
.section-dots a { position: relative; width: 13px; height: 13px; border: 1px solid rgba(23,32,25,.32); border-radius: 50%; background: rgba(255,255,255,.72); box-shadow: 0 2px 9px rgba(0,0,0,.08); }
.section-dots a.active { border-color: var(--red); background: var(--red); transform: scale(1.12); }
.section-dots a span { position: absolute; right: 19px; top: 50%; padding: 5px 8px; color: #fff; background: var(--green-deep); border-radius: 6px; font-size: .62rem; font-weight: 800; white-space: nowrap; opacity: 0; pointer-events: none; transform: translate(7px,-50%); transition: .2s; }
.section-dots a:hover span, .section-dots a:focus-visible span { opacity: 1; transform: translate(0,-50%); }

.scroll-cue { position: absolute; z-index: 12; right: 4vw; bottom: 20px; display: flex; align-items: center; gap: 10px; color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue i { width: 33px; height: 33px; border: 1px solid currentColor; border-radius: 50%; }
.scroll-cue i::after { content: "↓"; width: 100%; height: 100%; display: grid; place-items: center; font-style: normal; animation: cue 1.7s infinite; }
.dark-cue { color: var(--green); }
@keyframes cue { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* Hero */
.hero { color: var(--ink); background: #fff; }
.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; background-image: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 33%, rgba(255,255,255,.45) 56%, rgba(255,255,255,.03) 78%), var(--hero-image); background-size: cover; background-position: center; transition: opacity .7s ease, visibility .7s; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-copy { position: relative; z-index: 3; width: min(700px, 50vw); height: 100%; padding: calc(var(--header-h) + 8vh) 0 168px clamp(28px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1, .hero-copy h2 { font-size: clamp(3.3rem, 6.15vw, 7.2rem); }
.hero-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 29px; color: #526058; font-size: clamp(.94rem, 1.2vw, 1.12rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-brandmark { position: absolute; z-index: 5; top: calc(var(--header-h) + 26px); right: 4.3vw; min-width: 172px; padding: 8px 13px 8px 8px; display: flex; align-items: center; gap: 9px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid rgba(23,32,25,.12); border-radius: 18px; box-shadow: var(--shadow); }
.hero-brandmark img { width: 58px; height: 61px; object-fit: contain; }
.hero-brandmark span { font-size: .82rem; font-weight: 950; letter-spacing: .12em; line-height: 1; }
.hero-brandmark small { font-size: .49rem; letter-spacing: .08em; }
.slider-controls { position: absolute; z-index: 8; left: clamp(28px, 6vw, 100px); bottom: 129px; display: flex; align-items: center; gap: 13px; }
.slider-dots { display: flex; align-items: center; gap: 7px; }
.slider-dots button { width: 34px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(23,32,25,.24); cursor: pointer; transition: width .2s, background .2s; }
.slider-dots button.active { width: 56px; background: var(--red); }
.slider-toggle { padding: 5px 8px; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.hero-proof { position: absolute; z-index: 9; inset: auto 4.5vw 22px; min-height: 88px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; color: #fff; background: rgba(16,41,29,.96); border-radius: 21px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-proof span { min-width: 0; padding: 12px clamp(15px,2.2vw,30px); display: grid; gap: 5px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-proof span:last-child { border-right: 0; }
.hero-proof b { font-size: clamp(.77rem,1vw,.98rem); }
.hero-proof small { color: rgba(255,255,255,.64); font-size: .68rem; }
.hero .scroll-cue { bottom: 110px; }

/* Services */
.services-panel { background: var(--cream); }
.services-panel::before, .services-panel::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.services-panel::before { width: 33vw; height: 33vw; right: -16vw; top: 14%; border: 1px solid rgba(239,32,41,.12); box-shadow: inset 0 0 0 5vw var(--cream), inset 0 0 0 calc(5vw + 1px) rgba(148,201,61,.18); }
.services-panel::after { width: 18vw; height: 18vw; left: -9vw; bottom: -7vw; background: rgba(148,201,61,.12); }
.services-shell { position: relative; z-index: 2; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,6vw,95px); align-items: end; margin-bottom: 20px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.65rem,4.5vw,5.5rem); }
.heading-side { padding-bottom: 6px; }
.heading-side p { margin-bottom: 13px; color: var(--muted); line-height: 1.62; }
.text-button { padding: 5px 0; display: inline-flex; gap: 10px; border: 0; color: var(--red); background: transparent; cursor: pointer; font-weight: 850; }
.property-strip { display: flex; gap: 7px; margin-bottom: 15px; overflow-x: auto; scrollbar-width: none; }
.property-strip::-webkit-scrollbar { display: none; }
.property-strip span { flex: 0 0 auto; padding: 8px 11px; border: 1px solid rgba(23,32,25,.12); border-radius: 999px; color: #4f5d53; background: rgba(255,255,255,.72); font-size: .68rem; font-weight: 780; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.service-card { min-height: 164px; padding: 20px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto 1fr auto; column-gap: 13px; align-content: start; border: 1px solid rgba(23,32,25,.09); border-radius: var(--radius-md); transition: transform .22s, box-shadow .22s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(23,32,25,.09); }
.service-icon { grid-row: 1 / 3; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--green); font-size: 1.15rem; font-weight: 900; }
.service-card h3 { grid-column: 2; margin: 5px 0 12px; font-size: 1rem; }
.service-card p { grid-column: 1 / -1; margin: 0; color: #536158; font-size: .81rem; line-height: 1.52; }
.service-card a { grid-column: 1 / -1; margin-top: 12px; color: var(--green); font-size: .75rem; font-weight: 900; }
.tone-peach { background: #ffe8db; }
.tone-lilac { background: #eee8ff; }
.tone-sky { background: #e0f2f6; }
.tone-lime { background: #e5f5bf; }
.tone-sand { background: #f5ead1; }
.tone-rose { background: #ffe5e7; }
.featured-card { border-color: rgba(108,157,35,.35); }
.scope-note { margin: 11px 0 0; color: var(--muted); font-size: .67rem; }

/* Termites */
.termite-panel { display: grid; grid-template-columns: 1.07fr .93fr; background: #f3f7eb; }
.termite-image { min-height: 100svh; background: url('assets/termite-new-build-branded-v2.webp') 58% center / cover no-repeat; }
.termite-copy { position: relative; z-index: 2; padding: calc(var(--header-h) + 36px) clamp(34px,5vw,82px) 52px clamp(34px,4.5vw,72px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(100deg,rgba(243,247,235,.72),#f3f7eb 13%); }
.termite-copy h2 { font-size: clamp(3rem,4.7vw,5.7rem); }
.termite-lead { max-width: 680px; color: var(--muted); font-size: .95rem; line-height: 1.62; }
.brand-chip { align-self: flex-start; margin-bottom: 20px; padding: 6px 13px 6px 6px; display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid rgba(23,32,25,.12); border-radius: 15px; box-shadow: 0 10px 25px rgba(23,32,25,.08); }
.brand-chip img { width: 42px; height: 44px; object-fit: contain; }
.brand-chip span { color: var(--green); font-size: .63rem; font-weight: 950; letter-spacing: .1em; }
.termite-steps { margin: 10px 0 25px; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; list-style: none; }
.termite-steps li { min-height: 123px; padding: 13px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(23,32,25,.11); border-radius: 16px; background: rgba(255,255,255,.68); }
.termite-steps li > b { color: var(--red); font-size: .68rem; }
.termite-steps span { display: grid; gap: 4px; }
.termite-steps strong { font-size: .77rem; }
.termite-steps small { color: var(--muted); font-size: .65rem; line-height: 1.4; }
.termite-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }

/* Pest alert */
.alert-panel { color: #fff; background: var(--green-deep); }
.alert-panel::before { content: "?"; position: absolute; right: -2vw; top: -9vw; color: rgba(184,228,97,.05); font-size: min(44vw,680px); font-weight: 950; line-height: 1; pointer-events: none; }
.alert-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(35px,6vw,90px); }
.alert-intro h2 { font-size: clamp(3.2rem,5.1vw,6.1rem); }
.alert-intro h2 em { color: var(--lime-bright); }
.alert-intro > p:not(.eyebrow) { color: rgba(255,255,255,.66); line-height: 1.65; }
.urgency-note { margin-top: 27px; padding: 15px; display: grid; grid-template-columns: 38px 1fr; gap: 12px; border: 1px solid rgba(184,228,97,.26); border-radius: 16px; background: rgba(184,228,97,.08); }
.urgency-note > b { width: 35px; height: 35px; display: grid; place-items: center; color: var(--green-deep); background: var(--lime-bright); border-radius: 50%; }
.urgency-note p { margin: 0; display: grid; gap: 4px; }
.urgency-note strong { font-size: .78rem; }
.urgency-note span { color: rgba(255,255,255,.62); font-size: .72rem; line-height: 1.5; }
.alert-tool { padding: clamp(20px,2.5vw,35px); color: var(--ink); background: var(--paper); border-radius: var(--radius-lg); box-shadow: 0 32px 85px rgba(0,0,0,.24); }
.tool-label { margin-bottom: 13px; color: var(--red); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.signal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.signal-grid button { min-height: 110px; padding: 13px; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; column-gap: 9px; text-align: left; border: 1px solid rgba(23,32,25,.12); border-radius: 14px; background: #fff; cursor: pointer; transition: transform .18s, border-color .18s, background .18s; }
.signal-grid button:hover, .signal-grid button.selected { transform: translateY(-2px); border-color: var(--lime); background: #eff8dc; }
.signal-grid button > span { grid-row: 1/3; width: 31px; height: 31px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 9px; font-weight: 900; }
.signal-grid button b { align-self: end; font-size: .74rem; line-height: 1.2; }
.signal-grid button small { color: var(--muted); font-size: .59rem; line-height: 1.35; }
.alert-result { margin-top: 10px; padding: 15px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; border-radius: 17px; background: #eaf4d4; }
.alert-result > div { display: grid; }
.alert-result small { color: #597334; font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.alert-result strong { margin: 4px 0; font-size: .86rem; }
.alert-result p { margin: 0; color: #536158; font-size: .69rem; line-height: 1.4; }
.alert-result .button { min-height: 44px; padding: 11px 14px; font-size: .72rem; }
.alert-panel .scroll-cue { color: var(--lime-bright); }

/* Process */
.process-panel { display: grid; grid-template-columns: 1.06fr .94fr; color: #fff; background: var(--green-deep); }
.process-gallery { position: relative; min-height: 100svh; background: #e9e5dc; overflow: hidden; }
.process-gallery figure { margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.process-gallery img { width: 100%; height: 100%; object-fit: cover; }
.process-main-photo { position: absolute; inset: var(--header-h) 13% 0 0; }
.process-main-photo img { object-position: 51% center; }
.process-small-photo { position: absolute; z-index: 2; width: 35%; height: 29%; border: 6px solid #fff; border-radius: 18px; }
.process-small-photo.one { right: 4%; top: 19%; }
.process-small-photo.two { right: 5%; bottom: 10%; }
.real-work-label { position: absolute; z-index: 3; left: 5%; bottom: 5%; width: 142px; aspect-ratio: 1; padding: 15px; display: grid; place-content: center; text-align: center; color: var(--ink); background: var(--lime-bright); border-radius: 50%; transform: rotate(-7deg); box-shadow: var(--shadow); }
.real-work-label b { font-size: 1.05rem; }
.real-work-label small { margin-top: 4px; font-size: .53rem; line-height: 1.3; }
.process-copy { padding: calc(var(--header-h) + 34px) clamp(35px,5vw,86px) 52px; display: flex; flex-direction: column; justify-content: center; }
.process-copy h2 { font-size: clamp(3rem,4.7vw,5.6rem); }
.process-copy h2 em { color: var(--lime-bright); }
.steps { margin: 0 0 15px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 37px 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.14); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.steps li > span { width: 31px; height: 31px; display: grid; place-items: center; color: var(--green-deep); background: var(--lime-bright); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.steps h3 { margin: 1px 0 3px; font-size: .79rem; }
.steps p { margin: 0; color: rgba(255,255,255,.58); font-size: .69rem; line-height: 1.4; }
.before-visit { padding: 12px 14px; display: grid; grid-template-columns: auto 1fr; gap: 11px; border: 1px solid rgba(184,228,97,.28); border-radius: 13px; background: rgba(184,228,97,.08); }
.before-visit b { color: var(--lime-bright); font-size: .66rem; text-transform: uppercase; }
.before-visit span { color: rgba(255,255,255,.61); font-size: .63rem; line-height: 1.45; }
.process-panel .scroll-cue { color: var(--lime-bright); }

/* Offers */
.offers-panel { background: #f0efe8; }
.offers-panel::before { content: "ANYTIME"; position: absolute; left: -1vw; bottom: -3vw; color: rgba(23,32,25,.035); font-size: clamp(8rem,20vw,22rem); font-weight: 950; letter-spacing: -.08em; pointer-events: none; }
.offers-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .66fr 1.34fr; align-items: center; gap: clamp(32px,5vw,75px); }
.offers-intro h2 { font-size: clamp(3rem,4.6vw,5.5rem); }
.offers-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.offer-facts { display: flex; gap: 9px; margin-top: 22px; }
.offer-facts span { min-width: 112px; padding: 12px; display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.6); }
.offer-facts b { color: var(--red); font-size: 1.15rem; }
.offer-facts small { color: var(--muted); font-size: .61rem; }
.campaign-slider { position: relative; aspect-ratio: 16 / 9.4; overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.campaign-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; background-image: var(--campaign-image); background-size: cover; background-position: center; transition: opacity .68s ease, visibility .68s; }
.campaign-slide.active { opacity: 1; visibility: visible; }
.campaign-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 40%, rgba(255,255,255,.43) 65%, rgba(255,255,255,.03) 85%); }
.campaign-brand { position: absolute; z-index: 3; top: 20px; right: 20px; min-width: 155px; padding: 7px 11px 7px 7px; display: flex; align-items: center; gap: 8px; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(23,32,25,.12); border-radius: 16px; box-shadow: 0 14px 35px rgba(23,32,25,.12); }
.campaign-brand img { width: 52px; height: 55px; object-fit: contain; }
.campaign-brand > span { font-size: .68rem; font-weight: 950; letter-spacing: .11em; line-height: 1; }
.campaign-brand small { font-size: .43rem; }
.campaign-copy { position: relative; z-index: 2; width: 60%; height: 100%; padding: clamp(28px,5vw,68px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.campaign-copy > small { margin-bottom: 12px; color: var(--red); font-size: .62rem; font-weight: 900; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.campaign-copy h3 { margin: 0 0 14px; font-size: clamp(2.3rem,4vw,4.8rem); line-height: .89; letter-spacing: -.06em; }
.campaign-copy h3 em { color: var(--red); }
.campaign-copy p { max-width: 430px; margin-bottom: 17px; color: #536158; font-size: .77rem; line-height: 1.5; }
.campaign-copy > a { padding: 10px 15px; color: #fff; background: var(--green); border-radius: 999px; font-size: .72rem; font-weight: 900; }
.campaign-controls { left: auto; right: 20px; bottom: 18px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: 0 8px 24px rgba(23,32,25,.1); }

/* Vacancy */
.vacancy-panel { background: #fff8f5; }
.vacancy-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.vacancy-shape.one { width: 32vw; height: 32vw; right: -14vw; top: -13vw; background: rgba(239,32,41,.08); }
.vacancy-shape.two { width: 24vw; height: 24vw; left: -12vw; bottom: -11vw; background: rgba(148,201,61,.15); }
.vacancy-shell { position: relative; z-index: 2; width: min(1240px,calc(100% - 10vw)); min-height: 100svh; margin: 0 auto; padding: calc(var(--header-h) + 36px) 0 52px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(38px,7vw,100px); }
.vacancy-poster { position: relative; min-height: 570px; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: #fff; background: var(--red); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.vacancy-poster::before { content: ""; position: absolute; width: 360px; height: 360px; right: -170px; top: -160px; border: 55px solid rgba(255,255,255,.12); border-radius: 50%; }
.poster-brand { position: absolute; z-index: 2; top: 25px; left: 25px; min-width: 220px; padding: 11px 16px 11px 10px; display: flex; align-items: center; gap: 11px; color: var(--ink); background: #fff; border-radius: 20px; box-shadow: 0 14px 38px rgba(0,0,0,.14); }
.poster-brand img { width: 74px; height: 78px; object-fit: contain; }
.poster-brand span { font-size: .93rem; font-weight: 950; letter-spacing: .13em; line-height: 1; }
.poster-brand small { font-size: .49rem; }
.vacancy-poster > p { margin: 0 0 15px; color: #fff49a; font-size: .72rem; font-weight: 950; letter-spacing: .2em; }
.vacancy-poster h2 { margin-bottom: 19px; font-size: clamp(3rem,4.8vw,5.4rem); }
.vacancy-poster h2 em { color: var(--lime-bright); }
.vacancy-poster > strong { max-width: 390px; font-size: .78rem; line-height: 1.5; opacity: .76; }
.vacancy-copy h2 { font-size: clamp(3.1rem,4.8vw,5.7rem); }
.vacancy-lead { color: var(--muted); line-height: 1.65; }
.vacancy-list { margin: 19px 0 24px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; list-style: none; }
.vacancy-list li { min-height: 70px; padding: 12px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.vacancy-list b { flex: 0 0 auto; width: 29px; height: 29px; display: grid; place-items: center; color: var(--green); background: #e8f5ce; border-radius: 50%; }
.vacancy-list span { font-size: .74rem; line-height: 1.4; }
.vacancy-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.vacancy-source { margin-left: 3px; color: var(--red); font-size: .72rem; font-weight: 850; }

/* Contact */
.contact-panel { color: #fff; background: var(--green-deep); }
.contact-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.contact-orbit.one { width: 48vw; height: 48vw; right: -20vw; top: -20vw; border: 1px solid rgba(184,228,97,.15); box-shadow: inset 0 0 0 7vw var(--green-deep), inset 0 0 0 calc(7vw + 1px) rgba(239,32,41,.14); }
.contact-orbit.two { width: 20vw; height: 20vw; left: -8vw; bottom: -8vw; background: rgba(239,32,41,.1); }
.contact-shell { position: relative; z-index: 2; width: min(1260px,calc(100% - 9vw)); min-height: calc(100svh - 51px); margin: 0 auto; padding: calc(var(--header-h) + 42px) 0 65px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(38px,7vw,100px); }
.contact-copy h2 { font-size: clamp(3.2rem,5.2vw,6.3rem); }
.contact-copy h2 em { color: var(--lime-bright); }
.contact-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.64); line-height: 1.65; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 25px; }
.contact-card { min-height: 111px; padding: 15px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; text-align: left; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.06); cursor: pointer; backdrop-filter: blur(10px); transition: transform .2s, border-color .2s; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--lime-bright); }
.contact-card small { color: var(--lime-bright); font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { font-size: .83rem; }
.contact-card > span { color: rgba(255,255,255,.53); font-size: .61rem; }
.call-card { color: var(--green-deep); background: var(--lime-bright); border-color: var(--lime-bright); }
.call-card small, .call-card > span { color: rgba(16,41,29,.62); }
.whatsapp-card { background: #168c52; border-color: #168c52; }
.email-card { width: 100%; font: inherit; }
.contact-details { padding: 24px; color: var(--ink); background: #fff; border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(0,0,0,.22); }
.contact-logo { padding-bottom: 15px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.contact-logo img { width: 80px; height: 84px; object-fit: contain; }
.contact-logo div { display: grid; gap: 5px; }
.contact-logo b { font-size: 1.05rem; letter-spacing: .14em; }
.contact-logo span { color: var(--muted); font-size: .68rem; }
.coverage-card { margin: 14px 0; padding: 13px; background: #eff7df; border-radius: 13px; }
.coverage-card b { color: var(--green); font-size: .75rem; }
.coverage-card p { margin: 5px 0 0; color: #536158; font-size: .68rem; line-height: 1.45; }
.contact-details dl { margin: 0; }
.contact-details dl > div { padding: 10px 0; display: grid; grid-template-columns: 110px 1fr; gap: 12px; border-top: 1px solid var(--line); }
.contact-details dt { color: var(--red); font-size: .59rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.contact-details dd { margin: 0; color: #536158; font-size: .68rem; line-height: 1.45; }
.contact-mini-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.contact-mini-links a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: .64rem; font-weight: 850; }
.contact-panel footer { position: absolute; z-index: 4; inset: auto 4.5vw 0; height: 51px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: .64rem; }

/* Fixed utilities */
.page-nav { position: fixed; z-index: 115; left: 16px; bottom: 18px; display: flex; overflow: hidden; color: #fff; background: rgba(16,41,29,.93); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.page-nav button { height: 43px; padding: 0 11px; display: flex; align-items: center; gap: 6px; border: 0; border-right: 1px solid rgba(255,255,255,.12); color: inherit; background: transparent; cursor: pointer; }
.page-nav button:last-child { border-right: 0; }
.page-nav small { font-size: .56rem; font-weight: 850; text-transform: uppercase; }
.floating-actions { position: fixed; z-index: 118; right: 17px; bottom: 18px; display: flex; gap: 8px; }
.floating-actions a { min-width: 57px; height: 48px; padding: 0 11px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; border-radius: 999px; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.floating-actions span { font-size: .78rem; font-weight: 950; line-height: 1; }
.floating-actions b { margin-top: 3px; font-size: .5rem; text-transform: uppercase; }
.float-call { background: var(--red); }
.float-whatsapp { background: #168c52; }

.flyer-dialog { width: min(1100px,92vw); max-height: 90svh; padding: 0; border: 0; border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.flyer-dialog::backdrop { background: rgba(16,41,29,.82); backdrop-filter: blur(7px); }
.dialog-head { height: 52px; padding: 0 13px 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.dialog-head strong { font-size: .78rem; }
.dialog-head button { width: 35px; height: 35px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #eee; cursor: pointer; font-size: 1.3rem; }
.flyer-dialog img { width: 100%; height: auto; max-height: calc(90svh - 52px); object-fit: contain; background: #fff; }
.noscript { position: fixed; z-index: 999; inset: auto 10px 10px; padding: 10px; color: #fff; background: var(--red); border-radius: 8px; text-align: center; }

@media (max-width: 1450px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { position: fixed; inset: var(--header-h) 0 auto; max-height: calc(100svh - var(--header-h)); padding: 20px 5vw 26px; display: none; grid-template-columns: 1fr 1fr; gap: 0 25px; overflow-y: auto; background: rgba(255,254,250,.98); border-top: 1px solid var(--line); box-shadow: 0 20px 45px rgba(23,32,25,.15); }
  .primary-nav.open { display: grid; }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header-tools { grid-column: 2; }
  .menu-button { display: block; }
  .hero-copy { width: min(710px,58vw); }
}

@media (max-width: 980px) {
  html { scroll-snap-type: y proximity; }
  .section-dots { display: none; }
  .section-shell { width: calc(100% - 40px); padding: calc(var(--header-h) + 30px) 0 58px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .termite-panel { grid-template-columns: 1fr; }
  .termite-image { min-height: 44svh; background-position: 63% center; }
  .termite-copy { min-height: 56svh; padding: 35px 28px 65px; background: #f3f7eb; }
  .alert-shell { grid-template-columns: 1fr; gap: 22px; }
  .alert-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; align-items: end; }
  .alert-intro .eyebrow, .alert-intro h2 { grid-column: 1; }
  .alert-intro > p:not(.eyebrow), .alert-intro .urgency-note { grid-column: 2; }
  .alert-intro > p:not(.eyebrow) { grid-row: 2; }
  .urgency-note { margin-top: 8px; }
  .process-panel { grid-template-columns: 1fr; }
  .process-gallery { min-height: 52svh; }
  .process-main-photo { inset: 0 16% 0 0; }
  .process-copy { min-height: 58svh; padding: 42px 25px 66px; }
  .offers-shell { grid-template-columns: 1fr; gap: 20px; }
  .offers-intro { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 25px; }
  .offers-intro .eyebrow, .offers-intro h2 { grid-column: 1; }
  .offers-intro > p:not(.eyebrow), .offer-facts { grid-column: 2; }
  .offers-intro > p:not(.eyebrow) { grid-row: 2; }
  .offer-facts { margin-top: 0; }
  .campaign-slider { width: min(900px,100%); justify-self: center; }
  .vacancy-shell { width: calc(100% - 44px); grid-template-columns: .9fr 1.1fr; gap: 30px; }
  .vacancy-poster { min-height: 520px; padding: 26px; }
  .vacancy-list { grid-template-columns: 1fr; }
  .contact-shell { width: calc(100% - 42px); grid-template-columns: 1fr; gap: 25px; align-content: center; }
  .contact-copy h2 { max-width: 760px; }
  .contact-details { max-width: 720px; }
}

@media (max-width: 700px) {
  :root { --header-h: 69px; }
  .site-header { padding: 5px 12px; }
  .brand { gap: 8px; }
  .brand-logo { width: 52px; height: 55px; border-radius: 12px; }
  .brand-name strong { font-size: .82rem; }
  .brand-name small { display: none; }
  .header-call { display: none; }
  .language-switch { margin-right: 1px; }
  .primary-nav { grid-template-columns: 1fr; padding: 12px 20px 23px; }
  .primary-nav a { padding: 11px 0; }
  .snap-panel { min-height: 100svh; }
  .scroll-cue { display: none; }
  h1, h2 { letter-spacing: -.055em; }
  .hero-slide { background-position: 65% center; background-image: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 52%, rgba(255,255,255,.56) 76%, rgba(255,255,255,.18) 100%), var(--hero-image); }
  .hero-copy { width: 100%; padding: calc(var(--header-h) + 54px) 20px 150px; justify-content: flex-end; }
  .hero-copy h1, .hero-copy h2 { max-width: 640px; font-size: clamp(3.05rem,13vw,5.1rem); }
  .hero-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 20px; font-size: .88rem; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 47px; padding: 11px 13px; font-size: .72rem; }
  .hero-brandmark { top: calc(var(--header-h) + 13px); right: 12px; min-width: auto; padding: 5px; border-radius: 12px; }
  .hero-brandmark img { width: 42px; height: 44px; }
  .hero-brandmark span { display: none; }
  .slider-controls { left: 20px; bottom: 111px; }
  .hero-proof { inset: auto 10px 9px; min-height: 83px; border-radius: 17px; }
  .hero-proof span { padding: 9px; text-align: center; }
  .hero-proof b { font-size: .63rem; line-height: 1.2; }
  .hero-proof small { font-size: .5rem; line-height: 1.2; }
  .section-shell { width: calc(100% - 28px); padding: calc(var(--header-h) + 25px) 0 42px; }
  .section-heading h2 { font-size: clamp(2.8rem,12vw,4.2rem); }
  .heading-side p { font-size: .84rem; }
  .property-strip { margin-right: -14px; }
  .service-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .service-grid::-webkit-scrollbar { display: none; }
  .service-card { flex: 0 0 78vw; min-height: 220px; padding: 21px; scroll-snap-align: center; }
  .service-card h3 { font-size: 1.12rem; }
  .service-card p { font-size: .83rem; }
  .scope-note { font-size: .59rem; }
  .termite-image { min-height: 39svh; }
  .termite-copy { padding: 28px 18px 55px; }
  .brand-chip { margin-bottom: 13px; }
  .termite-copy h2 { font-size: clamp(2.8rem,12vw,4.4rem); }
  .termite-lead { font-size: .83rem; }
  .termite-steps { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .termite-steps li { flex: 0 0 62vw; scroll-snap-align: center; }
  .termite-actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .alert-intro { display: block; }
  .alert-intro h2 { font-size: clamp(3rem,13vw,4.6rem); }
  .alert-intro > p:not(.eyebrow) { font-size: .83rem; }
  .alert-tool { padding: 14px; border-radius: 21px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid button { min-height: 105px; padding: 10px; }
  .alert-result { grid-template-columns: 1fr; }
  .alert-result .button { width: 100%; }
  .process-gallery { min-height: 48svh; }
  .process-main-photo { inset: 0 10% 0 0; }
  .process-small-photo { width: 32%; height: 29%; border-width: 4px; }
  .real-work-label { width: 105px; }
  .process-copy { padding: 32px 18px 50px; }
  .process-copy h2 { font-size: clamp(2.9rem,12vw,4.4rem); }
  .steps li { padding: 9px 0; }
  .before-visit { grid-template-columns: 1fr; }
  .offers-intro { display: block; }
  .offers-intro h2 { font-size: clamp(2.9rem,12vw,4.4rem); }
  .offer-facts { margin-top: 15px; }
  .campaign-slider { aspect-ratio: .85 / 1; }
  .campaign-slide { background-position: 67% center; }
  .campaign-shade { background: linear-gradient(0deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 54%,rgba(255,255,255,.25) 100%); }
  .campaign-brand { top: 12px; right: 12px; min-width: auto; padding: 5px; border-radius: 12px; }
  .campaign-brand img { width: 46px; height: 48px; }
  .campaign-brand > span { display: none; }
  .campaign-copy { width: 100%; padding: 25px 20px 80px; justify-content: flex-end; }
  .campaign-copy h3 { font-size: clamp(2.7rem,12vw,4rem); }
  .campaign-copy p { font-size: .73rem; }
  .campaign-controls { right: 13px; bottom: 13px; }
  .vacancy-shell { width: calc(100% - 28px); padding: calc(var(--header-h) + 24px) 0 52px; grid-template-columns: 1fr; gap: 28px; }
  .vacancy-poster { min-height: 470px; padding: 22px; }
  .poster-brand { top: 17px; left: 17px; min-width: 195px; }
  .poster-brand img { width: 62px; height: 66px; }
  .vacancy-poster h2 { font-size: clamp(3.1rem,13vw,4.6rem); }
  .vacancy-copy h2 { font-size: clamp(3rem,12vw,4.4rem); }
  .vacancy-actions { align-items: stretch; flex-direction: column; }
  .vacancy-source { padding: 10px 0; }
  .contact-shell { width: calc(100% - 28px); padding: calc(var(--header-h) + 27px) 0 76px; }
  .contact-copy h2 { font-size: clamp(3rem,13vw,4.7rem); }
  .contact-copy > p:not(.eyebrow) { font-size: .83rem; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-card { min-height: 92px; }
  .contact-details { padding: 17px; border-radius: 21px; }
  .contact-details dl > div { grid-template-columns: 90px 1fr; }
  .contact-panel footer { position: relative; inset: auto; width: calc(100% - 28px); height: auto; min-height: 54px; margin: 0 auto; gap: 12px; }
  .page-nav { left: 8px; bottom: 9px; }
  .page-nav button { width: 39px; height: 39px; justify-content: center; padding: 0; }
  .page-nav small { display: none; }
  .floating-actions { right: 8px; bottom: 9px; }
  .floating-actions a { min-width: 47px; height: 41px; padding: 0 8px; }
  .floating-actions b { display: none; }
}

@media (max-width: 420px) {
  .brand-name { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 155px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.72rem,13.2vw,3.7rem); }
  .hero-proof small { display: none; }
  .slider-controls { bottom: 100px; }
  .signal-grid button { grid-template-columns: 28px 1fr; }
  .signal-grid button > span { width: 28px; height: 28px; }
  .contact-details dl > div { grid-template-columns: 1fr; gap: 4px; }
}

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

/* Corporate palette and spacing refinement */
:root {
  --red: #f21f2b;
  --red-deep: #c7131d;
  --lime: #8dc63f;
  --lime-bright: #b7df55;
  --ink: #20231f;
  --cream: #fbfbf5;
  --paper: #ffffff;
  --muted: #5f665f;
  --line: rgba(32, 35, 31, .14);
  --brand-red-soft: #fff0f1;
  --brand-lime-soft: #f1f8e3;
  --brand-lime-mid: #e3f2bf;
  --shadow: 0 24px 64px rgba(43, 50, 39, .13);
}

html { background: var(--brand-lime-soft); }
body { color: var(--ink); background: var(--cream); font-size: 1rem; line-height: 1.55; }
.site-header { background: rgba(255,255,255,.96); border-bottom-color: rgba(242,31,43,.12); }
.brand-name small { margin-top: 7px; font-size: .75rem; line-height: 1.25; }
.primary-nav { gap: clamp(15px,1.45vw,25px); font-size: .82rem; }
.primary-nav a { padding: 15px 0; }
.lang-button { width: 36px; height: 32px; font-size: .75rem; }
.lang-button.active { background: var(--red); }
.header-call { min-height: 48px; padding: 10px 17px; gap: 9px; }
.header-call span { font-size: .75rem; }
.header-call strong { font-size: .9rem; }

.section-shell { padding-top: calc(var(--header-h) + 55px); padding-bottom: 72px; }
.eyebrow { margin-bottom: 20px; font-size: .8rem; line-height: 1.5; }
h1, h2 { margin-bottom: 28px; line-height: .97; letter-spacing: -.055em; }
.button { min-height: 54px; padding: 14px 22px; gap: 13px; font-size: .92rem; line-height: 1.25; }
.button-primary { background: var(--lime-bright); box-shadow: 0 12px 30px rgba(141,198,63,.26); }
.button-outline, .button-outline-dark { border-width: 1.5px; }
.text-link { color: var(--red-deep); }
.section-dots a span { padding: 7px 10px; background: var(--red-deep); font-size: .75rem; }
.scroll-cue, .dark-cue { color: var(--red-deep); font-size: .75rem; }

/* Lighter, more spacious hero */
.hero-copy { width: min(730px,52vw); padding-bottom: 190px; }
.hero-copy h1, .hero-copy h2 { margin-bottom: 30px; line-height: .95; }
.hero-copy > p:not(.eyebrow) { max-width: 640px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1rem,1.2vw,1.16rem); line-height: 1.7; }
.hero-actions { gap: 14px; }
.hero-brandmark { top: calc(var(--header-h) + 32px); padding: 10px 16px 10px 10px; gap: 11px; border-top: 4px solid var(--lime); }
.hero-brandmark span { font-size: .9rem; line-height: 1.12; }
.hero-brandmark small { font-size: .75rem; line-height: 1.25; }
.slider-controls { bottom: 151px; gap: 16px; }
.slider-toggle { padding: 7px 9px; font-size: .75rem; }
.hero-proof {
  min-height: 102px;
  color: var(--ink);
  background: linear-gradient(110deg,rgba(255,255,255,.98),rgba(241,248,227,.98));
  border: 1px solid rgba(141,198,63,.35);
  border-top: 5px solid var(--red);
  box-shadow: 0 20px 52px rgba(43,50,39,.16);
}
.hero-proof span { padding: 17px clamp(18px,2.3vw,34px); gap: 7px; border-right-color: rgba(242,31,43,.16); }
.hero-proof b { color: var(--red-deep); font-size: clamp(.88rem,1vw,1.02rem); }
.hero-proof small { color: var(--muted); font-size: .78rem; line-height: 1.35; }
.hero .scroll-cue { bottom: 125px; }

/* Services */
.services-panel { background: linear-gradient(180deg,#fff 0%,#fafbf4 100%); }
.section-heading { gap: clamp(42px,6vw,100px); margin-bottom: 30px; }
.heading-side { padding-bottom: 8px; }
.heading-side p { margin-bottom: 18px; font-size: 1rem; line-height: 1.7; }
.text-button { padding: 8px 0; gap: 12px; font-size: .9rem; }
.property-strip { gap: 9px; margin-bottom: 22px; }
.property-strip span { padding: 10px 14px; font-size: .875rem; line-height: 1.3; }
.service-grid { gap: 15px; }
.service-card { min-height: 190px; padding: 24px; column-gap: 16px; border-color: rgba(32,35,31,.11); }
.service-icon { width: 43px; height: 43px; background: var(--red); font-size: 1.22rem; }
.service-card h3 { margin: 7px 0 15px; font-size: 1.12rem; line-height: 1.3; }
.service-card p { color: var(--muted); font-size: .95rem; line-height: 1.62; }
.service-card a { margin-top: 16px; color: var(--red-deep); font-size: .88rem; line-height: 1.4; }
.scope-note { margin-top: 16px; font-size: .8rem; line-height: 1.5; }

/* New-build section */
.termite-panel { background: var(--brand-lime-soft); }
.termite-copy { padding-top: calc(var(--header-h) + 52px); padding-bottom: 70px; background: linear-gradient(100deg,rgba(241,248,227,.72),var(--brand-lime-soft) 14%); }
.brand-chip { margin-bottom: 25px; padding: 8px 15px 8px 8px; gap: 11px; border-top: 3px solid var(--red); }
.brand-chip span { color: var(--red-deep); font-size: .76rem; line-height: 1.35; }
.termite-copy h2 { margin-bottom: 30px; line-height: .97; }
.termite-lead { margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.termite-steps { margin: 14px 0 30px; gap: 12px; }
.termite-steps li { min-height: 145px; padding: 18px; border-top: 4px solid var(--lime); background: rgba(255,255,255,.9); }
.termite-steps li > b { font-size: .8rem; }
.termite-steps span { gap: 7px; }
.termite-steps strong { font-size: .92rem; line-height: 1.35; }
.termite-steps small { font-size: .8rem; line-height: 1.5; }
.termite-actions { gap: 22px; }

/* Pest alert: corporate light palette */
.alert-panel { color: var(--ink); background: linear-gradient(135deg,var(--brand-lime-soft) 0%,#fff 55%,var(--brand-red-soft) 100%); }
.alert-panel::before { color: rgba(242,31,43,.045); }
.alert-shell { gap: clamp(48px,6vw,96px); }
.alert-panel .eyebrow { color: var(--red); }
.alert-intro h2 { margin-bottom: 31px; }
.alert-intro h2 em { color: var(--red); }
.alert-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.72; }
.urgency-note { margin-top: 32px; padding: 19px; grid-template-columns: 42px 1fr; gap: 15px; border-color: rgba(242,31,43,.24); border-left: 5px solid var(--red); background: rgba(255,255,255,.78); }
.urgency-note > b { width: 39px; height: 39px; color: #fff; background: var(--red); }
.urgency-note p { gap: 7px; }
.urgency-note strong { color: var(--red-deep); font-size: .95rem; }
.urgency-note span { color: var(--muted); font-size: .86rem; line-height: 1.58; }
.alert-tool { padding: clamp(26px,3vw,40px); border: 1px solid rgba(141,198,63,.3); border-top: 6px solid var(--lime); box-shadow: 0 26px 70px rgba(69,81,57,.14); }
.tool-label { margin-bottom: 18px; font-size: .8rem; line-height: 1.4; }
.signal-grid { gap: 12px; }
.signal-grid button { min-height: 135px; padding: 17px; grid-template-columns: 38px 1fr; column-gap: 12px; row-gap: 6px; border-radius: 16px; }
.signal-grid button:hover, .signal-grid button.selected { border-color: var(--red); background: var(--brand-lime-soft); }
.signal-grid button > span { width: 37px; height: 37px; background: var(--red); border-radius: 11px; }
.signal-grid button b { font-size: .9rem; line-height: 1.35; }
.signal-grid button small { font-size: .78rem; line-height: 1.48; }
.alert-result { margin-top: 15px; padding: 20px; gap: 20px; border: 1px solid rgba(141,198,63,.3); background: var(--brand-lime-mid); }
.alert-result small { color: var(--red-deep); font-size: .75rem; }
.alert-result strong { margin: 7px 0; font-size: 1rem; line-height: 1.35; }
.alert-result p { font-size: .86rem; line-height: 1.55; }
.alert-result .button { min-height: 48px; padding: 12px 17px; font-size: .82rem; }
.alert-panel .scroll-cue { color: var(--red-deep); }

/* How it works: remove the dark green text panel */
.process-panel { color: var(--ink); background: #fff; }
.process-copy { padding-top: calc(var(--header-h) + 52px); padding-bottom: 70px; background: linear-gradient(145deg,#fff 0%,var(--brand-lime-soft) 100%); border-left: 1px solid rgba(141,198,63,.24); }
.process-copy .eyebrow { color: var(--red); }
.process-copy h2 { margin-bottom: 30px; line-height: .97; }
.process-copy h2 em { color: var(--red); }
.steps { margin-bottom: 22px; }
.steps li { grid-template-columns: 42px 1fr; gap: 15px; padding: 15px 0; border-top-color: rgba(32,35,31,.14); }
.steps li:last-child { border-bottom-color: rgba(32,35,31,.14); }
.steps li > span { width: 36px; height: 36px; color: #fff; background: var(--red); font-size: .8rem; }
.steps h3 { margin: 1px 0 7px; font-size: 1rem; line-height: 1.35; }
.steps p { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.before-visit { padding: 17px 18px; gap: 15px; border-color: rgba(141,198,63,.4); border-left: 5px solid var(--lime); background: #fff; }
.before-visit b { color: var(--red-deep); font-size: .78rem; line-height: 1.45; }
.before-visit span { color: var(--muted); font-size: .84rem; line-height: 1.55; }
.process-panel .scroll-cue { color: var(--red-deep); }
.real-work-label small { font-size: .75rem; line-height: 1.35; }

/* Offers */
.offers-panel { background: linear-gradient(155deg,#fff 0%,#f8f8f1 55%,var(--brand-lime-soft) 100%); }
.offers-shell { gap: clamp(42px,5.5vw,82px); }
.offers-intro h2 { margin-bottom: 30px; line-height: .97; }
.offers-intro > p:not(.eyebrow) { font-size: 1rem; line-height: 1.72; }
.offer-facts { gap: 12px; margin-top: 28px; }
.offer-facts span { min-width: 132px; padding: 16px; gap: 6px; border-top: 4px solid var(--lime); background: #fff; }
.offer-facts b { font-size: 1.3rem; }
.offer-facts small { font-size: .8rem; line-height: 1.4; }
.campaign-slider { border: 1px solid rgba(32,35,31,.1); }
.campaign-brand { top: 24px; right: 24px; padding: 9px 14px 9px 9px; border-top: 4px solid var(--lime); }
.campaign-brand > span { font-size: .78rem; line-height: 1.12; }
.campaign-brand small { font-size: .75rem; line-height: 1.25; }
.campaign-copy { width: 62%; padding: clamp(38px,5vw,72px); }
.campaign-copy > small { margin-bottom: 17px; font-size: .76rem; line-height: 1.5; }
.campaign-copy h3 { margin-bottom: 20px; line-height: .94; }
.campaign-copy p { margin-bottom: 23px; font-size: .92rem; line-height: 1.62; }
.campaign-copy > a { padding: 12px 18px; background: var(--red); font-size: .86rem; }

/* Vacancy */
.vacancy-panel { background: linear-gradient(135deg,var(--brand-red-soft),#fff 48%,var(--brand-lime-soft)); }
.vacancy-shell { padding-top: calc(var(--header-h) + 52px); padding-bottom: 72px; gap: clamp(48px,7vw,105px); }
.vacancy-poster { min-height: 590px; padding: 42px; }
.poster-brand { top: 30px; left: 30px; padding: 13px 18px 13px 12px; gap: 13px; }
.poster-brand span { font-size: 1rem; line-height: 1.12; }
.poster-brand small { font-size: .75rem; line-height: 1.25; }
.vacancy-poster > p { margin-bottom: 20px; font-size: .82rem; line-height: 1.4; }
.vacancy-poster h2 { margin-bottom: 27px; line-height: .95; }
.vacancy-poster > strong { font-size: .92rem; line-height: 1.6; opacity: .9; }
.vacancy-copy h2 { margin-bottom: 30px; line-height: .97; }
.vacancy-lead { margin-bottom: 24px; font-size: 1rem; line-height: 1.72; }
.vacancy-list { margin: 23px 0 30px; gap: 13px; }
.vacancy-list li { min-height: 82px; padding: 16px; gap: 13px; border-top: 3px solid rgba(141,198,63,.68); }
.vacancy-list b { width: 34px; height: 34px; color: #fff; background: var(--red); }
.vacancy-list span { font-size: .9rem; line-height: 1.5; }
.vacancy-actions { gap: 13px; }
.vacancy-source { margin-left: 5px; font-size: .86rem; line-height: 1.4; }

/* Contact: bright brand finish */
.contact-panel { color: var(--ink); background: linear-gradient(135deg,var(--brand-lime-soft) 0%,#fff 55%,var(--brand-red-soft) 100%); }
.contact-orbit.one { border-color: rgba(141,198,63,.22); box-shadow: inset 0 0 0 7vw rgba(255,255,255,.62), inset 0 0 0 calc(7vw + 1px) rgba(242,31,43,.12); }
.contact-orbit.two { background: rgba(141,198,63,.12); }
.contact-shell { padding-top: calc(var(--header-h) + 58px); padding-bottom: 80px; gap: clamp(48px,7vw,105px); }
.contact-copy .eyebrow { color: var(--red); }
.contact-copy h2 { margin-bottom: 31px; line-height: .97; }
.contact-copy h2 em { color: var(--red); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; line-height: 1.72; }
.contact-actions { gap: 13px; margin-top: 31px; }
.contact-card { min-height: 126px; padding: 19px; color: var(--ink); border: 1px solid rgba(32,35,31,.13); border-top: 4px solid var(--lime); background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(43,50,39,.08); }
.contact-card:hover { border-color: rgba(242,31,43,.55); }
.contact-card small { color: var(--red-deep); font-size: .76rem; line-height: 1.4; }
.contact-card strong { font-size: 1rem; line-height: 1.35; }
.contact-card > span { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.call-card { color: #fff; background: var(--red); border-color: var(--red); border-top-color: var(--lime-bright); }
.call-card small, .call-card > span { color: rgba(255,255,255,.82); }
.whatsapp-card { color: #fff; background: #168c52; border-color: #168c52; border-top-color: var(--lime-bright); }
.whatsapp-card small, .whatsapp-card > span { color: rgba(255,255,255,.82); }
.whatsapp-call-card { background: var(--brand-lime-mid); }
.contact-details { padding: 30px; border: 1px solid rgba(141,198,63,.28); border-top: 6px solid var(--lime); box-shadow: 0 26px 65px rgba(43,50,39,.13); }
.contact-logo { padding-bottom: 20px; gap: 16px; }
.contact-logo span { font-size: .8rem; line-height: 1.35; }
.coverage-card { margin: 18px 0; padding: 17px; border-left: 5px solid var(--red); background: var(--brand-lime-soft); }
.coverage-card b { color: var(--red-deep); font-size: .9rem; }
.coverage-card p { margin-top: 8px; font-size: .84rem; line-height: 1.55; }
.contact-details dl > div { padding: 15px 0; grid-template-columns: 120px 1fr; gap: 16px; }
.contact-details dt { font-size: .76rem; line-height: 1.4; }
.contact-details dd { font-size: .84rem; line-height: 1.55; }
.contact-mini-links { gap: 10px; margin-top: 18px; }
.contact-mini-links a { padding: 9px 13px; font-size: .78rem; }
.contact-panel footer { height: 60px; border-top-color: rgba(32,35,31,.14); color: var(--muted); font-size: .78rem; }

/* Branded utility controls */
.page-nav { color: #fff; background: rgba(199,19,29,.96); border-color: rgba(255,255,255,.28); }
.page-nav button { height: 47px; padding: 0 14px; gap: 8px; }
.page-nav small { font-size: .75rem; }
.floating-actions a { min-width: 62px; height: 52px; }
.floating-actions b { font-size: .75rem; }
.flyer-dialog::backdrop { background: rgba(32,35,31,.72); }
.dialog-head { height: 58px; padding-inline: 21px 14px; }
.dialog-head strong { font-size: .9rem; }

[lang="fr"] .hero-copy h1,
[lang="fr"] .hero-copy h2 { font-size: clamp(3.15rem,5.55vw,6.45rem); }
[lang="fr"] .campaign-copy h3 { font-size: clamp(2.05rem,3.45vw,4rem); line-height: .98; }
[lang="fr"] .vacancy-poster h2 { font-size: clamp(2.7rem,4.05vw,4.55rem); line-height: .98; }
[lang="fr"] .vacancy-copy h2 { font-size: clamp(2.9rem,4.35vw,5rem); }

@media (max-width: 980px) {
  .section-shell { padding-top: calc(var(--header-h) + 44px); padding-bottom: 78px; }
  .section-heading { gap: 20px; }
  .termite-copy, .process-copy { padding: 44px 30px 78px; }
  .alert-shell { gap: 30px; }
  .alert-intro { column-gap: 42px; row-gap: 16px; }
  .offers-shell { gap: 30px; }
  .offers-intro { column-gap: 38px; row-gap: 16px; }
  .vacancy-shell { gap: 38px; }
  .contact-shell { gap: 35px; }
}

@media (max-width: 700px) {
  .site-header { padding-inline: 14px; }
  .primary-nav { padding: 18px 22px 28px; }
  .primary-nav a { padding: 13px 0; font-size: .92rem; }
  .hero-copy { padding: calc(var(--header-h) + 74px) 20px 176px; justify-content: center; }
  .hero-copy h1, .hero-copy h2 { margin-bottom: 24px; line-height: .98; }
  .hero-copy > p:not(.eyebrow) { margin-bottom: 25px; font-size: .96rem; line-height: 1.6; }
  .hero-actions { gap: 10px; }
  .button { min-height: 50px; padding: 12px 15px; font-size: .8rem; }
  .hero-brandmark { top: calc(var(--header-h) + 15px); }
  .slider-controls { bottom: 120px; }
  .hero-proof { min-height: 94px; }
  .hero-proof span { padding: 12px 8px; gap: 5px; }
  .hero-proof b { font-size: .75rem; line-height: 1.35; }
  .hero-proof small { display: none; }
  .section-shell { width: calc(100% - 32px); padding-top: calc(var(--header-h) + 38px); padding-bottom: 64px; }
  .eyebrow { margin-bottom: 16px; font-size: .75rem; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2 { line-height: .99; }
  .heading-side p { font-size: .94rem; }
  .property-strip { margin-bottom: 20px; }
  .property-strip span { font-size: .8rem; }
  .service-card { min-height: 248px; padding: 24px; }
  .service-card p { font-size: .92rem; }
  .scope-note { margin-top: 14px; font-size: .75rem; }
  .termite-copy, .process-copy { padding: 36px 20px 68px; }
  .termite-copy h2, .process-copy h2 { margin-bottom: 25px; line-height: .99; }
  .termite-lead { font-size: .94rem; }
  .termite-steps { gap: 10px; margin-bottom: 26px; }
  .termite-steps li { min-height: 155px; padding: 18px; }
  .termite-steps strong { font-size: .9rem; }
  .termite-steps small { font-size: .78rem; }
  .alert-intro h2 { margin-bottom: 24px; line-height: .99; }
  .alert-intro > p:not(.eyebrow) { font-size: .94rem; }
  .urgency-note { margin-top: 24px; padding: 16px; }
  .urgency-note span { font-size: .82rem; }
  .alert-tool { padding: 18px; }
  .signal-grid { gap: 10px; }
  .signal-grid button { min-height: 127px; padding: 13px; grid-template-columns: 34px 1fr; column-gap: 9px; }
  .signal-grid button > span { width: 33px; height: 33px; }
  .signal-grid button b { font-size: .82rem; }
  .signal-grid button small { font-size: .75rem; }
  .alert-result { padding: 17px; }
  .steps li { padding: 14px 0; }
  .steps h3 { font-size: .94rem; }
  .steps p { font-size: .82rem; }
  .real-work-label { width: 118px; }
  .before-visit { padding: 16px; gap: 8px; }
  .before-visit span { font-size: .8rem; }
  .offers-intro h2 { margin-bottom: 25px; line-height: .99; }
  .offers-intro > p:not(.eyebrow) { font-size: .94rem; }
  .offer-facts { gap: 9px; }
  .offer-facts span { min-width: 0; flex: 1; padding: 13px; }
  .campaign-copy { padding: 30px 22px 88px; }
  .campaign-copy > small { margin-bottom: 14px; font-size: .75rem; }
  .campaign-copy h3 { margin-bottom: 17px; line-height: .98; }
  .campaign-copy p { margin-bottom: 20px; font-size: .84rem; }
  .campaign-copy > a { font-size: .8rem; }
  .vacancy-shell { width: calc(100% - 32px); padding-top: calc(var(--header-h) + 36px); padding-bottom: 66px; gap: 35px; }
  .vacancy-poster { min-height: 505px; padding: 27px; }
  .poster-brand { top: 20px; left: 20px; }
  .vacancy-poster h2 { margin-bottom: 23px; line-height: .98; }
  .vacancy-poster > strong { font-size: .86rem; }
  .vacancy-copy h2 { margin-bottom: 25px; line-height: .99; }
  .vacancy-lead { font-size: .94rem; }
  .vacancy-list { gap: 10px; }
  .vacancy-list li { min-height: 76px; padding: 14px; }
  .vacancy-list span { font-size: .86rem; }
  .contact-shell { width: calc(100% - 32px); padding-top: calc(var(--header-h) + 39px); padding-bottom: 80px; }
  .contact-copy h2 { margin-bottom: 25px; line-height: .99; }
  .contact-copy > p:not(.eyebrow) { font-size: .94rem; }
  .contact-actions { gap: 11px; margin-top: 25px; }
  .contact-card { min-height: 105px; padding: 16px; }
  .contact-card strong { font-size: .94rem; }
  .contact-details { padding: 21px; }
  .contact-details dl > div { grid-template-columns: 96px 1fr; gap: 12px; padding: 13px 0; }
  .contact-panel footer { color: var(--muted); font-size: .75rem; }
  .page-nav button { width: 42px; height: 42px; padding: 0; }
  .floating-actions a { min-width: 50px; height: 44px; }
}

@media (max-width: 420px) {
  .hero-copy { padding-top: calc(var(--header-h) + 68px); padding-bottom: 180px; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(2.65rem,12.8vw,3.55rem); }
  .hero-proof small { display: none; }
  .hero-proof b { font-size: .75rem; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-grid button { min-height: 96px; }
  .campaign-copy h3 { font-size: clamp(2.45rem,11.4vw,3.45rem); }
  [lang="fr"] .campaign-copy h3 { font-size: clamp(2.1rem,9.8vw,3rem); }
  [lang="fr"] .vacancy-poster h2 { font-size: clamp(2.35rem,10.6vw,3.2rem); }
}

/* Comprehensive responsive, spacing and IPM refinement */
:where(h1,h2,h3,p,li,dt,dd,a,button,strong,small) {
  min-width: 0;
  overflow-wrap: break-word;
}

.snap-panel { overflow: clip; }
.section-shell,
.vacancy-shell,
.contact-shell { width: min(1320px, calc(100% - clamp(36px, 9vw, 150px))); }
.button,
.contact-card,
.contact-mini-links a,
.campaign-copy > a { line-height: 1.35; white-space: normal; }
.button span,
.contact-card strong,
.contact-card > span { position: relative; z-index: 1; }
.termite-image { background-image: url('assets/termite-new-build-branded-v2.webp'); }

/* More room for the expanded service range. */
.services-shell { padding-bottom: 86px; }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card { min-height: 206px; padding: 25px; }
.service-card h3 { margin-right: 4px; }
.service-card p { line-height: 1.62; }
.service-card a { align-self: end; }

/* Five-step approach remains readable without crowding. */
.process-copy { padding-inline: clamp(34px, 4.5vw, 76px); }
.steps li { align-items: start; }
.steps h3 { margin-bottom: 6px; }
.steps li > div { min-width: 0; }
.before-visit { grid-template-columns: minmax(120px, auto) minmax(0, 1fr); align-items: start; }

/* Integrated Pest Management and hospitality programmes. */
.ipm-panel {
  background:
    radial-gradient(circle at 92% 8%, rgba(141,198,63,.18), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f8fbf0 55%, #fff3f3 100%);
}
.ipm-panel::before {
  content: "IPM";
  position: absolute;
  left: -1vw;
  bottom: -5vw;
  color: rgba(199,19,29,.035);
  font-size: clamp(10rem, 24vw, 28rem);
  font-weight: 950;
  line-height: .8;
  pointer-events: none;
}
.ipm-shell { position: relative; z-index: 2; padding-bottom: 96px; }
.ipm-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: clamp(42px, 6vw, 92px);
  margin-bottom: 28px;
}
.ipm-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.25vw, 5.2rem);
}
.ipm-heading-copy { display: grid; align-content: end; justify-items: start; gap: 20px; }
.ipm-heading-copy p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.72; }
.ipm-cycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(32,35,31,.12);
  border-top: 5px solid var(--lime);
  border-radius: 19px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(43,50,39,.08);
}
.ipm-cycle span { min-height: 86px; padding: 15px 18px; display: grid; align-content: center; gap: 6px; border-right: 1px solid var(--line); }
.ipm-cycle span:last-child { border-right: 0; }
.ipm-cycle b { color: var(--red); font-size: .75rem; letter-spacing: .12em; }
.ipm-cycle small { font-size: .88rem; font-weight: 850; line-height: 1.42; }
.protection-areas {
  margin-bottom: 24px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(242,31,43,.16);
  border-radius: 18px;
  background: var(--brand-red-soft);
}
.protection-areas > b { color: var(--red-deep); font-size: .92rem; line-height: 1.4; }
.protection-areas > div { min-width: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.protection-areas span { padding: 8px 11px; color: #41483f; border: 1px solid rgba(141,198,63,.3); border-radius: 999px; background: #fff; font-size: .8rem; font-weight: 750; line-height: 1.35; }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.programme-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(210px, .88fr) minmax(0, 1.12fr);
  border: 1px solid rgba(32,35,31,.12);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(43,50,39,.1);
}
.programme-card figure { min-height: 330px; margin: 0; overflow: hidden; background: #ecebe4; }
.programme-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.programme-card.hotel-card figure img { object-position: 46% center; }
.programme-copy { min-width: 0; padding: 25px; display: flex; flex-direction: column; justify-content: center; }
.programme-kicker { margin: 0 0 11px; color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }
.programme-copy h3 { margin: 0 0 14px; font-size: clamp(1.3rem, 1.6vw, 1.75rem); line-height: 1.14; letter-spacing: -.025em; }
.programme-copy > p:not(.programme-kicker) { margin-bottom: 15px; color: var(--muted); font-size: .92rem; line-height: 1.62; }
.programme-copy ul { margin: 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.programme-copy li { position: relative; padding-left: 20px; color: #424942; font-size: .875rem; line-height: 1.55; }
.programme-copy li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 950; }
.reporting-strip {
  margin-top: 20px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(141,198,63,.34);
  border-left: 6px solid var(--red);
  border-radius: 18px;
  background: var(--brand-lime-soft);
}
.reporting-strip img { width: 54px; height: 57px; object-fit: contain; }
.reporting-strip div { min-width: 0; display: grid; gap: 5px; }
.reporting-strip b { color: var(--red-deep); font-size: .9rem; line-height: 1.35; }
.reporting-strip span { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* Vacancy advert: explicit line breaks and stacking prevent clipped title text. */
.vacancy-poster { isolation: isolate; }
.vacancy-poster::before { z-index: 0; }
.vacancy-poster > p,
.vacancy-poster > h2,
.vacancy-poster > strong { position: relative; z-index: 2; }
.vacancy-poster h2 {
  max-width: 100%;
  font-size: clamp(2.45rem, 3.9vw, 4.65rem);
  line-height: .98;
  letter-spacing: -.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.vacancy-poster h2 em { display: inline; }
.vacancy-poster > strong { max-width: 88%; }

/* Contact details: labels never compete with their descriptions. */
.contact-details dl > div {
  grid-template-columns: minmax(122px, .35fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}
.contact-details dt { padding-top: 1px; font-size: .8rem; letter-spacing: .055em; line-height: 1.5; }
.contact-details dd { min-width: 0; font-size: .9rem; line-height: 1.65; }
.email-card strong { word-break: break-word; }

/* Keep the final content and footer clear of fixed navigation controls. */
.contact-shell { min-height: auto; padding-bottom: 72px; }
.contact-panel footer {
  position: relative;
  inset: auto;
  width: min(1260px, calc(100% - clamp(36px, 9vw, 150px)));
  height: auto;
  min-height: 112px;
  margin: 0 auto;
  padding: 22px 0 calc(72px + env(safe-area-inset-bottom));
  gap: 24px;
  line-height: 1.5;
  font-size: .82rem;
}

@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programme-card { grid-template-columns: 1fr; }
  .programme-card figure { min-height: 230px; max-height: 280px; }
}

@media (max-width: 980px) {
  .ipm-heading { grid-template-columns: 1fr; gap: 20px; }
  .ipm-cycle { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; scroll-snap-type: x proximity; }
  .ipm-cycle span { scroll-snap-align: start; }
  .programme-grid { grid-template-columns: 1fr 1fr; }
  .programme-card { grid-template-columns: 1fr; }
  .programme-card figure { min-height: 250px; }
}

@media (max-width: 700px) {
  html { scroll-snap-type: y proximity; }
  .section-shell,
  .vacancy-shell,
  .contact-shell { width: calc(100% - 32px); }
  .snap-panel:not(.hero) { min-height: auto; }
  .services-shell,
  .ipm-shell { padding-bottom: 78px; }
  .service-grid { display: grid; grid-template-columns: 1fr; overflow: visible; }
  .service-card { min-height: 0; padding: 22px; }
  .ipm-heading h2 { font-size: clamp(2.65rem, 11.5vw, 4rem); line-height: 1; }
  .ipm-heading-copy p { font-size: .92rem; line-height: 1.65; }
  .ipm-heading-copy .button { width: 100%; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card figure { min-height: 230px; max-height: 260px; }
  .programme-copy { padding: 22px; }
  .programme-copy h3 { font-size: 1.45rem; }
  .programme-copy > p:not(.programme-kicker) { font-size: .9rem; }
  .programme-copy li { font-size: .875rem; }
  .reporting-strip { grid-template-columns: 45px minmax(0, 1fr); padding: 17px; gap: 13px; }
  .reporting-strip img { width: 45px; height: 48px; }
  .reporting-strip span { font-size: .875rem; }
  .protection-areas { grid-template-columns: 1fr; gap: 12px; padding: 17px; }
  .protection-areas > div { flex-wrap: nowrap; margin-right: -17px; padding-right: 17px; overflow-x: auto; scroll-snap-type: x proximity; }
  .protection-areas span { flex: 0 0 auto; scroll-snap-align: start; }
  .before-visit { grid-template-columns: 1fr; }
  .contact-details dl > div { grid-template-columns: 1fr; gap: 6px; padding-block: 16px; }
  .contact-details dt { letter-spacing: .045em; }
  .contact-panel footer { width: calc(100% - 32px); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .hero-copy { padding-inline: 18px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .hero-actions .button { width: 100%; }
  .programme-card figure { min-height: 205px; }
  .ipm-cycle { grid-template-columns: repeat(5, minmax(138px, 1fr)); }
  .vacancy-poster h2 { font-size: clamp(2.15rem, 10.2vw, 3.05rem); }
  [lang="fr"] .vacancy-poster h2 { font-size: clamp(1.75rem, 8.3vw, 2.5rem); }
}

@media (max-height: 780px) and (min-width: 701px) {
  .snap-panel:not(.hero) { min-height: auto; }
  .section-shell,
  .vacancy-shell,
  .contact-shell { min-height: auto; padding-top: calc(var(--header-h) + 44px); }
  .process-gallery { min-height: 760px; }
}
