:root {
  --bg: #f5f2e9;
  --surface: #fdfbf6;
  --surface-strong: #1d2f1f;
  --text: #213127;
  --text-soft: #5d6d60;
  --line: rgba(33, 49, 39, 0.12);
  --green: #49733b;
  --green-dark: #2d4a23;
  --gold: #d1b074;
  --shadow: 0 24px 60px rgba(22, 31, 24, 0.12);
  --radius: 24px;
  --container: min(1120px, calc(100% - 2rem));
  --topbar-height: 44px;
  --header-height: 82px;
  --header-stack-height: calc(var(--topbar-height) + var(--header-height));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(209, 176, 116, 0.16), transparent 30%),
    linear-gradient(180deg, #f8f6ef 0%, var(--bg) 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #1e281f;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__inner {
  min-height: 44px;
}

.topbar__items,
.topbar__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar__socials a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(253, 251, 246, 0.86);
  border-bottom: 1px solid rgba(33, 49, 39, 0.08);
}

.header__inner {
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.25rem;
}

.brand__logo {
  display: block;
  max-width: 220px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand__leaf {
  width: 18px;
  height: 32px;
  border-radius: 18px 18px 2px 18px;
  background: linear-gradient(180deg, #7aa35b 0%, var(--green-dark) 100%);
  transform: rotate(-18deg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-family: "Fraunces", serif;
  line-height: 1.05;
}

.brand__text small {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(73, 115, 59, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: calc(100svh - var(--header-stack-height));
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 39, 25, 0.84), rgba(21, 39, 25, 0.42));
  filter: saturate(0.88);
}

.hero__backdrop-slide {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__backdrop-slide.is-active {
  opacity: 1;
}

.hero__backdrop-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  transform: translateY(-50%);
}

.hero__backdrop-control--prev {
  left: 1rem;
}

.hero__backdrop-control--next {
  right: 1rem;
}

.hero__backdrop-control .carousel-control-prev-icon,
.hero__backdrop-control .carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.35));
}

.hero__content {
  min-height: 32rem;
  padding-right: clamp(22rem, 34vw, 28rem);
}

.hero__copy,
.hero__panel {
  position: relative;
  z-index: 1;
}

.hero__copy {
  max-width: 54rem;
  padding: 3.5rem 0;
  color: white;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1,
.section h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.08;
}

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

.hero__text {
  max-width: 54ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--gold);
  color: #1f2219;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.hero__panel {
  position: absolute;
  right: calc((100vw - var(--container)) / 2);
  bottom: 3.5rem;
  width: clamp(20rem, 30vw, 26rem);
  display: grid;
  gap: 1rem;
  align-content: end;
  z-index: 2;
}

.hero-card {
  display: none;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: var(--shadow);
}

.hero-card.is-active {
  display: block;
}

.hero-card__tag,
.product-card__label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(73, 115, 59, 0.1);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2,
.quick-link h3,
.solution-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-card p,
.quick-link p,
.solution-card p,
.product-card p,
.section__body p,
.contact__copy p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero__dots {
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero__dot.is-active {
  width: 34px;
  background: var(--gold);
}

.quick-links {
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.quick-links__grid,
.solutions__grid,
.products__grid,
.numbers__grid,
.contact__grid,
.section__grid {
  display: grid;
  gap: 1.4rem;
}

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

.quick-link,
.solution-card,
.product-card,
.section__body,
.section__intro,
.numbers__grid > div {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quick-link {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 236, 224, 0.92));
}

.quick-link__index {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.section {
  padding: 5rem 0;
}

.section__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

.solutions {
  background: rgba(255, 255, 255, 0.46);
}

.testimonials {
  padding-top: 0.5rem;
}

.testimonials-heading {
  max-width: 44rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.testimonials-heading h2 {
  margin: 0;
  color: #1f3f63;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.testimonials-heading__text {
  margin: 1rem auto 0;
  color: var(--text-soft);
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 4.5rem 3.5rem;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  display: none;
  padding: 0.5rem 0 0;
  text-align: center;
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(22, 31, 24, 0.1);
}

.testimonial-avatar-placeholder {
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: rgba(45, 74, 35, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 236, 226, 0.98));
}

.testimonial-content {
  margin: 0;
}

.testimonial-content p {
  position: relative;
  margin: 0;
  max-width: 38rem;
  margin-inline: auto;
  padding-top: 0.8rem;
  color: #4e5965;
  font-family: "Fraunces", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  margin-top: 1.35rem;
}

.testimonial-author-info h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-style: italic;
}

.testimonial-author-info span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(33, 49, 39, 0.52);
  font-size: 0.82rem;
}

.testimonial-nav {
  position: absolute;
  top: 52%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 63, 99, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f3f63;
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: #16314d;
  border-color: rgba(31, 63, 99, 0.22);
}

.testimonial-carousel.is-single .testimonial-nav,
.testimonial-carousel.is-single .testimonial-dots {
  display: none;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 63, 99, 0.16);
  cursor: pointer;
}

.testimonial-dot.is-active {
  width: 28px;
  background: #1f3f63;
}

.testimonials-empty {
  display: grid;
  align-content: center;
  max-width: 860px;
  margin: 0 auto;
  min-height: 260px;
  padding: 1.5rem;
  text-align: left;
  border: 1px solid rgba(33, 49, 39, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(209, 176, 116, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.96));
  box-shadow: 0 14px 32px rgba(22, 31, 24, 0.05);
}

.testimonials-empty__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(73, 115, 59, 0.08);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-empty h3 {
  margin: 0;
  font-size: 1.2rem;
}

.testimonials-empty p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.clients {
  padding-top: 0.5rem;
}

.clients-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.35rem;
  border: 1px solid rgba(33, 49, 39, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(209, 176, 116, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(244, 239, 229, 0.94));
  box-shadow: 0 22px 48px rgba(22, 31, 24, 0.06);
}

.clients-copy,
.clients-showcase {
  min-width: 0;
}

.clients-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(29, 47, 31, 0.95), rgba(40, 63, 35, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  color: white;
}

.clients-copy .eyebrow,
.clients-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.clients-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.clients-highlight {
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.clients-highlight__label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.clients-highlight strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.clients-highlight p {
  margin: 0;
}

.clients-showcase {
  display: flex;
  align-items: stretch;
}

.clients-carousel {
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

.clients-carousel__viewport {
  position: relative;
  min-height: 100%;
}

.clients-carousel__slide {
  display: none;
}

.clients-carousel__slide.is-active {
  display: block;
}

.clients-carousel.is-single .clients-carousel__footer {
  display: none;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.clients-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.clients-carousel__control {
  min-height: 38px;
  padding: 0 0.95rem;
  border: 1px solid rgba(45, 74, 35, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.clients-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
}

.clients-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(45, 74, 35, 0.18);
  cursor: pointer;
}

.clients-carousel__dot.is-active {
  width: 28px;
  background: var(--green);
}

.client-card,
.clients-empty {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(33, 49, 39, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(209, 176, 116, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.96));
  box-shadow: 0 14px 32px rgba(22, 31, 24, 0.05);
}

.client-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.client-card__brand {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 0.8rem;
  border: 1px solid rgba(45, 74, 35, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 236, 226, 0.98));
}

.client-card__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.client-card__brand span {
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  color: rgba(45, 74, 35, 0.56);
}

.client-card__body h3 {
  margin: 0;
  font-size: 1rem;
}

.client-card__body p {
  margin: 0.28rem 0 0;
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.client-card__link,
.client-card__muted {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-card__link {
  color: var(--green-dark);
}

.client-card__muted {
  color: rgba(33, 49, 39, 0.46);
}

.clients-empty {
  display: grid;
  align-content: center;
  min-height: 100%;
  text-align: left;
}

.clients-empty__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(73, 115, 59, 0.08);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clients-empty h3 {
  margin: 0;
  font-size: 1.2rem;
}

.clients-empty p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

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

.blog-home {
  background: rgba(255, 255, 255, 0.42);
}

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

.blog-home-card,
.blog-home-empty {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-home-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at top left, rgba(209, 176, 116, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(73, 115, 59, 0.12), rgba(73, 115, 59, 0.02)),
    linear-gradient(180deg, #f6f2e8, #fcfaf4);
}

.blog-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-home-card__media span {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(45, 74, 35, 0.52);
}

.blog-home-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
}

.blog-home-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(33, 49, 39, 0.54);
}

.blog-home-card__body h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.blog-home-card__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.blog-home-card__cta {
  display: inline-flex;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.blog-home__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.blog-home-empty {
  padding: 1.6rem;
}

.blog-home-empty__badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(73, 115, 59, 0.08);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-home-empty h3 {
  margin: 0;
  font-size: 1.2rem;
}

.blog-home-empty p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.solution-card,
.product-card {
  min-height: 220px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 34%, 220px);
  align-items: start;
  gap: 1.1rem;
}

.product-card__content {
  min-width: 0;
}

.product-card__cta {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
  padding-bottom: 0.22rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(35, 59, 29, 0.82);
}

.product-card__cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  transform-origin: left center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card__cta:hover::after,
.product-card__cta:focus-visible::after {
  opacity: 1;
  transform: scaleX(1.08);
}

.product-card__cta:hover,
.product-card__cta:focus-visible {
  color: var(--green-dark);
}

.product-card__media {
  justify-self: end;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(209, 176, 116, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(73, 115, 59, 0.1), rgba(73, 115, 59, 0.02)),
    linear-gradient(180deg, #f2eee4 0%, #fbf9f4 100%);
  box-shadow: inset 0 0 0 1px rgba(73, 115, 59, 0.08);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: rgba(35, 59, 29, 0.56);
}

.solution-card__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(73, 115, 59, 0.12), rgba(209, 176, 116, 0.14));
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(73, 115, 59, 0.08);
}

.solution-card__icon i {
  font-size: 1.35rem;
}

.numbers {
  color: white;
  background:
    linear-gradient(180deg, rgba(24, 38, 28, 0.92), rgba(35, 59, 29, 0.92)),
    url("https://images.unsplash.com/photo-1500651230702-0e2d8a49d4ad?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}

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

.numbers__grid > div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  text-align: center;
}

.numbers strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.numbers span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  padding-top: 1rem;
}

.contact-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(33, 49, 39, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(209, 176, 116, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 237, 0.98));
  box-shadow: 0 32px 80px rgba(22, 31, 24, 0.08);
}

.contact-shell::after {
  content: "";
  position: absolute;
  inset: auto -5% -22% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 115, 59, 0.18), rgba(73, 115, 59, 0));
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
}

.contact__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(25, 41, 28, 0.96), rgba(39, 61, 32, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: white;
}

.contact__copy .eyebrow,
.contact__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact__copy h2 {
  margin: 0.9rem 0 1rem;
  color: white;
}

.contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contact__meta span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact__cta {
  margin-top: 1.75rem;
}

.contact-links {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.contact-callout {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.9rem;
  min-height: 100%;
  padding: 2rem;
  border: 1px solid rgba(33, 49, 39, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(250, 247, 240, 0.98), rgba(240, 233, 220, 0.96));
  box-shadow: var(--shadow);
}

.contact-callout__halo {
  position: absolute;
  top: -56px;
  right: -48px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 176, 116, 0.34), rgba(209, 176, 116, 0));
}

.contact-callout > * {
  position: relative;
  z-index: 1;
}

.contact-callout h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 0.98;
}

.contact-callout p {
  max-width: 22rem;
}

.contact-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}

.contact-callout__link::after {
  content: "->";
  font-size: 0.9rem;
}

.contact-rail {
  display: grid;
  gap: 0.85rem;
}

.contact-rail__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(33, 49, 39, 0.1);
}

.contact-rail__item:first-child {
  padding-top: 0.2rem;
}

.contact-rail__item:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.contact-rail__index {
  min-width: 2.3rem;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: rgba(45, 74, 35, 0.38);
}

.contact-rail__body h3 {
  margin: 0.3rem 0 0;
  font-size: 1.2rem;
}

.contact-rail__address {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: rgba(33, 49, 39, 0.72);
}

.contact-rail__body p {
  margin: 0.45rem 0 0;
}

.contact-rail__link {
  align-self: center;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--green-dark);
}

.contact-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer {
  padding: 1.4rem 0 2rem;
  color: var(--text-soft);
  border-top: 1px solid rgba(45, 74, 35, 0.1);
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.4), rgba(250, 247, 240, 0.95));
}

.footer__brand {
  display: grid;
  gap: 0.2rem;
}

.footer__title,
.footer__copy,
.footer__credit {
  margin: 0;
}

.footer__title {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--text);
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(33, 49, 39, 0.64);
}

.footer__meta {
  display: grid;
  justify-items: end;
  gap: 0.55rem;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__nav a,
.footer__cookie-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(45, 74, 35, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__cookie-trigger {
  cursor: pointer;
  font-family: inherit;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__cookie-trigger:hover,
.footer__cookie-trigger:focus-visible {
  color: var(--green-dark);
  border-color: rgba(73, 115, 59, 0.34);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.footer__credit {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(33, 49, 39, 0.55);
}

.footer__credit a {
  color: var(--green-dark);
}

@media (max-width: 960px) {
  :root {
    --header-height: 96px;
  }

  .hero__content,
  .section__grid,
  .contact__grid,
  .contact-links,
  .quick-links__grid,
  .solutions__grid,
  .blog-home__grid,
  .products__grid,
  .clients-shell,
  .numbers__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: 0;
    padding-right: 0;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(253, 251, 246, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar__inner,
  .header__inner,
  .footer__inner,
  .topbar__items {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__meta {
    width: 100%;
    justify-items: start;
  }

  .footer__nav {
    justify-content: flex-start;
  }

  .header__inner {
    padding: 1rem 0;
  }

  .hero {
    padding-top: 3rem;
    min-height: calc(100svh - var(--header-stack-height));
  }

  .hero__copy {
    padding: 2rem 0 0;
    max-width: none;
  }

  .hero__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }

  .contact-shell {
    padding: 1.25rem;
  }

  .contact__copy,
  .contact-callout,
  .testimonial-card,
  .testimonials-empty,
  .clients-copy,
  .client-card,
  .clients-empty {
    padding: 1.5rem;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    justify-self: stretch;
    max-width: 100%;
  }

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

  .contact-rail__link {
    grid-column: 2;
  }

  .clients-shell {
    padding: 1rem;
  }

  .client-card {
    grid-template-columns: 1fr;
  }

  .client-card__brand {
    width: 64px;
    height: 64px;
  }

  .clients-carousel__footer {
    justify-content: center;
    flex-wrap: wrap;
  }

  .testimonial-carousel {
    padding: 0 0 2.75rem;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 0px;
    --header-height: 96px;
  }

  .topbar {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .quick-link,
  .solution-card,
  .blog-home-card,
  .product-card,
  .section__body,
  .section__intro,
  .numbers__grid > div,
  .hero-card,
  .contact-callout,
  .testimonial-card,
  .testimonials-empty,
  .clients-copy,
  .client-card,
  .clients-empty {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .contact__copy,
  .clients-copy {
    border-radius: 20px;
  }

  .contact-shell,
  .clients-shell {
    border-radius: 24px;
  }

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

  .clients-carousel__control {
    min-height: 34px;
    padding: 0 0.8rem;
    font-size: 0.72rem;
  }

  .testimonial-card {
    padding: 0.35rem 0 0;
  }

  .testimonial-track {
    min-height: 340px;
  }

  .testimonial-nav {
    top: auto;
    bottom: 0;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .testimonial-nav.prev {
    left: calc(50% - 56px);
  }

  .testimonial-nav.next {
    right: calc(50% - 56px);
  }
}
