:root {
  --green: #106d41;
  --green-dark: #075d36;
  --cream: #f9f5ed;
  --gold: #bc8034;
  --ink: #171b18;
  --muted: #626761;
  --line: #d9d0bf;
  --shell: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
}

.range {
  order: 1;
}

.certifications {
  order: 2;
}

.bulk-products {
  order: 3;
}

.contact {
  order: 4;
}

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

.shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notice-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--green-dark);
  font-size: 12px;
}

.notice-bar__inner,
.notice-bar__message,
.notice-bar__contact,
.notice-bar__contact a {
  display: flex;
  align-items: center;
}

.notice-bar__inner {
  justify-content: space-between;
  gap: 28px;
}

.notice-bar__message {
  gap: 7px;
  margin: 0;
  white-space: nowrap;
}

.notice-bar svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.notice-bar__contact {
  gap: 20px;
}

.notice-bar__contact a {
  gap: 9px;
  transition: opacity 0.2s ease;
}

.notice-bar__contact a:hover {
  opacity: 0.72;
}

.notice-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
}

.notice-bar__contact .social-link > i {
  width: 17px;
  height: auto;
  background: none;
  font-size: 15px;
  text-align: center;
}

.notice-bar__contact .social-link {
  margin-left: 1px;
}

.notice-bar .social-fill {
  fill: currentColor;
  stroke: none;
}

.site-header {
  height: 108px;
  background: var(--cream);
  position: sticky;
  z-index: 20;
  top: 0;
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-stuck {
  height: 84px;
  box-shadow: 0 8px 24px rgba(27, 43, 32, 0.11);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: block;
  width: fit-content;
}

.brand img {
  width: 180px;
  height: auto;
  display: block;
  transition: width 0.25s ease;
}

.site-header.is-stuck .brand img {
  width: 154px;
}

.primary-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(25px, 3.1vw, 48px);
}

.primary-nav > a,
.nav-dropdown__trigger {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.primary-nav > a::after,
.nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.nav-dropdown__trigger:hover::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

.primary-nav > a.active {
  color: var(--green);
}

.primary-nav .has-submenu,
.nav-dropdown__trigger {
  gap: 7px;
}

.primary-nav .has-submenu svg,
.nav-dropdown__trigger svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-dropdown__menu {
  width: 238px;
  display: grid;
  position: absolute;
  top: 82px;
  left: 50%;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: #fffdf8;
  border: 1px solid #e5dac8;
  border-radius: 9px;
  box-shadow: 0 14px 30px rgba(32, 46, 35, 0.14);
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header.is-stuck .nav-dropdown__menu {
  top: 70px;
}

.nav-dropdown__menu a {
  padding: 12px 13px;
  color: #25322a;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--green);
  background: #f3ecdf;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 901px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quote-button {
  width: 190px;
  height: 51px;
  gap: 20px;
  color: #fff;
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 9px;
}

.quote-button:hover,
.button--primary:hover {
  background: #074a2d;
  transform: translateY(-1px);
}

.quote-button svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 156px);
  background-color: #f8f3e8;
  background-image: url("assets/hero-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero__content {
  width: 515px;
  padding: 54px 0 44px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.eyebrow svg,
.credentials__rule svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1 {
  margin: 0;
  color: #161a17;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 4.1vw, 54px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -1.7px;
}

h1 span {
  color: var(--green);
}

.hero__intro {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  gap: 17px;
  margin-top: 28px;
}

.button {
  height: 49px;
  gap: 21px;
  padding: 0 18px;
  border: 1.5px solid var(--green);
  border-radius: 7px;
}

.button--primary {
  min-width: 229px;
  color: #fff;
  background: var(--green-dark);
}

.button--secondary {
  min-width: 206px;
  color: var(--green);
  background: rgba(249, 245, 237, 0.45);
}

.button--secondary:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
}

.credentials {
  width: 505px;
  margin-top: 31px;
}

.credentials__rule {
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  align-items: center;
  gap: 8px;
}

.credentials__rule span {
  height: 1px;
  background: var(--line);
}

.credentials__rule svg {
  width: 20px;
  margin: auto;
}

.credentials__labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px 0 24px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.credentials__labels b {
  font-size: 12px;
}

.credentials__logos {
  height: 123px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  align-items: center;
  padding: 16px 27px;
  background: rgba(255, 255, 255, 0.83);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(67, 53, 28, 0.05);
  backdrop-filter: blur(5px);
}

.credentials__logos > div {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.credentials__logos > div:last-child {
  border: 0;
}

.credentials__logos img {
  display: block;
  max-width: 92px;
  max-height: 69px;
  object-fit: contain;
}

.credentials__logos > div:nth-child(1) img {
  width: 69px;
}

.credentials__logos > div:nth-child(2) img {
  width: 100px;
}

.credentials__logos > div:nth-child(3) img {
  width: 101px;
}

.story {
  min-height: 900px;
  position: relative;
  background-color: #fffdf9;
}

.story::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/story-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.story__inner {
  min-height: 900px;
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(46px, 4vw, 66px);
  padding-block: 64px;
}

.story__visual {
  height: 776px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 26px rgba(45, 39, 24, 0.06);
}

.story__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story__content {
  min-width: 0;
}

.story__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 600;
}

.story__eyebrow i {
  color: #74a735;
  font-size: 24px;
}

.story__accent {
  width: 50px;
  height: 1.5px;
  display: block;
  margin: 20px 0 25px;
  background: var(--green);
}

.story h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(39px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.3px;
}

.story__copy {
  max-width: 660px;
  margin-top: 36px;
  color: #292d29;
  font-size: 17px;
  line-height: 1.6;
}

.story__copy p {
  margin: 0;
}

.story__copy p + p {
  margin-top: 20px;
}

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

.value-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 13px 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #e8ddca;
  border-radius: 14px;
}

.value-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1.5px solid #d0b77e;
  border-radius: 50%;
}

.value-card__icon i {
  font-size: 31px;
}

.value-card h3 {
  margin: 13px 0 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.value-card > span {
  width: 25px;
  height: 1.5px;
  display: block;
  margin: 12px 0;
  background: var(--green);
}

.value-card p {
  margin: 0;
  color: #3c403c;
  font-size: 13px;
  line-height: 1.45;
}

.range {
  min-height: 940px;
  background: #fcf6ee;
  border-bottom: 1px solid #e3dacd;
}

.range__inner {
  min-height: 940px;
  padding: 64px 40px 50px;
}

.range__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 600;
}

.range__eyebrow i {
  color: #74a735;
  font-size: 24px;
}

.range__accent {
  width: 50px;
  height: 1.5px;
  display: block;
  margin: 20px 0 15px;
  background: var(--green);
}

.range h2 {
  max-width: 990px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.range__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 42px;
}

.product-card {
  min-width: 0;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ddcf;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(53, 42, 24, 0.08);
}

.product-card__image {
  width: 100%;
  height: 292px;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
}

.product-card:nth-child(1) .product-card__image {
  object-position: center 47%;
}

.product-card:nth-child(2) .product-card__image {
  object-position: center;
}

.product-card:nth-child(3) .product-card__image {
  object-position: center 52%;
}

.product-card__content {
  min-height: 287px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 28px 24px;
}

.product-card__title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-card__title > i {
  width: 48px;
  color: var(--green);
  font-size: 38px;
  text-align: center;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 37px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.product-card__content > p {
  margin: 14px 0 24px;
  color: #303530;
  font-size: 17px;
  line-height: 1.55;
}

.product-card__button {
  min-width: 216px;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: auto;
  padding: 0 24px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-card__button:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
}

.product-card__button i {
  font-size: 19px;
}

.certifications {
  min-height: 940px;
  position: relative;
  overflow: hidden;
  background-color: #fffdf9;
  border-bottom: 1px solid #e3dacd;
}

.certifications__inner {
  min-height: 940px;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.certifications__eyebrow,
.certification-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 600;
}

.certifications__eyebrow i,
.certification-group__title i {
  width: 26px;
  color: #74a735;
  font-size: 24px;
  text-align: center;
}

.certifications__accent,
.certification-group__accent {
  width: 54px;
  height: 1.5px;
  display: block;
  background: var(--green);
}

.certifications__accent {
  margin: 19px 0 13px;
}

.certifications h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.certifications__intro {
  margin: 15px 0 0;
  color: #272c28;
  font-size: 17px;
  line-height: 1.6;
}

.certification-group {
  margin-top: 42px;
  scroll-margin-top: 20px;
}

.certification-group__title {
  gap: 10px;
  font-size: 18px;
}

.certification-group__title i {
  font-size: 21px;
}

.certification-group__accent {
  width: 32px;
  margin: 10px 0 11px;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.certification-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 34px 24px;
  text-align: center;
  background: #fcf6ee;
  border-radius: 12px;
}

.certification-card__logo {
  height: 112px;
  display: grid;
  place-items: center;
}

.certification-card__logo img {
  width: 105px;
  max-height: 108px;
  display: block;
  object-fit: contain;
}

.certification-card__logo--eu img {
  width: 128px;
}

.certification-card__logo--control-union img {
  width: 108px;
}

.certification-card h4,
.fda-card h4 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.certification-card p {
  margin: 10px 0 14px;
  color: #333733;
  font-size: 13px;
  line-height: 1.52;
}

.certification-group--safety {
  margin-top: 42px;
}

.fda-card {
  min-height: 155px;
  display: grid;
  grid-template-columns: 370px 1fr;
  align-items: center;
  padding: 24px 50px;
  background: #fcf6ee;
  border-radius: 12px;
}

.fda-card__logo {
  height: 96px;
  display: grid;
  place-items: center;
  border-right: 1px solid #d9d1c4;
}

.fda-card__logo img {
  width: 210px;
  max-height: 95px;
  object-fit: contain;
}

.fda-card__content {
  padding-left: 65px;
}

.fda-card__content p {
  max-width: 560px;
  margin: 9px 0 0;
  color: #333733;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
  }

  .brand img {
    width: 165px;
  }

  .primary-nav {
    gap: 22px;
  }

  .quote-button {
    width: 165px;
  }

  .story__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
  }

  .story__visual {
    height: 720px;
  }

  .story__copy {
    font-size: 14px;
  }

  .story__values {
    gap: 9px;
  }

  .value-card {
    min-height: 215px;
    padding-inline: 8px;
  }

  .value-card h3 {
    font-size: 13px;
  }

  .value-card p {
    font-size: 11px;
  }

  .range__inner {
    padding-inline: 0;
  }

  .range__grid {
    gap: 18px;
  }

  .product-card {
    min-height: 540px;
  }

  .product-card__image {
    height: 245px;
  }

  .product-card__content {
    padding-inline: 20px;
  }

  .product-card__title {
    gap: 10px;
  }

  .product-card__title > i {
    width: 38px;
    font-size: 30px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .product-card__content > p {
    font-size: 14px;
  }

  .product-card__button {
    min-width: 0;
    width: 100%;
    padding-inline: 15px;
    font-size: 13px;
  }

  .certifications__inner {
    padding-inline: 25px;
  }

  .certification-card {
    padding-inline: 20px;
  }

  .certification-card h4 {
    font-size: 17px;
  }

  .fda-card {
    grid-template-columns: 300px 1fr;
    padding-inline: 30px;
  }

  .fda-card__content {
    padding-left: 38px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .notice-bar__message {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .notice-bar__contact > a:first-child,
  .notice-bar__contact > i {
    display: none;
  }

  .site-header {
    height: 94px;
  }

  .site-header.is-stuck {
    height: 76px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 155px;
  }

  .site-header.is-stuck .brand img {
    width: 137px;
  }

  .quote-button {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    color: var(--green);
    background: transparent;
    border: 1px solid rgba(16, 109, 65, 0.35);
    border-radius: 6px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 21px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    height: auto;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--cream);
    border-top: 1px solid #e3dbc9;
    box-shadow: 0 18px 30px rgba(28, 42, 31, 0.12);
  }

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

  .primary-nav > a,
  .nav-dropdown__trigger {
    height: auto;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px solid #e6decf;
  }

  .primary-nav > a::after,
  .nav-dropdown__trigger::after {
    display: none;
  }

  .nav-dropdown {
    height: auto;
    display: block;
  }

  .nav-dropdown__trigger {
    width: 100%;
  }

  .nav-dropdown__menu {
    width: 100%;
    display: none;
    position: static;
    padding: 5px 4px 8px 18px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #e6decf;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown__menu a {
    padding: 10px 12px;
  }

  .hero {
    min-height: calc(100vh - 142px);
    background-position: 42% center;
  }

  .hero__content {
    width: 505px;
  }

  .story,
  .story__inner {
    min-height: auto;
  }

  .story {
    background-image: none;
  }

  .story::before {
    background-size: auto 100%;
  }

  .story__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 64px;
  }

  .story__visual {
    width: min(100%, 680px);
    height: min(740px, 102vw);
    margin-inline: auto;
  }

  .story__content {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .story__copy {
    max-width: none;
  }

  .value-card h3 {
    font-size: 14px;
  }

  .value-card p {
    font-size: 12px;
  }

  .range,
  .range__inner {
    min-height: auto;
  }

  .range__inner {
    padding-block: 64px;
  }

  .range__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    width: min(100%, 680px);
    min-height: 0;
    margin-inline: auto;
  }

  .product-card__image {
    height: clamp(260px, 56vw, 360px);
  }

  .product-card__content {
    min-height: 270px;
  }

  .product-card__title > i {
    width: 46px;
    font-size: 35px;
  }

  .product-card h3 {
    font-size: 34px;
  }

  .product-card__content > p {
    font-size: 16px;
  }

  .product-card__button {
    width: auto;
    min-width: 216px;
  }

  .certifications,
  .certifications__inner {
    min-height: auto;
  }

  .certifications__inner {
    padding-block: 60px;
    padding-inline: 0;
  }

  .certification-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certification-card {
    width: min(100%, 680px);
    min-height: 280px;
    margin-inline: auto;
  }

  .certification-group--safety {
    width: min(100%, 680px);
    margin-inline: auto;
    margin-top: 42px;
  }

  .fda-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
    text-align: center;
  }

  .fda-card__logo {
    border-right: 0;
    border-bottom: 1px solid #d9d1c4;
  }

  .fda-card__content {
    padding: 0;
  }

  .fda-card__content p {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .notice-bar {
    min-height: 41px;
  }

  .notice-bar__message {
    font-size: 10px;
    line-height: 1.3;
    white-space: normal;
  }

  .notice-bar__contact {
    gap: 12px;
  }

  .notice-bar__contact .social-link:nth-of-type(2) {
    display: none;
  }

  .site-header {
    height: 83px;
  }

  .site-header.is-stuck {
    height: 70px;
  }

  .brand img {
    width: 142px;
  }

  .site-header.is-stuck .brand img {
    width: 126px;
  }

  .hero {
    min-height: auto;
    background-image: linear-gradient(rgba(249, 245, 237, 0.1), rgba(249, 245, 237, 0.8)), url("assets/hero-bg.png");
    background-position: 59% center;
    background-size: auto 100%;
  }

  .hero__inner {
    min-height: 715px;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    padding: 51px 0 38px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(37px, 11vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .hero__intro {
    max-width: 94%;
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 23px;
  }

  .button {
    min-width: 0;
    height: 48px;
    gap: 8px;
    padding: 0 9px;
    font-size: 10px;
  }

  .credentials {
    width: 100%;
    margin-top: 25px;
  }

  .credentials__labels {
    gap: 8px;
    margin: 12px 0 17px;
    font-size: 11px;
  }

  .credentials__logos {
    height: 96px;
    padding: 11px 15px;
  }

  .credentials__logos > div {
    height: 59px;
  }

  .credentials__logos img {
    max-width: 70px;
    max-height: 57px;
  }

  .credentials__logos > div:nth-child(1) img {
    width: 56px;
  }

  .credentials__logos > div:nth-child(2) img {
    width: 72px;
  }

  .credentials__logos > div:nth-child(3) img {
    width: 74px;
  }

  .story__inner {
    gap: 38px;
    padding-block: 44px 52px;
  }

  .story__visual {
    height: 108vw;
    max-height: 520px;
    border-radius: 12px;
  }

  .story__eyebrow {
    gap: 9px;
    font-size: 18px;
  }

  .story__eyebrow i {
    font-size: 20px;
  }

  .story__accent {
    margin: 15px 0 20px;
  }

  .story h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .story__copy {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.6;
  }

  .story__copy p + p {
    margin-top: 16px;
  }

  .story__values {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .value-card {
    min-height: 0;
    padding: 22px 16px;
  }

  .value-card__icon {
    width: 68px;
    height: 68px;
  }

  .value-card h3 {
    font-size: 15px;
  }

  .value-card p {
    font-size: 13px;
  }

  .range__inner {
    padding-block: 46px 52px;
  }

  .range__eyebrow {
    gap: 9px;
    font-size: 18px;
  }

  .range__eyebrow i {
    font-size: 20px;
  }

  .range__accent {
    margin: 15px 0 18px;
  }

  .range h2 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.9px;
  }

  .range__title-break {
    display: none;
  }

  .range__grid {
    gap: 18px;
    margin-top: 30px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card__image {
    height: 56vw;
    min-height: 210px;
    max-height: 280px;
  }

  .product-card__content {
    min-height: 255px;
    padding: 20px 20px 22px;
  }

  .product-card h3 {
    font-size: 31px;
  }

  .product-card__content > p {
    margin: 13px 0 22px;
    font-size: 14px;
  }

  .product-card__button {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .certifications__inner {
    padding-block: 46px 52px;
  }

  .certifications__eyebrow {
    gap: 9px;
    font-size: 18px;
  }

  .certifications__eyebrow i {
    font-size: 20px;
  }

  .certifications__accent {
    margin: 15px 0 18px;
  }

  .certifications h2 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.9px;
  }

  .certifications__intro {
    font-size: 14px;
  }

  .certifications__intro br {
    display: none;
  }

  .certification-group {
    margin-top: 36px;
  }

  .certification-group__title {
    font-size: 16px;
  }

  .certification-card {
    min-height: 280px;
    padding: 20px 22px;
  }

  .certification-card p {
    font-size: 13px;
  }

  .fda-card {
    padding: 24px 20px;
  }

  .fda-card__logo img {
    width: 190px;
  }
}

/* Bulk product range */
.bulk-products {
  background: #fffefa;
  scroll-margin-top: 24px;
}

.bulk-products__inner {
  padding-block: 62px 70px;
}

.bulk-products__heading {
  padding-inline: 40px;
}

.bulk-products__eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
}

.bulk-products__eyebrow i {
  color: #6eaa2e;
  font-size: 21px;
}

.bulk-products__heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 4vw, 59px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.bulk-products__heading > p:last-child {
  margin: 19px 0 38px;
  color: #343934;
  font-size: 16px;
  line-height: 1.6;
}

.product-tabs {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 -1px 0;
  padding-inline: 32px;
}

.product-tab {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 17px;
  color: #3f4540;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e2e0da;
  border-right: 0;
  font-family: inherit;
  font-size: 21px;
  cursor: pointer;
}

.product-tab:first-child {
  border-radius: 20px 0 0;
}

.product-tab:last-child {
  border-right: 1px solid #e2e0da;
  border-radius: 0 20px 0 0;
}

.product-tab i {
  width: 33px;
  color: #657069;
  font-size: 29px;
  text-align: center;
}

.product-tab::after {
  height: 5px;
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  background: var(--green);
  border-radius: 5px 5px 0 0;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-tab.is-active {
  z-index: 1;
  color: var(--green-dark);
  background: #fff;
  font-weight: 600;
}

.product-tab.is-active i {
  color: #62a623;
}

.product-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-tab:focus-visible,
.bulk-product-card button:focus-visible,
.details-button:focus-visible,
.product-dialog__close:focus-visible {
  outline: 3px solid rgba(16, 109, 65, 0.3);
  outline-offset: 3px;
}

.product-panel {
  min-height: 600px;
}

.product-panel[hidden] {
  display: none;
}

.featured-product {
  min-height: 560px;
  display: grid;
  grid-template-columns: 42.5% 57.5%;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e2db;
  border-radius: 26px;
  box-shadow: 0 8px 28px rgba(45, 58, 47, 0.08);
}

.featured-product__visual {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}

.featured-product__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 15, 0.28), transparent 26%);
  content: "";
  pointer-events: none;
}

.featured-product__visual img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.featured-product__badge {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 28px;
  padding: 9px 15px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.featured-product__badge i {
  margin-right: 5px;
  font-size: 11px;
}

.featured-product__visual em {
  position: absolute;
  z-index: 1;
  top: 74px;
  left: 31px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 15px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.featured-product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 16px 20px 54px;
}

.featured-product__content > h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(39px, 3.3vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
}

.featured-product__content > p {
  max-width: 650px;
  margin: 20px 0 25px;
  color: #353a36;
  font-size: 15px;
  line-height: 1.75;
}

.details-button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.details-button--solid {
  width: fit-content;
  min-width: 287px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 25px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.details-button--solid:hover {
  background: #064729;
  transform: translateY(-1px);
}

.cinnamon-forms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 42px;
}

.cinnamon-forms > div {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 8px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e0da;
  border-radius: 13px;
}

.cinnamon-forms i {
  height: 51px;
  display: grid;
  place-items: center;
  color: #a75322;
  font-size: 35px;
}

.cinnamon-forms strong {
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.3;
}

.cinnamon-forms span {
  margin-top: 9px;
  color: #444944;
  font-size: 11px;
  line-height: 1.5;
}

.products-subheading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 31px 0 21px 24px;
}

.products-subheading i {
  color: #5d9f2c;
  font-size: 24px;
}

.products-subheading h3 {
  margin: 0;
  padding-bottom: 9px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  border-bottom: 2px solid var(--green);
}

.products-subheading--panel {
  margin-top: 42px;
}

.bulk-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding-inline: 24px;
}

.bulk-product-card {
  min-width: 0;
  min-height: 378px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e4df;
  border-radius: 11px;
  box-shadow: 0 5px 13px rgba(34, 49, 38, 0.055);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bulk-product-card:hover {
  box-shadow: 0 10px 25px rgba(34, 49, 38, 0.12);
  transform: translateY(-3px);
}

.bulk-product-card > img {
  width: 100%;
  height: 198px;
  display: block;
  object-fit: cover;
}

.bulk-product-card > div {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 17px 22px 18px;
}

.bulk-product-card h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.2px;
}

.bulk-product-card p {
  margin: 12px 0 13px;
  color: #444944;
  font-size: 13px;
  line-height: 1.5;
}

.bulk-product-card button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 0;
  color: var(--green-dark);
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.bulk-product-card button i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.bulk-product-card button:hover i {
  transform: translateX(4px);
}

.bulk-product-grid--teas {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bulk-product-grid--oils {
  grid-template-columns: repeat(2, minmax(0, 243px));
}

.product-dialog {
  width: min(860px, calc(100% - 40px));
  max-height: min(680px, calc(100dvh - 40px));
  grid-template-columns: 290px 1fr;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid #dedbd2;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(15, 32, 20, 0.28);
}

.product-dialog[open] {
  display: grid;
  animation: dialog-in 0.2s ease both;
}

.product-dialog::backdrop {
  background: rgba(12, 24, 16, 0.58);
  backdrop-filter: blur(4px);
}

.product-dialog__close {
  width: 38px;
  height: 38px;
  display: grid;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  place-items: center;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid #dedbd2;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
}

.product-dialog__image {
  min-height: 420px;
}

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

.product-dialog__content {
  overflow-y: auto;
  padding: 42px 48px 38px;
}

.product-dialog__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-dialog__content h2 {
  margin: 0;
  padding-right: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}

.product-dialog__copy > p {
  margin: 19px 0 0;
  color: #404640;
  font-size: 14px;
  line-height: 1.72;
}

.product-dialog__copy h3 {
  margin: 24px 0 10px;
  color: var(--green-dark);
  font-size: 16px;
}

.product-dialog__copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 19px;
  color: #414741;
  font-size: 12px;
  line-height: 1.45;
}

body.dialog-open {
  overflow: hidden;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .bulk-products__heading { padding-inline: 20px; }
  .featured-product { grid-template-columns: 44% 56%; }
  .featured-product__content { padding-left: 32px; }
  .cinnamon-forms { gap: 7px; }
  .cinnamon-forms > div { padding-inline: 5px; }
  .bulk-product-grid { gap: 15px; }
  .bulk-product-card > div { padding-inline: 15px; }
  .bulk-product-card h4 { font-size: 20px; }
}

@media (max-width: 900px) {
  .bulk-products__inner { padding-block: 54px; }
  .bulk-products__heading { padding-inline: 0; }
  .product-tabs { height: 80px; padding-inline: 0; }
  .product-tab { gap: 10px; font-size: 17px; }
  .product-tab i { width: 24px; font-size: 22px; }
  .featured-product { grid-template-columns: 1fr; padding: 16px; border-radius: 0 0 18px 18px; }
  .featured-product__visual { min-height: 520px; border-radius: 0; }
  .featured-product__content { padding: 34px 18px 18px; }
  .cinnamon-forms { margin-top: 32px; }
  .bulk-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-inline: 0; }
  .bulk-product-grid--oils { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .bulk-products__inner { padding-block: 43px 48px; }
  .bulk-products__heading h2 { font-size: 38px; }
  .bulk-products__heading > p:last-child { margin-bottom: 28px; font-size: 13px; }
  .bulk-products__heading > p:last-child br { display: none; }
  .product-tabs { height: 70px; }
  .product-tab { flex-direction: column; gap: 4px; font-size: 12px; }
  .product-tab i { font-size: 19px; }
  .product-tab::after { right: 10px; left: 10px; height: 4px; }
  .product-tab:first-child { border-radius: 13px 0 0; }
  .product-tab:last-child { border-radius: 0 13px 0 0; }
  .featured-product { padding: 10px; }
  .featured-product__visual { min-height: 330px; }
  .featured-product__badge { top: 17px; left: 17px; padding: 7px 10px; font-size: 10px; }
  .featured-product__visual em { top: 52px; left: 18px; font-size: 12px; }
  .featured-product__content { padding: 27px 11px 10px; }
  .featured-product__content > h3 { font-size: 35px; }
  .featured-product__content > p { margin: 14px 0 20px; font-size: 13px; line-height: 1.65; }
  .details-button--solid { width: 100%; min-width: 0; height: 50px; padding-inline: 17px; font-size: 12px; }
  .cinnamon-forms { grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
  .cinnamon-forms > div { min-height: 156px; }
  .products-subheading { margin: 27px 0 18px; }
  .products-subheading h3 { font-size: 28px; }
  .bulk-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bulk-product-card { min-height: 320px; }
  .bulk-product-card > img { height: 142px; }
  .bulk-product-card > div { min-height: 177px; padding: 13px 12px 14px; }
  .bulk-product-card h4 { font-size: 18px; }
  .bulk-product-card p { margin-top: 9px; font-size: 11px; }
  .bulk-product-card button { gap: 8px; font-size: 10px; }
  .product-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .product-dialog__image { height: 190px; min-height: 190px; }
  .product-dialog__content { overflow: visible; padding: 27px 23px 30px; }
  .product-dialog__content h2 { font-size: 31px; }
}

/* Contact */
.contact {
  min-height: 920px;
  position: relative;
  overflow: hidden;
  background: #fffefa;
  border-top: 1px solid #eee7dc;
  scroll-margin-top: 24px;
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/story-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0.48;
  pointer-events: none;
}

.contact__inner {
  min-height: 920px;
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 6vw, 96px);
  padding-block: 68px;
}

.contact__intro {
  min-width: 0;
}

.contact__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--green);
  font-size: 23px;
  font-weight: 600;
}

.contact__eyebrow i {
  color: #5f9f28;
  font-size: 27px;
}

.contact__accent {
  width: 47px;
  height: 2px;
  display: block;
  margin: 19px 0 24px;
  background: var(--green);
}

.contact__heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 4.1vw, 61px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.6px;
  white-space: nowrap;
}

.contact__lead {
  max-width: 570px;
  margin: 29px 0 0;
  color: #303630;
  font-size: 16px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.contact-detail {
  min-height: 112px;
  display: grid;
  grid-template-columns: 102px 1fr;
  align-items: center;
  padding: 16px 25px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e4ded3;
  border-radius: 12px;
  box-shadow: 0 6px 17px rgba(38, 48, 40, 0.07);
  backdrop-filter: blur(3px);
}

.contact-detail__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #f0f4e9;
  border-radius: 50%;
  font-size: 31px;
}

.contact-detail > div:last-child {
  min-height: 70px;
  padding-left: 20px;
  border-left: 1px solid #cfd8cb;
}

.contact-detail h3 {
  margin: -1px 0 5px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

.contact-detail p,
.contact-detail address {
  margin: 0;
  color: #343a35;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.contact-detail a {
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--green);
}

.contact-socials {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 23px;
  padding-inline: 45px;
}

.contact-socials > span {
  height: 1px;
  background: #cfd1c8;
}

.contact-socials > i {
  color: #65a139;
  font-size: 15px;
  text-align: center;
}

.contact-socials > div {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-top: 5px;
}

.contact-socials a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
  font-size: 22px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}

.inquiry-card {
  min-width: 0;
  padding: 36px 38px 32px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid #e1ddd5;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(40, 48, 40, 0.1);
  backdrop-filter: blur(4px);
}

.inquiry-card__heading p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.inquiry-card__heading i {
  color: #5e9f2d;
  font-size: 27px;
}

.inquiry-card__heading > span {
  width: 47px;
  height: 2px;
  display: block;
  margin-top: 17px;
  background: var(--green);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.inquiry-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.inquiry-field {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.inquiry-field label {
  color: #171c18;
  font-size: 15px;
  font-weight: 500;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  color: #1c231e;
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid #d7d8d3;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-field input,
.inquiry-field select {
  height: 48px;
  padding: 0 15px;
}

.inquiry-field select {
  cursor: pointer;
}

.inquiry-field textarea {
  min-height: 108px;
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.5;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder,
.inquiry-field select:invalid {
  color: #a3a6a2;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 109, 65, 0.1);
}

.inquiry-field--message {
  align-items: start;
}

.inquiry-field--message label {
  padding-top: 13px;
}

.inquiry-form__submit {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 10px;
  color: #fff;
  background: linear-gradient(100deg, #067243, #087d47);
  border: 0;
  border-radius: 7px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.inquiry-form__submit:hover {
  box-shadow: 0 8px 20px rgba(6, 108, 63, 0.2);
  transform: translateY(-1px);
}

.inquiry-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.inquiry-form__status {
  margin: 1px 0 0 181px;
  padding: 11px 14px;
  border-radius: 7px;
  font-size: 13px;
  line-height: 1.5;
}

.inquiry-form__status.is-success {
  color: #075d36;
  background: #edf7f0;
  border: 1px solid #b9dbc4;
}

.inquiry-form__status.is-error {
  color: #8a2e27;
  background: #fff0ee;
  border: 1px solid #ecc4bf;
}

.inquiry-form__submit:focus-visible,
.contact-socials a:focus-visible,
.contact-detail a:focus-visible {
  outline: 3px solid rgba(16, 109, 65, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .contact__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 35px;
  }

  .contact__heading h2 {
    font-size: 48px;
  }

  .contact__lead {
    font-size: 14px;
  }

  .contact-detail {
    grid-template-columns: 82px 1fr;
    padding-inline: 16px;
  }

  .contact-detail__icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .inquiry-card {
    padding-inline: 27px;
  }

  .inquiry-field {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .inquiry-form__status {
    margin-left: 146px;
  }
}

@media (max-width: 900px) {
  .contact,
  .contact__inner {
    min-height: auto;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 60px;
  }

  .contact__intro,
  .inquiry-card {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .contact__heading h2 {
    font-size: clamp(43px, 8vw, 58px);
    white-space: normal;
  }

  .contact__lead {
    max-width: 620px;
    font-size: 16px;
  }

  .contact-detail {
    grid-template-columns: 102px 1fr;
    padding-inline: 25px;
  }

  .inquiry-field {
    grid-template-columns: 165px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .contact__inner {
    gap: 40px;
    padding-block: 47px;
  }

  .contact__eyebrow {
    gap: 10px;
    font-size: 19px;
  }

  .contact__eyebrow i {
    font-size: 22px;
  }

  .contact__accent {
    margin: 15px 0 19px;
  }

  .contact__heading h2 {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -1px;
  }

  .contact__lead {
    margin-top: 20px;
    font-size: 14px;
  }

  .contact-details {
    margin-top: 24px;
  }

  .contact-detail {
    min-height: 105px;
    grid-template-columns: 68px 1fr;
    padding: 14px 12px;
  }

  .contact-detail__icon {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .contact-detail > div:last-child {
    min-height: 60px;
    padding-left: 14px;
  }

  .contact-detail h3 {
    font-size: 16px;
  }

  .contact-detail p,
  .contact-detail address {
    font-size: 12px;
  }

  .contact-socials {
    padding-inline: 25px;
  }

  .contact-socials a {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .inquiry-card {
    padding: 28px 18px 22px;
  }

  .inquiry-card__heading p {
    gap: 10px;
    font-size: 18px;
  }

  .inquiry-card__heading i {
    font-size: 22px;
  }

  .inquiry-form {
    gap: 15px;
  }

  .inquiry-field {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .inquiry-field--message label {
    padding-top: 0;
  }

  .inquiry-form__status {
    margin-left: 0;
  }

  .inquiry-form__submit {
    min-height: 53px;
    font-size: 14px;
  }
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #073d27;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(270px, 1.55fr) minmax(130px, 0.72fr) minmax(145px, 0.78fr) minmax(240px, 1fr);
  gap: clamp(38px, 5vw, 80px);
  padding-block: 62px 56px;
}

.footer-brand__logo {
  width: fit-content;
  display: block;
}

.footer-brand__logo img {
  width: 185px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: #073d27;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column h2 {
  position: relative;
  margin: 3px 0 17px;
  padding-bottom: 13px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}

.footer-column h2::after {
  width: 34px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #8fb96d;
  content: "";
}

.footer-column > a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column > a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  gap: 16px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.footer-contact p > i {
  width: 17px;
  margin-top: 4px;
  color: #a9cf87;
  font-size: 15px;
  text-align: center;
}

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

.footer-contact a:hover {
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__bottom .shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

.footer-socials a:focus-visible,
.footer-column a:focus-visible,
.footer-brand__logo:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-brand > p {
    max-width: 440px;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding-block: 48px 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 26px;
  }

  .footer-brand__logo img {
    width: 165px;
  }

  .footer-brand > p {
    margin-top: 20px;
    font-size: 13px;
  }

  .footer-column h2 {
    font-size: 19px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 4px;
  }

  .site-footer__bottom .shell {
    min-height: 72px;
  }

  .site-footer__bottom p {
    font-size: 11px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
