:root {
  --ink: #172219;
  --green: #244c35;
  --sage: #aebc9f;
  --orange: #e97827;
  --cream: #f5f0e5;
  --paper: #fffdf8;
  --line: #d9ded5;
  --muted: #617066;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}
h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}
h3 {
  line-height: 1.2;
}
.eyebrow {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #f5b780;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
}
em {
  color: #f5b780;
  font-style: italic;
}
.section {
  padding: clamp(4.5rem, 9vw, 8rem) max(6vw, 24px);
}
.site-header {
  height: 86px;
  padding: 0 max(5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav a:not(.nav-cta) {
  padding: 30px 0;
  position: relative;
}
.site-nav a.active:not(.nav-cta):after,
.site-nav a:not(.nav-cta):hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.home-hero,
.page-hero {
  height: calc(100svh - 86px);
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6vw;
}
.hero-slide,
.page-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
}
.hero-slide.is-active,
.page-hero > img {
  opacity: 1;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 25, 16, 0.84),
    rgba(12, 25, 16, 0.3) 65%,
    rgba(12, 25, 16, 0.08)
  );
}
.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 850px;
}
.hero-copy h1,
.page-hero-copy h1 {
  margin: 0.2em 0;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.1rem;
  color: #e3e8e2;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
}
.button.primary {
  background: var(--orange);
  color: white;
}
.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: white;
}
.button.cream {
  background: var(--cream);
  color: var(--green);
}
.button.dark {
  background: var(--ink);
  color: white;
}
.hero-controls {
  position: absolute;
  right: 5vw;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: white;
}
.hero-controls button {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  color: white;
  padding: 2rem 6vw;
}
.trust-strip div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 2rem;
}
.trust-strip div:last-child {
  border: 0;
}
.trust-strip strong {
  font-family: "Fraunces";
  font-size: 1.6rem;
}
.trust-strip span {
  color: #cad7cd;
  font-size: 0.85rem;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10vw;
  align-items: start;
}
.split h2 {
  margin-bottom: 0;
}
.text-link {
  display: inline-flex;
  gap: 0.8rem;
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid var(--green);
  padding-bottom: 4px;
  margin-top: 1rem;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-heading h2 {
  margin: 0;
}
.featured {
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-tile {
  background: var(--paper);
}
.product-tile img {
  height: 330px;
  object-fit: cover;
}
.product-tile div {
  padding: 1.5rem;
}
.product-tile span,
.catalog-item span,
.value-grid span {
  font-size: 0.72rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-tile h3 {
  font-family: "Fraunces";
  font-size: 1.7rem;
  margin: 0.6rem 0;
}
.product-tile p {
  color: var(--muted);
}
.quote-band {
  min-height: 520px;
  background:
    linear-gradient(rgba(22, 55, 35, 0.7), rgba(22, 55, 35, 0.7)),
    url("images/Hen.jpeg") center/cover;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.quote-band p {
  font-family: "Fraunces";
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 1000px;
  line-height: 1.05;
}
.page-hero {
  height: 70svh;
}
.page-hero-copy {
  align-self: end;
  padding-bottom: 4vw;
}
.story p:not(.eyebrow) {
  max-width: 680px;
}
.image-statement {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.image-statement > img {
  height: 640px;
  object-fit: cover;
}
.statement-card {
  background: var(--paper);
  padding: clamp(2rem, 5vw, 5rem);
  margin-left: -7vw;
  position: relative;
}
.statement-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.value-grid article {
  padding: 2rem;
  border-right: 1px solid var(--line);
}
.value-grid h3 {
  font-family: "Fraunces";
  font-size: 1.6rem;
  margin-top: 2rem;
}
.value-grid p {
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3rem 6vw;
  background: var(--orange);
  color: white;
}
.facts div {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.facts div:last-child {
  border: 0;
}
.facts small {
  opacity: 0.75;
}
.facts strong {
  font-size: 1.1rem;
}
.page-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  background: var(--green);
  color: white;
}
.page-intro h1 {
  margin: 0.2em 0;
}
.page-intro .lead {
  color: #d0dbd3;
}
.catalog {
  display: grid;
  gap: 7rem;
}
.catalog-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7vw;
  align-items: center;
}
.catalog-item.reverse img {
  order: 2;
}
.catalog-item img {
  height: 520px;
  object-fit: cover;
}
.catalog-item h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin: 0.4rem 0;
}
.catalog-item p {
  color: var(--muted);
  font-size: 1.05rem;
}
.service-band {
  background: var(--green);
  color: white;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.service-grid article {
  background: var(--green);
  padding: 2rem;
}
.service-grid article > span {
  font-size: 2rem;
  color: #f5b780;
}
.service-grid h3 {
  font-family: "Fraunces";
  font-size: 1.8rem;
}
.service-grid p {
  color: #cbd8ce;
}
.center-cta {
  text-align: center;
}
.center-cta h2 {
  margin: 0.4em 0;
}
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 7vw;
  align-items: center;
  background: var(--cream);
}
.contact-hero h1 {
  margin: 0.2em 0;
}
.contact-hero em {
  color: var(--orange);
}
.contact-hero img {
  height: 580px;
  object-fit: cover;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}
.contact-details > a:not(.button),
.contact-details > div {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
}
.contact-details small {
  color: var(--muted);
}
.contact-details strong {
  font-size: 1.15rem;
}
.contact-details .button {
  margin-top: 1.5rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form div:nth-child(3),
.contact-form div:nth-child(4),
.contact-form .button,
.form-note {
  grid-column: 1/-1;
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 1rem;
  border-radius: 0;
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}
.site-footer {
  background: #122319;
  color: white;
  padding: 5rem 6vw 1.5rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr;
  gap: 4rem;
}
.footer-brand img {
  width: 90px;
  filter: brightness(1.15);
}
.footer-brand h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1rem;
}
.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-main h3 {
  color: #f5b780;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer-main p,
.footer-main a {
  color: #c5d1c8;
}
.footer-main a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 4rem;
  color: #91a195;
  font-size: 0.75rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Preserve the original product-card design */
.product-grid {
  gap: 30px;
}
.product-tile {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.product-tile img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-tile:hover img {
  transform: scale(1.05);
}
.product-tile div {
  padding: 25px 28px 30px;
}
.product-tile .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  background: rgba(233, 120, 39, 0.12);
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.product-tile:hover .card-icon {
  transform: scale(1.05);
  background: rgba(233, 120, 39, 0.18);
}
.product-tile h3 {
  margin: 0 0 0.6rem;
}
.product-tile p {
  margin-bottom: 0;
}

/* Soft, rounded visual language */
.footer-brand img {
  filter: invert(1) brightness(100%);
}
.home-hero,
.page-hero {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 34px;
  background: var(--paper);
  clip-path: polygon(
    0 100%, 0 55%, 2.5% 12%, 5% 60%, 7.5% 20%, 10% 68%,
    12.5% 28%, 15% 72%, 17.5% 18%, 20% 62%, 22.5% 25%, 25% 75%,
    27.5% 15%, 30% 64%, 32.5% 28%, 35% 70%, 37.5% 20%, 40% 76%,
    42.5% 24%, 45% 66%, 47.5% 14%, 50% 72%, 52.5% 20%, 55% 64%,
    57.5% 28%, 60% 76%, 62.5% 18%, 65% 68%, 67.5% 24%, 70% 72%,
    72.5% 14%, 75% 64%, 77.5% 26%, 80% 74%, 82.5% 20%, 85% 68%,
    87.5% 28%, 90% 76%, 92.5% 18%, 95% 62%, 97.5% 24%, 100% 68%,
    100% 100%
  );
  pointer-events: none;
}
.page-intro {
  margin: 0 max(2vw, 12px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.trust-strip {
  margin: 20px max(2vw, 12px) 0;
  border-radius: var(--radius-md);
}
.image-statement > img,
.catalog-item img,
.contact-hero img {
  border-radius: var(--radius-lg);
}
.statement-card {
  border-radius: var(--radius-lg);
}
.value-grid {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.facts {
  margin: 0 max(2vw, 12px) 20px;
  border-radius: var(--radius-md);
}
.service-band {
  margin: 0 max(2vw, 12px);
  border-radius: var(--radius-lg);
}
.service-grid {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-grid article:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.service-grid article:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(23, 34, 25, 0.08);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: var(--radius-sm);
}
.quote-band {
  margin: 0 max(2vw, 12px);
  border-radius: var(--radius-lg);
}
.site-footer {
  position: relative;
  margin-top: 20px;
  
}
.site-footer::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -33px;
  right: 0;
  left: 0;
  height: 34px;
  background: #122319;
  clip-path: polygon(
    0 100%, 0 55%, 2.5% 12%, 5% 60%, 7.5% 20%, 10% 68%,
    12.5% 28%, 15% 72%, 17.5% 18%, 20% 62%, 22.5% 25%, 25% 75%,
    27.5% 15%, 30% 64%, 32.5% 28%, 35% 70%, 37.5% 20%, 40% 76%,
    42.5% 24%, 45% 66%, 47.5% 14%, 50% 72%, 52.5% 20%, 55% 64%,
    57.5% 28%, 60% 76%, 62.5% 18%, 65% 68%, 67.5% 24%, 70% 72%,
    72.5% 14%, 75% 64%, 77.5% 26%, 80% 74%, 82.5% 20%, 85% 68%,
    87.5% 28%, 90% 76%, 92.5% 18%, 95% 62%, 97.5% 24%, 100% 68%,
    100% 100%
  );
  pointer-events: none;
}
.button,
.nav-cta {
  border-radius: 999px;
}
.hero-controls button {
  border-radius: 50%;
}
@media (max-width: 850px) {
  .site-header {
    height: 74px;
  }
  .brand img {
    width: 54px;
    height: 54px;
  }
  .brand span {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    background: var(--paper);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 12px 30px rgba(23, 34, 25, 0.12);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a:not(.nav-cta) {
    padding: 1rem 0;
  }
  .site-nav a.active:not(.nav-cta):after {
    bottom: 8px;
  }
  .nav-cta {
    text-align: center;
    margin-top: 1rem;
  }
  .home-hero {
    height: calc(100svh - 74px);
    min-height: 600px;
    padding: 24px;
  }
  .hero-controls {
    right: 24px;
  }
  .trust-strip,
  .facts {
    grid-template-columns: 1fr;
  }
  .trust-strip div,
  .facts div {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
  }
  .split,
  .page-intro,
  .catalog-item,
  .contact-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .product-tile img {
    height: 280px;
  }
  .image-statement {
    grid-template-columns: 1fr;
  }
  .image-statement > img,
  .catalog-item img,
  .contact-hero img {
    height: 420px;
  }
  .statement-card {
    margin: -3rem 20px 0;
  }
  .value-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .catalog-item.reverse img {
    order: 0;
  }
  .service-grid article:first-child,
  .service-grid article:last-child {
    border-radius: 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form div {
    grid-column: 1/-1;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-slide {
    transition: none;
  }
}
