:root {
  --matcha-900: #26351f;
  --matcha-800: #34462b;
  --matcha-700: #526b3c;
  --matcha-500: #8fae72;
  --matcha-200: #dce8cf;
  --ivory: #fbf8ef;
  --linen: #f3eadb;
  --charcoal: #1d211a;
  --muted: #69705f;
  --brass: #b99a5f;
  --plum: #5c3f46;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(38, 53, 31, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(251, 248, 239, 0.95);
  color: var(--matcha-900);
  box-shadow: 0 16px 44px rgba(38, 53, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img,
.brand-logo {
  display: block;
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(29, 33, 26, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: -3px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  padding: 170px clamp(20px, 6vw, 88px) 76px;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 29, 15, 0.86), rgba(38, 53, 31, 0.52) 48%, rgba(29, 33, 26, 0.22)),
    linear-gradient(0deg, rgba(38, 53, 31, 0.44), rgba(38, 53, 31, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
}

h2 {
  color: var(--matcha-900);
  font-size: clamp(2.35rem, 4.7vw, 5rem);
}

h3 {
  color: var(--matcha-900);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions,
.split {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--matcha-500);
  color: var(--matcha-900);
}

.btn-primary:hover {
  background: var(--matcha-200);
}

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

.hero-card {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: end;
  width: min(360px, 100%);
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(251, 248, 239, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card span,
.service-card span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 62vh;
  overflow: hidden;
  padding: 160px clamp(20px, 6vw, 88px) 76px;
  color: var(--white);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 29, 15, 0.88), rgba(38, 53, 31, 0.55) 52%, rgba(29, 33, 26, 0.2)),
    linear-gradient(0deg, rgba(38, 53, 31, 0.42), rgba(38, 53, 31, 0));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6.4vw, 6.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 44px;
  max-width: none;
  align-items: end;
}

.section-heading.wide .eyebrow,
.section-heading.wide h2 {
  grid-column: 1;
}

.section-heading.wide p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: rgba(52, 70, 43, 0.18);
}

.intro-grid article {
  padding: clamp(26px, 4vw, 44px);
  background: var(--ivory);
}

.intro-grid span {
  color: var(--brass);
  font-weight: 800;
}

.intro-grid h3 {
  margin-top: 24px;
}

.intro-grid p,
.service-card p,
.product-card p,
.story-content p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.services {
  background: var(--linen);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.service-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 20px 50px rgba(38, 53, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card span,
.service-card h3,
.service-card p {
  margin-inline: 24px;
}

.service-card span {
  margin-top: 26px;
}

.service-card h3 {
  margin-top: 12px;
}

.service-card p {
  margin-top: 14px;
  margin-bottom: 28px;
}

.products {
  background: var(--ivory);
}

.split {
  justify-content: space-between;
}

.text-link {
  color: var(--matcha-800);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(52, 70, 43, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.product-card p {
  margin: 12px 0 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--matcha-900);
}

.story h2,
.story h3 {
  color: var(--ivory);
}

.story-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.story-content p {
  color: rgba(251, 248, 239, 0.72);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metrics div {
  border-top: 1px solid rgba(251, 248, 239, 0.22);
  padding-top: 18px;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--matcha-200);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.metrics span {
  margin-top: 8px;
  color: rgba(251, 248, 239, 0.66);
  font-size: 0.9rem;
}

.trust {
  background: var(--linen);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(52, 70, 43, 0.16);
  border: 1px solid rgba(52, 70, 43, 0.16);
}

.trust-row span {
  display: grid;
  min-height: 92px;
  place-items: center;
  background: var(--linen);
  color: var(--matcha-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 700;
  text-align: center;
}

.articles {
  background: var(--ivory);
}

.articles-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.articles-heading h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.articles-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(52, 70, 43, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(38, 53, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: var(--matcha-200);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 28px;
}

.article-card h3 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.5rem);
  font-weight: 800;
  line-height: 1.32;
  color: #071f16;
}

.article-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.article-card-meta {
  margin-top: 16px !important;
  color: #7f8977 !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: right;
}

.article-button {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border: 1px solid var(--matcha-700);
  border-radius: 0;
  padding: 13px 22px;
  background: var(--matcha-700);
  color: var(--white);
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.article-button:hover {
  border-color: var(--matcha-900);
  background: var(--matcha-900);
  transform: translateY(-2px);
}

.articles-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.article-page {
  background: var(--ivory);
}

.article-page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(52, 70, 43, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--linen);
}

.article-sidebar a {
  border-bottom: 1px solid rgba(52, 70, 43, 0.12);
  padding-bottom: 10px;
  color: var(--matcha-900);
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 28px;
}

.article-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  scroll-margin-top: 110px;
  border: 1px solid rgba(52, 70, 43, 0.14);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(38, 53, 31, 0.07);
}

.article-entry img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.article-entry-body {
  align-self: center;
}

.article-entry-body span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-entry-body h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 3.4vw, 3.9rem);
}

.article-entry-body p {
  color: var(--muted);
}

.article-meta {
  margin: 14px 0 22px;
  color: var(--matcha-700) !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.article-cta {
  background: var(--linen);
}

.article-cta .contact-panel {
  align-items: center;
}

.article-cta .btn {
  justify-self: end;
  width: fit-content;
}

.contact {
  background:
    linear-gradient(rgba(251, 248, 239, 0.92), rgba(251, 248, 239, 0.92)),
    url("https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1600&q=84") center/cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  border: 1px solid rgba(52, 70, 43, 0.14);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 64px);
  background: rgba(251, 248, 239, 0.9);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(52, 70, 43, 0.12);
  padding-bottom: 12px;
}

.contact-list span {
  color: var(--muted);
}

.contact-list a,
.contact-list strong {
  color: var(--matcha-900);
  font-weight: 800;
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 16px;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--matcha-900);
  color: var(--ivory);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(251, 248, 239, 0.16);
  border-radius: calc(var(--radius) - 2px);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form select option {
  color: var(--charcoal);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 30px clamp(20px, 6vw, 88px);
  background: var(--charcoal);
  color: var(--ivory);
}

.site-footer p {
  margin: 0;
  color: rgba(251, 248, 239, 0.62);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--matcha-500);
  color: var(--matcha-900);
  box-shadow: 0 18px 42px rgba(38, 53, 31, 0.28);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(52, 70, 43, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--ivory);
    color: var(--matcha-900);
    box-shadow: var(--shadow);
  }

  .site-nav.is-active {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 92vh;
    padding-top: 138px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 29, 15, 0.9), rgba(38, 53, 31, 0.52)),
      linear-gradient(0deg, rgba(38, 53, 31, 0.55), rgba(38, 53, 31, 0));
  }

  .section-heading.wide,
  .intro-grid,
  .product-list,
  .article-grid,
  .story,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading.wide p:not(.eyebrow) {
    grid-column: auto;
    grid-row: auto;
  }

  .product-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .article-page-layout,
  .article-entry {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-entry img {
    min-height: 260px;
  }

  .article-cta .btn {
    justify-self: start;
  }

  .story-image img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.82rem;
  }

  .brand img,
  .brand-logo {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
  }

  .hero {
    min-height: 94vh;
    padding-bottom: 42px;
  }

  .hero-card {
    margin-top: 46px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .metrics,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: 235px;
  }

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

  .product-card img {
    aspect-ratio: 16 / 10;
  }

  .contact-list li {
    display: grid;
    gap: 2px;
  }

  .contact-list a,
  .contact-list strong {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
