@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Marcellus&display=swap");

:root {
  --forest: #173f32;
  --forest-2: #245746;
  --cream: #f5efe3;
  --paper: #fbf8f1;
  --terracotta: #b86445;
  --gold: #cfaa66;
  --ink: #1f2924;
  --muted: #68716c;
  --line: rgba(23, 63, 50, 0.14);
  --serif: "Marcellus", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}
h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}
h3 {
  font-size: 1.6rem;
}
p {
  margin: 0 0 1rem;
}
.lead {
  color: #4f5b55;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}
.section {
  padding: 100px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}
.section-head p {
  max-width: 650px;
  margin: 0;
}

.topbar {
  background: var(--forest);
  color: #dbe7df;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 9px 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-logo {
  height: 142px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--terracotta);
  transition: right 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.nav-links .nav-cta {
  padding: 11px 18px;
  color: #fff;
  background: var(--forest);
  border-radius: 99px;
}
.nav-links .nav-cta::after {
  display: none;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 47% 53%;
  background: var(--cream);
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: 80px max(40px, calc((100vw - 1160px) / 2));
  padding-right: 7vw;
}
.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 34px;
}
.hero h1 em {
  display: block;
  color: var(--terracotta);
  font-style: normal;
}
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}
.hero-media::after {
  content: "Small batch • Naturally inspired";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(23, 63, 50, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 1px solid var(--forest);
  border-radius: 99px;
  color: #fff;
  background: var(--forest);
  font-size: 0.84rem;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--forest-2);
}
.button.light {
  color: var(--forest);
  background: transparent;
}
.button.light:hover {
  color: #fff;
  background: var(--forest);
}
.button::after {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.8 3.2C13.9 3.3 7.3 5.6 4.4 10.4c-2.1 3.4-.8 7.1-.2 8.4.2.4.7.6 1.1.4l.8-.4c.4-.2.6-.7.4-1.1-.3-.7-.9-2.4-.3-4.2 1.3.5 2.8.8 4.4.7 5.1-.2 9.1-4.1 10.8-9.8.2-.6-.1-1.2-.6-1.2ZM7.3 11.3c2.4-2.7 5.4-4.2 9.2-5.1-3 1.6-5.4 3.5-7.5 6.1-.7-.2-1.2-.5-1.7-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.8 3.2C13.9 3.3 7.3 5.6 4.4 10.4c-2.1 3.4-.8 7.1-.2 8.4.2.4.7.6 1.1.4l.8-.4c.4-.2.6-.7.4-1.1-.3-.7-.9-2.4-.3-4.2 1.3.5 2.8.8 4.4.7 5.1-.2 9.1-4.1 10.8-9.8.2-.6-.1-1.2-.6-1.2ZM7.3 11.3c2.4-2.7 5.4-4.2 9.2-5.1-3 1.6-5.4 3.5-7.5 6.1-.7-.2-1.2-.5-1.7-1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-strip {
  padding: 35px 0;
  color: #fff;
  background: var(--forest);
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 5px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.stat span {
  color: #c8d8cf;
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 2px;
}
.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(7, 18, 14, 0.82));
}
.product-copy {
  position: absolute;
  z-index: 1;
  left: 38px;
  right: 38px;
  bottom: 35px;
  color: #fff;
}
.product-copy .eyebrow {
  color: #f1c888;
}
.product-copy p {
  max-width: 450px;
  margin: 12px 0 0;
  color: #e0e7e2;
}

.product-size {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 24px;
  padding: 36px 40px;
  color: #fff;
  background: var(--forest);
}

.combo-offer h3 {
  margin-bottom: 8px;
}

.combo-offer p:not(.eyebrow) {
  margin: 0;
  color: #c6d7ce;
}

.combo-buy {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}

.combo-buy .button {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
}

.combo-price {
  color: #fff;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  white-space: nowrap;
}

.combo-price small {
  display: block;
  margin-bottom: 7px;
  color: #abc0b5;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why {
  background: #e9e3d6;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.why-sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}
.value-list {
  border-top: 1px solid var(--line);
}
.value-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.value-item span {
  color: var(--terracotta);
  font-family: var(--serif);
}
.value-item p {
  margin: 5px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 80px 0;
  color: #fff;
  background: var(--terracotta);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.cta-band .button {
  color: var(--forest);
  background: var(--cream);
  border-color: var(--cream);
  white-space: nowrap;
}

.page-hero {
  padding: 110px 0 75px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
}
.page-hero .lead {
  margin: 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}
.story-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-quote {
  padding: 45px;
  color: #fff;
  background: var(--forest);
}
.story-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.3;
}
.story-quote cite {
  display: block;
  margin-top: 24px;
  color: #b9cec2;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.pillar {
  min-height: 350px;
  padding: 42px;
  border-right: 1px solid var(--line);
}
.pillar:last-child {
  border: 0;
}
.pillar .number {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 3rem;
}
.pillar h3 {
  margin: 45px 0 15px;
}
.pillar p {
  color: var(--muted);
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.values span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  font-size: 0.78rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 680px;
}
.service-detail.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.service-image img {
  height: 100%;
  object-fit: cover;
}
.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(50px, calc((100vw - 1160px) / 2));
  padding-right: 7vw;
  background: #e8e1d4;
}
.service-detail.reverse .service-body {
  order: -1;
  padding-left: max(50px, calc((100vw - 1160px) / 2));
  padding-right: 7vw;
  color: #fff;
  background: var(--forest);
}

.service-size {
  align-self: flex-start;
  margin: 18px 0 4px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 99px;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail.reverse .service-size {
  color: var(--gold);
}

.combo-section {
  padding: 90px 0;
  color: #fff;
  background: var(--terracotta);
}

.combo-showcase {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.combo-showcase .eyebrow {
  color: #ffe3c9;
}

.combo-showcase .lead {
  max-width: 580px;
  margin-top: 20px;
  color: #ffe7d8;
}

.combo-summary {
  padding: 35px;
  color: var(--ink);
  background: var(--paper);
}

.combo-line,
.combo-total {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.combo-line strong {
  color: var(--muted);
  font-weight: 500;
}

.combo-total {
  align-items: baseline;
  margin-bottom: 25px;
  border-bottom: 0;
}

.combo-total strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}
.benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.benefits li {
  display: flex;
  gap: 12px;
}
.benefits li::before {
  content: "✦";
  color: var(--terracotta);
}
.ingredients {
  padding: 80px 0;
  background: var(--cream);
}
.ingredient-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
}
.ingredient-cloud span {
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
}

.real-products {
  background: #e9e3d6;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.real-gallery-card {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.real-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.real-gallery-card:hover img {
  transform: scale(1.025);
}

.real-gallery-card::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(7, 18, 14, 0.78));
}

.real-gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.contact-info {
  padding: 45px;
  color: #fff;
  background: var(--forest);
}
.contact-info h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}
.contact-row {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-row small {
  display: block;
  margin-bottom: 5px;
  color: #a9c2b4;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-row a:hover {
  color: var(--gold);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #aeb5b0;
  outline: 0;
  background: transparent;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--terracotta);
}
.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
}
.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 14px;
  color: var(--forest);
  background: #e2ecdf;
}
.business-card {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid var(--line);
}
.business-card dl {
  display: grid;
  grid-template-columns: 190px 1fr;
  margin: 0;
}
.business-card dt,
.business-card dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.care-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 40px;
  min-height: 470px;
  background: var(--cream);
}

.care-panel-image {
  overflow: hidden;
}

.care-panel-image img {
  height: 100%;
  object-fit: cover;
}

.care-panel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(35px, 6vw, 75px);
}

.care-panel-copy h2 {
  margin-bottom: 18px;
}

.care-panel-copy .button {
  margin-top: 12px;
}

.contact-price {
  margin: 5px 0 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 1;
}

.contact-price small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.business-card dt {
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 25px;
  color: #dfe8e3;
  background: #102c23;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.7fr 1fr;
  gap: 50px;
  margin-bottom: 55px;
}
.footer-copy {
  max-width: 420px;
  margin-top: 20px;
  color: #abc0b5;
}
.footer-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
  color: #abc0b5;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #879e92;
  font-size: 0.72rem;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 850px) {
  .container {
    width: min(100% - 28px, 680px);
  }
  .section {
    padding: 75px 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: grid;
  }
  .nav-links .nav-cta {
    text-align: center;
  }
  .hero {
    position: relative;
    display: block;
    min-height: calc(100svh - 112px);
    overflow: hidden;
    color: #fff;
    background: var(--forest);
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: calc(100svh - 112px);
    align-items: flex-end;
    padding: 72px 28px 58px;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
  .hero-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(9, 29, 22, 0.92) 0%, rgba(9, 29, 22, 0.7) 58%, rgba(9, 29, 22, 0.22) 100%),
      linear-gradient(0deg, rgba(9, 29, 22, 0.65) 0%, transparent 50%);
  }
  .hero-media img {
    object-position: 68% center;
  }
  .hero-media::after {
    display: none;
  }
  .hero-copy .eyebrow,
  .hero h1 em {
    color: #f3c87e;
  }
  .hero-copy .lead {
    color: #e3ece7;
  }
  .hero .button {
    color: var(--forest);
    background: var(--cream);
    border-color: var(--cream);
  }
  .hero .button.light {
    color: #fff;
    background: rgba(9, 29, 22, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
  }
  .section-head,
  .page-hero .container,
  .story-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .combo-offer {
    align-items: flex-start;
    flex-direction: column;
  }
  .combo-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-hero {
    padding: 80px 0 55px;
  }
  .product-card {
    min-height: 560px;
  }
  .combo-offer {
    padding: 28px;
  }
  .combo-buy {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
  .why-sticky {
    position: static;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .pillar {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  .service-image {
    min-height: 600px;
  }
  .service-detail.reverse .service-body {
    order: 0;
  }
  .real-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .real-gallery-card:first-child {
    grid-column: 1 / -1;
    min-height: 620px;
  }
  .care-panel {
    grid-template-columns: 1fr;
  }
  .care-panel-image {
    min-height: 520px;
  }
  .service-body,
  .service-detail.reverse .service-body {
    padding: 65px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1/-1;
  }
}

@media (max-width: 560px) {
  .topbar {
    font-size: 0.65rem;
  }
  h1 {
    font-size: 3.2rem;
  }
  .brand-logo {
    height: 70px;
  }
  .footer-logo {
    height: 124px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.5rem);
  }
  .hero-copy {
    padding: 60px 24px 38px;
  }
  .hero-copy p:not(.eyebrow) {
    margin: 18px 0 24px;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .button {
    flex: 1 1 100%;
  }
  .intro-strip .container,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .product-card {
    min-height: 520px;
  }
  .real-gallery {
    grid-template-columns: 1fr;
  }
  .real-gallery-card,
  .real-gallery-card:first-child {
    grid-column: auto;
    min-height: 500px;
  }
  .care-panel-image {
    min-height: 420px;
  }
  .product-copy {
    left: 24px;
    right: 24px;
    bottom: 25px;
  }
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .story-image {
    min-height: 430px;
  }
  .story-quote {
    padding: 30px;
  }
  .pillar {
    padding: 30px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .contact-info {
    padding: 30px;
  }
  .business-card dl {
    grid-template-columns: 1fr;
  }
  .business-card dt {
    padding-bottom: 0;
    border: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
