:root {
  --ink: #202e36;
  --slate: #263842;
  --paper: #fafbf9;
  --mineral: #eef1ef;
  --copper: #995638;
  --copper-light: #e2ab8d;
  --line: #d6dcd9;
  --muted-text: #59656a;
  --font-sans: Arial, Helvetica, sans-serif;
  --font-display: Arial, Helvetica, sans-serif;
  --background: #fafbf9;
  --foreground: #202e36;
  --primary: #995638;
  --primary-foreground: #fff;
  --border: #d6dcd9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.13;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
}
p {
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
.faq-grid summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button {
  border: 0;
}
a,
button,
summary {
  touch-action: manipulation;
}
svg {
  flex-shrink: 0;
}
em {
  font-style: normal;
  color: var(--copper-light);
}
:focus-visible {
  outline: 3px solid #b76032;
  outline-offset: 5px;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin: auto;
}
.section {
  padding: 96px 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  background: var(--copper);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  border-radius: 3px;
  transition: background 0.15s;
}
.button:hover {
  background: #7e442b;
}
.button-small {
  font-size: 13px;
  min-height: 44px;
  padding: 10px 16px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: #fff;
  padding: 16px;
}
.skip-link:focus {
  top: 12px;
}
.preview-bar {
  background: #e9ece9;
  color: #526168;
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 47px;
  width: 47px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand > span {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
}
.desktop-nav a {
  padding: 15px 0;
}
.desktop-nav a:hover {
  color: var(--copper);
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--ink);
  padding: 10px;
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav {
  padding: 12px 24px;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}
.hero {
  background: var(--ink);
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: 66px;
  padding-bottom: 55px;
}
.hero .eyebrow {
  color: #d8ad93;
  letter-spacing: 0.12em;
  font-size: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.status-dot {
  height: 5px;
  width: 5px;
  background: #d8ad93;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 500;
  line-height: 1.035;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
.hero-intro {
  font-size: 18px;
  line-height: 1.5;
  max-width: 400px;
  color: #f0f2f1;
}
.hero-description {
  color: #c1c9cc;
  font-size: 16px;
  max-width: 440px;
  margin-top: 15px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.light {
  color: #f1f3f2;
}
.hero-rating {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  margin-top: 31px;
  color: #d0d6d8;
  flex-wrap: wrap;
}
.hero-rating > span:first-child {
  color: #e3b398;
  letter-spacing: 2px;
  font-size: 14px;
}
.hero-rating strong {
  color: #fff;
}
.rating-date {
  font-size: 13px;
  color: #aebcc2;
  display: block;
  margin-top: 5px;
}
.hero-foot {
  border-top: 1px solid #4b5c65;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  color: #dae0e2;
  font-size: 14px;
  gap: 20px;
}
.hero-foot > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-foot > span svg {
  color: #d8ad93;
}
.hero-foot > a {
  padding: 8px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading > p {
  color: var(--muted-text);
  max-width: 420px;
  font-size: 16px;
}
.situations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.situation-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.situation-card.mineral {
  background: var(--mineral);
}
.card-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  color: var(--copper);
}
.card-index > span {
  color: #8d999e;
  font-size: 13px;
  font-family: monospace;
}
.situation-card .eyebrow {
  margin-bottom: 12px;
}
.situation-card h3 {
  font-size: 27px;
  margin-bottom: 18px;
}
.situation-card > p:not(.eyebrow) {
  color: var(--muted-text);
  font-size: 16px;
  max-width: 450px;
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 25px;
  margin-bottom: 26px;
}
.tags span {
  font-size: 14px;
  border: 1px solid #bcc6c3;
  padding: 6px 10px;
  color: #526069;
}
.situation-card > .text-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  justify-content: space-between;
}
.rights-section {
  padding: 62px 0;
  background: #f3eae3;
  border-top: 1px solid #ddc3b3;
  border-bottom: 1px solid #ddc3b3;
}
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
}
.rights-grid h2 {
  font-size: 35px;
  margin-top: 18px;
}
.rights-grid svg {
  color: var(--copper);
}
.rights-lead {
  font-size: 18px;
  line-height: 1.55;
}
.rights-grid blockquote {
  margin: 23px 0 19px;
  padding: 3px 0 3px 20px;
  border-left: 2px solid var(--copper);
  font-size: 16px;
  line-height: 1.7;
}
.small-copy {
  font-size: 14px;
  color: var(--muted-text);
}
.rights-grid .text-link {
  margin-top: 12px;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 95px;
}
.method-intro > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted-text);
  margin-top: 23px;
  max-width: 360px;
}
.scope-note {
  display: flex;
  gap: 16px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  margin: 30px 0 14px;
  color: var(--copper);
}
.scope-note p {
  font-size: 16px;
  max-width: 330px;
  color: var(--muted-text);
}
.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.method-list li {
  display: flex;
  gap: 29px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}
.method-list li:first-child {
  padding-top: 4px;
  border-top: none;
}
.method-list li > span {
  font-family: monospace;
  font-size: 15px;
  color: var(--copper);
  padding-top: 3px;
}
.method-list h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.method-list p {
  font-size: 16px;
  color: var(--muted-text);
}
.drought-section {
  background: var(--slate);
  color: #fff;
  padding: 82px 0;
}
.drought-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
}
.drought-section .eyebrow {
  color: #dfae94;
}
.drought-section h2 {
  font-size: 43px;
  line-height: 1.15;
}
.drought-grid > div > p:not(.eyebrow) {
  font-size: 16px;
  color: #c7d0d4;
  max-width: 430px;
  margin-top: 25px;
}
.drought-grid .text-link {
  margin-top: 23px;
}
.drought-house {
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid #54636d;
}
.drought-house img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.drought-details article {
  display: flex;
  gap: 23px;
  border-bottom: 1px solid #54636d;
  padding: 23px 0;
}
.drought-details article:first-child {
  padding-top: 0;
}
.drought-details article > span {
  color: #dfae94;
  font-family: monospace;
  font-size: 13px;
  padding-top: 3px;
}
.drought-details h3 {
  font-size: 21px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.drought-details article p {
  font-size: 13px;
  color: #c7d0d4;
}
.source-link {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  margin-top: 23px;
  min-height: 32px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.drought-grid .drought-details > .small-copy {
  font-size: 14px;
  margin-top: 9px !important;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.people-grid article {
  border-top: 1px solid #b7c2bf;
  padding: 25px 0;
}
.person-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: #606f73;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.initial {
  display: grid;
  place-items: center;
  background: #e8ece9;
  width: 56px;
  height: 56px;
  color: var(--ink);
  font-size: 31px;
  font-family: Georgia, serif;
  letter-spacing: 0;
}
.people-grid h3 {
  font-size: 27px;
}
.people-grid h4 {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 600;
  margin: 10px 0 12px;
}
.people-grid p {
  font-size: 16px;
  color: var(--muted-text);
}
.zone-line {
  border-top: 1px solid var(--line);
  margin-top: 27px;
  padding-top: 35px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.zone-line > svg {
  color: var(--copper);
}
.zone-line h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}
.zone-line p {
  font-size: 16px;
  color: var(--muted-text);
  max-width: 550px;
  margin-top: 8px;
}
.zone-line .text-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 14px;
}
.trust-section {
  background: var(--mineral);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.trust-inner h2 {
  font-size: 32px;
}
.rating-block > div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.rating-block strong {
  font-size: 61px;
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.rating-block strong span {
  font-size: 28px;
  letter-spacing: -0.04em;
  color: #647278;
}
.stars {
  font-size: 25px;
  letter-spacing: 4px;
  color: var(--copper);
}
.rating-block p {
  font-size: 14px;
  color: var(--muted-text);
  margin: 7px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 95px;
}
.faq-grid h2 {
  font-size: 34px;
}
.faq-grid details {
  border-bottom: 1px solid var(--line);
}
.faq-grid details:first-child {
  border-top: 1px solid var(--line);
}
.faq-grid summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker {
  display: none;
}
.faq-grid summary span {
  font-size: 21px;
  font-weight: 400;
  color: var(--copper);
}
.faq-grid details[open] summary span {
  transform: rotate(45deg);
}
.faq-grid details p {
  font-size: 16px;
  color: var(--muted-text);
  padding: 0 28px 23px 0;
}
.contact-section {
  background: #e9edeb;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.contact-grid h2 {
  font-size: 49px;
}
.contact-grid h2 em {
  color: var(--copper);
}
.contact-grid > div > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 16px;
  color: var(--muted-text);
  max-width: 340px;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 33px;
}
.contact-phone svg {
  color: var(--copper);
}
.contact-grid > div > p.small-copy {
  font-size: 14px;
  margin-top: 13px;
}
.contact-check {
  border-top: 1px solid #c2ccc8;
  padding-top: 25px;
  margin-top: 33px;
  display: flex;
  gap: 11px;
  font-size: 14px;
}
.contact-check svg {
  color: var(--copper);
}
.contact-grid form {
  padding: 32px;
  background: var(--paper);
  border: 1px solid #c9d2ce;
}
.form-intro {
  margin-bottom: 24px;
}
.form-intro h3 {
  font-size: 24px;
}
.form-intro p {
  font-size: 14px;
  color: var(--muted-text);
  margin-top: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px 18px;
}
.form-grid label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #9eadaa;
  border-radius: 2px;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px;
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
}
.form-grid textarea {
  resize: vertical;
}
.full {
  grid-column: 1/-1;
}
.field-note {
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.5;
  margin-top: 10px;
}
.form-grid .field-note {
  margin-top: -10px;
}
.form-privacy {
  font-size: 14px;
  color: var(--muted-text);
  margin: 16px 0 21px;
}
.form-privacy button {
  padding: 0;
  color: var(--ink);
  text-decoration: underline;
  background: transparent;
}
.form-preview {
  font-size: 13px;
  color: var(--muted-text);
  margin-top: 10px;
}
.form-status:empty {
  display: none;
}
.form-status {
  margin-top: 16px;
  padding: 12px;
  background: var(--mineral);
  border-left: 2px solid var(--copper);
  font-size: 15px;
}
.site-footer {
  background: var(--paper);
  padding: 43px 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 37px;
}
.footer-top > p {
  font-size: 14px;
  color: var(--muted-text);
  margin-right: auto;
  margin-left: 55px;
}
.footer-top > .text-link {
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  font-size: 13px;
  color: var(--muted-text);
  gap: 15px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.footer-bottom button {
  background: transparent;
  color: inherit;
  padding: 8px 0;
}
.legal-dialog {
  max-width: 600px;
  width: calc(100% - 36px);
  margin: auto;
  padding: 38px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  max-height: 85dvh;
  overflow: auto;
}
.legal-dialog::backdrop {
  background: #15242ebd;
}
.legal-dialog h2 {
  font-size: 30px;
  margin: 20px 0;
}
.legal-dialog p:not(.eyebrow) {
  margin: 18px 0;
  font-size: 16px;
  color: var(--muted-text);
}
.legal-dialog .eyebrow {
  padding-right: 24px;
  font-size: 12px;
}
.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  padding: 8px;
}
.mobile-contact {
  display: none;
}
@media (min-width: 1600px) {
  .hero-grid {
    padding-top: 84px;
    padding-bottom: 72px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }
  .brand > span {
    font-size: 20px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .actions {
    gap: 12px;
  }
  .method-grid,
  .drought-grid,
  .rights-grid,
  .faq-grid,
  .contact-grid {
    gap: 50px;
  }
  .section-heading {
    gap: 50px;
  }
  .zone-line {
    flex-wrap: wrap;
  }
  .zone-line .text-link {
    margin-left: 48px;
  }
  .contact-phone {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-foot {
    flex-wrap: wrap;
    font-size: 14px;
  }
  .hero-foot > a {
    display: none;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-description {
    font-size: 16px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid form {
    padding: 24px;
  }
  .contact-grid h2 {
    font-size: 41px;
  }
  .drought-section h2 {
    font-size: 37px;
  }
  .section-heading {
    gap: 30px;
  }
  .situation-card {
    padding: 26px;
  }
  .situation-card h3 {
    font-size: 24px;
  }
  .footer-top > p {
    margin-left: 15px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 84px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding: 60px 0;
  }
  .preview-bar {
    font-size: 13px;
    padding: 6px 10px;
    line-height: 1.5;
  }
  .header-inner {
    height: 72px;
    gap: 10px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand {
    gap: 8px;
  }
  .brand > span {
    font-size: 18px;
  }
  .brand small {
    font-size: 8px;
    margin-top: 5px;
  }
  .header-actions .button span {
    display: none;
  }
  .header-actions .button {
    padding: 11px;
    min-height: 44px;
    min-width: 44px;
  }
  .header-actions {
    gap: 3px;
  }
  .menu-toggle {
    padding: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 40px;
    padding-bottom: 33px;
  }
  .hero h1 {
    font-size: clamp(45px, 10.6vw, 63px);
    line-height: 1.06;
    margin-bottom: 24px;
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.095em;
    margin-bottom: 25px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 390px;
  }
  .hero-intro {
    font-size: 17px;
    max-width: 350px;
  }
  .actions {
    gap: 15px;
    margin-top: 26px;
  }
  .actions .button {
    font-size: 14px;
  }
  .hero-rating {
    margin-top: 25px;
    font-size: 14px;
    gap: 9px;
  }
  .hero-foot {
    gap: 15px;
    padding: 23px 0;
    display: grid;
    grid-template-columns: 1fr;
    font-size: 14px;
  }
  .section-heading,
  .rights-grid,
  .method-grid,
  .drought-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-heading {
    margin-bottom: 30px;
    gap: 22px;
  }
  .section-heading > p {
    font-size: 16px;
  }
  .eyebrow {
    margin-bottom: 17px;
    font-size: 12px;
  }
  h2 {
    font-size: 32px;
  }
  .situations-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .situation-card {
    padding: 27px;
  }
  .card-index {
    margin-bottom: 26px;
  }
  .situation-card h3 {
    font-size: 26px;
  }
  .rights-section {
    padding: 46px 0;
  }
  .rights-grid h2 {
    font-size: 32px;
    margin-top: 13px;
  }
  .rights-grid {
    gap: 24px;
  }
  .rights-lead {
    font-size: 16px;
  }
  .rights-grid blockquote {
    font-size: 16px;
  }
  .method-list li {
    gap: 23px;
    padding: 24px 0;
  }
  .method-list li:first-child {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .scope-note {
    margin-top: 24px;
  }
  .method-intro > p:not(.eyebrow) {
    max-width: 100%;
  }
  .drought-section {
    padding: 55px 0;
  }
  .drought-section h2 {
    font-size: 36px;
  }
  .drought-grid {
    gap: 36px;
  }
  .people-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .people-grid article {
    padding: 25px 0;
  }
  .person-top {
    margin-bottom: 13px;
  }
  .people-grid p {
    max-width: 440px;
  }
  .zone-line {
    gap: 15px;
    margin-top: 15px;
    align-items: flex-start;
  }
  .zone-line > div {
    flex: 1;
    min-width: 220px;
  }
  .zone-line .text-link {
    margin-left: 39px;
  }
  .trust-section {
    padding: 43px 0;
  }
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .trust-inner h2 {
    font-size: 30px;
  }
  .rating-block strong {
    font-size: 57px;
  }
  .faq-grid h2 {
    font-size: 31px;
  }
  .faq-grid summary {
    font-size: 16px;
    line-height: 1.5;
  }
  .contact-grid {
    gap: 34px;
  }
  .contact-grid h2 {
    font-size: 43px;
  }
  .contact-phone {
    font-size: 30px;
  }
  .contact-grid > div > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }
  .contact-grid form {
    padding: 24px;
  }
  .contact-check {
    margin-top: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px 14px;
  }
  .form-grid label {
    font-size: 14px;
  }
  .form-grid select {
    font-size: 16px;
  }
  .form-grid input {
    font-size: 16px;
  }
  .form-grid textarea {
    font-size: 16px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 25px;
  }
  .footer-top > p {
    margin: 0;
    font-size: 14px;
  }
  .footer-top > .text-link {
    flex-basis: 100%;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
  }
  .site-footer {
    padding: 32px 0 95px;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 35;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    background: var(--copper);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 2px;
  }
  .mobile-contact a + a {
    background: var(--ink);
  }
  .legal-dialog {
    padding: 29px 23px;
  }
  .legal-dialog h2 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 44px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .field-note {
    margin-top: 0;
  }
  .contact-grid form {
    padding: 20px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .contact-phone {
    font-size: 27px;
  }
  .button {
    padding: 13px 16px;
  }
  .brand > span {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .preview-bar {
    display: block;
  }
  .site-header {
    position: static;
  }
  .mobile-contact,
  .menu-toggle {
    display: none;
  }
  .section {
    padding: 35px 0;
  }
  .wrap {
    width: 100%;
  }
  body {
    font-size: 12px;
  }
  .hero,
  .drought-section {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .site-footer {
    padding-bottom: 20px;
  }
  article,
  blockquote,
  form,
  .method-list li {
    break-inside: avoid;
  }
  h2,
  h3 {
    break-after: avoid;
  }
}

.municipality-contact {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #62727a;
  background: #30434c;
}
.municipality-contact h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
}
.municipality-contact p {
  margin-top: 12px;
  color: #d1d8db;
  font-size: 16px;
}
.drought-grid .municipality-contact .text-link {
  margin-top: 12px;
}

/* Retours clients : lisibilité, parcours détaillé et associés. */
.preview-bar {
  font-size: 13px;
}
.site-header .header-inner {
  min-height: 96px;
  height: auto;
  padding-block: 16px;
}
.site-header .brand img {
  width: 60px;
  height: 60px;
}
.site-header .brand > span {
  font-size: 26px;
}
.site-header .brand small {
  font-size: 12px;
}
.desktop-nav {
  font-size: 15px;
  gap: 22px;
}
.header-actions .button-small {
  font-size: 15px;
}
.hero-rights {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--copper-light);
  color: #d3dce0;
  font-size: 16px;
  max-width: 490px;
}
.hero-rights a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-foot {
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.drought-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.drought-steps li {
  border-bottom: 1px solid #61717a;
}
.drought-steps li:first-child {
  border-top: 1px solid #61717a;
}
.drought-steps summary {
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  gap: 16px;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
}
.drought-steps summary::-webkit-details-marker {
  display: none;
}
.step-number {
  font-family: monospace;
  font-size: 13px;
  padding-top: 3px;
  color: var(--copper-light);
}
.step-heading strong {
  display: block;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.step-heading > span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #c7d0d4;
}
.step-toggle {
  position: relative;
  width: 18px;
  height: 24px;
}
.step-toggle::before,
.step-toggle::after {
  content: "";
  position: absolute;
  background: var(--copper-light);
  width: 14px;
  height: 2px;
  left: 2px;
  top: 11px;
}
.step-toggle::after {
  transform: rotate(90deg);
}
.drought-steps details[open] .step-toggle::after {
  display: none;
}
.step-content {
  padding: 0 0 23px 40px;
}
.step-content p {
  font-size: 16px;
  color: #e0e6e8;
}
.step-content p + p {
  margin-top: 13px;
}
.drought-grid .drought-step-intro {
  margin-top: 0 !important;
  max-width: none !important;
}
.team-photo {
  margin: 0 0 25px;
}
.team-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.team-photo figcaption {
  font-size: 14px;
  color: var(--muted-text);
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .desktop-nav {
    font-size: 14px;
    gap: 15px;
  }
  .site-header .brand > span {
    font-size: 22px;
  }
  .site-header .brand small {
    font-size: 10px;
  }
  .site-header .brand img {
    width: 54px;
    height: 54px;
  }
  .header-actions .button-small {
    font-size: 13px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  .preview-bar {
    font-size: 13px;
  }
  .site-header .header-inner {
    min-height: 82px;
    padding-block: 12px;
  }
  .site-header .brand img {
    width: 46px;
    height: 46px;
  }
  .site-header .brand > span {
    font-size: 20px;
  }
  .site-header .brand small {
    font-size: 9px;
  }
  .hero-rights {
    font-size: 16px;
  }
  .hero-foot {
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 14px;
  }
  .step-heading strong {
    font-size: 18px;
  }
  .drought-steps summary {
    gap: 10px;
  }
  .step-content {
    padding-left: 0;
  }
  .team-photo figcaption {
    font-size: 14px;
  }
  .team-photo {
    margin-bottom: 25px;
  }
  html {
    scroll-padding-top: 96px;
  }
}
@media (max-width: 360px) {
  .site-header .brand > span {
    font-size: 17px;
  }
  .site-header .brand img {
    width: 40px;
    height: 40px;
  }
  .site-header .brand small {
    font-size: 8px;
  }
}

/* Audit : lisibilité des coordonnées et du titre de contact sur fond clair. */
.contact-grid h2 em {
  color: var(--copper);
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin: 8px 0 16px;
  font-size: 16px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 360px) {
  .contact-email {
    font-size: 16px;
  }
}

/* Visuel social approuvé : cadrage de la partie illustration, fichier original conservé. */
.fire-illustration {
  margin: 0;
  align-self: center;
  overflow: hidden;
  border: 1px solid #58646a;
  border-radius: 3px;
  background: #18262e;
}
.fire-illustration-image {
  aspect-ratio: 1024 / 730;
  overflow: hidden;
}
.fire-illustration-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.fire-illustration figcaption {
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #d1d8db;
}
@media (max-width: 700px) {
  .fire-illustration figcaption {
    padding: 12px 16px;
    font-size: 11px;
  }
}

/* Minimal base rules formerly supplied by Tailwind's preflight. */
button, input, select, textarea { border: 0 solid; }
button { background: transparent; }
img, svg { vertical-align: middle; }
img { max-width: 100%; }
figure { margin: 0; }
button, input[type=submit] { cursor: pointer; }
input[type=submit].button { border: 0; }
button.button, input[type=submit].button { background: var(--copper); color: white; }
body.admin-bar .site-header { top: 32px; }
@media(max-width:782px) { body.admin-bar .site-header { top:46px; } }
@media(max-width:600px) { body.admin-bar .site-header { top:0; } }
.footer-bottom a, .form-privacy a { text-decoration:underline; text-underline-offset:3px; }
.mentor-contact-form { min-width:0; }
.mentor-contact-form .wpcf7-form-control-wrap { display:block; }
.mentor-contact-form .wpcf7-not-valid-tip { font-size:14px; margin-top:5px; }
.mentor-contact-form .wpcf7-response-output { margin:20px 0 0; font-size:15px; }
.mentor-contact-form .mentor-hp { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.mentor-form-unavailable { border:1px solid var(--line); padding:32px; background:var(--paper); }
.mentor-form-unavailable p { margin-top:14px; }
.mentor-content { max-width:860px; padding-top:60px; padding-bottom:80px; }
.mentor-content h1 { font-size:clamp(32px,4vw,52px); margin-bottom:30px; }
.mentor-content h2 { font-size:27px; margin:32px 0 16px; }
.mentor-content p, .mentor-content ul { margin:0 0 20px; font-size:16px; line-height:1.7; }
.mentor-content a { text-decoration:underline; }
.mentor-coming-soon { min-height:100vh; display:grid; place-items:center; padding:32px; }
.mentor-coming-soon article { max-width:650px; text-align:center; }
.mentor-coming-soon img { width:80px; height:80px; object-fit:contain; }
.mentor-coming-soon h1 { font-size:clamp(36px,5vw,58px); margin:30px 0 24px; }
.mentor-coming-soon p { margin-bottom:25px; }
.mentor-coming-soon .button { margin:6px; }
