
:root {
  --ink: #101820;
  --ink-soft: #34424f;
  --green: #006b5b;
  --green-2: #008f73;
  --petrol: #123b46;
  --limestone: #f4f1ea;
  --paper: #fffdf8;
  --concrete: #d8ded9;
  --copper: #b88746;
  --muted: #6d7a86;
  --line: rgba(16, 24, 32, 0.13);
  --shadow: 0 18px 60px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(16,24,32,.08); background: rgba(255, 253, 248, .94); }
.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; color: var(--petrol); }
.brand img { width: 132px; height: 46px; object-fit: contain; object-position: left center; }
.brand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 34px; font-weight: 760; color: var(--ink-soft); }
.main-nav a { position: relative; padding: 25px 0; }
.main-nav a[aria-current="page"], .main-nav a:hover { color: var(--ink); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { justify-self: end; background: var(--green); color: #fff; padding: 11px 16px; border-radius: 6px; font-weight: 800; box-shadow: 0 10px 28px rgba(0,107,91,.18); }
.menu-toggle { display: none; justify-self: end; width: 42px; height: 42px; border: 0; background: var(--ink); border-radius: 6px; padding: 10px; }
.menu-toggle span { height: 2px; background: #fff; margin: 5px 0; }
.hero { min-height: calc(100vh - 76px); display: grid; align-items: stretch; padding: 0; background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 46%, var(--limestone) 46%, var(--limestone) 100%); overflow: hidden; }
.hero-grid { width: 100%; display: grid; grid-template-columns: minmax(40px, 1fr) minmax(0, 660px) minmax(460px, 50vw); align-items: stretch; gap: 0; }
.hero-copy { grid-column: 2; align-self: center; padding: clamp(54px, 8vw, 112px) clamp(34px, 5vw, 72px) clamp(46px, 7vw, 92px) 0; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; color: var(--ink); }
h1, h2 { font-family: "Source Serif 4", Fraunces, Georgia, ui-serif, serif; font-weight: 650; }
h1 { font-size: clamp(2.35rem, 3.4vw, 3.65rem); max-width: 720px; line-height: 1.06; }
h2 { font-size: clamp(2.1rem, 4vw, 4.6rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.55rem); }
.hero-copy p { max-width: 650px; margin: 24px 0 0; color: var(--ink-soft); font-size: clamp(1.04rem, 1.35vw, 1.24rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; border-radius: 6px; border: 1px solid transparent; padding: 12px 18px; font-weight: 850; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn svg, .text-link svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 16px 34px rgba(0, 107, 91, .2); }
.btn-primary:hover { background: #00584c; }
.btn-secondary, .btn-ghost { background: rgba(255,255,255,.68); color: var(--ink); border-color: var(--line); }
.btn-full { width: 100%; }
.btn-sm { min-height: 36px; padding: 9px 12px; font-size: .86rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 46px 0 0; max-width: 700px; }
.hero-metrics div { border-top: 1px solid var(--line); padding-top: 16px; }
.hero-metrics dt { font: 750 clamp(1.7rem, 3vw, 2.5rem)/1 Georgia, serif; color: var(--green); }
.hero-metrics dd { margin: 6px 0 0; color: var(--muted); }
.hero-panel { position: relative; min-height: calc(100vh - 76px); background: var(--petrol); overflow: hidden; }
.hero-photo-panel { grid-column: 3; }
.hero-photo-panel img { width: 100%; height: 100%; min-height: calc(100vh - 76px); object-fit: cover; object-position: center; filter: saturate(.98) contrast(1.03); }
.hero-photo-panel::before { content: ""; position: absolute; inset: 0 auto 0 0; width: min(34%, 260px); background: linear-gradient(90deg, var(--paper) 0%, rgba(255,253,248,.74) 22%, rgba(255,253,248,0) 100%); pointer-events: none; z-index: 1; }
.credibility { background: var(--ink); color: #fff; }
.credibility-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.credibility span { padding: 22px 24px; border-left: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-weight: 750; }
.section { padding: clamp(72px, 9vw, 126px) 0; }
.section-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.section-kicker { margin: 0 0 16px; color: var(--green); text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.section-lead h2 { max-width: 640px; }
.problem-list { display: grid; gap: 14px; }
.problem-list article { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; padding: 22px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); }
.problem-list svg, .service-card svg { width: 30px; height: 30px; color: var(--green); stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.problem-list p { margin: 0; color: var(--ink-soft); font-weight: 700; }
.method { background: var(--limestone); }
.centered { text-align: center; max-width: 820px; margin: 0 auto 54px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; border-radius: 10px; overflow: hidden; }
.timeline article { padding: 30px; min-height: 290px; border-left: 1px solid var(--line); position: relative; }
.timeline article:first-child { border-left: 0; }
.timeline span { color: var(--copper); font-weight: 900; font-size: .9rem; }
.timeline h3 { margin-top: 44px; }
.timeline p { margin: 14px 0 0; color: var(--muted); }
.split-heading { display: flex; justify-content: space-between; gap: 34px; align-items: end; margin-bottom: 42px; }
.split-heading > p { max-width: 430px; color: var(--muted); margin: 0; font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { grid-column: span 2; min-height: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; overflow: hidden; }
.service-card > a, .service-card:not(:has(a)) { display: block; height: 100%; padding: 30px; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,107,91,.48); box-shadow: 0 16px 44px rgba(16,24,32,.08); }
.service-card h3 { margin-top: 34px; }
.service-card p { color: var(--muted); margin: 18px 0 0; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 900; margin-top: 24px; }
.card-link svg { width: 16px; height: 16px; }
.testimonials { background: var(--limestone); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-grid article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; min-height: 250px; display: flex; flex-direction: column; }
.testimonial-grid p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 28px; }
.testimonial-grid strong { margin-top: auto; color: var(--ink); }
.testimonial-grid span { color: var(--muted); margin-top: 6px; }
.service-hero { background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 58%, var(--limestone) 58%, var(--limestone) 100%); }
.service-detail-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(34px, 6vw, 84px); align-items: stretch; }
.service-lead-card { background: var(--petrol); color: #fff; border-radius: 10px; padding: clamp(28px, 5vw, 52px); min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); }
.service-lead-card svg { width: 44px; height: 44px; color: var(--copper); stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-bottom: auto; }
.service-lead-card h2 { color: #fff; font-size: clamp(2rem, 3.2vw, 3.4rem); }
.service-lead-card p { color: rgba(255,255,255,.76); font-size: 1.12rem; }
.service-copy { align-self: center; }
.service-copy p { color: var(--ink-soft); font-size: 1.14rem; max-width: 760px; }
.service-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-columns > div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); }
.service-columns h2 { font-size: clamp(2rem, 3.4vw, 3.8rem); }
.service-columns ul { display: grid; gap: 16px; list-style: none; padding: 0; margin: 32px 0 0; }
.service-columns li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--ink-soft); font-weight: 740; }
.service-columns svg { width: 24px; height: 24px; color: var(--green); stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.related-services .service-card { grid-column: span 2; }
.service-final { padding-top: clamp(72px, 9vw, 126px); }
.authority { position: relative; overflow: hidden; background: var(--petrol); color: #fff; }
.authority::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 22%, rgba(216,180,132,.16), transparent 32%), linear-gradient(120deg, rgba(255,255,255,.05), transparent 44%); pointer-events: none; }
.authority .shell { position: relative; z-index: 1; }
.authority h2 { color: #fff; }
.authority-grid { display: grid; grid-template-columns: .95fr 1fr; gap: 42px; align-items: stretch; }
.authority-panel { border: 1px solid rgba(255,255,255,.18); border-radius: 10px; padding: clamp(28px, 5vw, 58px); }
.authority-panel p { color: rgba(255,255,255,.74); font-size: 1.15rem; }
.authority-list { display: grid; gap: 14px; }
.authority-list article { position: relative; overflow: hidden; min-height: 184px; display: flex; flex-direction: column; justify-content: flex-end; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 28px; isolation: isolate; }
.authority-list article::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .52; transform: scale(1.04); transition: transform .35s ease, opacity .35s ease; z-index: -2; }
.authority-list article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.1)); z-index: -1; }
.authority-list article:nth-child(1)::before { background-image: linear-gradient(90deg, rgba(12,68,78,.92), rgba(12,68,78,.56)), url("/assets/urbem-authority-council.webp"); background-position: 50% 54%; }
.authority-list article:nth-child(2)::before { background-image: linear-gradient(90deg, rgba(12,68,78,.9), rgba(12,68,78,.52)), url("/assets/urbem-authority-residents.webp"); background-position: 48% 54%; filter: saturate(.9) hue-rotate(-8deg); }
.authority-list article:nth-child(3)::before { background-image: linear-gradient(90deg, rgba(12,68,78,.9), rgba(12,68,78,.5)), url("/assets/urbem-authority-maintenance.webp"); background-position: 62% 56%; filter: saturate(.9) contrast(1.08); }
.authority-list article:hover::before { opacity: .68; transform: scale(1.09); }
.authority-list strong { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.authority-list span { color: rgba(255,255,255,.74); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-grid-large { grid-template-columns: repeat(3, 1fr); }
.article-card a { display: grid; min-height: 310px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.article-card a:hover { transform: translateY(-4px); border-color: rgba(0,107,91,.45); box-shadow: 0 14px 36px rgba(16,24,32,.08); }
.article-card span { color: var(--green); font-weight: 900; font-size: .82rem; }
.article-card h3 { margin-top: 22px; line-height: 1.14; }
.article-card p { color: var(--muted); margin: 18px 0 0; }
.article-card footer { align-self: end; display: flex; align-items: center; gap: 10px; color: var(--muted); margin-top: 28px; }
.article-card footer svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.article-card footer svg:last-child { margin-left: auto; }
.text-link { color: var(--green); font-weight: 900; display: inline-flex; gap: 10px; align-items: center; }
.faq { background: var(--limestone); }
.faq-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 56px; }
.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); margin: 14px 0 0; }
.final-cta { padding: 0 0 clamp(72px, 9vw, 126px); background: var(--limestone); }
.final-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr); gap: clamp(26px, 5vw, 64px); align-items: center; background: var(--ink); color: #fff; border-radius: 10px; padding: clamp(28px, 5vw, 64px); box-shadow: 0 28px 80px rgba(16,24,32,.14); }
.final-copy { position: relative; z-index: 1; }
.final-copy .section-kicker { color: var(--copper); }
.final-card h2 { color: #fff; max-width: 760px; }
.final-card p { color: rgba(255,255,255,.74); max-width: 700px; font-size: 1.16rem; }
.final-card .btn-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); color: #fff; }
.final-media { position: relative; min-height: 340px; align-self: stretch; overflow: hidden; border-radius: 8px; }
.final-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: center; filter: saturate(.95) contrast(1.04); }
.final-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,68,78,.02), rgba(12,68,78,.42)); pointer-events: none; }
.final-note { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; background: rgba(255,253,248,.92); color: var(--ink); border: 1px solid rgba(255,255,255,.6); border-radius: 8px; padding: 20px 22px; backdrop-filter: blur(10px); }
.final-note strong { display: block; color: var(--green); text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; margin-bottom: 8px; }
.final-note span { color: var(--ink); font-weight: 850; }
.page-hero { padding: clamp(86px, 12vw, 150px) 0 70px; background: var(--limestone); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 920px; }
.page-hero p { color: var(--ink-soft); font-size: clamp(1.1rem, 1.7vw, 1.35rem); max-width: 760px; }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-row button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 14px; cursor: pointer; font-weight: 800; color: var(--ink-soft); }
.filter-row button.active { background: var(--green); color: #fff; border-color: var(--green); }
.article-header { padding: 48px 0 70px; background: var(--limestone); border-bottom: 1px solid var(--line); }
.article-shell { max-width: 900px; }
.back-link { color: var(--green); font-weight: 850; }
.article-header h1 { margin-top: 24px; font-size: clamp(2.4rem, 5vw, 5.4rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; color: var(--muted); font-weight: 750; }
.article-meta span, .article-meta time { padding-right: 12px; border-right: 1px solid var(--line); }
.article-meta span:last-child { border-right: 0; }
.article-header p { font-size: 1.2rem; color: var(--ink-soft); }
.article-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); gap: 64px; align-items: start; padding-top: 70px; padding-bottom: 90px; }
.article-aside { position: sticky; top: 104px; background: var(--petrol); color: #fff; border-radius: var(--radius); padding: 24px; }
.article-aside p { color: rgba(255,255,255,.74); }
.article-body { font-size: 1.08rem; }
.article-body h2 { font-size: clamp(1.8rem, 2.8vw, 2.7rem); margin: 38px 0 20px; }
.article-body h3 { font-family: "Source Serif 4", Fraunces, Georgia, serif; font-size: clamp(1.3rem, 2vw, 1.60rem); margin: 34px 0 16px; color: var(--ink); line-height: 1.25; font-weight: 650; }
.article-body p { margin: 0 0 24px; color: #24313d; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; padding: 0; }
.article-body li { margin-bottom: 10px; color: #24313d; line-height: 1.5; }
.article-body li strong { color: var(--ink); }
.article-body a { color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; transition: color 0.15s ease; }
.article-body a:hover { color: var(--gold); }
.article-service-cta { margin: 46px 0 0; padding: 28px; border: 1px solid rgba(0,107,91,.24); border-radius: 10px; background: linear-gradient(135deg, rgba(0,107,91,.08), rgba(244,241,234,.72)); }
.article-service-cta strong { display: block; color: var(--ink); font-size: 1.35rem; line-height: 1.2; }
.article-service-cta p { color: var(--ink-soft); margin: 12px 0 0; }
.article-service-cta div { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.contact-page { min-height: calc(100vh - 76px); display: grid; align-items: center; padding: clamp(60px, 8vw, 110px) 0; background: var(--limestone); }
.contact-grid { display: grid; grid-template-columns: 1fr 520px; gap: clamp(44px, 7vw, 90px); align-items: center; }
.contact-copy h1 { font-size: clamp(2.6rem, 5.4vw, 5.9rem); }
.contact-copy > p { font-size: 1.2rem; color: var(--ink-soft); max-width: 720px; }
.contact-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.contact-steps article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.contact-steps span { color: var(--copper); font-weight: 900; }
.contact-steps strong { display: block; margin-top: 18px; }
.contact-steps p { color: var(--muted); margin: 8px 0 0; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 34px; box-shadow: var(--shadow); }
.contact-form h2 { font-family: inherit; font-size: 2.1rem; }
.contact-form > p { color: var(--muted); margin-top: 8px; }
.contact-form label { display: grid; gap: 7px; margin-top: 18px; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--concrete); border-radius: 7px; padding: 13px 14px; color: var(--ink); background: #fff; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,107,91,.12); }
.contact-form small { display: block; color: var(--muted); margin-top: 20px; }
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.7rem; margin: 34px 0 10px; font-family: inherit; }
.legal-body p { color: var(--ink-soft); }
.footer { background: linear-gradient(180deg, #edf5f2 0%, var(--limestone) 100%); color: var(--ink); padding: 64px 0; border-top: 1px solid rgba(16,24,32,.1); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 42px; }
.footer p, .footer span { color: var(--ink-soft); }
.footer h2 { font-family: inherit; font-size: 1rem; color: var(--ink); margin-bottom: 14px; }
.footer a { display: block; color: var(--ink-soft); margin: 8px 0; }
.footer a:hover { color: var(--green); }
.footer-brand { margin-bottom: 16px; }
.footer-brand img { width: 156px; height: 56px; }
.float-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 999px; display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 18px 42px rgba(37,211,102,.35); transition: transform .2s ease; }
.float-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.float-whatsapp svg { width: 34px; height: 34px; }
.cookie { position: fixed; left: 18px; bottom: 18px; z-index: 70; width: min(430px, calc(100% - 36px)); background: rgba(255,253,248,.96); border: 1px solid var(--line); border-radius: 8px; padding: 14px; box-shadow: var(--shadow); display: none; gap: 12px; align-items: center; justify-content: space-between; }
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.cookie div { display: flex; gap: 8px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.hero-copy.reveal, .hero-photo-panel.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  body.menu-open .main-nav { display: grid; position: fixed; top: 76px; left: 0; right: 0; padding: 28px 20px; background: var(--paper); border-bottom: 1px solid var(--line); gap: 8px; }
  body.menu-open .main-nav a { padding: 14px 0; }
  .hero { min-height: auto; background: var(--paper); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; padding: 70px 20px 42px; width: min(100%, 720px); margin-inline: auto; }
  .hero-photo-panel { grid-column: 1; }
  .hero-panel, .hero-photo-panel img { min-height: 500px; }
  .hero-photo-panel::before { width: 100%; height: 32%; inset: 0 0 auto 0; background: linear-gradient(180deg, var(--paper) 0%, rgba(255,253,248,.72) 32%, rgba(255,253,248,0) 100%); }
  .section-grid, .authority-grid, .faq-grid, .contact-grid, .article-layout, .final-card, .service-detail-grid, .service-columns { grid-template-columns: 1fr; }
  .credibility-row, .timeline, .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-grid, .article-grid, .article-grid-large, .contact-steps, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
  .article-aside { position: static; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(2rem, 8.8vw, 2.25rem); max-width: 100%; }
  .hero-metrics, .credibility-row, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .split-heading { display: grid; }
  .hero-panel, .hero-photo-panel img { min-height: 420px; }
  .final-card { padding: 22px; }
  .final-media, .final-media img { min-height: 260px; }
  .final-note { left: 14px; right: 14px; bottom: 14px; padding: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 24px; }
  .cookie { align-items: stretch; flex-direction: column; }
  .cookie div { justify-content: stretch; flex-direction: column; }
  .cookie .btn { flex: 1; }
}