:root {
  --forest: #123f36;
  --forest-deep: #0b2c27;
  --green: #2f8d67;
  --green-light: #a6e1c4;
  --mint: #eaf8f0;
  --cream: #f7fbf8;
  --ink: #17312a;
  --muted: #6e8079;
  --line: #dcebe2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(19, 63, 54, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body[dir="rtl"] { font-family: Tahoma, Arial, sans-serif; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.top-strip {
  color: rgba(255, 255, 255, .86);
  background: var(--forest-deep);
  font-size: 12px;
  letter-spacing: .03em;
}
.top-strip-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-contact { white-space: nowrap; }
.top-contact strong { color: var(--green-light); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 235, 226, .82);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; min-width: max-content; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50% 50% 50% 12px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.08em;
  transform: rotate(-12deg);
}
.brand-copy { line-height: 1.15; }
.brand-copy strong { display: block; color: var(--forest); font-size: 15px; letter-spacing: .04em; }
.brand-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #527067; font-size: 14px; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green); }
.main-nav a.active { color: var(--green); font-weight: 900; }
.language-switcher {
  display: inline-flex;
  padding: 4px;
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: 99px;
}
.language-button {
  min-width: 38px;
  padding: 6px 9px;
  color: #668077;
  background: transparent;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-button.active { color: var(--forest); background: var(--white); box-shadow: 0 4px 12px rgba(19, 63, 54, .08); }

.hero-section {
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 80% 0%, rgba(166, 225, 196, .64), transparent 36%),
    linear-gradient(135deg, #e9f7ef 0%, #f7fbf8 54%, #dff4e8 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; background: var(--green); content: ""; }
.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--forest);
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.hero-lede { max-width: 570px; margin: 24px 0 0; color: #678078; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green); box-shadow: 0 10px 22px rgba(47, 141, 103, .24); }
.button-primary:hover, .button-primary:focus-visible { background: #267b59; box-shadow: 0 14px 28px rgba(47, 141, 103, .28); }
.button-secondary { color: var(--forest); background: var(--white); border-color: var(--line); }
.button-secondary:hover, .button-secondary:focus-visible { box-shadow: 0 8px 20px rgba(19, 63, 54, .1); }
.button-light { color: var(--forest); background: var(--green-light); box-shadow: none; }
.button-light:hover, .button-light:focus-visible { background: var(--white); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 40px; }
.hero-stats div { display: grid; gap: 2px; }
.hero-stats strong { color: var(--forest); font-size: 25px; line-height: 1; }
.hero-stats span { color: #527067; font-size: 11px; font-weight: 700; }

.hero-visual { position: relative; min-height: 440px; }
.visual-glow { position: absolute; top: 2%; right: 3%; width: 330px; height: 330px; background: rgba(166, 225, 196, .55); border-radius: 50%; }
.visual-card {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border: 9px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.visual-card-large { top: 30px; right: 18px; width: min(74%, 390px); transform: rotate(3deg); }
.visual-card-small { bottom: 25px; left: 18px; width: min(54%, 250px); transform: rotate(-7deg); }
.visual-card img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.visual-card div { padding: 12px 13px 14px; }
.visual-card strong { display: block; color: var(--forest); font-size: 13px; }
.visual-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.visual-tag { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 9px; color: var(--forest); background: rgba(255, 255, 255, .9); border-radius: 8px; font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.visual-stamp { position: absolute; right: 2%; bottom: 4%; display: grid; width: 112px; height: 112px; place-content: center; text-align: center; color: var(--forest); background: var(--green-light); border: 4px solid rgba(255, 255, 255, .7); border-radius: 50%; transform: rotate(9deg); }
.visual-stamp span { font-size: 16px; font-weight: 900; letter-spacing: -.08em; }
.visual-stamp small { max-width: 75px; margin: 4px auto 0; font-size: 9px; font-weight: 800; line-height: 1.2; }

.section-block { padding: 92px 0; }
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 72px; }
.about-grid > div:first-child { position: sticky; top: 120px; }
.about-grid h2, .section-heading h2, .contact-card h2 { margin: 0; color: var(--forest); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.about-copy { color: var(--muted); font-size: 16px; }
.about-copy > p { margin: 0; }
.about-points { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 44px 1fr; gap: 5px 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.about-points span { grid-row: span 2; color: var(--green); font-size: 12px; font-weight: 900; }
.about-points strong { color: var(--forest); font-size: 14px; }
.about-points small { color: var(--muted); font-size: 12px; }

.feature-band {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature-band > div:first-child { padding: 34px; color: var(--white); }
.feature-number { display: block; margin-bottom: 42px; color: var(--green-light); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.feature-band strong { display: block; font-size: 28px; line-height: 1.1; }
.feature-band p { max-width: 430px; margin: 12px 0 0; color: rgba(255, 255, 255, .7); }
.feature-band-image { min-height: 240px; }
.feature-band-image img { display: block; width: 100%; height: 100%; object-fit: cover; }

.page-hero {
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 87% 18%, rgba(166, 225, 196, .62), transparent 30%),
    linear-gradient(135deg, #e9f7ef 0%, #f7fbf8 60%, #dff4e8 100%);
}
.page-hero-compact { padding-bottom: 66px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: center; gap: 70px; }
.page-hero h1 { max-width: 760px; margin: 0; color: var(--forest); font-size: clamp(38px, 5vw, 64px); line-height: 1.06; letter-spacing: -.05em; }
.page-hero-lede { max-width: 690px; margin: 22px 0 0; color: #617a70; font-size: 17px; }
.page-hero-art { position: relative; min-height: 300px; }
.art-orbit { position: absolute; top: 0; right: 12%; width: 260px; height: 260px; border: 1px solid rgba(47, 141, 103, .22); border-radius: 50%; box-shadow: 0 0 0 22px rgba(47, 141, 103, .05), 0 0 0 44px rgba(47, 141, 103, .035); }
.art-panel { position: absolute; top: 52px; right: 8%; display: grid; width: 260px; height: 190px; place-content: center; color: var(--white); background: var(--forest); border-radius: 24px; box-shadow: var(--shadow); transform: rotate(4deg); }
.art-panel span { font-size: 34px; font-weight: 900; letter-spacing: -.08em; }
.art-panel small { margin-top: 8px; color: var(--green-light); font-size: 10px; letter-spacing: .05em; }
.art-card { position: absolute; bottom: 8px; left: 2%; width: 220px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 18px 40px rgba(19, 63, 54, .12); transform: rotate(-6deg); }
.art-card strong { display: block; color: var(--forest); font-size: 13px; }
.art-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.hero-index { display: grid; width: 270px; min-height: 190px; padding: 25px; align-content: end; justify-self: end; color: var(--white); background: var(--forest); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-index span { color: var(--green-light); font-size: 30px; font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.hero-index strong { margin-top: 24px; font-size: 16px; }
.hero-index small { margin-top: 4px; color: rgba(255, 255, 255, .68); font-size: 11px; }
.hero-index-pet { background: linear-gradient(145deg, var(--forest), #2f8d67); }

.engineering-section { background: var(--white); }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 220px; padding: 24px; background: var(--mint); border: 1px solid var(--line); border-radius: var(--radius-md); }
.capability-card:nth-child(2) { background: #f4f0e6; }
.capability-card:nth-child(3) { background: #eef0fa; }
.capability-index { color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.capability-card h3 { margin: 52px 0 8px; color: var(--forest); font-size: 20px; line-height: 1.15; }
.capability-card p { margin: 0; color: var(--muted); font-size: 13px; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.large-copy { max-width: 620px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.5; }
.text-link { display: inline-flex; margin-top: 25px; color: var(--green); font-size: 13px; font-weight: 900; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.category-card { display: grid; grid-template-columns: 68px 1fr; gap: 18px; min-height: 220px; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 28px rgba(19, 63, 54, .04); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.category-card:hover, .category-card:focus-visible { border-color: rgba(47, 141, 103, .5); box-shadow: 0 18px 40px rgba(19, 63, 54, .12); transform: translateY(-4px); }
.category-card-active { background: var(--forest); border-color: var(--forest); }
.category-icon { display: grid; width: 58px; height: 58px; place-items: center; color: var(--green); background: var(--mint); border-radius: 17px; font-size: 14px; font-weight: 900; }
.category-card-active .category-icon { color: var(--forest); background: var(--green-light); }
.category-card h3 { margin: 3px 0 8px; color: var(--forest); font-size: 21px; line-height: 1.15; }
.category-card p { margin: 0; color: var(--muted); font-size: 13px; }
.category-card-active h3 { color: var(--white); }
.category-card-active p { color: rgba(255, 255, 255, .7); }
.category-link { display: inline-flex; margin-top: 22px; color: var(--green); font-size: 11px; font-weight: 900; }
.category-card-active .category-link { color: var(--green-light); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 7px; padding: 5px; background: var(--mint); border: 1px solid var(--line); border-radius: 99px; }
.filter-button { padding: 8px 12px; color: #668077; background: transparent; border: 0; border-radius: 99px; cursor: pointer; font-size: 11px; font-weight: 800; }
.filter-button.active { color: var(--forest); background: var(--white); box-shadow: 0 4px 12px rgba(19, 63, 54, .08); }

.page-hero-contact { background: linear-gradient(135deg, #e9f7ef, #f7fbf8 55%, #d6f0e1); }
.contact-hero-card { display: grid; width: 270px; min-height: 190px; padding: 26px; align-content: end; justify-self: end; color: var(--forest); background: var(--green-light); border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(3deg); }
.contact-hero-mark { display: grid; width: 54px; height: 54px; place-items: center; color: var(--white); background: #20b866; border-radius: 50%; font-size: 13px; font-weight: 900; }
.contact-hero-card strong { margin-top: 28px; font-size: 18px; }
.contact-hero-card small { margin-top: 4px; color: #527067; font-size: 11px; }
.contact-page-section { background: var(--white); }
.contact-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: 42px; background: var(--mint); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contact-panel h2 { max-width: 650px; margin: 0; color: var(--forest); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.contact-panel p:not(.eyebrow) { max-width: 620px; margin: 16px 0 0; color: var(--muted); }
.whatsapp-large { display: grid; min-width: 250px; padding: 24px; color: var(--white); background: #20b866; border-radius: 20px; box-shadow: 0 14px 30px rgba(32, 184, 102, .24); transition: transform .2s ease, background .2s ease; }
.whatsapp-large:hover, .whatsapp-large:focus-visible { background: #159953; transform: translateY(-3px); }
.whatsapp-large > span { font-size: 31px; font-weight: 800; line-height: 1; }
.whatsapp-large strong { margin-top: 24px; font-size: 17px; }
.whatsapp-large small { margin-top: 5px; color: rgba(255, 255, 255, .8); font-size: 10px; }

.products-section { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 34px; }
.section-heading .eyebrow { margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; }
.category-chip { display: inline-flex; min-width: max-content; align-items: center; gap: 8px; padding: 10px 13px; color: var(--green); background: var(--mint); border: 1px solid var(--line); border-radius: 99px; font-size: 11px; font-weight: 900; }
.chip-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 28px rgba(19, 63, 54, .04); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(19, 63, 54, .12); }
.product-media { position: relative; overflow: hidden; background: #eff8f2; }
.product-media::after { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, .32)); content: ""; pointer-events: none; }
.product-media img { display: block; width: 100%; aspect-ratio: 1.1 / 1; object-fit: cover; }
.product-badge { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 9px; color: var(--forest); background: rgba(255, 255, 255, .9); border-radius: 8px; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 21px; }
.product-category { margin: 0 0 8px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card-body h3 { margin: 0; color: var(--forest); font-size: 20px; line-height: 1.2; }
.product-card-body > p:not(.product-category) { flex: 1; margin: 12px 0 18px; color: var(--muted); font-size: 13px; }
.text-button { align-self: start; padding: 0; color: var(--green); background: transparent; border: 0; cursor: pointer; font-size: 12px; font-weight: 900; }
.text-button:hover, .text-button:focus-visible { color: var(--forest); }
.text-button span { margin-left: 6px; font-size: 16px; }

.contact-section { background: var(--forest); }
.contact-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; color: var(--white); }
.contact-card .eyebrow { color: var(--green-light); }
.contact-card .eyebrow::before { background: var(--green-light); }
.contact-card h2 { max-width: 670px; color: var(--white); }
.contact-card p:not(.eyebrow) { max-width: 630px; margin: 16px 0 0; color: rgba(255, 255, 255, .7); }

.site-footer { padding: 30px 0 20px; color: #759187; background: var(--forest-deep); font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1.1fr .7fr; gap: 36px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 5px; }
.footer-brand { color: var(--white); font-size: 22px; font-weight: 900; letter-spacing: -.06em; }
.footer-brand span { color: var(--green-light); font-size: 11px; letter-spacing: .06em; }
.footer-grid p { max-width: 300px; margin: 7px 0 0; }
.footer-grid strong { color: var(--white); font-size: 12px; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: var(--green-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .1); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: #25D366;
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(18, 63, 54, .28);
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-icon { display: grid; width: 40px; height: 40px; place-items: center; }
.whatsapp-icon svg { display: block; width: 100%; height: 100%; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { background: #1ebe5d; transform: scale(1.08); }
.whatsapp-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.whatsapp-float::after { position: absolute; inset: -8px; border: 1px solid rgba(32, 184, 102, .25); border-radius: inherit; content: ""; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: .9; transform: scale(.95); } 50% { opacity: .15; transform: scale(1.18); } }

.modal { position: fixed; inset: 0; z-index: 60; display: none; padding: 20px; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 44, 39, .62); backdrop-filter: blur(5px); }
.modal-panel { position: relative; z-index: 1; width: min(900px, 100%); max-height: min(760px, calc(100vh - 40px)); overflow: auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 30px 100px rgba(0, 0, 0, .2); }
.modal-close { position: absolute; top: 16px; right: 18px; z-index: 2; display: grid; width: 36px; height: 36px; place-items: center; color: var(--forest); background: var(--mint); border: 0; border-radius: 50%; cursor: pointer; font-size: 21px; }
.modal-layout { display: grid; grid-template-columns: .9fr 1.1fr; }
.modal-image { display: flex; min-height: 350px; align-items: center; justify-content: center; padding: 24px; background: var(--mint); }
.modal-image img { display: block; width: 100%; max-height: 480px; object-fit: contain; border-radius: 15px; }
.modal-copy { padding: 54px 34px 32px; }
.modal-copy h2 { margin: 0; color: var(--forest); font-size: clamp(26px, 3vw, 38px); line-height: 1.1; }
.modal-summary { margin: 16px 0 0; color: var(--muted); }
.modal-facts { margin: 24px 0 0; }
.modal-facts > div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.modal-facts dt { color: var(--green); font-size: 12px; font-weight: 900; }
.modal-facts dd { margin: 0; color: #49695e; font-size: 13px; }
.modal-copy .button { margin-top: 24px; }
.modal-source { margin: 19px 0 0; color: var(--muted); font-size: 11px; }
.modal-source a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
body[dir="rtl"] .product-badge, body[dir="rtl"] .visual-tag { right: 14px; left: auto; }
body[dir="rtl"] .modal-close { right: auto; left: 18px; }
body[dir="rtl"] .text-button span { margin-right: 6px; margin-left: 0; }

@media (max-width: 980px) {
  .main-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(650px, 100%); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-grid > div:first-child { position: static; }
  .contact-card { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero-art { width: min(620px, 100%); margin: 0 auto; }
  .hero-index, .contact-hero-card { justify-self: start; }
  .split-section { grid-template-columns: 1fr; gap: 30px; }
  .contact-panel { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .top-strip-inner { min-height: 30px; }
  .top-strip-inner > span:first-child { max-width: 65%; }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand { min-width: 0; }
  .brand-copy { min-width: 0; max-width: 132px; }
  .brand-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; }
  .main-nav { display: none; }
  .language-button { min-width: 31px; padding-inline: 6px; }
  .hero-section { padding: 54px 0 64px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-lede { font-size: 15px; }
  .hero-visual { min-height: 325px; }
  .visual-card-large { top: 18px; right: 1%; width: 72%; }
  .visual-card-small { bottom: 1px; left: 1%; width: 52%; }
  .visual-stamp { right: 0; bottom: 3%; width: 90px; height: 90px; }
  .visual-stamp span { font-size: 20px; }
  .visual-stamp small { font-size: 8px; }
  .section-block { padding: 64px 0; }
  .section-heading { display: block; }
  .category-chip { margin-top: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band-image { min-height: 200px; }
  .feature-band > div:first-child { padding: 25px; }
  .feature-number { margin-bottom: 28px; }
  .page-hero { padding: 54px 0 62px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero-lede { font-size: 15px; }
  .page-hero-art { min-height: 270px; }
  .art-panel { right: 4%; width: 220px; height: 165px; }
  .art-panel span { font-size: 48px; }
  .art-card { left: 0; width: 190px; }
  .hero-index, .contact-hero-card { width: 100%; min-height: 150px; }
  .capability-grid, .category-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 190px; }
  .capability-card h3 { margin-top: 36px; }
  .filter-tabs { margin-top: 20px; border-radius: 16px; }
  .contact-panel { padding: 25px; }
  .whatsapp-large { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { display: block; }
  .footer-bottom span + span { display: block; margin-top: 6px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 60px; height: 60px; }
  .whatsapp-icon { width: 35px; height: 35px; }
  .modal { padding: 14px; }
  .modal-panel { max-height: calc(100vh - 28px); }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-image { min-height: 230px; }
  .modal-copy { padding: 42px 22px 25px; }
  .modal-facts > div { grid-template-columns: 92px 1fr; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.news-hero-image { overflow: hidden; min-height: 300px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(2deg); }
.news-hero-image img { display: block; width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: center; }
.news-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.news-feature-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 8px 28px rgba(19, 63, 54, .05); }
.news-feature-card > img { display: block; width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; }
.news-feature-body { padding: 24px; }
.news-feature-body h2 { margin: 0; color: var(--forest); font-size: clamp(24px, 3vw, 36px); line-height: 1.1; letter-spacing: -.04em; }
.news-feature-body p:not(.news-label) { color: var(--muted); font-size: 14px; }
.news-feature-body .news-summary { margin-top: 18px; color: #49695e; font-size: 15px; }
.news-label { margin: 0 0 13px; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.gallery-section { background: var(--white); }
.news-preview-section { background: var(--white); }
.news-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.news-gallery img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-sm); }
.news-gallery img.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.sheet-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.sheet-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(19, 63, 54, .05); transition: transform .2s ease, box-shadow .2s ease; }
.sheet-card:hover, .sheet-card:focus-visible { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(19, 63, 54, .12); }
.sheet-card img { display: block; width: 100%; aspect-ratio: .72 / 1; object-fit: cover; object-position: top; }
.sheet-card strong { display: block; padding: 13px 12px 15px; color: var(--forest); font-size: 12px; line-height: 1.25; }
@media (max-width: 980px) {
  .news-feature-grid { grid-template-columns: 1fr; }
  .sheet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .news-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-gallery img.wide { grid-column: span 2; }
  .sheet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .art-panel span { font-size: 30px; }
  .hero-index span { font-size: 26px; }
}

/* VETRIVA showcase layer */
.language-fixed { padding: 8px 12px; color: var(--forest); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.home-site-header { position: absolute; top: 34px; width: 100%; background: transparent; border-bottom-color: rgba(255, 255, 255, .16); }
.home-site-header .brand-copy strong { color: var(--white); }
.home-site-header .brand-copy small { color: rgba(255, 255, 255, .72); }
.home-site-header .main-nav { color: rgba(255, 255, 255, .78); }
.home-site-header .main-nav a:hover, .home-site-header .main-nav a:focus-visible, .home-site-header .main-nav a.active { color: var(--white); }
.home-site-header .language-fixed { color: var(--white); background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .22); }
.hero-showcase { position: relative; min-height: min(860px, calc(100svh - 34px)); height: min(860px, calc(100svh - 34px)); overflow: hidden; padding: 0; background: var(--forest-deep); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { overflow: hidden; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.05); transition: transform 8s ease; }
.hero-slide.is-active > img { transform: scale(1); }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 28, 25, .92) 0%, rgba(5, 28, 25, .62) 38%, rgba(5, 28, 25, .15) 72%, rgba(5, 28, 25, .36) 100%), linear-gradient(0deg, rgba(5, 28, 25, .68) 0%, transparent 42%); }
.hero-slide-grid { position: relative; z-index: 1; display: flex; min-height: 100%; align-items: center; justify-content: space-between; gap: 40px; padding-top: 90px; padding-bottom: 142px; }
.hero-slide-copy { max-width: 700px; color: var(--white); }
.hero-kicker { margin: 0 0 22px; color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .2em; }
.hero-slide-copy h1 { margin: 0; font-size: clamp(48px, 7vw, 96px); line-height: .95; letter-spacing: -.07em; }
.hero-slide-copy h1 em { color: var(--green-light); font-style: normal; }
.hero-slide-copy > p:not(.hero-kicker) { max-width: 520px; margin: 26px 0 0; color: rgba(255, 255, 255, .76); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; }
.hero-slide-copy .hero-actions { margin-top: 34px; }
.button-ghost { color: var(--white); background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .35); backdrop-filter: blur(8px); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255, 255, 255, .22); }
.hero-slide-card { display: grid; width: min(290px, 30vw); min-height: 220px; align-content: end; padding: 24px; color: var(--white); background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .35); border-radius: 24px; box-shadow: 0 18px 60px rgba(0, 0, 0, .15); backdrop-filter: blur(16px); transform: translateY(10px); }
.hero-slide-card span { color: var(--green-light); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.hero-slide-card strong { margin-top: 58px; font-size: 19px; line-height: 1.15; }
.hero-slide-card small { margin-top: 8px; color: rgba(255, 255, 255, .68); font-size: 11px; line-height: 1.45; }
.hero-control-row { position: absolute; right: 0; bottom: 42px; left: 0; z-index: 3; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.hero-progress { position: relative; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .26); }
.hero-progress-bar { display: block; width: 100%; height: 100%; background: var(--green-light); transform-origin: left; animation: hero-progress 3.25s linear infinite; }
.hero-showcase.is-paused .hero-progress-bar { animation-play-state: paused; }
@keyframes hero-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-controls { display: flex; align-items: center; gap: 14px; }
.hero-control { padding: 0; color: rgba(255, 255, 255, .74); background: transparent; border: 0; cursor: pointer; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-control:hover, .hero-control:focus-visible { color: var(--white); }
.hero-dots { display: flex; gap: 7px; align-items: center; }
.hero-dot { width: 7px; height: 7px; padding: 0; background: rgba(255, 255, 255, .38); border: 0; border-radius: 50%; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.hero-dot.is-active { background: var(--green-light); transform: scale(1.5); }
.hero-scroll-cue { display: flex; align-items: center; justify-self: end; gap: 10px; color: rgba(255, 255, 255, .62); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll-cue i { display: block; width: 34px; height: 1px; background: rgba(255, 255, 255, .52); }
.hero-proof-rail { color: var(--white); background: var(--forest-deep); }
.hero-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-proof-grid > div { display: flex; min-height: 92px; align-items: center; gap: 15px; padding: 18px 22px; border-right: 1px solid rgba(255, 255, 255, .12); }
.hero-proof-grid > div:last-child { border-right: 0; }
.hero-proof-grid strong { color: var(--green-light); font-size: 12px; letter-spacing: .1em; }
.hero-proof-grid span { color: rgba(255, 255, 255, .75); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.about-hero { position: relative; min-height: 620px; overflow: hidden; color: var(--white); background: var(--forest-deep); }
.about-hero-image { position: absolute; inset: 0; background: url('/images/news/booth-wide.jpg') center / cover no-repeat; transform: scale(1.03); }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 28, 25, .9), rgba(5, 28, 25, .48) 55%, rgba(5, 28, 25, .3)); }
.about-hero-inner { position: relative; z-index: 1; display: flex; min-height: 620px; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 82px; }
.about-hero-copy { max-width: 700px; }
.about-hero-copy h1 { margin: 0; font-size: clamp(48px, 7vw, 86px); line-height: .96; letter-spacing: -.07em; }
.about-hero-copy > p:not(.hero-kicker) { max-width: 560px; margin: 24px 0 0; color: rgba(255, 255, 255, .76); font-size: 18px; }
.about-hero-note { display: grid; width: 270px; min-height: 190px; align-content: end; padding: 24px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .32); border-radius: 24px; backdrop-filter: blur(16px); }
.about-hero-note span { color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.about-hero-note strong { margin-top: 46px; font-size: 19px; line-height: 1.2; }
.about-hero-note small { margin-top: 7px; color: rgba(255, 255, 255, .64); font-size: 11px; }
.about-intro { background: var(--white); }
.about-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.about-intro-title h2, .capability-story-copy h2, .principles-section h2 { margin: 0; color: var(--forest); font-size: clamp(34px, 4.3vw, 60px); line-height: 1.02; letter-spacing: -.06em; }
.about-intro-copy { max-width: 650px; color: var(--muted); font-size: 17px; }
.about-intro-copy p { margin: 0 0 18px; }
.about-signature { display: inline-flex; align-items: center; gap: 13px; margin-top: 22px; color: var(--forest); }
.signature-mark { display: grid; width: 44px; height: 44px; place-items: center; color: var(--white); background: var(--green); border-radius: 50% 50% 50% 11px; font-weight: 900; transform: rotate(-12deg); }
.about-signature strong, .about-signature small { display: block; line-height: 1.2; }
.about-signature strong { letter-spacing: .08em; }
.about-signature small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.collaboration-section { background: var(--cream); }
.collaboration-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 16px; }
.collaboration-card { position: relative; min-height: 270px; overflow: hidden; margin: 0; background: var(--forest); border-radius: 18px; }
.collaboration-card-large { grid-row: span 2; min-height: 560px; }
.collaboration-card-wide { grid-column: span 2; }
.collaboration-card img { display: block; width: 100%; height: 100%; min-height: 270px; object-fit: cover; transition: transform .5s ease; }
.collaboration-card-large img { min-height: 560px; }
.collaboration-card:hover img { transform: scale(1.05); }
.collaboration-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .88), transparent 58%); content: ""; }
.collaboration-card figcaption { position: absolute; right: 22px; bottom: 21px; left: 22px; z-index: 1; color: var(--white); }
.collaboration-card figcaption span { color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.collaboration-card figcaption strong, .collaboration-card figcaption small { display: block; }
.collaboration-card figcaption strong { margin-top: 7px; font-size: 21px; }
.collaboration-card figcaption small { margin-top: 3px; color: rgba(255, 255, 255, .7); font-size: 11px; }
.capability-story { background: var(--white); }
.capability-story-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.capability-story-image { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.capability-story-image img { display: block; width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.process-list { margin-top: 28px; border-top: 1px solid var(--line); }
.process-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.process-list > div > span { color: var(--green); font-size: 12px; font-weight: 900; }
.process-list strong { color: var(--forest); font-size: 15px; }
.process-list p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
.principles-section { background: var(--mint); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principles-grid article { min-height: 190px; padding: 24px; background: rgba(255, 255, 255, .64); border: 1px solid rgba(47, 141, 103, .16); border-radius: 18px; }
.principles-grid article > span { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.principles-grid h3 { margin: 42px 0 7px; color: var(--forest); font-size: 22px; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  .hero-slide-grid, .about-hero-inner { align-items: end; }
  .hero-slide-card, .about-hero-note { width: 250px; }
  .about-intro-grid, .capability-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .collaboration-grid { grid-template-columns: 1fr 1fr; }
  .collaboration-card-large { grid-row: auto; min-height: 360px; }
  .collaboration-card-large img { min-height: 360px; }
  .collaboration-card-wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .home-site-header { top: 30px; }
  .hero-showcase { min-height: 720px; height: 720px; }
  .hero-slide-grid { display: block; padding-top: 150px; padding-bottom: 148px; }
  .hero-slide-copy h1 { font-size: 52px; }
  .hero-slide-copy > p:not(.hero-kicker) { font-size: 15px; }
  .hero-slide-card { position: absolute; right: 14px; bottom: 154px; width: 210px; min-height: 130px; padding: 16px; }
  .hero-slide-card strong { margin-top: 22px; font-size: 15px; }
  .hero-slide-card small { display: none; }
  .hero-control-row { right: 14px; bottom: 28px; left: 14px; grid-template-columns: 1fr auto; gap: 12px; }
  .hero-progress { grid-column: span 2; }
  .hero-scroll-cue { display: none; }
  .hero-proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof-grid > div { min-height: 66px; padding: 12px 14px; }
  .hero-proof-grid > div:nth-child(2) { border-right: 0; }
  .about-hero, .about-hero-inner { min-height: 700px; }
  .about-hero-inner { display: block; padding-top: 160px; padding-bottom: 32px; }
  .about-hero-copy h1 { font-size: 53px; }
  .about-hero-copy > p:not(.hero-kicker) { font-size: 15px; }
  .about-hero-note { width: 220px; min-height: 150px; margin-top: 34px; }
  .about-hero-note strong { margin-top: 26px; font-size: 16px; }
  .collaboration-grid { grid-template-columns: 1fr; }
  .collaboration-card-large, .collaboration-card-wide { grid-column: auto; min-height: 300px; }
  .collaboration-card-large img, .collaboration-card img { min-height: 300px; }
  .principles-grid { grid-template-columns: 1fr; }
}

/* Brand asset, modal polish and faster showcase motion */
.brand-mark { display: grid; width: 48px; height: 48px; padding: 3px; place-items: center; background: var(--white); border: 1px solid rgba(14, 118, 143, .18); border-radius: 50%; overflow: hidden; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.home-site-header .brand-mark { background: rgba(255, 255, 255, .96); border-color: rgba(255, 255, 255, .65); }
.signature-mark { width: 54px; height: 54px; padding: 3px; background: var(--white); border: 1px solid rgba(14, 118, 143, .18); transform: none; }
.signature-mark img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.modal-panel { width: min(900px, calc(100vw - 40px)); overflow-x: hidden; overflow-y: auto; }
.modal-close { top: 14px; right: 14px; width: 42px; height: 42px; color: var(--forest); background: rgba(236, 249, 242, .96); border: 1px solid rgba(24, 128, 96, .15); box-shadow: 0 8px 20px rgba(11, 44, 39, .1); font-size: 25px; line-height: 1; }
.modal-layout, .modal-image, .modal-copy { min-width: 0; }
.modal-copy { overflow-wrap: anywhere; }
@media (max-width: 700px) {
  .brand-mark { width: 40px; height: 40px; }
  .modal-panel { width: calc(100vw - 28px); }
  .modal-close { top: 10px; right: 10px; }
}

/* Product Design refinement: a denser, more expressive homepage */
.brand-mark { transform: none; }
html, body { overflow-x: hidden; }
.home-marquee { overflow: hidden; color: var(--green-light); background: #0e3831; border-top: 1px solid rgba(166, 225, 196, .16); border-bottom: 1px solid rgba(166, 225, 196, .16); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 26px; padding: 14px 0; animation: marquee-scroll 30s linear infinite; white-space: nowrap; }
.marquee-track span { color: rgba(255, 255, 255, .76); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.marquee-track i { color: var(--green-light); font-size: 11px; font-style: normal; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.home-intro-section { overflow: hidden; background: var(--white); }
.home-intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.home-intro-copy { max-width: 520px; }
.home-intro-copy h2 { margin: 0; color: var(--forest); font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.065em; }
.home-intro-copy > p:not(.eyebrow) { max-width: 430px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.home-intro-copy .text-link { display: inline-flex; gap: 8px; margin-top: 30px; color: var(--green); font-size: 13px; font-weight: 900; }
.home-intro-copy .text-link span { transition: transform .2s ease; }
.home-intro-copy .text-link:hover span { transform: translateX(4px); }
.home-intro-visual { position: relative; min-height: 500px; }
.home-intro-main { position: absolute; top: 0; right: 0; width: 86%; margin: 0; overflow: hidden; background: var(--forest); border-radius: 28px; box-shadow: var(--shadow); }
.home-intro-main::after, .home-intro-float::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .82), transparent 62%); content: ""; }
.home-intro-main img { display: block; width: 100%; aspect-ratio: 1.3 / 1; object-fit: cover; transition: transform .8s ease; }
.home-intro-main:hover img { transform: scale(1.04); }
.home-intro-main figcaption, .home-intro-float figcaption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; color: var(--white); }
.home-intro-main figcaption span, .home-intro-float figcaption span { color: var(--green-light); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.home-intro-main figcaption strong, .home-intro-float figcaption strong { display: block; max-width: 340px; margin-top: 7px; font-size: 19px; line-height: 1.15; }
.home-intro-float { position: absolute; bottom: 0; left: 0; width: 42%; margin: 0; overflow: hidden; background: var(--forest); border: 8px solid var(--white); border-radius: 22px; box-shadow: 0 20px 45px rgba(19, 63, 54, .18); transform: rotate(-3deg); }
.home-intro-float img { display: block; width: 100%; aspect-ratio: .82 / 1; object-fit: cover; transition: transform .8s ease; }
.home-intro-float:hover img { transform: scale(1.05); }
.home-intro-float figcaption { right: 14px; bottom: 14px; left: 14px; }
.home-intro-float figcaption strong { font-size: 14px; }
.metrics-section { color: var(--white); background: var(--forest-deep); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-card { min-height: 190px; padding: 30px 24px; border-right: 1px solid rgba(255, 255, 255, .14); }
.metric-card:last-child { border-right: 0; }
.metric-card strong { display: block; color: var(--green-light); font-size: clamp(46px, 5vw, 68px); font-weight: 500; letter-spacing: -.08em; line-height: 1; }
.metric-card span { display: block; margin-top: 20px; color: var(--white); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.metric-card small { display: block; margin-top: 6px; color: rgba(255, 255, 255, .55); font-size: 11px; }
.category-showcase-section { background: var(--cream); }
.category-showcase-grid { display: grid; grid-template-columns: 1.14fr .86fr; grid-template-rows: repeat(2, minmax(245px, 1fr)); gap: 16px; }
.category-panel { position: relative; min-height: 270px; overflow: hidden; color: var(--white); background: var(--forest); border-radius: 22px; box-shadow: 0 12px 32px rgba(19, 63, 54, .08); }
.category-panel-large { grid-row: span 2; min-height: 530px; }
.category-panel::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .92) 0%, rgba(5, 28, 25, .12) 76%); content: ""; }
.category-panel img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .7s ease; }
.category-panel:hover img { filter: saturate(1.15); transform: scale(1.06); }
.category-panel-index { position: absolute; top: 20px; left: 22px; z-index: 1; color: var(--green-light); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.category-panel > div { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; }
.category-panel h3 { margin: 0; font-size: clamp(22px, 3vw, 34px); line-height: 1; letter-spacing: -.04em; }
.category-panel p { max-width: 430px; margin: 10px 0 0; color: rgba(255, 255, 255, .72); font-size: 12px; }
.category-panel b { display: inline-flex; gap: 8px; align-items: center; margin-top: 15px; color: var(--green-light); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.category-panel b span { font-size: 15px; transition: transform .2s ease; }
.category-panel:hover b span { transform: translate(3px, -3px); }
.journey-section { background: var(--mint); }
.journey-heading { align-items: end; }
.journey-heading > p { max-width: 380px; margin: 0; color: var(--muted); font-size: 15px; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.journey-grid article { position: relative; min-height: 260px; padding: 26px; background: rgba(255, 255, 255, .78); border: 1px solid rgba(47, 141, 103, .15); border-radius: 18px; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.journey-grid article:hover { background: var(--white); box-shadow: 0 18px 38px rgba(19, 63, 54, .12); transform: translateY(-7px); }
.journey-grid article > span { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.journey-grid h3 { margin: 58px 0 6px; color: var(--forest); font-size: 25px; letter-spacing: -.04em; }
.journey-grid p { max-width: 260px; margin: 0; color: var(--muted); font-size: 13px; }
.journey-grid a { position: absolute; right: 26px; bottom: 25px; color: var(--green); font-size: 11px; font-weight: 900; }
.js-enabled [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1); }
.js-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.header-inner { position: relative; }
.menu-toggle { display: none; border: 1px solid rgba(19, 63, 54, .22); border-radius: 999px; padding: 8px 12px; color: var(--forest); background: rgba(255, 255, 255, .82); font: inherit; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.menu-toggle:focus-visible { outline: 2px solid var(--green-light); outline-offset: 3px; }
.home-site-header .menu-toggle { color: var(--white); border-color: rgba(255, 255, 255, .32); background: rgba(255, 255, 255, .12); }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .js-enabled [data-reveal] { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 980px) {
  .home-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-intro-copy { max-width: 680px; }
  .home-intro-visual { min-height: 450px; }
  .metric-card { padding: 24px 18px; }
}
@media (max-width: 700px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav { display: none; position: absolute; top: calc(100% - 1px); left: 14px; right: 14px; z-index: 30; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid rgba(19, 63, 54, .14); border-radius: 16px; background: rgba(255, 255, 255, .97); box-shadow: 0 18px 42px rgba(19, 63, 54, .18); }
  .home-site-header .main-nav { border-color: rgba(255, 255, 255, .22); background: rgba(8, 47, 40, .96); }
  .mobile-nav-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: 10px; }
  .main-nav a:hover, .main-nav a:focus-visible { background: rgba(47, 141, 103, .1); }
  .home-site-header .main-nav a:hover, .home-site-header .main-nav a:focus-visible { background: rgba(255, 255, 255, .1); }
  .marquee-track { gap: 16px; padding: 11px 0; }
  .marquee-track span { font-size: 9px; }
  .home-intro-section { padding-top: 68px; padding-bottom: 70px; }
  .home-intro-copy h2 { font-size: 45px; }
  .home-intro-visual { min-height: 330px; }
  .home-intro-main { width: 88%; border-radius: 20px; }
  .home-intro-main figcaption { right: 16px; bottom: 16px; left: 16px; }
  .home-intro-main figcaption strong { font-size: 15px; }
  .home-intro-float { width: 43%; border-width: 5px; border-radius: 15px; }
  .home-intro-float figcaption { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card { min-height: 142px; padding: 20px 15px; border-right: 1px solid rgba(255, 255, 255, .14); border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .metric-card:nth-child(2n) { border-right: 0; }
  .metric-card:nth-last-child(-n + 2) { border-bottom: 0; }
  .metric-card strong { font-size: 46px; }
  .metric-card span { margin-top: 12px; font-size: 10px; }
  .metric-card small { font-size: 10px; }
  .category-showcase-grid { display: block; }
  .category-panel, .category-panel-large { min-height: 300px; margin-top: 14px; }
  .journey-heading { display: block; }
  .journey-heading > p { margin-top: 20px; }
  .journey-grid { grid-template-columns: 1fr; margin-top: 28px; }
  .journey-grid article { min-height: 220px; }
}

/* About Us editorial / company showcase layer */
.language-fixed { flex-shrink: 0; gap: 2px; }
.about-editorial { background: var(--white); }
.about-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.about-editorial-image { position: relative; min-height: 490px; overflow: hidden; margin: 0; border-radius: 24px; background: var(--forest); box-shadow: var(--shadow); }
.about-editorial-image img { display: block; width: 100%; height: 100%; min-height: 490px; object-fit: cover; transition: transform .7s ease; }
.about-editorial-image:hover img { transform: scale(1.04); }
.about-editorial-image::after, .about-capability-image::after, .about-category-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .78), transparent 60%); content: ""; pointer-events: none; }
.about-editorial-image figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; z-index: 1; color: var(--white); }
.about-editorial-image figcaption span, .about-capability-image figcaption span { display: block; color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.about-editorial-image figcaption strong, .about-capability-image figcaption strong { display: block; max-width: 360px; margin-top: 8px; font-size: 22px; line-height: 1.12; }
.about-editorial-copy h2, .about-capability-copy h2 { max-width: 560px; margin: 0; color: var(--forest); font-size: clamp(36px, 4.8vw, 64px); line-height: 1.02; letter-spacing: -.06em; }
.about-editorial-copy > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-editorial-copy .about-signature { margin-top: 36px; }
.about-stats-section { padding: 92px 0 104px; color: var(--white); background: var(--forest-deep); }
.about-stats-heading { max-width: 760px; margin-bottom: 48px; }
.about-stats-heading h2 { margin: 0; color: var(--white); font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -.06em; }
.about-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 34px; }
.about-stats-grid article { min-height: 152px; padding: 24px 0 22px; border-top: 1px solid rgba(166, 225, 196, .32); }
.about-stats-grid strong { display: block; color: var(--green-light); font-size: clamp(42px, 5vw, 66px); line-height: .95; letter-spacing: -.06em; }
.about-stats-grid span, .about-stats-grid small { display: block; }
.about-stats-grid span { margin-top: 18px; color: var(--white); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.about-stats-grid small { max-width: 240px; margin-top: 8px; color: rgba(255, 255, 255, .62); font-size: 12px; line-height: 1.45; }
.about-category-section { background: var(--cream); }
.about-category-section .section-heading > div > p:not(.eyebrow) { max-width: 560px; margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.about-category-grid { display: grid; grid-template-columns: 1.14fr .86fr; grid-template-rows: repeat(2, minmax(245px, 1fr)); gap: 16px; margin-top: 44px; }
.about-category-card { position: relative; min-height: 245px; overflow: hidden; display: flex; align-items: end; padding: 26px; color: var(--white); border-radius: 20px; background: var(--forest); isolation: isolate; }
.about-category-card-large { grid-row: span 2; min-height: 520px; }
.about-category-card img { position: absolute; inset: 0; z-index: -2; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.about-category-card:hover img { transform: scale(1.06); }
.about-category-card > div { position: relative; z-index: 1; }
.about-category-card span { color: var(--green-light); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.about-category-card h3 { margin: 12px 0 4px; font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.about-category-card p { max-width: 430px; margin: 0; color: rgba(255, 255, 255, .75); font-size: 13px; line-height: 1.5; }
.about-capability-section { background: var(--white); }
.about-capability-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.about-capability-copy > p:not(.eyebrow) { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.about-capability-list { margin-top: 36px; }
.about-capability-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.about-capability-list > div > span { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.about-capability-list strong { color: var(--forest); font-size: 17px; }
.about-capability-list p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.about-capability-image { position: relative; min-height: 560px; overflow: hidden; margin: 0; border-radius: 24px; background: var(--forest); box-shadow: var(--shadow); }
.about-capability-image img { display: block; width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform .7s ease; }
.about-capability-image:hover img { transform: scale(1.04); }
.about-capability-image figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; z-index: 1; color: var(--white); }
.about-collaboration-section { color: var(--white); background: var(--forest-deep); }
.about-collaboration-section .section-heading h2 { color: var(--white); }
.about-collaboration-section .section-heading > div > p:not(.eyebrow) { max-width: 570px; margin-top: 18px; color: rgba(255, 255, 255, .66); }
.about-collaboration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.about-collaboration-grid figure { position: relative; min-height: 330px; overflow: hidden; margin: 0; border-radius: 18px; background: var(--forest); }
.about-collaboration-grid figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .88), transparent 60%); content: ""; }
.about-collaboration-grid img { display: block; width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .6s ease; }
.about-collaboration-grid figure:hover img { transform: scale(1.05); }
.about-collaboration-grid figcaption { position: absolute; right: 22px; bottom: 22px; left: 22px; z-index: 1; }
.about-collaboration-grid figcaption span { color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.about-collaboration-grid figcaption strong { display: block; margin-top: 8px; font-size: 22px; }
@media (max-width: 980px) {
  .about-editorial-grid, .about-capability-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-editorial-image, .about-editorial-image img { min-height: 420px; }
  .about-capability-image, .about-capability-image img { min-height: 440px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
  .about-category-grid { grid-template-columns: 1fr 1fr; }
  .about-category-card-large { grid-row: auto; min-height: 360px; }
  .about-collaboration-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .language-fixed { padding: 3px; }
  .language-button { min-width: 28px; padding: 5px 5px; font-size: 9px; }
  .about-hero-editorial .about-hero-copy h1 { max-width: 320px; font-size: 52px; }
  .about-editorial-grid { gap: 32px; }
  .about-editorial-image, .about-editorial-image img { min-height: 330px; }
  .about-editorial-copy h2, .about-capability-copy h2 { font-size: 45px; }
  .about-stats-section { padding: 70px 0 76px; }
  .about-stats-heading { margin-bottom: 30px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .about-stats-grid article { min-height: 136px; padding: 19px 0; }
  .about-stats-grid strong { font-size: 42px; }
  .about-stats-grid span { margin-top: 12px; font-size: 9px; letter-spacing: .06em; }
  .about-stats-grid small { font-size: 10px; }
  .about-category-grid, .about-collaboration-grid { display: block; }
  .about-category-card, .about-category-card-large, .about-collaboration-grid figure { min-height: 300px; margin-top: 14px; }
  .about-capability-image, .about-capability-image img { min-height: 360px; }
}

/* About Us source-material refresh: VETRIVA-branded visual rhythm */
.about-hero-image-brand { background: url('/images/about-assets/hero-promise.jpg') center / cover no-repeat; }
.about-principles-section { background: var(--cream); }
.about-principles-section .section-heading { max-width: 780px; }
.about-principles-section .section-heading > div > p:not(.eyebrow) { max-width: 620px; margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.about-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.about-principle-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 34px rgba(19, 63, 54, .07); transition: transform .35s ease, box-shadow .35s ease; }
.about-principle-card:hover { transform: translateY(-7px); box-shadow: 0 22px 46px rgba(19, 63, 54, .14); }
.about-principle-card figure { position: relative; height: 230px; overflow: hidden; margin: 0; background: var(--forest); }
.about-principle-card figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .5), transparent 55%); content: ""; }
.about-principle-card figure img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about-principle-card:hover figure img { transform: scale(1.06); }
.about-principle-card figure span { position: absolute; right: 18px; bottom: 16px; z-index: 1; color: var(--green-light); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.about-principle-card > div { min-height: 185px; padding: 24px; }
.about-principle-card > div > p:first-child { margin: 0; color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.about-principle-card h3 { margin: 14px 0 9px; color: var(--forest); font-size: 25px; line-height: 1.05; letter-spacing: -.04em; }
.about-principle-card > div > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.about-delivery-section { background: var(--white); }
.about-delivery-grid { display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 82px; }
.about-delivery-image { position: relative; min-height: 480px; overflow: hidden; margin: 0; border-radius: 24px; background: var(--forest); box-shadow: var(--shadow); }
.about-delivery-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 28, 25, .8), transparent 60%); content: ""; pointer-events: none; }
.about-delivery-image img { display: block; width: 100%; height: 100%; min-height: 480px; object-fit: cover; transition: transform .7s ease; }
.about-delivery-image:hover img { transform: scale(1.04); }
.about-delivery-image figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; z-index: 1; color: var(--white); }
.about-delivery-image figcaption span { display: block; color: var(--green-light); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.about-delivery-image figcaption strong { display: block; max-width: 360px; margin-top: 8px; font-size: 22px; line-height: 1.12; }
.about-delivery-copy h2 { max-width: 560px; margin: 0; color: var(--forest); font-size: clamp(36px, 4.8vw, 64px); line-height: 1.02; letter-spacing: -.06em; }
.about-delivery-copy > p:not(.eyebrow) { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.about-delivery-points { margin-top: 34px; border-top: 1px solid var(--line); }
.about-delivery-points > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.about-delivery-points strong { color: var(--green); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.about-delivery-points span { color: var(--muted); font-size: 13px; line-height: 1.45; }
@media (max-width: 980px) {
  .about-principles-grid { grid-template-columns: 1fr 1fr; }
  .about-delivery-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-delivery-image, .about-delivery-image img { min-height: 420px; }
}
@media (max-width: 700px) {
  .about-principles-grid { display: block; }
  .about-principle-card { margin-top: 14px; }
  .about-principle-card figure { height: 210px; }
  .about-delivery-image, .about-delivery-image img { min-height: 330px; }
  .about-delivery-copy h2 { font-size: 45px; }
  .about-delivery-points > div { grid-template-columns: 92px 1fr; gap: 10px; }
}
