:root {
  --green-deep: #143528;
  --green-mid: #1f4d38;
  --green-soft: #d7ebe0;
  --straw: #c9a227;
  --ink: #142019;
  --muted: #4d5c54;
  --paper: #f3f7f4;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 162, 39, 0.08), transparent 28%),
    linear-gradient(180deg, #eef5f0 0%, var(--paper) 38%, #e8f1eb 100%);
  font-family: "Figtree", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(8, 22, 16, 0.55) 0%, rgba(8, 22, 16, 0) 100%);
  color: var(--white);
}

.logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
}

.site-header nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.92;
}

.site-header nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-veil,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.05);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero-veil {
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 70% 35%, rgba(201, 162, 39, 0.14), transparent 55%),
    radial-gradient(ellipse 80% 55% at 15% 85%, rgba(12, 28, 22, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(8, 22, 16, 0.42) 0%, rgba(8, 22, 16, 0.12) 28%, rgba(8, 22, 16, 0.28) 52%, rgba(8, 22, 16, 0.88) 100%),
    linear-gradient(105deg, rgba(8, 22, 16, 0.72) 0%, rgba(8, 22, 16, 0.35) 42%, rgba(8, 22, 16, 0.08) 70%);
}

.hero-grain {
  z-index: 2;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: clamp(3rem, 8vw, 5.5rem);
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(52rem, calc(100% - 2.5rem));
  padding: 7.5rem clamp(1.25rem, 4vw, 3.5rem) clamp(4.5rem, 10vw, 7rem);
}

.brand {
  margin: 0 0 1.15rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.1rem, 9.5vw, 6.75rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 0.12em 0.55em rgba(8, 22, 16, 0.35);
  opacity: 0;
  transform: translateY(1.6rem);
  animation: rise 1s var(--ease) 0.12s forwards;
}

.brand span {
  color: var(--straw);
}

.hero h1 {
  margin: 0;
  max-width: 20ch;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.3s forwards;
}

.lede {
  margin: 1.05rem 0 0;
  max-width: 36ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.46s forwards;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(1.4rem);
  animation: rise 1s var(--ease) 0.6s forwards;
}

.hero .btn {
  min-height: 3.05rem;
  padding: 0.8rem 1.35rem;
  border-radius: 0.28rem;
  letter-spacing: 0.01em;
}

.hero .btn-primary {
  box-shadow: 0 0.55rem 1.4rem rgba(8, 22, 16, 0.28);
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.contact-cta {
  opacity: 1;
  transform: none;
  animation: none;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--straw);
  color: var(--green-deep);
}

.btn-primary:hover,
.btn-on-light:hover {
  background: #d9b53a;
}

.btn-on-light {
  background: var(--straw);
  color: var(--green-deep);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  border-color: rgba(20, 53, 40, 0.28);
  color: var(--green-deep);
}

.btn-outline:hover {
  background: rgba(20, 53, 40, 0.06);
}

.about,
.products,
.customers,
.location,
.contact,
.detail,
.promise {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(14rem, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about h2,
.section-intro h2,
.detail-copy h2,
.promise h2,
.contact h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--green-deep);
}

.lead {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 42ch;
}

.about-copy p:not(.lead) {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 48ch;
}

.about-aside {
  padding-top: 0.35rem;
  border-top: 3px solid var(--green-mid);
}

.aside-label {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.aside-label:first-child {
  margin-top: 1rem;
}

.aside-value {
  margin: 0.25rem 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.25;
}

.section-intro {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-intro p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40ch;
}

.product-split,
.product-grid,
.customer-rows,
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(20, 53, 40, 0.14);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}

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

.product-split article,
.product-grid article,
.customer-rows article,
.branch-grid article {
  padding-top: 1.5rem;
  border-top: 3px solid var(--green-mid);
  margin-top: -1px;
}

.product-split h3,
.product-grid h3,
.customer-rows h3,
.location-grid h3,
.branch-grid h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-deep);
}

.product-split p,
.product-grid p,
.customer-rows p,
.location-grid p,
.branch-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 34ch;
}

.branch-role {
  margin: 0.45rem 0 0 !important;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-mid) !important;
}

.branch-note {
  margin: 2rem 0 0;
  color: var(--muted);
  max-width: 48ch;
}

.branch-note a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}

.branch-note a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consult {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.05), rgba(20, 53, 40, 0.02)),
    linear-gradient(135deg, #eaf3ed, #f5f9f6 60%, #eef5f1);
}

.consult h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--green-deep);
}

.consult-copy .lead {
  margin: 1rem 0 0;
}

.consult-copy p:not(.lead) {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 48ch;
}

.consult-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
  border-top: 3px solid var(--green-mid);
  padding-top: 1.35rem;
}

.consult-points strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}

.consult-points span {
  color: var(--muted);
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}

.detail-feeds {
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.04), rgba(20, 53, 40, 0.02)),
    linear-gradient(135deg, #e7f1ea, #f4f8f5 55%, #edf4ef);
}

.detail-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 42ch;
}

.detail-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  max-width: 42ch;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--straw);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 53, 40, 0.35);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  border-bottom-color: var(--green-deep);
}

.detail-media {
  overflow: hidden;
  border-radius: 0.4rem;
  min-height: 22rem;
}

.detail-media img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.detail-media:hover img,
.contact-visual:hover img {
  transform: scale(1.08);
}

.promise {
  background:
    linear-gradient(160deg, rgba(20, 53, 40, 0.94), rgba(31, 77, 56, 0.92)),
    url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?auto=format&fit=crop&w=1800&q=70")
      center / cover;
  color: var(--white);
}

.promise-inner {
  max-width: 54rem;
}

.promise h2 {
  color: var(--white);
}

.promise .lead {
  color: rgba(255, 255, 255, 0.88);
}

.promise-steps {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.promise-steps li {
  position: relative;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.promise-steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0.55rem;
  left: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--straw);
}

.promise-steps strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.promise-steps span {
  color: rgba(255, 255, 255, 0.82);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(20, 53, 40, 0.14);
  padding-top: 1.5rem;
}

.location-grid a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}

.location-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.contact-panel > p:first-of-type {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 42ch;
}

.company {
  margin: 1.5rem 0 0.35rem;
  font-weight: 600;
  color: var(--green-deep);
}

.contact address {
  font-style: normal;
  color: var(--muted);
  margin: 0;
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  color: var(--green-deep);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-visual {
  overflow: hidden;
  border-radius: 0.4rem;
  min-height: 22rem;
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(20, 53, 40, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
}

.footer-heading {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-deep);
}

.footer-grid a {
  display: block;
  width: fit-content;
  text-decoration: none;
  margin-top: 0.35rem;
}

.footer-grid a:hover {
  color: var(--green-deep);
}

.footer-copy {
  margin: 2.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(20, 53, 40, 0.1);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1.2) translate3d(-2.2%, -1.4%, 0);
  }
}

@media (max-width: 900px) {
  .about,
  .detail,
  .consult,
  .product-split,
  .product-grid,
  .customer-rows,
  .branch-grid,
  .promise-steps,
  .location-grid,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-feeds .detail-media {
    order: -1;
  }

  .contact-visual,
  .detail-media {
    min-height: 16rem;
  }

  .contact-visual {
    order: -1;
  }

  .hero-content {
    width: min(100%, calc(100% - 2rem));
  }
}

@media (max-width: 560px) {
  .site-header nav {
    gap: 0.7rem 0.9rem;
  }

  .site-header nav a {
    font-size: 0.88rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .brand,
  .hero h1,
  .lede,
  .cta-group,
  .reveal,
  .detail-media img,
  .contact-visual img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-grain {
    display: none;
  }
}
