/* ============================================
   ARM AGRO — Design System
   Forest Green #1B4332 · Gold #F4A261
   White #FFFFFF · Slate Off-White #F8F9FA
   ============================================ */

:root {
  --green: #1B4332;
  --green-deep: #0F2E20;
  --green-soft: #2D6A4F;
  --gold: #F4A261;
  --gold-soft: #F6B585;
  --white: #FFFFFF;
  --slate: #F8F9FA;
  --slate-2: #EFF1F3;
  --ink: #14201A;
  --muted: #6B7370;
  --line: #E6E8E6;

  --font-display: 'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 14px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green);
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--tight { padding: clamp(56px, 7vw, 100px) 0; }
.section--slate { background: var(--slate); }
.section--ink {
  background: var(--green-deep);
  color: rgba(255,255,255,.86);
}
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .eyebrow { color: var(--gold-soft); }
.section--ink .eyebrow::before { background: var(--gold-soft); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head__intro p { color: var(--muted); max-width: 480px; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all .3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: #efb079; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
  background: rgba(255,255,255,0);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color .3s var(--ease);
}
.nav.scrolled .brand,
.nav.nav--solid .brand { color: var(--green); }
.brand__mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
}
.brand__tag { font-size: 10px; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; font-weight: 500; display: block; margin-top: 2px; }
.nav.scrolled .brand__tag, .nav--solid .brand__tag { color: var(--green-soft); }

.nav__menu {
  display: flex; align-items: center; gap: 34px;
  list-style: none;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  position: relative;
}
.nav.scrolled .nav__menu a,
.nav--solid .nav__menu a { color: var(--ink); }
.nav__menu a:hover { color: var(--gold); }
.nav__menu a.active { color: var(--gold); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
}

.nav__cta { padding: 11px 20px; font-size: 13px; }

.nav__toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav__toggle span {
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.nav.scrolled .nav__toggle span,
.nav--solid .nav__toggle span { background: var(--green); }

@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 28px var(--pad);
    gap: 22px;
    border-bottom: 1px solid var(--line);
  }
  .nav__menu.open a { color: var(--ink); }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-bottom: clamp(48px, 8vw, 110px);
  padding-top: 140px;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,46,32,.30) 0%, rgba(15,46,32,.10) 30%, rgba(15,46,32,.85) 100%);
  z-index: -1;
}
.hero__content {
  max-width: 880px;
}
.hero h1 {
  color: var(--white);
  margin: 22px 0 26px;
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.86);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 14px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 60px;
  background: linear-gradient(rgba(255,255,255,.6), transparent);
}
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 110px;
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(244,162,97,.18), transparent 50%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 {
  color: var(--white);
  margin: 22px 0 20px;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}
.page-hero p {
  color: rgba(255,255,255,.78);
  max-width: 580px;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}
.crumb {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.crumb a:hover { color: var(--gold); }

/* ---------- About Teaser (home) ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.teaser-grid__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.teaser-grid__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.teaser-grid__media:hover img { transform: scale(1.04); }
.teaser-grid__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.teaser-grid__badge strong {
  display: block;
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.teaser-grid__copy h2 { margin: 22px 0 24px; }
.feature-list { list-style: none; margin-top: 32px; }
.feature-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .teaser-grid__media { aspect-ratio: 4/3; }
}

/* ---------- Product Highlights (home) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(20,32,26,.25);
  border-color: transparent;
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  border-radius: 100px;
}
.product-card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 { margin-bottom: 10px; }
.product-card__body p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 22px; }
.product-card__link {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green);
  transition: gap .25s var(--ease);
}
.product-card__link:hover { gap: 14px; color: var(--gold); border-color: var(--gold); }
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: left;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__num small { font-size: .55em; color: var(--white); margin-left: 4px; }
.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 12px;
  letter-spacing: .04em;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--green);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,162,97,.18), transparent 60%);
  right: -100px; top: -200px;
  border-radius: 50%;
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 { color: var(--white); max-width: 640px; }
.cta-strip p { color: rgba(255,255,255,.78); margin-top: 14px; max-width: 540px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer__brand p { font-size: 14px; line-height: 1.7; margin-top: 18px; max-width: 320px; }
.footer__bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom .brand { color: var(--white); }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---------- Timeline (About) ---------- */
.timeline {
  position: relative;
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}
.timeline__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 0;
  min-width: 100%;
  position: relative;
}
.timeline__track::before {
  content: "";
  position: absolute;
  top: 70px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.tl-step {
  padding: 0 22px;
  position: relative;
}
.tl-step__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.tl-step__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  outline: 1px solid var(--line);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.tl-step h4 { color: var(--green); margin-bottom: 8px; }
.tl-step p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Founders ---------- */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.founder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
}
.founder:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(20,32,26,.20); }
.founder__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--slate-2);
  position: relative;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter .6s var(--ease); }
.founder:hover .founder__photo img { filter: grayscale(0%); }
.founder__body { padding: 26px 28px 32px; }
.founder__role {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.founder h3 { margin: 8px 0 14px; }
.founder p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.founder__social { display: flex; gap: 10px; margin-top: 22px; }
.founder__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  font-size: 12px;
  transition: all .3s var(--ease);
}
.founder__social a:hover { background: var(--green); color: var(--white); border-color: var(--green); }
@media (max-width: 900px) { .founders { grid-template-columns: 1fr; } }

/* ---------- Compliance Docs ---------- */
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.doc-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.doc-row:hover { border-color: var(--green); transform: translateY(-2px); }
.doc-row__icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--slate);
  display: grid; place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.doc-row__icon svg { width: 22px; height: 22px; }
.doc-row__body { flex: 1; }
.doc-row__body h4 { color: var(--green); font-size: 15px; margin-bottom: 4px; }
.doc-row__body p { font-size: 13px; color: var(--muted); }
.doc-row__cta {
  font-size: 12px; font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
}
.doc-row:hover .doc-row__cta { color: var(--gold); }
@media (max-width: 700px) { .docs { grid-template-columns: 1fr; } }

/* ---------- Gallery Filters & Masonry ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all .3s var(--ease);
  background: var(--white);
}
.filter:hover { border-color: var(--green); color: var(--green); }
.filter.active { background: var(--green); color: var(--white); border-color: var(--green); }

.masonry {
  column-count: 3;
  column-gap: 18px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .5s var(--ease);
  background: var(--slate-2);
}
.masonry__item img {
  width: 100%; height: auto; display: block;
  transition: transform .8s var(--ease);
}
.masonry__item:hover { transform: scale(1.01); }
.masonry__item:hover img { transform: scale(1.08); }
.masonry__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,46,32,.85) 0%, rgba(15,46,32,0) 60%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.masonry__item:hover .masonry__caption { opacity: 1; }
.masonry__caption span {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.masonry__caption h4 { color: var(--white); font-size: 15px; }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 600px) { .masonry { column-count: 1; } }

/* ---------- Products Tabs ---------- */
.tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
  overflow-x: auto;
}
.tab {
  padding: 18px 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all .25s var(--ease);
  font-family: var(--font-display);
}
.tab:hover { color: var(--green); }
.tab.active {
  color: var(--green);
  border-color: var(--gold);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fade .5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.catalog__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.catalog__item:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(20,32,26,.22); }
.catalog__img {
  aspect-ratio: 1;
  background: var(--slate);
  overflow: hidden;
}
.catalog__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.catalog__item:hover .catalog__img img { transform: scale(1.07); }
.catalog__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.catalog__meta {
  display: flex; justify-content: space-between;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.catalog__meta span:last-child { color: var(--muted); }
.catalog__body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.catalog__desc { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.catalog__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.catalog__highlights li {
  font-size: 11.5px;
  padding: 5px 10px;
  background: var(--slate);
  color: var(--green);
  border-radius: 100px;
  letter-spacing: .02em;
  font-weight: 500;
}
.catalog__cta {
  margin-top: auto;
  padding: 13px 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ease);
}
.catalog__cta:hover { background: var(--gold); color: var(--green-deep); }
@media (max-width: 1000px) { .catalog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .catalog { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin: 22px 0 28px; }
.contact-info > p { color: var(--muted); margin-bottom: 40px; max-width: 460px; }
.info-block {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
}
.info-block:last-of-type { border-bottom: 1px solid var(--line); }
.info-block__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--slate);
  display: grid; place-items: center;
  color: var(--green);
}
.info-block__icon svg { width: 18px; height: 18px; }
.info-block h4 {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  font-size: 15px; color: var(--ink); line-height: 1.55;
}
.info-block a:hover { color: var(--gold); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(20,32,26,.15);
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card > p { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--slate);
  color: var(--ink);
  font-size: 15px;
  transition: all .25s var(--ease);
  font-family: var(--font-body);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.contact-card button[type=submit] {
  margin-top: 14px;
  width: 100%;
  padding: 17px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
}
.contact-card button[type=submit]:hover { background: var(--gold); color: var(--green-deep); }
@media (max-width: 980px) {
  .contact-split { grid-template-columns: 1fr; gap: 50px; }
  .contact-card { padding: 32px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Map placeholder ---------- */
.map-wrap {
  margin-top: 60px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(60%) contrast(1.05); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
