:root {
  --green: #568340;
  --blue: #0f2640;
  --cream: #efeee7;
  --line: #e4e4e6;
  --muted: #6d717b;
  --white: #ffffff;
  --surface: #fbfaf6;
  --radius: 8px;
  --shadow: 0 20px 70px rgba(15, 38, 64, 0.09);
  --soft-shadow: 0 12px 36px rgba(15, 38, 64, 0.07);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 6%, rgba(86, 131, 64, 0.08), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(15, 38, 64, 0.06), transparent 28%),
    linear-gradient(180deg, #fff, #fbfaf6 72%, #fff);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(86, 131, 64, 0.45);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(228, 228, 230, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(178px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 190px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.phone-pill {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  font-weight: 800;
}

.header-actions {
  display: inline-flex;
  justify-self: end;
  gap: 10px;
  align-items: center;
}

.language-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 38, 64, 0.16);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}

.language-toggle:hover {
  border-color: rgba(86, 131, 64, 0.48);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.dark {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(15, 38, 64, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.6vw, 4.75rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.hero {
  padding: clamp(42px, 6vw, 74px) 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero-title .green {
  color: var(--green);
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.22;
  max-height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 34px;
  bottom: -36px;
  width: min(260px, 72%);
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 228, 230, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-note img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.proof-item {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  color: var(--blue);
}

.proof-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.proof-item strong,
.proof-item small {
  display: block;
}

.proof-item small {
  color: var(--muted);
}

.section {
  padding: clamp(42px, 6vw, 78px) 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.section-header.left {
  margin-inline: 0;
  text-align: left;
}

.section-header.compact {
  margin-bottom: 28px;
}

.section-header.compact h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.section-header p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy {
  max-width: 880px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid rgba(228, 228, 230, 0.9);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.intro-copy p {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 218px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 228, 230, 0.86);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 38, 64, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  object-fit: contain;
}

.service-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-card li,
.tag-list li {
  padding: 7px 10px;
  color: var(--blue);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.value-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.value-card {
  padding: 24px 22px;
  background: var(--surface);
  text-align: center;
}

.value-card img {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.value-card p {
  margin-top: 10px;
  color: var(--muted);
}

.about-showcase-section {
  position: relative;
  padding-top: clamp(30px, 4vw, 48px);
}

.about-showcase-section::after {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 22vw;
  height: 280px;
  content: "";
  background: rgba(86, 131, 64, 0.1);
  border-radius: 999px 0 0 999px;
  pointer-events: none;
}

.about-showcase {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(22px, 4vw, 34px);
  align-items: stretch;
}

.about-left {
  display: grid;
  gap: 0;
}

.about-story-card,
.about-values-card,
.about-logo-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(228, 228, 230, 0.92);
  box-shadow: var(--soft-shadow);
}

.about-story-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 22px 22px 0 0;
}

.about-story-large {
  border-top: 0;
  border-radius: 0;
}

.about-story-card > img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.about-story-card h1,
.about-story-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.02;
}

.title-rule {
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px 0 16px;
  background: var(--green);
  border-radius: 999px;
}

.about-story-card p {
  max-width: 620px;
  color: var(--blue);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.about-values-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-top: 0;
  border-radius: 0 0 22px 22px;
}

.about-values-card article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-values-card article:last-child {
  border-right: 0;
}

.about-values-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  object-fit: contain;
}

.about-values-card h3 {
  font-size: 1.05rem;
}

.about-values-card p {
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.9rem;
}

.about-logo-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  text-align: center;
}

.about-logo-main {
  width: min(430px, 88%);
  height: auto;
}

.about-logo-card p {
  width: min(520px, 92%);
  margin-top: 20px;
  padding-top: 20px;
  color: var(--blue);
  border-top: 1px solid var(--line);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-icon-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(420px, 88%);
  margin-top: 26px;
  opacity: 0.42;
}

.about-icon-row img {
  width: 44px;
  height: 44px;
  justify-self: center;
  object-fit: contain;
}

.local-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.map-card,
.contact-card,
.legal-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid rgba(228, 228, 230, 0.9);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.map-card img {
  width: 100%;
  height: auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.cta-band {
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(86, 131, 64, 0.42), transparent 30%),
    var(--blue);
  border-radius: 24px;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
}

.page-hero {
  padding: clamp(38px, 6vw, 68px) 0 clamp(20px, 4vw, 36px);
}

.page-hero .container {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.16rem;
}

.split-list {
  display: grid;
  gap: 16px;
}

.split-list article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.split-list p {
  margin-top: 8px;
  color: var(--muted);
}

.info-page {
  overflow: hidden;
}

.info-hero {
  position: relative;
  padding: clamp(42px, 6vw, 78px) 0 clamp(18px, 3vw, 34px);
}

.info-hero::after {
  position: absolute;
  top: -110px;
  right: -120px;
  width: min(520px, 34vw);
  height: min(520px, 34vw);
  content: "";
  background: rgba(86, 131, 64, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.info-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.info-hero .eyebrow::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.info-hero h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
}

.info-hero .lead {
  max-width: 720px;
  margin-top: 22px;
}

.info-hero-mark {
  display: grid;
  place-items: center;
  min-height: 300px;
  opacity: 0.55;
}

.info-hero-mark img {
  width: min(300px, 92%);
  height: auto;
  filter: saturate(0.8);
}

.sitemap-mark {
  min-height: 260px;
}

.info-section {
  padding-top: 0;
}

.legal-list,
.privacy-list {
  display: grid;
  gap: 12px;
}

.legal-row,
.privacy-row,
.sitemap-card,
.sitemap-note {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(228, 228, 230, 0.9);
  box-shadow: var(--soft-shadow);
}

.legal-row {
  display: grid;
  grid-template-columns: 124px minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  min-height: 154px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
}

.privacy-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  min-height: 128px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 16px;
}

.legal-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  background: rgba(86, 131, 64, 0.08);
  border-radius: 50%;
}

.legal-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.legal-content {
  padding-right: clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.legal-content h2,
.privacy-row h2,
.sitemap-card h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.legal-content p,
.legal-detail p,
.privacy-row p,
.sitemap-card p,
.sitemap-note p {
  color: var(--muted);
}

.legal-content p + p,
.legal-detail p + p {
  margin-top: 5px;
}

.legal-content strong,
.sitemap-note strong {
  color: var(--green);
}

.legal-detail {
  display: grid;
  gap: 10px;
}

.privacy-row p {
  max-width: 760px;
}

.sitemap-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
}

.sitemap-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 20px;
}

.sitemap-card-head {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sitemap-links {
  display: grid;
}

.sitemap-links a {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-links a:last-child {
  border-bottom: 0;
}

.sitemap-links span {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.sitemap-links img {
  width: 44px;
  height: 44px;
  padding: 9px;
  background: rgba(86, 131, 64, 0.08);
  border-radius: 10px;
  object-fit: contain;
}

.sitemap-links strong {
  font-size: 1.06rem;
}

.sitemap-links b {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.sitemap-note {
  display: grid;
  grid-template-columns: 54px 1fr 72px;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 28px;
  background: rgba(86, 131, 64, 0.07);
  border-radius: 16px;
}

.sitemap-note img {
  width: 58px;
  height: 58px;
  justify-self: end;
  opacity: 0.7;
}

.limits-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.limits-list li {
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
}

.limits-showcase-section {
  padding-top: clamp(18px, 3vw, 30px);
}

.limits-showcase {
  position: relative;
  overflow: hidden;
  width: min(1280px, calc(100% - 40px));
  padding: clamp(30px, 4.6vw, 54px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 228, 230, 0.92);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.limits-showcase::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(86, 131, 64, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.limits-watermark {
  position: absolute;
  top: 28px;
  right: clamp(26px, 7vw, 82px);
  width: min(320px, 25vw);
  height: auto;
  opacity: 0.055;
  pointer-events: none;
}

.limits-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.limits-heading h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5.4vw, 4.35rem);
  line-height: 0.98;
}

.limits-heading .title-rule {
  margin-top: 18px;
}

.limits-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.limits-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 42px);
}

.limit-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 40px;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 228, 230, 0.95);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 38, 64, 0.045);
}

.limit-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  background: rgba(86, 131, 64, 0.08);
  border-radius: 50%;
}

.limit-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.limit-card h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.limit-card p {
  margin-top: 5px;
  color: var(--muted);
}

.limit-x {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 34px;
  height: 34px;
  color: var(--green);
  background: rgba(86, 131, 64, 0.11);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.limits-commitment {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr 60px;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 28px;
  background: rgba(86, 131, 64, 0.07);
  border: 1px solid rgba(228, 228, 230, 0.72);
  border-radius: 14px;
}

.commitment-badge {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--green);
  border: 2px solid rgba(86, 131, 64, 0.5);
  border-radius: 50%;
  font-weight: 900;
}

.limits-commitment p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.limits-commitment strong {
  color: var(--blue);
}

.limits-commitment img {
  width: 54px;
  height: 54px;
  justify-self: end;
  object-fit: contain;
  opacity: 0.58;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  font-weight: 800;
}

.contact-section {
  position: relative;
  padding-top: clamp(26px, 4vw, 44px);
  padding-bottom: clamp(22px, 3vw, 34px);
}

.contact-section::before {
  position: absolute;
  left: 0;
  bottom: -88px;
  width: 28vw;
  height: 240px;
  content: "";
  background: rgba(86, 131, 64, 0.16);
  border-radius: 0 999px 0 0;
  pointer-events: none;
}

.contact-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 32px);
  align-items: stretch;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
}

.contact-watermark {
  position: absolute;
  top: 20px;
  right: 34px;
  width: min(220px, 34%);
  opacity: 0.06;
  pointer-events: none;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--green);
  background: rgba(86, 131, 64, 0.09);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .form-title {
  text-align: center;
}

.contact-form .form-title::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.contact-form h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border-radius: 10px;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-zone-section {
  padding-top: 0;
}

.contact-zone-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 30px;
  background: rgba(251, 250, 246, 0.92);
  border: 1px solid rgba(228, 228, 230, 0.9);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.contact-zone-card .eyebrow {
  margin-bottom: 6px;
}

.contact-zone-card .tag-list {
  margin-top: 12px;
}

.zone-pin {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(86, 131, 64, 0.22);
  font-size: 2rem;
  font-weight: 900;
}

.qr-map-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: stretch;
}

.qr-box {
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.qr-box img {
  width: 132px;
  height: 132px;
}

.site-footer {
  padding: 54px 0 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 112px;
  height: auto;
}

.footer-brand p,
.site-footer p {
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-link {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--muted);
}

.footer-link:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 34px;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
  }

  .hero-grid,
  .local-grid,
  .about-grid,
  .about-showcase,
  .contact-grid,
  .contact-panels,
  .info-hero-grid,
  .legal-row,
  .sitemap-layout,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .info-hero-mark {
    min-height: 160px;
    justify-content: start;
    opacity: 0.22;
  }

  .info-hero-mark img {
    width: min(220px, 46vw);
  }

  .legal-row {
    gap: 18px;
  }

  .legal-content {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    justify-self: end;
  }

  .proof-row,
  .value-panel,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .limits-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .limits-watermark {
    width: min(260px, 36vw);
  }

  .contact-section::before {
    display: none;
  }

  .about-showcase-section::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 78px;
    gap: 12px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand small {
    display: none;
  }

  .phone-pill {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    width: 42px;
    height: 42px;
    font-size: 0.84rem;
  }

  .primary-nav {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-link {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4.2rem);
  }

  .hero-media img {
    border-radius: 18px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .proof-row,
  .service-grid,
  .value-panel,
  .about-values-card,
  .footer-grid,
  .limits-list,
  .limits-card-grid,
  .qr-map-grid,
  .contact-zone-card,
  .privacy-row,
  .sitemap-card-head,
  .sitemap-note {
    grid-template-columns: 1fr;
  }

  .info-hero {
    padding-top: 34px;
  }

  .info-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  .legal-row,
  .privacy-row,
  .sitemap-card {
    padding: 18px;
    border-radius: 14px;
  }

  .legal-icon {
    width: 68px;
    height: 68px;
  }

  .legal-icon img {
    width: 42px;
    height: 42px;
  }

  .privacy-row {
    gap: 14px;
  }

  .sitemap-card-head {
    gap: 14px;
    align-items: start;
  }

  .sitemap-links a {
    min-height: 62px;
  }

  .sitemap-links span {
    gap: 12px;
  }

  .sitemap-note {
    padding: 18px;
  }

  .sitemap-note img {
    display: none;
  }

  .limits-showcase {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .limits-watermark {
    top: 18px;
    right: 14px;
    width: 160px;
    opacity: 0.035;
  }

  .limits-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .limit-card {
    grid-template-columns: 58px minmax(0, 1fr) 32px;
    gap: 12px;
    min-height: 96px;
    padding: 14px;
  }

  .limit-icon {
    width: 54px;
    height: 54px;
  }

  .limit-icon img {
    width: 36px;
    height: 36px;
  }

  .limit-x {
    width: 30px;
    height: 30px;
    font-size: 1.35rem;
  }

  .limits-commitment {
    grid-template-columns: 36px 1fr;
    padding: 16px;
  }

  .limits-commitment img {
    display: none;
  }

  .contact-card {
    border-radius: 18px;
  }

  .contact-list div {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .contact-icon,
  .zone-pin {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .contact-zone-card {
    padding: 20px;
  }

  .about-story-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-story-card > img {
    width: 62px;
    height: 62px;
  }

  .about-values-card article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values-card article:last-child {
    border-bottom: 0;
  }

  .about-logo-card {
    padding: 28px 20px;
  }

  .cta-actions .button,
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }
}
