:root {
  --dark: #15110f;
  --dark-2: #211a17;
  --cream: #f6ebdf;
  --cream-2: #e8d6bf;
  --white: #fff9f2;
  --text: #241c18;
  --muted: #d8cab8;
  --muted-dark: #776656;
  --orange: #db812f;
  --orange-2: #b9601f;
  --orange-3: #ef9d4f;
  --line-light: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(36, 28, 24, 0.12);
  --shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-light: 0 16px 30px rgba(88, 59, 28, 0.12);
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 16px;
  --w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at top, rgba(255,255,255,.05), transparent 26%), linear-gradient(180deg, #1a1412 0%, #100c0b 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,.22) 0 1px, transparent 1px), radial-gradient(circle at 75% 65%, rgba(255,255,255,.18) 0 1px, transparent 1px);
  background-size: 26px 26px, 34px 34px;
}
a { color: inherit; }
img { max-width: 100%; }
.page { width: min(100%, var(--w)); margin: 0 auto; padding: .5rem 0 1.5rem; }
.texture-dark {
  background: radial-gradient(circle at 15% 25%, rgba(255,255,255,.045), transparent 24%), radial-gradient(circle at 85% 80%, rgba(255,255,255,.03), transparent 30%), linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.site-header-bar, .site-hero, .financing-shell, .projects-shell, .content-shell, .trust-shell { overflow: visible; border-radius: 0; }
.site-header-bar, .site-hero, .financing-shell, .projects-shell, .trust-shell { box-shadow: var(--shadow-dark); }
.content-shell, .projects-shell { box-shadow: var(--shadow-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: transform .25s ease;
}
.site-header-bar {
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: 3px solid #d67f38;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.05), transparent 30%),
    linear-gradient(180deg, #2a2a2a 0%, #1c1c1c 100%);
  transition: background .25s ease;
}
.site-header.is-scrolled .site-header-bar {
  background: linear-gradient(180deg, rgba(20,20,20,.97) 0%, rgba(14,14,14,.97) 100%);
  backdrop-filter: blur(6px);
}
.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 108px;
  padding: 1rem 1.4rem .6rem;
  transition: min-height .25s ease, padding .25s ease;
}
.site-header.is-scrolled .site-header-inner { min-height: 72px; padding: .5rem 1.4rem .5rem; }
.site-header.is-scrolled .brand { margin-bottom: 0; }
.site-header.is-scrolled .brand-logo { height: clamp(3rem, 5vw, 4.2rem); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-panel { display: contents; }
.site-hero {
  position: relative;
  margin-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(25,19,17,.96), rgba(23,18,16,.96));
}
.site-hero-home {
  min-height: 740px;
  background: linear-gradient(90deg, rgba(12,10,9,.72) 0%, rgba(12,10,9,.4) 38%, rgba(12,10,9,.1) 100%), linear-gradient(180deg, rgba(10,8,7,.4) 0%, rgba(10,8,7,.05) 60%, rgba(10,8,7,.45) 100%), url("./images/fence-images/home-hero.webp") center/cover no-repeat;
}

.brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .15rem;
  margin-bottom: -2.1rem;
}
.brand-logo { display: block; width: auto; height: clamp(4.8rem, 7vw, 6.2rem); max-width: min(46vw, 235px); object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 2rem; }
.nav a {
  position: relative;
  font-size: .98rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,249,242,.94);
  letter-spacing: .01em;
}
.nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.6rem; height: 2px; background: rgba(255,255,255,.8); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: .9rem 1.5rem;
  border: 0;
  border-radius: 10px;
  font: 800 .98rem/1 "Montserrat", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.03); }
.button-primary { color: var(--white); background: linear-gradient(180deg, var(--orange-3) 0%, var(--orange) 54%, var(--orange-2) 100%); box-shadow: 0 10px 18px rgba(185,96,31,.34); }
.button-light { color: var(--text); background: linear-gradient(180deg, #f4e6d4 0%, #e8d3b6 100%); }
.button-dark { color: var(--white); background: linear-gradient(180deg, #3a2e28 0%, #251e1a 100%); border: 1px solid rgba(255,255,255,.15); }
.top-cta { min-width: 164px; }

.hero-content, .page-hero { position: relative; z-index: 1; padding-left: 1.2rem; padding-right: 1.2rem; }
.hero-content-home { display: flex; align-items: center; min-height: 650px; padding-top: 5.8rem; padding-bottom: 3rem; }
.page-hero {
  display: flex;
  align-items: center;
  min-height: 310px;
  padding-top: 4rem;
  padding-bottom: 3.2rem;
  background: linear-gradient(90deg, rgba(12,10,9,.72), rgba(12,10,9,.3)), linear-gradient(140deg, #52443a 0%, #8d6948 28%, #644c3d 62%, #3a2c26 100%);
}
.page-hero-gallery { background: linear-gradient(90deg, rgba(12,10,9,.74), rgba(12,10,9,.3)), linear-gradient(135deg, #685443 0%, #a67747 28%, #5c4538 60%, #384537 100%); }
.page-hero-financing { background: linear-gradient(90deg, rgba(12,10,9,.74), rgba(12,10,9,.34)), linear-gradient(135deg, #56473c 0%, #a66e40 24%, #6a5445 56%, #3a2c26 100%); }
.page-hero-contact { background: linear-gradient(90deg, rgba(12,10,9,.74), rgba(12,10,9,.38)), linear-gradient(135deg, #473a32 0%, #94663d 24%, #5c4a3d 56%, #332a25 100%); }
.page-hero-about { background: linear-gradient(90deg, rgba(12,10,9,.72), rgba(12,10,9,.32)), linear-gradient(135deg, #4a3c32 0%, #9a6d42 26%, #6b5440 58%, #3a2e27 100%); }
.hero-copy, .page-hero-copy { max-width: 720px; }

h1, h2, h3, p, ul { margin-top: 0; }
h1, .kicker { text-transform: uppercase; }
h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
  text-shadow: 0 4px 12px rgba(0,0,0,.34);
}
h1 span, .hero-subtitle span { display: block; }
.page-title { max-width: 11ch; }
.hero-subtitle, .page-intro { font-size: clamp(1.2rem, 2.1vw, 2rem); line-height: 1.35; }
.hero-subtitle { margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,.28); }
.page-intro { max-width: 34rem; margin-bottom: 0; color: var(--muted); }
.hero-cta { min-width: 190px; }

.hero-contact-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.35rem; }
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.2rem;
  padding: .8rem 1.15rem;
  border-radius: 8px;
  background: rgba(18,14,13,.92);
  border: 1px solid var(--line-light);
  text-decoration: none;
}
.contact-label { padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.14); color: #ffcb90; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.contact-value { font-size: 1rem; font-weight: 700; }

.financing-shell, .content-shell { margin-top: 1.1rem; }
.financing-shell { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,.95fr); gap: 1.6rem; padding: 2rem 1.4rem; }
.content-shell { padding: 2.2rem 1.4rem 2.4rem; }
.content-shell-light, .projects-shell { background: radial-gradient(circle at top, rgba(255,255,255,.36), transparent 26%), linear-gradient(180deg, #f8efe3 0%, #ecdbc6 100%); color: var(--text); }

.kicker { margin-bottom: .5rem; font-size: .95rem; font-weight: 800; letter-spacing: .01em; }
.kicker.light { color: var(--white); }
.kicker.accent { color: var(--orange); }
.financing-copy h2, .section-heading h2, .contact-panel-large h2, .financing-detail-copy h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; line-height: 1.03; }
.financing-copy h2, .financing-detail-copy h2 { color: var(--white); text-transform: none; }
.section-heading { margin-bottom: 1.4rem; }
.section-heading h2, .contact-panel-large h2 { text-transform: none; color: var(--text); }
.finance-message {
  max-width: 520px;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f6ebdc 0%, #efdeca 100%);
  color: var(--text);
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
}
.fine-print { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }

.finance-visual-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(120deg, rgba(12,9,8,.97) 0%, rgba(28,20,15,.93) 100%), url('./images/fence-images/wood-fence-project-01.webp') center/cover no-repeat;
  background-blend-mode: multiply;
}
.finance-offer-card { display: flex; flex-direction: row; align-items: center; gap: 2.5rem; flex-wrap: wrap; padding: 2rem 1.8rem; }
.finance-offer-numbers { flex: 0 0 auto; }
.finance-from { margin-bottom: 0; font-style: italic; font-size: .9rem; }
.finance-price { margin-bottom: 0; font-size: clamp(2.6rem, 4vw, 3.6rem); font-weight: 800; line-height: .95; }
.finance-price span { font-size: .44em; }
.finance-approval { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.finance-offer-actions { flex: 0 0 auto; display: flex; flex-direction: column; gap: .6rem; min-width: 200px; }
.finance-action, .finance-action-secondary { width: 100%; }
.finance-partner-badge { margin-left: auto; display: flex; flex-direction: column; align-items: center; gap: .4rem; flex: 0 0 auto; }
.finance-partner-label { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.lyon-logo { width: 160px; height: auto; background: #fff; border-radius: 10px; padding: .5rem .9rem; object-fit: contain; }

.projects-shell { margin-top: 1.1rem; padding: 3rem .95rem 2.6rem; }
.projects-header { text-align: center; }
.projects-header h2 { margin-bottom: 1.8rem; color: var(--text); font-size: clamp(2.2rem, 4vw, 3.35rem); font-weight: 900; line-height: .98; letter-spacing: -.04em; }
.projects-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .22rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.project-card, .gallery-card { border-radius: 18px; background-size: cover; background-position: center; box-shadow: 0 14px 26px rgba(73,44,21,.16); }
.project-card { min-height: 240px; }
.gallery-card { position: relative; min-height: 320px; overflow: hidden; background: #2a2420; }
.gallery-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-card-copy { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; border-radius: 14px; background: rgba(18,14,13,.72); color: var(--white); }
.gallery-card-copy h3 { margin-bottom: .45rem; font-size: 1.2rem; }
.gallery-card-copy p { margin-bottom: 0; font-size: .95rem; line-height: 1.45; }
.project-card-one { background: linear-gradient(180deg, rgba(19,16,14,.12), rgba(19,16,14,.24)), linear-gradient(140deg, #82603d 0%, #ba854d 38%, #6a8749 100%); }
.project-card-two { background: linear-gradient(180deg, rgba(19,16,14,.1), rgba(19,16,14,.2)), linear-gradient(140deg, #5d432f 0%, #b7854d 44%, #8f6d49 62%, #627047 100%); }
.project-card-three { background: linear-gradient(180deg, rgba(19,16,14,.08), rgba(19,16,14,.2)), linear-gradient(140deg, #90755b 0%, #d29f61 26%, #be8f5b 54%, #648a77 100%); }
.project-card-four { background: linear-gradient(180deg, rgba(19,16,14,.12), rgba(19,16,14,.26)), linear-gradient(140deg, #6e462b 0%, #8e6038 40%, #5c422f 62%, #6f6749 100%); }
.projects-actions { display: flex; justify-content: center; margin-top: 1.5rem; }

.financing-detail-shell { padding: 2rem 1.4rem; }
.financing-detail-grid, .contact-layout { display: grid; gap: 1.4rem; }
.financing-detail-grid { grid-template-columns: minmax(0,1.1fr) 360px; }
.feature-listing { margin: 0 0 1.3rem; padding-left: 1.1rem; color: var(--muted); line-height: 1.7; }
.finance-plan-stack { display: grid; gap: 1rem; }
.plan-card, .sidebar-card { padding: 1.2rem; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.plan-card.highlight { background: linear-gradient(180deg, rgba(52,37,28,.86), rgba(27,20,18,.95)); }
.plan-card h3, .sidebar-card h3 { margin-bottom: .55rem; font-size: 1.9rem; }
.plan-card p, .sidebar-card p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.plan-label { margin-bottom: .5rem; color: #ffcb90; font-size: .9rem; font-weight: 800; text-transform: uppercase; }

.contact-layout { grid-template-columns: minmax(0,1.25fr) 340px; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .5rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: var(--text);
  font: inherit;
}
.field textarea { resize: vertical; }
.field small { color: #ad3f2b; font-weight: 600; }
.form-submit { width: fit-content; }
.form-alert { margin-bottom: 1rem; padding: 1rem 1.1rem; border-radius: 12px; font-weight: 600; }
.form-alert-success { background: rgba(61,127,78,.14); color: #245231; }
.form-alert-error { background: rgba(173,63,43,.14); color: #8a2f21; }
.about-grid { display: grid; grid-template-columns: minmax(0,1.4fr) 340px; gap: 1.6rem; }
.about-copy p { margin-bottom: 1rem; color: var(--text); font-size: 1.05rem; line-height: 1.65; }
.about-copy p:last-child { margin-bottom: 0; }
.about-owner-photo { float: left; width: 42%; max-width: 360px; height: auto; border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,.15); margin: 0 1.6rem 1rem 0; }
.about-copy::after { content: ""; display: table; clear: both; }

/* Lightbox */
.lightbox-trigger { display: block; cursor: zoom-in; }
/* --- Accessibility helpers --- */
.skip-link { position: absolute; top: -100px; left: .5rem; z-index: 2000; background: var(--orange); color: var(--white); padding: .75rem 1.1rem; border-radius: 4px; font-weight: 700; text-decoration: none; transition: top .15s; }
.skip-link:focus { top: .5rem; outline: 3px solid var(--white); outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--orange-3); outline-offset: 2px; border-radius: 2px; }
.button:focus-visible, .brand:focus-visible, .nav-toggle:focus-visible, .lightbox-close:focus-visible { outline: 3px solid var(--orange-3); outline-offset: 3px; }

.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox-overlay.is-open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 88vh; border-radius: 10px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .7; transition: opacity .15s; }
.lightbox-close:hover { opacity: 1; }
.about-values { display: grid; gap: 1rem; align-content: start; }
.value-card { padding: 1.1rem 1.2rem; border-radius: 16px; background: rgba(24,18,16,.92); color: var(--white); border: 1px solid rgba(255,255,255,.08); }
.value-card h3 { margin-bottom: .35rem; font-size: 1.15rem; line-height: 1.3; text-transform: none; }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .95rem; line-height: 1.5; }
.value-card .kicker.accent { color: #ffcb90; }
.about-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.contact-sidebar { padding: 1rem; border-radius: 24px; color: var(--white); }
.contact-sidebar .sidebar-card h3 { color: var(--white); }
.contact-sidebar .sidebar-card p { color: var(--muted); }

.trust-shell { margin-top: 1.1rem; padding: 2.2rem 1rem 2.5rem; text-align: center; }
.trust-title { margin-bottom: 1.5rem; font-size: clamp(1.6rem, 2.4vw, 2.25rem); line-height: 1.2; }
.trust-badges { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.badge-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 112px; padding: 1rem; border-radius: 18px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); }
.badge-mark { color: #ffca8d; font-size: 1.55rem; font-weight: 800; }
.badge-copy { margin-top: .35rem; color: var(--muted); font-size: .95rem; }
.stars .badge-mark { letter-spacing: .1em; font-size: 1.3rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

body.nav-locked { overflow: hidden; }

/* Form ergonomics */
.field-radio-group { border: 0; padding: 0; margin: 0; display: grid; gap: .5rem; }
.field-radio-group legend { font-weight: 600; margin-bottom: .25rem; }
.radio-option { display: flex; align-items: center; gap: .75rem; min-height: 44px; padding: .5rem .75rem; border: 1px solid var(--line-dark); border-radius: 10px; background: rgba(255,255,255,.6); cursor: pointer; }
.radio-option input[type="radio"] { width: 20px; height: 20px; accent-color: var(--orange); }
.field input[type="file"] { padding: .6rem; background: rgba(255,255,255,.5); }

@media (max-width: 980px) {
  .site-header-inner { grid-template-columns: auto 1fr; min-height: 88px; align-items: center; gap: .8rem; padding: .85rem 1rem; }
  .site-header.is-scrolled .site-header-inner { min-height: 64px; padding: .45rem 1rem; }
  .brand { margin-bottom: 0; justify-self: start; }
  .brand-logo { height: clamp(3.4rem, 10vw, 4.6rem); max-width: 170px; }
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1.25rem 1.1rem 1.5rem;
    background: linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
    border-bottom: 3px solid #d67f38;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .site-header.nav-open .nav-panel { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav a { padding: .9rem .25rem; min-height: 44px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { color: #ffcb90; }
  .top-cta { width: 100%; }
  .hero-content-home { align-items: flex-end; padding-top: 3rem; }
  .financing-shell, .projects-grid, .gallery-grid, .trust-badges, .financing-detail-grid, .contact-layout, .about-grid { grid-template-columns: 1fr; }
  .finance-visual-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .page { width: min(100%, var(--w)); padding-top: .3rem; }
  .site-hero-home { min-height: 560px; }
  h1 { font-size: clamp(2.1rem, 9vw, 3rem); letter-spacing: -.03em; }
  .hero-content-home, .page-hero { padding-left: .9rem; padding-right: .9rem; }
  .hero-content-home { min-height: 460px; padding-top: 2.4rem; padding-bottom: 1.4rem; }
  .page-hero { min-height: 210px; padding-top: 2.2rem; padding-bottom: 1.8rem; }
  .hero-subtitle, .page-intro { font-size: 1.05rem; line-height: 1.3; }
  .hero-contact-row { flex-direction: column; }
  .contact-card, .form-submit { width: 100%; }
  .financing-shell, .projects-shell, .content-shell, .trust-shell, .financing-detail-shell { padding-left: .9rem; padding-right: .9rem; }
  .project-card, .gallery-card { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .financing-copy h2, .section-heading h2, .contact-panel-large h2, .financing-detail-copy h2, .projects-header h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .field input, .field select, .field textarea { font-size: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  .hero-subtitle, .page-intro { font-size: .98rem; }
  .button { padding: .8rem 1.2rem; font-size: .9rem; }
  .trust-badges { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Footer */
.site-footer { padding: 3rem 1.4rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; max-width: 1100px; margin: 0 auto 2.4rem; }
.footer-brand img { width: 140px; height: auto; margin-bottom: .9rem; }
.footer-tagline { color: var(--muted); font-size: .92rem; line-height: 1.6; margin: 0; }
.footer-section-label { color: var(--white); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.footer-contact, .footer-nav, .footer-social { display: flex; flex-direction: column; gap: .35rem; }
.footer-contact a, .footer-nav a, .footer-social-link { color: var(--muted); font-size: .92rem; text-decoration: none; transition: color .18s; }
.footer-contact a:hover, .footer-nav a:hover, .footer-social-link:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 0; text-align: center; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: .8rem; }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
