:root {
  --green-950: #123b24;
  --green-900: #184a2d;
  --green-800: #205c36;
  --green-700: #1b5e20;
  --green-100: #eaf3ea;
  --gold-600: #d4af37;
  --gold-700: #a98216;
  --gold-100: #fff6d8;
  --bg: #f8f9fa;
  --paper: #ffffff;
  --paper-soft: #f2f5f3;
  --ink: #17221b;
  --muted: #667085;
  --line: rgba(20, 80, 27, 0.14);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-xs: 0 8px 22px rgba(8, 36, 14, 0.06);
  --shadow-sm: 0 18px 44px rgba(8, 36, 14, 0.1);
  --shadow-md: 0 30px 80px rgba(8, 36, 14, 0.16);
  --shadow-gold: 0 18px 46px rgba(212, 175, 55, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 180ms;
  --motion-medium: 320ms;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --gutter: clamp(18px, 4vw, 48px);
  --section-y: clamp(76px, 10vw, 148px);
  --font-heading: "Montserrat", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.13), transparent 28rem),
    linear-gradient(180deg, #fbfcfb 0%, var(--bg) 44rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold-600);
  color: var(--green-950);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.7);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.site-nav {
  position: relative;
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo__img {
  height: 60px;
  width: auto;
  aspect-ratio: 615 / 304;
  display: block;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 4vw, 1.52rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.site-logo__tagline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-800);
  padding: 9px 15px;
  font-weight: 800;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-out);
}

.site-nav__toggle:hover {
  background: var(--green-800);
  color: #ffffff;
  transform: translateY(-1px);
}

.site-nav__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  right: 12px;
  display: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
  list-style: none;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.site-nav.is-open .site-nav__list {
  display: grid;
  gap: 6px;
}

.site-nav__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 800;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-out);
}

.site-nav__list a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: var(--gold-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
  background: rgba(27, 94, 32, 0.08);
  color: var(--green-800);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  color: #ffffff;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(8, 36, 14, 0.18);
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) ease;
}

.site-nav__cta:hover {
  box-shadow: 0 18px 36px rgba(8, 36, 14, 0.24);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 36, 14, 0.98), rgba(20, 80, 27, 0.82)),
    var(--green-900);
  color: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(212, 175, 55, 0.34), transparent 21rem),
    linear-gradient(90deg, rgba(8, 36, 14, 0.96), rgba(8, 36, 14, 0.66) 55%, rgba(8, 36, 14, 0.34)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 17px);
  content: "";
  z-index: 1;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26vh;
  background: linear-gradient(0deg, var(--bg), rgba(248, 249, 250, 0));
  content: "";
  z-index: 2;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.05) contrast(1.08);
}

.hero__media img.image-fallback {
  opacity: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - var(--gutter), var(--container));
  margin: 0 auto;
  padding: clamp(132px, 18vh, 210px) 0 clamp(118px, 18vh, 180px);
}

.hero__content > * {
  max-width: 820px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 8.3vw, 6.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p:not(.section-eyebrow) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  max-width: 720px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: clamp(34px, 5vw, 54px) 0 0;
  max-width: 760px;
}

.hero__kpis div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.hero__kpis dt {
  color: var(--gold-600);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.hero__kpis dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease, color 190ms ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--gold-600), #f3d979);
  color: var(--green-950);
  box-shadow: var(--shadow-gold);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary:hover {
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.36);
}

.button--secondary:hover {
  border-color: rgba(212, 175, 55, 0.85);
  background: rgba(255, 255, 255, 0.17);
}

.section {
  width: min(100% - var(--gutter), var(--container));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.section__header {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
  color: var(--gold-700);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .section-eyebrow {
  color: #f4dc83;
}

.section-eyebrow::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5.3vw, 4.15rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  font-weight: 800;
}

.section__header p:not(.section-eyebrow),
.about__text p,
.reason p,
.service-card p,
.project-card p,
.site-footer p,
.contact p {
  color: var(--muted);
}

.trust-bar {
  position: relative;
  z-index: 4;
  width: min(100% - var(--gutter), var(--container));
  margin: clamp(-88px, -7vw, -52px) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px);
}

.trust-bar__list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.trust-bar__list li {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--green-950);
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

.trust-bar__list li:hover {
  background: rgba(255, 255, 255, 0.58);
}

.about__content,
.contact__content {
  display: grid;
  gap: 22px;
}

.about__text,
.about__values,
.contact__info,
.contact-form {
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xs);
}

.about__text {
  padding: clamp(28px, 5vw, 58px);
}

.about__text h3 {
  margin-bottom: 18px;
}

.about__values {
  padding: clamp(26px, 4vw, 36px);
  backdrop-filter: blur(18px);
}

.about__values ul,
.contact__info ul,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__values li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(20, 80, 27, 0.1);
  color: #344054;
  font-weight: 800;
}

.about__values li:last-child {
  border-bottom: 0;
}

.about__values li::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-600);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.14);
  content: "";
}

.services,
.gallery {
  width: 100%;
  max-width: none;
  padding-right: max(calc(var(--gutter) / 2), calc((100% - var(--container)) / 2));
  padding-left: max(calc(var(--gutter) / 2), calc((100% - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(231, 241, 233, 0.78), rgba(248, 249, 250, 0)),
    var(--paper-soft);
}

.services__grid,
.why-us__content,
.projects__list,
.gallery__grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 26px);
}

.services__grid,
.why-us__content,
.projects__list,
.gallery__grid {
  grid-template-columns: 1fr;
}

.service-card,
.reason,
.project-card,
.gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-xs);
  transition: transform var(--motion-medium) var(--ease-out), box-shadow var(--motion-medium) ease, border-color var(--motion-medium) ease;
}

.service-card::after,
.reason::after,
.project-card::after,
.gallery figure::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), transparent 38%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.service-card:hover,
.reason:hover,
.project-card:hover,
.gallery figure:hover {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card:hover::after,
.reason:hover::after,
.project-card:hover::after,
.gallery figure:hover::after {
  opacity: 1;
}

.service-card img,
.project-card img,
.gallery img {
  width: 100%;
  height: 230px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    radial-gradient(circle at 68% 24%, rgba(212, 175, 55, 0.36), transparent 8rem),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  transition: transform 420ms var(--ease-out), filter 420ms ease, opacity 220ms ease;
}

.service-card img.image-fallback,
.project-card img.image-fallback,
.gallery img.image-fallback {
  opacity: 1;
  color: transparent;
  font-size: 0;
  filter: none;
}

.service-card:hover img,
.project-card:hover img,
.gallery figure:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.025);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card__index {
  width: fit-content;
  margin: 24px 24px 14px;
  border-bottom: 2px solid var(--gold-600);
  color: var(--green-800);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-right: 24px;
  margin-left: 24px;
}

.service-card p {
  margin-top: 12px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  margin-bottom: 26px;
  color: var(--green-800);
  font-weight: 900;
  transition: color 180ms ease;
}

.service-card a::after {
  margin-left: 9px;
  content: "→";
  transition: transform 180ms ease;
}

.service-card a:hover {
  color: var(--gold-700);
}

.service-card a:hover::after {
  transform: translateX(5px);
}

.reason {
  padding: clamp(26px, 3vw, 36px);
}

.reason::before {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-800), var(--gold-600));
  content: "";
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: clamp(28px, 4vw, 44px) 0 0;
}

.stats__item {
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(212, 175, 55, 0.28), transparent 12rem),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  padding: clamp(26px, 4vw, 38px);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.stats dt {
  color: var(--gold-600);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.stats dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card__body {
  padding: clamp(24px, 4vw, 34px);
}

.project-card__category {
  display: inline-flex;
  margin: 0 0 13px;
  border: 1px solid rgba(27, 94, 32, 0.12);
  border-radius: 999px;
  background: var(--green-100);
  padding: 5px 13px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.project-card p:last-child {
  margin-bottom: 0;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -22px 0 30px;
}

.gallery__filter {
  min-height: 43px;
  border: 1px solid rgba(20, 80, 27, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-950);
  padding: 9px 17px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 36, 14, 0.04);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.gallery__filter:hover,
.gallery__filter.is-active {
  border-color: rgba(212, 175, 55, 0.72);
  background: var(--green-900);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 36, 14, 0.18);
  transform: translateY(-2px);
}

.gallery figure {
  margin: 0;
}

.gallery figure.is-hidden {
  display: none;
}

.gallery figcaption {
  padding: 17px 20px 20px;
  color: var(--green-950);
  font-family: var(--font-heading);
  font-weight: 900;
}

.contact {
  padding-bottom: clamp(88px, 10vw, 150px);
}

.contact__info,
.contact-form {
  padding: clamp(26px, 4vw, 40px);
}

.contact__info {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.24), transparent 12rem),
    linear-gradient(145deg, var(--green-900), var(--green-950));
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.contact__eyebrow {
  margin: 0 0 9px;
  color: #d4af37;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__lead {
  max-width: 40ch;
  margin: 13px 0 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.89rem;
  line-height: 1.7;
}

.contact__info h3 {
  color: #ffffff;
}

.contact__info li {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact__info li:last-child {
  border-bottom: 0;
}

.contact__phone-list {
  display: grid;
  gap: 6px;
}

.contact__info strong {
  color: var(--gold-600);
}

.contact__info a,
.contact__info span {
  color: rgba(255, 255, 255, 0.84);
}

.contact__info a:hover {
  color: #ffffff;
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-height: 46px;
  margin-top: 20px;
  padding: 10px 15px;
  color: #0e3d21 !important;
  background: linear-gradient(120deg, #c9efab, #aee8c6);
  border-radius: 10px;
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.17);
  font-weight: 900;
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) ease;
}

.contact__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #22a55d;
  filter: drop-shadow(0 2px 4px rgba(16, 103, 51, 0.2));
}

.contact__whatsapp:hover {
  color: #0e3d21 !important;
  box-shadow: 0 17px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  gap: 21px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.13), transparent 13rem),
    linear-gradient(145deg, #ffffff, #f7faf5);
  border: 1px solid rgba(20, 80, 27, 0.12);
  box-shadow: 0 24px 60px rgba(8, 36, 14, 0.09);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(212, 175, 55, 0.05), 0 0 0 58px rgba(27, 94, 32, 0.035);
  pointer-events: none;
}

.contact-form__head {
  position: relative;
  z-index: 1;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(20, 80, 27, 0.1);
}

.contact-form__head h3 {
  margin: 6px 0 8px;
  color: var(--green-950);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.contact-form__head p:last-child {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--green-950);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 80, 27, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(20, 80, 27, 0.34);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
  outline: none;
}

.contact-form .button {
  border: 0;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 19px;
  border-top: 1px solid rgba(20, 80, 27, 0.1);
}

.contact-form__footer p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.contact-form__footer .button {
  min-width: 166px;
  justify-content: center;
}

.contact-form__status {
  min-height: 1.1em;
  margin: -8px 0 0;
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
}

.location-map {
  display: grid;
  gap: 20px;
  margin-top: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 245, 243, 0.92)),
    var(--paper);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-xs);
}

.location-map__meta {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.location-map__meta p {
  margin: 0;
}

.location-map__meta h3 {
  color: var(--green-950);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.location-map__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(20, 80, 27, 0.14);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  color: var(--green-800);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 36, 14, 0.05);
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.location-map__link:hover {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: 0 14px 28px rgba(8, 36, 14, 0.1);
  transform: translateY(-2px);
}

.location-map__frame {
  overflow: hidden;
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: calc(var(--radius-lg) - 6px);
  background: linear-gradient(135deg, rgba(15, 61, 22, 0.08), rgba(212, 175, 55, 0.08));
  aspect-ratio: 16 / 8;
  min-height: 280px;
}

.location-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 32px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(58px, 8vw, 86px) max(calc(var(--gutter) / 2), calc((100% - var(--container)) / 2)) 28px;
}

.site-footer .site-logo {
  color: #ffffff;
}

@media (min-width: 960px) {
  .contact__content {
    grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
  }
}

.site-footer .site-logo__tagline,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--gold-600);
  font-size: 1rem;
}

.site-footer li,
.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 24px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.js .reveal {
  opacity: 0.96;
  transform: translate3d(0, 10px, 0);
  transition: opacity 360ms ease, transform 420ms var(--ease-out);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (min-width: 560px) {
  .hero__kpis,
  .trust-bar__list,
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .form-field:nth-of-type(5),
  .contact-form .button {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .services__grid,
  .why-us__content,
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-bar__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-bar__list li:not(:last-child) {
    border-right: 1px solid rgba(20, 80, 27, 0.1);
  }

  .about__content,
  .contact__content {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .about__values {
    position: sticky;
    top: 116px;
  }

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

  .project-card img {
    height: 270px;
  }

  .site-footer {
    grid-template-columns: 1.35fr 0.7fr 0.7fr 0.8fr;
  }

  .site-footer__bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .site-header {
    top: 22px;
  }

  .site-nav {
    padding: 10px 10px 10px 24px;
  }

  .site-nav__toggle {
    display: none;
  }

  .site-nav__list {
    position: static;
    display: flex;
    flex: 0 1 auto;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav__list a {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .site-nav__cta {
    display: inline-flex;
  }

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

  .why-us__content,
  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-form .button {
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 559px) {
  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .site-logo__tagline {
    max-width: 185px;
  }

  .gallery__filter {
    flex: 1 1 auto;
  }

  .service-card img,
  .project-card img,
  .gallery img {
    height: 210px;
  }
}

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

/* Corporate revision layer */
.history {
  position: relative;
}

.history::before,
.agriculture::before {
  position: absolute;
  inset: auto 0 8% auto;
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-600), rgba(20, 80, 27, 0.12));
  content: "";
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.timeline__year {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.44);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  color: var(--gold-600);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.timeline__body {
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-xs);
}

.timeline__body p {
  margin-bottom: 0;
  color: var(--muted);
}

.agriculture {
  position: relative;
}

.crop-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.crop-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(20, 80, 27, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 90% 0%, rgba(212, 175, 55, 0.2), transparent 12rem);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-xs);
  transition: transform var(--motion-medium) var(--ease-out), border-color var(--motion-medium) ease, box-shadow var(--motion-medium) ease;
}

.crop-card:hover {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.crop-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 13px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.crop-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.crop-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.26), transparent 14rem),
    linear-gradient(135deg, rgba(15, 61, 22, 0.96), rgba(8, 36, 14, 0.98));
}

.crop-card--featured h3,
.crop-card--featured p {
  color: #ffffff;
}

.crop-card--featured span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-100);
}

.gallery__grid {
  align-items: stretch;
}

.gallery figure {
  min-height: 100%;
}

.gallery figcaption {
  min-height: 78px;
  display: flex;
  align-items: center;
}

@media (min-width: 760px) {
  .crop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crop-card--featured {
    grid-column: span 2;
  }

  .timeline__item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .timeline::before {
    left: 59px;
  }
}

@media (min-width: 980px) {
  .crop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .crop-card--featured {
    grid-column: span 3;
  }

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

}

@media (max-width: 759px) {
  :root {
    --gutter: 34px;
    --section-y: 58px;
  }

  .site-header {
    top: 10px;
  }

  .site-nav {
    width: min(100% - 18px, var(--container));
    border-radius: 24px;
    padding: 10px 12px;
  }

  .site-logo__img {
    height: 48px;
  }

  .site-nav__toggle {
    margin-left: auto;
    min-height: 40px;
    padding: 8px 13px;
  }

  .site-nav__list {
    left: 0;
    right: 0;
    border-radius: 22px;
    padding: 12px;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 36, 14, 0.58), rgba(8, 36, 14, 0.94) 62%, rgba(8, 36, 14, 0.98)),
      repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px);
  }

  .hero__content {
    width: min(100% - 28px, var(--container));
    padding: 126px 0 100px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
    line-height: 1.02;
  }

  .hero p:not(.section-eyebrow) {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero__kpis {
    gap: 12px;
    margin-top: 28px;
  }

  .hero__kpis div,
  .stats__item,
  .timeline__body,
  .crop-card,
  .service-card,
  .reason,
  .project-card,
  .gallery figure,
  .about__text,
  .about__values,
  .contact__info,
  .contact-form {
    border-radius: 20px;
  }

  .trust-bar {
    margin-top: -54px;
    border-radius: 22px;
  }

  .trust-bar__list li {
    min-height: 62px;
    padding: 10px;
    font-size: 0.92rem;
  }

  .section__header {
    margin-bottom: 30px;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .section-eyebrow {
    font-size: 0.72rem;
  }

  .services,
  .gallery {
    padding-right: 17px;
    padding-left: 17px;
  }

  .section,
  .services,
  .gallery {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .agriculture,
  .contact {
    padding-bottom: 46px;
  }

  .why-us,
  .projects {
    padding-top: 52px;
  }

  .gallery__filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: -10px;
  }

  .gallery__filter {
    width: 100%;
    min-height: 46px;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .service-card img,
  .project-card img,
  .gallery img {
    height: 235px;
  }

  .timeline {
    gap: 18px;
  }

  .timeline__item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .timeline__year {
    min-height: 48px;
    font-size: 0.68rem;
  }

  .timeline::before {
    left: 30px;
  }

  .location-map {
    gap: 16px;
    padding: 18px;
  }

  .location-map__frame {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 28px;
  }

  .gallery__filters {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline__year {
    width: fit-content;
    min-width: 78px;
    padding: 0 14px;
  }
}

.assistant {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 80;
  font-family: "Inter", sans-serif;
}

.assistant__launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 7px 18px 7px 7px;
  color: #f7fbf5;
  background: linear-gradient(135deg, #123e20, #1b5e20);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(5, 30, 13, 0.28);
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.assistant__welcome {
  position: absolute;
  right: 4px;
  bottom: 88px;
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: min(290px, calc(100vw - 36px));
  padding: 12px 12px 12px 10px;
  color: #173d22;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.44);
  border-radius: 18px 18px 5px 18px;
  box-shadow: 0 16px 34px rgba(7, 39, 17, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(.2,.9,.28,1.16);
}

.assistant__welcome::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(212, 175, 55, 0.44);
  border-bottom: 1px solid rgba(212, 175, 55, 0.44);
  transform: rotate(45deg);
}

.assistant.has-welcome .assistant__welcome {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.assistant__welcome p {
  margin: 0;
  font: 700 0.78rem/1.35 "Inter", sans-serif;
}

.assistant__welcome-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: linear-gradient(145deg, #d4af37, #b88e18);
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(212, 175, 55, 0.3);
  font: 800 1rem/1 "Montserrat", sans-serif;
}

.assistant__welcome-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 2px;
  color: #5e7561;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.assistant__welcome-close:hover {
  color: #174e27;
  background: #edf4eb;
}

.assistant__launcher:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(5, 30, 13, 0.38);
}

.assistant__launcher-ring,
.assistant__avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
}

.assistant__launcher-ring {
  width: 60px;
  height: 60px;
  border: 2px solid #d4af37;
}

.assistant__launcher-ring img,
.assistant__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assistant__launcher-copy {
  display: grid;
  text-align: left;
}

.assistant__launcher-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
}

.assistant__launcher-copy small {
  margin-top: 2px;
  color: rgba(247, 251, 245, 0.7);
  font-size: 0.69rem;
}

.assistant__launcher-status {
  position: absolute;
  top: 6px;
  left: 54px;
  width: 10px;
  height: 10px;
  background: #b8df6c;
  border: 2px solid #16481f;
  border-radius: 50%;
}

.assistant__launcher-status::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(184, 223, 108, 0.76);
  border-radius: 50%;
  animation: kok-pulse 2s ease-out infinite;
}

.assistant__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto auto auto;
  width: min(394px, calc(100vw - 32px));
  max-height: min(630px, calc(100vh - 112px));
  overflow: hidden;
  background: rgba(253, 255, 252, 0.96);
  border: 1px solid rgba(27, 94, 32, 0.12);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(8, 36, 14, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 230ms ease, transform 230ms ease;
  backdrop-filter: blur(18px);
}

.assistant.is-open .assistant__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.assistant__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  color: #fff;
  background: linear-gradient(125deg, #123c20, #1b5e20 52%, #2b7340 72%, #2a6674);
  background-size: 180% 180%;
  animation: kok-header-shift 10s ease-in-out infinite;
}

.assistant__identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assistant__avatar {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(212, 175, 55, 0.92);
}

.assistant__identity p,
.assistant__identity h2,
.assistant__identity span {
  margin: 0;
}

.assistant__identity p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
}

.assistant__identity h2 {
  margin: 1px 0 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.assistant__identity span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #d8ead4;
  font-size: 0.66rem;
}

.assistant__identity i {
  width: 6px;
  height: 6px;
  background: #b8df6c;
  border-radius: 50%;
}

.assistant__close {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.assistant__conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.assistant__message {
  display: flex;
  max-width: 90%;
  animation: kok-message-in 300ms cubic-bezier(.2,.9,.28,1.2) both;
}

.assistant__message p {
  margin: 0;
  padding: 11px 13px;
  border-radius: 5px 15px 15px;
  color: #304333;
  background: #e9f1e7;
  font-size: 0.79rem;
  line-height: 1.58;
}

.assistant__message--bot p.is-writing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  vertical-align: -0.12em;
  background: #d4af37;
  animation: kok-caret 720ms steps(1) infinite;
}

.assistant__message--user {
  align-self: flex-end;
}

.assistant__message--user p {
  color: #fff;
  background: #1b5e20;
  border-radius: 15px 5px 15px 15px;
}

.assistant__message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}

.assistant__message-actions button,
.assistant__suggestions button {
  color: #1b5e20;
  background: #fff;
  border: 1px solid #cdddc9;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.assistant__message-actions button {
  padding: 7px 10px;
}

.assistant__message-actions button:hover,
.assistant__suggestions button:hover {
  color: #174e27;
  background: linear-gradient(120deg, #e6f2d9, #e7f4f0, #f5eed5);
  transform: translateY(-1px);
}

.assistant__typing {
  display: flex;
  gap: 4px;
  width: fit-content;
  padding: 12px 14px;
  background: #e9f1e7;
  border-radius: 5px 15px 15px;
}

.assistant__typing span {
  width: 5px;
  height: 5px;
  background: #6f866f;
  border-radius: 50%;
  animation: kok-typing 1s infinite ease-in-out;
}

.assistant__typing span:nth-child(2) { animation-delay: 0.15s; }
.assistant__typing span:nth-child(3) { animation-delay: 0.3s; }

.assistant__suggestions {
  display: flex;
  gap: 7px;
  padding: 0 17px 13px;
  overflow-x: auto;
}

.assistant__suggestions button {
  flex: 0 0 auto;
  padding: 8px 10px;
}

.assistant__form {
  display: grid;
  grid-template-columns: 1fr 41px;
  gap: 8px;
  padding: 11px 13px;
  background: #f0f4ef;
  border-top: 1px solid #e0e9df;
}

.assistant__form input {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  color: #1f3523;
  background: #fff;
  border: 1px solid #d5e1d3;
  border-radius: 9px;
  font: 0.78rem "Inter", sans-serif;
  outline: none;
}

.assistant__form input:focus {
  border-color: #5c9365;
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.assistant__form button {
  color: #fff;
  background: #1b5e20;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1.2rem;
}

.assistant__notice {
  margin: 0;
  padding: 0 15px 11px;
  color: #788278;
  background: #f0f4ef;
  font-size: 0.59rem;
  text-align: center;
}

.assistant-focus {
  position: relative;
  z-index: 1;
}

.assistant-focus::before {
  content: "";
  position: absolute;
  inset: 9% 4%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 13% 25%, rgba(212, 175, 55, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 81% 18%, rgba(69, 173, 138, 0.17) 0 4px, transparent 5px),
    radial-gradient(circle at 64% 83%, rgba(104, 151, 245, 0.15) 0 3px, transparent 4px),
    radial-gradient(circle at 28% 76%, rgba(201, 113, 194, 0.13) 0 3px, transparent 4px);
  filter: blur(0.1px) drop-shadow(0 0 14px rgba(82, 158, 128, 0.22));
  animation: kok-orbit-sparks 3.7s ease both;
}

.assistant-focus::after {
  content: "Kök bu bölümü sizin için öne çıkardı";
  position: absolute;
  top: 14px;
  right: max(18px, 4vw);
  z-index: 4;
  padding: 8px 11px;
  color: #17331d;
  background: linear-gradient(100deg, #d9f06a, #dce9b6, #c4e8df);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(11, 45, 18, 0.18);
  font: 700 0.64rem "Inter", sans-serif;
  animation: kok-label-in 450ms 120ms both;
}

.assistant-focus .section__header,
.assistant-focus .service-card,
.assistant-focus .crop-card,
.assistant-focus .project-card,
.assistant-focus .reason,
.assistant-focus .gallery__grid figure,
.assistant-focus .contact__info,
.assistant-focus .contact-form {
  animation: kok-card-signal 3.15s ease both;
}

.location-map.assistant-focus {
  animation: kok-map-signal 3.35s ease both;
}

.location-map.assistant-focus .location-map__frame {
  animation: kok-map-frame 3.35s ease both;
}

.assistant-focus .service-card:nth-child(2n),
.assistant-focus .crop-card:nth-child(2n),
.assistant-focus .project-card:nth-child(2n),
.assistant-focus .reason:nth-child(2n),
.assistant-focus .gallery__grid figure:nth-child(2n) {
  animation-delay: 130ms;
}

.assistant-focus .service-card:nth-child(3n),
.assistant-focus .crop-card:nth-child(3n),
.assistant-focus .project-card:nth-child(3n),
.assistant-focus .reason:nth-child(3n),
.assistant-focus .gallery__grid figure:nth-child(3n) {
  animation-delay: 260ms;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes kok-pulse {
  to { opacity: 0; transform: scale(1.8); }
}

@keyframes kok-message-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kok-typing {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes kok-header-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes kok-caret {
  50% { opacity: 0; }
}

@keyframes kok-card-signal {
  0%, 100% { box-shadow: none; transform: translateY(0); }
  12% { box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.66), 0 14px 34px rgba(25, 107, 85, 0.15), 0 0 26px rgba(212, 175, 55, 0.12); transform: translateY(-3px); }
  35% { box-shadow: 0 0 0 3px rgba(73, 177, 142, 0.52), 0 15px 38px rgba(58, 120, 191, 0.14), 0 0 26px rgba(73, 177, 142, 0.1); }
  58% { box-shadow: 0 0 0 3px rgba(141, 119, 213, 0.38), 0 12px 32px rgba(212, 175, 55, 0.13), 0 0 22px rgba(141, 119, 213, 0.08); }
}

@keyframes kok-orbit-sparks {
  0% { opacity: 0; transform: scale(0.96) rotate(-2deg); }
  18%, 76% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.03) rotate(2deg); }
}

@keyframes kok-label-in {
  from { opacity: 0; transform: translateY(-7px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes kok-map-signal {
  0%, 100% { box-shadow: none; transform: translateY(0); }
  14%, 66% { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.68), 0 20px 42px rgba(30, 105, 78, 0.18), 0 0 38px rgba(79, 164, 211, 0.13); transform: translateY(-3px); }
  40% { box-shadow: 0 0 0 4px rgba(76, 177, 143, 0.58), 0 22px 45px rgba(80, 118, 207, 0.15), 0 0 38px rgba(212, 175, 55, 0.14); }
}

@keyframes kok-map-frame {
  0%, 100% { filter: saturate(1) brightness(1); }
  18%, 70% { filter: saturate(1.18) brightness(1.06); }
}

@media (max-width: 599px) {
  .assistant { right: 14px; bottom: 14px; }
  .assistant__launcher { min-height: 64px; padding-right: 13px; }
  .assistant__launcher-ring { width: 52px; height: 52px; }
  .assistant__launcher-copy small { display: none; }
  .assistant__welcome { right: 0; bottom: 78px; max-width: min(270px, calc(100vw - 28px)); }
  .assistant__panel { bottom: 76px; max-height: min(590px, calc(100vh - 100px)); }
  .assistant-focus::after { top: 8px; right: 14px; }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assistant *, .assistant-focus { animation: none !important; transition: none !important; }
}

@media (min-width: 960px) {
  .contact__content {
    grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
  }
}
