:root {
  --agafam-green: #44ac5b;
  --agafam-deep: #336856;
  --agafam-ink: #17231d;
  --agafam-soft: #eef7ef;
  --agafam-paper: #f7f8f3;
  --agafam-line: rgba(23, 35, 29, 0.12);
  color: var(--agafam-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  background: var(--agafam-paper);
  color: var(--agafam-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.container-shell {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--agafam-deep);
}

.site-brand img {
  width: 4rem;
  height: 3.5rem;
  object-fit: contain;
}

.site-brand small {
  display: block;
  color: #6d726d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.agafam-nav,
.agafam-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agafam-nav a {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: #26312a;
  font-size: 0.95rem;
  font-weight: 800;
}

.agafam-nav .current-menu-item > a,
.agafam-nav .current_page_item > a,
.agafam-nav a:hover {
  background: var(--agafam-deep);
  color: #fff;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  transition: 180ms ease;
}

.button--primary {
  background: var(--agafam-green);
  color: #fff;
  box-shadow: 0 14px 35px rgba(68, 172, 91, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--agafam-deep);
  color: #fff;
}

.button--dark {
  background: var(--agafam-ink);
  color: #fff;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--agafam-deep);
  color: #fff;
}

.button--ghost {
  border-color: rgba(51, 104, 86, 0.2);
  background: #fff;
  color: var(--agafam-deep);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.button--outline-light:hover {
  background: #fff;
  color: var(--agafam-deep);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--agafam-line);
  border-radius: 999px;
  background: #fff;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 2px 0;
  background: var(--agafam-deep);
}

.mobile-nav {
  border-top: 1px solid var(--agafam-line);
  background: #fff;
  padding: 1rem 1.25rem;
}

.agafam-nav--mobile {
  display: grid;
  align-items: stretch;
}

.hero,
.page-hero {
  position: relative;
  background: var(--agafam-ink);
  color: #fff;
  overflow: hidden;
}

.hero--home {
  min-height: calc(100vh - 80px);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 32, 25, 0.94), rgba(16, 32, 25, 0.72), rgba(16, 32, 25, 0.22));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 80px);
  flex-direction: column;
  justify-content: center;
  padding-block: 6rem;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p:not(.section-eyebrow),
.page-hero p:not(.section-eyebrow) {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.8;
}

.page-hero {
  padding-block: 5rem;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.product-archive-hero {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.product-archive-hero .button {
  margin-top: 2rem;
}

.product-archive-hero__media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.product-archive-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  border-radius: 1.5rem;
  object-fit: cover;
}

.product-archive-hero__media img:nth-child(2) {
  background: #fff;
  object-fit: contain;
  padding: 0.75rem;
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  border-radius: 999px;
  background: rgba(68, 172, 91, 0.12);
  color: var(--agafam-deep);
  padding: 0.42rem 0.78rem;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--agafam-green);
}

.hero .section-eyebrow,
.page-hero .section-eyebrow,
.about-hero .section-eyebrow,
.content-section--green .section-eyebrow,
.section-header--dark .section-eyebrow,
.simple-card--deep .section-eyebrow,
.contact-form .section-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #8fe29f;
}

.hero .section-eyebrow::before,
.page-hero .section-eyebrow::before,
.about-hero .section-eyebrow::before,
.content-section--green .section-eyebrow::before,
.section-header--dark .section-eyebrow::before,
.simple-card--deep .section-eyebrow::before,
.contact-form .section-eyebrow::before {
  background: #8fe29f;
}

.content-section {
  background: #fff;
  padding-block: 5.5rem;
}

.content-section--soft {
  background: var(--agafam-soft);
}

.content-section--green {
  background: var(--agafam-deep);
  color: #fff;
}

.about-hero {
  background: var(--agafam-ink);
  color: #fff;
  padding-block: 5.5rem;
}

.about-hero__grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-hero h1 {
  max-width: 12ch;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-hero p:not(.section-eyebrow) {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.about-solutions-grid {
  display: grid;
  align-items: start;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.expertise-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.expertise-item {
  display: flex;
  gap: 0.8rem;
  min-height: 5rem;
  align-items: flex-start;
  border-radius: 1rem;
  background: var(--agafam-paper);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 86, 0.05);
}

.expertise-item span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--agafam-green);
  border-radius: 999px;
  color: var(--agafam-green);
  font-weight: 900;
  line-height: 1;
}

.expertise-item p {
  margin: 0;
  color: #4c554f;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
}

.mission-vision-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.simple-card--large {
  border: none;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 12px 35px rgba(33, 53, 41, 0.08);
}

.simple-card--large h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.simple-card--large p:not(.section-eyebrow) {
  font-size: 1.02rem;
  line-height: 1.8;
}

.simple-card--deep {
  background: var(--agafam-deep);
  color: #fff;
}

.simple-card--deep h2 {
  color: #fff;
}

.simple-card--deep p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.service-feature-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-feature {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  border-radius: 2rem;
  background: var(--agafam-paper);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 86, 0.05);
}

.service-feature__label {
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 14px 45px rgba(33, 53, 41, 0.07);
}

.service-feature__label span,
.highlight-card span,
.contact-card span {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(68, 172, 91, 0.12);
  color: var(--agafam-deep);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-feature__label p {
  margin: 1.5rem 0 0;
  color: var(--agafam-green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-feature__label h2 {
  margin: 0.8rem 0 0;
  color: var(--agafam-ink);
  font-size: 1.55rem;
  line-height: 1.14;
}

.service-feature__body p {
  margin: 0;
  color: #5c665f;
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-feature__body .button {
  margin-top: 1.75rem;
}

.product-highlight-split {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.product-highlight-split > img {
  width: min(100%, 28rem);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 2rem;
  background: #fff;
  object-fit: contain;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(33, 53, 41, 0.13);
}

.highlight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.highlight-grid--home {
  max-width: 46rem;
}

.highlight-card {
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
}

.highlight-card h3 {
  margin: 1rem 0 0;
  color: var(--agafam-ink);
}

.highlight-card p {
  margin: 0.65rem 0 0;
  color: #646b65;
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 1rem;
  align-items: start;
  border-radius: 1rem;
  background: var(--agafam-paper);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 86, 0.05);
  transition: 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: #fff;
  box-shadow: 0 18px 55px rgba(33, 53, 41, 0.08);
}

.contact-card span {
  grid-row: span 2;
}

.contact-card strong {
  color: var(--agafam-deep);
}

.contact-card small {
  color: #5c665f;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-form {
  position: relative;
  border-radius: 2rem;
  background: var(--agafam-ink);
  color: #fff;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(33, 53, 41, 0.2);
}

.contact-form h1 {
  margin: 0.8rem 0 0;
  font-size: 2rem;
}

.contact-form__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  padding: 0.9rem 1rem;
}

.contact-form input {
  min-height: 3rem;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(143, 226, 159, 0.35);
  outline-offset: 2px;
}

.contact-form__error {
  border-radius: 0.85rem;
  background: rgba(220, 38, 38, 0.18);
  color: #fee2e2;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form__notice {
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.contact-form__notice--success {
  background: rgba(68, 172, 91, 0.18);
  color: #dfffe6;
}

.contact-form__notice--error {
  background: rgba(220, 38, 38, 0.18);
  color: #fee2e2;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.contact-form .button {
  width: 100%;
  margin-top: 1.5rem;
}

.office-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
}

.office-panel h2 {
  margin: 0.8rem 0 0;
  font-size: 1.8rem;
}

.office-panel p:not(.section-eyebrow) {
  color: #5c665f;
  line-height: 1.75;
}

.office-panel__note {
  border-radius: 1.5rem;
  background: var(--agafam-paper);
  padding: 1.5rem;
}

.office-panel__note strong {
  color: var(--agafam-deep);
}

.cta-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  border-radius: 2rem;
  background: var(--agafam-ink);
  color: #fff;
  padding: 2rem;
}

.cta-panel--green {
  background: var(--agafam-deep);
}

.cta-panel h2 {
  max-width: 45rem;
  margin: 0.8rem 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.cta-panel p:not(.section-eyebrow) {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.cta-panel .section-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #8fe29f;
}

.cta-panel .section-eyebrow::before {
  background: #8fe29f;
}

.catalog-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-product-card {
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 12px 35px rgba(33, 53, 41, 0.05);
}

.catalog-product-card p:first-child {
  margin: 0;
  color: var(--agafam-green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-product-card h3 {
  margin: 0.8rem 0 0;
  color: var(--agafam-ink);
  font-size: 1.2rem;
}

.catalog-product-card p:last-child {
  color: #646b65;
  font-size: 0.92rem;
  line-height: 1.65;
}

.update-feature-card {
  display: grid;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--agafam-paper);
  box-shadow: 0 18px 55px rgba(33, 53, 41, 0.08);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.update-feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.update-feature-card > div {
  padding: 2rem;
}

.update-feature-card h2 {
  margin: 1.4rem 0 0;
  color: var(--agafam-ink);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.update-feature-card p:not(.section-eyebrow) {
  color: #646b65;
  line-height: 1.8;
}

.update-feature-card .button {
  margin-top: 1.4rem;
}

.section-header {
  max-width: 48rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0.8rem 0 0;
  color: var(--agafam-ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-header p:not(.section-eyebrow),
.product-category-section header p:not(.section-eyebrow) {
  color: #646b65;
  font-size: 1.05rem;
  line-height: 1.8;
}

.simple-card .section-eyebrow {
  color: var(--agafam-deep);
}

.simple-card--deep .section-eyebrow {
  color: #8fe29f;
}

.section-header--dark h2,
.section-header--dark p:not(.section-eyebrow) {
  color: #fff;
}

.split-grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.image-card {
  position: relative;
}

.image-card img,
.rounded-media,
.featured-media img {
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(33, 53, 41, 0.13);
}

.image-card img {
  aspect-ratio: 4 / 5;
}

.year-badge {
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  border-radius: 1.4rem;
  background: var(--agafam-deep);
  color: #fff;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 24px 70px rgba(33, 53, 41, 0.22);
}

.year-badge strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.year-badge span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.mini-card-grid,
.service-grid,
.product-grid,
.post-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.mini-card,
.service-card,
.product-card,
.simple-card,
.detail-panel {
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.4rem;
}

.mini-card {
  background: var(--agafam-paper);
  color: var(--agafam-deep);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 86, 0.05);
}

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

.service-card {
  border: none;
  box-shadow: 0 12px 35px rgba(33, 53, 41, 0.08);
}

.service-card h3,
.product-card h3,
.simple-card h2 {
  margin: 0 0 0.8rem;
  color: var(--agafam-ink);
  font-size: 1.35rem;
}

.service-card p,
.product-card p,
.simple-card p:not(.section-eyebrow) {
  color: #646b65;
  line-height: 1.7;
}

.simple-card--large {
  border-radius: 2rem;
}

.simple-card--deep {
  background: var(--agafam-deep);
  color: #fff;
}

.simple-card--deep h2 {
  color: #fff;
}

.simple-card--deep p:not(.section-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card__image {
  display: flex;
  height: 15rem;
  align-items: center;
  justify-content: center;
  background: var(--agafam-paper);
  padding: 1rem;
}

.product-card__image img {
  max-height: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__type {
  margin: 0 0 0.75rem;
  color: var(--agafam-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card__meta {
  font-size: 0.92rem;
}

.text-link {
  color: var(--agafam-deep);
  font-weight: 900;
}

.product-category-section {
  margin-top: 1.5rem;
  border-radius: 2rem;
  background: var(--agafam-paper);
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 86, 0.05);
}

.product-category-section:first-of-type {
  margin-top: 3rem;
}

.product-category-section__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
}

.product-category-section h2 {
  margin: 0;
  color: var(--agafam-ink);
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-detail-grid {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) 24rem;
}

.product-hero__image {
  border-radius: 2rem;
  background: #fff;
  padding: 1rem;
}

.product-hero__image img {
  max-height: 32rem;
  width: 100%;
  object-fit: contain;
  border-radius: 1.5rem;
}

.article-content {
  color: #333c35;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content a {
  color: var(--agafam-deep);
  font-weight: 800;
  text-decoration: underline;
}

.narrow-content {
  max-width: 58rem;
}

.simple-card--media {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 1.5rem;
}

.site-footer {
  background: var(--agafam-ink);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  padding-block: 4rem;
}

.site-footer__logo {
  width: 5rem;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.25rem;
}

.site-footer p,
.footer-contact,
.footer-nav {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.site-footer h2 {
  color: #8fe29f;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 1050px) {
  .site-nav,
  .site-header__actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .split-grid,
  .about-hero__grid,
  .about-solutions-grid,
  .mission-vision-grid,
  .product-archive-hero,
  .service-feature,
  .product-highlight-split,
  .contact-grid,
  .office-panel,
  .cta-panel,
  .product-category-section__grid,
  .update-feature-card,
  .product-detail-grid,
  .site-footer__grid,
  .simple-card--media {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .product-grid,
  .expertise-grid,
  .highlight-grid,
  .catalog-product-grid,
  .product-archive-hero__media,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.5rem, 11vw, 4rem);
  }
}

@media (max-width: 640px) {
  .container-shell {
    width: min(100% - 2rem, 80rem);
  }

  .hero__content,
  .content-section,
  .page-hero {
    padding-block: 4rem;
  }

  .year-badge {
    right: 1rem;
    bottom: -1rem;
  }

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