:root {
  --jsg-navy: #0b1f3a;
  --jsg-gold: #c9a227;
  --jsg-text: #1f2937;
  --jsg-muted: #6b7280;
  --jsg-bg: #f8fafc;
  --jsg-white: #ffffff;
  --jsg-max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--jsg-text);
  background: var(--jsg-bg);
  line-height: 1.6;
}

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

a {
  color: var(--jsg-navy);
}

.jsg-central-contact-cta {
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 16px;
  background: var(--jsg-white);
  padding: 1.75rem;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
}

.jsg-central-contact-cta h3 {
  margin: 0 0 0.625rem;
  color: var(--jsg-navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.jsg-central-contact-cta p {
  margin: 0 0 1.25rem;
  color: var(--jsg-muted);
  line-height: 1.65;
}

.jsg-central-contact-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--jsg-navy);
  color: var(--jsg-white);
  padding: 0.8rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.jsg-central-contact-cta a:hover {
  background: #1a3a7a;
  transform: translateY(-1px);
}

.jsg-wrap {
  max-width: var(--jsg-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.jsg-header {
  background: var(--jsg-navy);
  color: var(--jsg-white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.jsg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5rem;
}

.jsg-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.jsg-brand-logo {
  display: block;
  width: auto;
  height: 3.6rem;
  max-width: 10.75rem;
  border: 1px solid rgba(0, 200, 232, 0.22);
  border-radius: 0.75rem;
  background: var(--jsg-white);
  object-fit: contain;
  padding: 0.3rem 0.55rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.jsg-brand-title {
  display: block;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.jsg-brand-subtitle {
  display: block;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.jsg-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.75rem;
}

.jsg-nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
}

.jsg-nav-link:hover,
.jsg-nav-link.is-active {
  color: var(--jsg-white);
  background: rgba(255, 255, 255, 0.12);
}

.jsg-page-body {
  padding: 2rem 0 3rem;
}

.jsg-main,
.jsg-page-body .jsg-main {
  max-width: var(--jsg-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
}

.jsg-section {
  margin-bottom: 2rem;
}

.jsg-section > .jsg-col:first-child:last-child {
  display: block;
}

.jsg-section:has(> .jsg-col + .jsg-col) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.jsg-heading {
  color: var(--jsg-navy);
  margin: 0 0 0.75rem;
}

.jsg-text p {
  margin: 0 0 1rem;
}

.jsg-figure {
  margin: 0;
  background: var(--jsg-white);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.jsg-figure img {
  display: block;
  width: 100%;
}

.jsg-figure figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--jsg-muted);
}

.jsg-btn-wrap {
  margin: 1rem 0;
}

.jsg-btn,
.jsg-btn-wrap .jsg-btn {
  display: inline-block;
  background: var(--jsg-gold);
  color: var(--jsg-navy);
  text-decoration: none;
  font-weight: 700;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.jsg-btn-small {
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
}

.jsg-cta {
  background: var(--jsg-white);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.jsg-map iframe {
  width: 100%;
  border-radius: 0.75rem;
}

.jsg-form {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
  background: var(--jsg-white);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.jsg-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.jsg-form input,
.jsg-form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.4rem;
}

.jsg-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.jsg-product-card {
  background: var(--jsg-white);
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
}

.jsg-page-title {
  color: var(--jsg-navy);
}

.jsg-footer {
  background: var(--jsg-navy);
  color: #cbd5e1;
  padding: 1.5rem 0 2rem;
  margin-top: 2rem;
}

.jsg-footer p {
  margin: 0;
  text-align: center;
}

.jsg-pharmacy {
  background: var(--jsg-bg);
  color: var(--jsg-text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.farms-page,
.farms-header,
.farms-footer {
  --farms-red: #f03038;
  --farms-indigo: #404080;
  --farms-lavender: #c8c8e0;
  --farms-charcoal: #383038;
  --farms-brown: #683000;
  --farms-cream: #fffdf8;
  --farms-line: rgba(56, 48, 56, 0.12);
  color: var(--farms-charcoal);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.farms-page {
  background: var(--farms-cream);
  overflow: hidden;
}

body:has(.farms-page) {
  overflow-x: hidden;
}

.farms-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.farms-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 1px solid rgba(64, 64, 128, 0.16);
  backdrop-filter: blur(18px);
}

.farms-header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.farms-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.farms-brand img {
  width: 170px;
  max-height: 72px;
  object-fit: contain;
}

.farms-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.farms-nav a,
.farms-header-cta {
  color: var(--farms-indigo);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 8px;
}

.farms-nav a {
  padding: 0.65rem 0.75rem;
}

.farms-nav a:hover {
  background: rgba(200, 200, 224, 0.42);
}

.farms-header-cta {
  background: var(--farms-red);
  color: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 14px 30px rgba(240, 48, 56, 0.24);
}

.farms-hero {
  position: relative;
  min-height: calc(100vh - 5.25rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--farms-charcoal);
}

.farms-hero-bg {
  position: absolute;
  inset: 0;
}

.farms-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.farms-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.88) 44%, rgba(255, 253, 248, 0.42) 68%, rgba(56, 48, 56, 0.58) 100%),
    linear-gradient(180deg, rgba(64, 64, 128, 0.10), rgba(104, 48, 0, 0.28));
}

.farms-hero-inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 3rem;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.farms-hero-copy {
  max-width: 660px;
  min-width: 0;
  width: 100%;
}

.farms-hero-brandline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.7rem;
  margin: 0 0 1.25rem;
  color: var(--farms-indigo);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.farms-hero-brandline span {
  color: var(--farms-charcoal);
}

.farms-hero-brandline strong {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 2rem;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(64, 64, 128, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(56, 48, 56, 0.1);
  color: var(--farms-red);
}

.farms-eyebrow,
.farms-section-kicker {
  margin: 0 0 0.85rem;
  color: var(--farms-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.farms-hero h1,
.farms-section h2 {
  margin: 0;
  color: var(--farms-brown);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.farms-hero h1 {
  max-width: 650px;
  color: var(--farms-charcoal);
  font-size: clamp(3rem, 6.6vw, 6.15rem);
}

.farms-hero h1 span {
  display: block;
}

.farms-hero h1::after {
  content: "";
  display: block;
  width: min(280px, 60vw);
  height: 6px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--farms-red), var(--farms-indigo), var(--farms-lavender));
  border-radius: 999px;
}

.farms-hero-lede,
.farms-section-lede,
.farms-order-panel > p {
  max-width: 620px;
  margin: 1.25rem 0 0;
  color: rgba(56, 48, 56, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.farms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.farms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.15rem;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.farms-btn-primary {
  background: var(--farms-red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(240, 48, 56, 0.25);
}

.farms-btn-secondary {
  background: #fff;
  color: var(--farms-indigo);
  border: 1px solid rgba(64, 64, 128, 0.22);
}

.farms-hero-visual {
  position: relative;
  min-height: 520px;
  min-width: 0;
}

.farms-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -6% auto auto;
  width: 86%;
  height: 42%;
  border: 4px solid var(--farms-red);
  border-left: 0;
  border-bottom: 0;
  border-radius: 8px;
  opacity: 0.7;
}

.farms-hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 248, 0.88);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(56, 48, 56, 0.22);
}

.farms-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.farms-hero-card-main {
  inset: 2rem 0 auto 2rem;
  height: 350px;
}

.farms-hero-card-small {
  right: 58%;
  bottom: 1.5rem;
  width: 46%;
  height: 200px;
}

.farms-ribbon-note {
  position: absolute;
  right: 1.25rem;
  bottom: 2rem;
  display: grid;
  gap: 0;
  min-width: 150px;
  padding: 1rem;
  background: var(--farms-lavender);
  color: var(--farms-indigo);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(64, 64, 128, 0.22);
}

.farms-ribbon-note strong {
  color: var(--farms-red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  line-height: 0.8;
}

.farms-ribbon-note span {
  color: var(--farms-charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.farms-section {
  padding: 5.5rem 0;
}

.farms-section h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
}

.farms-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.farms-quality {
  background:
    linear-gradient(135deg, rgba(200, 200, 224, 0.35), rgba(255, 253, 248, 0.94)),
    var(--farms-cream);
}

.farms-quality-grid,
.farms-order-grid,
.farms-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 3rem;
  align-items: start;
}

.farms-text-link {
  display: inline-flex;
  margin-top: 1.35rem;
  color: var(--farms-indigo);
  font-weight: 900;
  text-decoration-color: var(--farms-red);
  text-underline-offset: 0.28rem;
}

.farms-quality-list {
  display: grid;
  gap: 0.75rem;
}

.farms-quality-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  min-height: 4.8rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(64, 64, 128, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.farms-quality-item span {
  display: grid;
  place-items: center;
  height: 100%;
  background: var(--farms-indigo);
  color: #fff;
  font-weight: 900;
}

.farms-quality-item p {
  margin: 0;
  padding: 0.9rem 1rem;
  color: var(--farms-charcoal);
  font-weight: 700;
}

.farms-produce {
  background: #fff;
}

.farms-produce-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.farms-produce-card {
  background: #fff;
  border: 1px solid var(--farms-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(56, 48, 56, 0.08);
}

.farms-produce-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.farms-produce-card-body {
  padding: 1.2rem;
}

.farms-produce-card-body > p {
  margin: 0 0 0.75rem;
  color: var(--farms-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.farms-produce-card h3 {
  margin: 0;
  color: var(--farms-brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.05;
}

.farms-produce-card-body div {
  margin-top: 0.85rem;
  color: rgba(56, 48, 56, 0.78);
  line-height: 1.65;
}

.farms-produce-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--farms-indigo);
  font-weight: 900;
  text-decoration-color: var(--farms-lavender);
  text-underline-offset: 0.25rem;
}

.farms-order {
  background: var(--farms-charcoal);
}

.farms-order .farms-section-kicker,
.farms-order h2,
.farms-order-panel > p {
  color: #fff;
}

.farms-order .farms-section-kicker {
  color: var(--farms-lavender);
}

.farms-order-panel {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 200, 224, 0.24);
  border-radius: 8px;
}

.farms-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.farms-form label {
  display: grid;
  gap: 0.4rem;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.farms-form input,
.farms-form textarea {
  width: 100%;
  border: 1px solid rgba(64, 64, 128, 0.22);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  color: var(--farms-charcoal);
  background: #fff;
  font: inherit;
}

.farms-form input:focus,
.farms-form textarea:focus {
  border-color: var(--farms-red);
  box-shadow: 0 0 0 4px rgba(240, 48, 56, 0.16);
  outline: 0;
}

.farms-form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--farms-lavender);
  font-size: 0.9rem;
  font-weight: 800;
}

.farms-order-image {
  position: sticky;
  top: 7rem;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(200, 200, 224, 0.5);
  border-radius: 8px;
}

.farms-order-image img {
  display: block;
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.farms-contact {
  background:
    linear-gradient(180deg, rgba(200, 200, 224, 0.25), rgba(255, 253, 248, 0)),
    var(--farms-cream);
}

.farms-contact-head {
  margin-bottom: 2rem;
}

.farms-contact-card,
.farms-contact-form {
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--farms-line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 18px 48px rgba(56, 48, 56, 0.08);
}

.farms-contact-card h3 {
  margin: 0 0 1rem;
  color: var(--farms-brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.farms-contact-card p {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 1rem;
}

.farms-contact-card strong {
  color: var(--farms-red);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.farms-contact-card a,
.farms-contact-card span {
  color: var(--farms-charcoal);
  font-weight: 800;
  text-decoration: none;
}

.farms-map {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--farms-line);
}

.farms-map iframe {
  display: block;
  width: 100%;
}

.farms-contact-form .farms-form-message {
  color: var(--farms-indigo);
}

.farms-footer {
  background: var(--farms-indigo);
  color: #fff;
  padding: 2rem 0;
}

.farms-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.farms-footer img {
  width: 190px;
  background: #fff;
  border-radius: 8px;
  padding: 0.25rem;
}

.farms-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-align: right;
}

@media (max-width: 980px) {
  .farms-header-inner {
    min-height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-wrap: wrap;
  }

  .farms-brand img {
    width: 145px;
  }

  .farms-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .farms-hero-inner,
  .farms-quality-grid,
  .farms-order-grid,
  .farms-contact-grid {
    grid-template-columns: 1fr;
  }

  .farms-hero {
    min-height: auto;
  }

  .farms-hero-bg::after {
    background: rgba(255, 253, 248, 0.9);
  }

  .farms-hero-inner {
    gap: 1.75rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .farms-hero-visual {
    min-height: 420px;
  }

  .farms-produce-grid {
    grid-template-columns: 1fr;
  }

  .farms-order-image {
    position: relative;
    top: auto;
  }

  .farms-order-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .farms-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .farms-header-cta {
    display: none;
  }

  .farms-nav a {
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .farms-section {
    padding: 4rem 0;
  }

  .farms-hero-logo {
    width: min(310px, 92vw);
  }

  .farms-hero-inner {
    display: block;
    max-width: 100vw;
    overflow: hidden;
  }

  .farms-hero-copy {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .farms-hero h1 {
    max-width: calc(100vw - 2rem);
    font-size: clamp(2.55rem, 13vw, 3.25rem);
  }

  .farms-hero-lede {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    font-size: 1rem;
  }

  .farms-hero-actions {
    display: grid;
    width: calc(100vw - 2rem);
  }

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

  .farms-hero-stats {
    display: none;
  }

  .farms-hero-visual {
    margin-top: 1.75rem;
  }

  .farms-hero-card-main {
    inset: 0 0 auto 0;
    height: 275px;
  }

  .farms-hero-card-small {
    left: 0;
    right: auto;
    bottom: 0;
    width: 56%;
    height: 160px;
  }

  .farms-ribbon-note {
    right: 0;
    bottom: 1.25rem;
  }

  .farms-quality-item {
    grid-template-columns: 3.25rem 1fr;
  }

  .farms-order-panel,
  .farms-contact-card,
  .farms-contact-form {
    padding: 1rem;
  }

  .farms-footer-inner {
    display: grid;
  }

  .farms-footer p {
    text-align: left;
  }
}

.farms-header-inner {
  justify-content: space-between;
}

.farms-brand img {
  width: min(230px, 52vw);
  max-height: 86px;
}

.farms-hero {
  min-height: calc(100vh - 5.25rem);
  padding-bottom: 6.75rem;
}

.farms-hero-logo {
  display: none;
}

.farms-ribbon-note strong {
  font-size: 2.35rem;
}

.farms-hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.farms-hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: rgba(64, 64, 128, 0.94);
  color: #fff;
  box-shadow: 0 -18px 45px rgba(56, 48, 56, 0.16);
}

.farms-hero-stats-inner div {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  min-height: 6rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.farms-hero-stats-inner div:last-child {
  border-right: 0;
}

.farms-hero-stats-inner strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.farms-hero-stats-inner span {
  color: var(--farms-lavender);
  font-size: 0.78rem;
  font-weight: 800;
}

.farms-quality-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
}

.farms-quality-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.farms-quality-point {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.farms-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(240, 48, 56, 0.11);
  color: var(--farms-red);
}

.farms-icon::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0.32rem rgba(255, 255, 255, 0.7);
}

.farms-icon-leaf,
.farms-icon-egg,
.farms-icon-envelope {
  background: rgba(64, 64, 128, 0.11);
  color: var(--farms-indigo);
}

.farms-icon-clock,
.farms-icon-drumstick,
.farms-icon-location,
.farms-icon-map {
  background: rgba(104, 48, 0, 0.11);
  color: var(--farms-brown);
}

.farms-quality-point h3,
.farms-form-head h3,
.farms-contact-form h3,
.farms-contact-map-panel h3,
.farms-contact-mini-card h3 {
  margin: 0;
  color: var(--farms-charcoal);
  font-size: 0.98rem;
  font-weight: 900;
}

.farms-quality-point p,
.farms-form-head p,
.farms-contact-head p,
.farms-contact-map-panel p,
.farms-contact-mini-card p,
.farms-contact-mini-card small {
  margin: 0.25rem 0 0;
  color: rgba(56, 48, 56, 0.68);
  line-height: 1.65;
}

.farms-quality-image {
  position: relative;
  margin: 0;
  min-height: 500px;
}

.farms-quality-image::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border-radius: 8px;
  background: var(--farms-lavender);
}

.farms-quality-image img {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(56, 48, 56, 0.14);
}

.farms-quality-image figcaption {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  background: var(--farms-red);
  color: #fff;
  box-shadow: 0 18px 40px rgba(240, 48, 56, 0.28);
}

.farms-quality-image figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.farms-quality-image figcaption span {
  font-size: 0.75rem;
  font-weight: 900;
}

.farms-section-head-centered {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.farms-section-head-centered .farms-section-lede {
  margin-top: 0.75rem;
}

.farms-produce-card {
  display: flex;
  flex-direction: column;
}

.farms-produce-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.farms-produce-image img {
  height: 100%;
  min-height: 250px;
  transition: transform 0.45s ease;
}

.farms-produce-card:hover .farms-produce-image img {
  transform: scale(1.04);
}

.farms-produce-image span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 8px;
  background: var(--farms-indigo);
  color: #fff;
  padding: 0.45rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 900;
}

.farms-produce-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.farms-produce-card-body > .farms-produce-copy {
  margin-top: 1rem;
  color: rgba(56, 48, 56, 0.68);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.farms-product-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--farms-line);
}

.farms-product-list strong {
  color: var(--farms-indigo);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.farms-product-list ul,
.farms-order-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.85rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.farms-product-list li,
.farms-order-benefits li {
  position: relative;
  padding-left: 1rem;
  color: rgba(56, 48, 56, 0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

.farms-product-list li::before,
.farms-order-benefits li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--farms-red);
}

.farms-produce-order {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  background: var(--farms-red);
  color: #fff !important;
  padding: 0.85rem;
  text-align: center;
  text-decoration: none;
}

.farms-order-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
}

.farms-order-info > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.farms-order-info-image {
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 8px;
}

.farms-order-info-image img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.farms-order-benefits {
  border: 1px solid rgba(200, 200, 224, 0.35);
  border-radius: 8px;
  background: rgba(200, 200, 224, 0.12);
  padding: 1.2rem;
}

.farms-order-benefits strong {
  color: var(--farms-lavender);
  font-weight: 900;
}

.farms-order-benefits li {
  color: rgba(255, 255, 255, 0.78);
}

.farms-order-panel {
  background: #f7f7f9;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--farms-charcoal);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.farms-form-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.farms-form select {
  width: 100%;
  border: 1px solid rgba(64, 64, 128, 0.22);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  color: var(--farms-charcoal);
  background: #fff;
  font: inherit;
}

.farms-form select:focus {
  border-color: var(--farms-red);
  box-shadow: 0 0 0 4px rgba(240, 48, 56, 0.16);
  outline: 0;
}

.farms-form-note {
  margin: -0.1rem 0 0;
  color: rgba(56, 48, 56, 0.52);
  font-size: 0.78rem;
  text-align: center;
}

.farms-order-panel .farms-form-message {
  color: var(--farms-indigo);
}

.farms-contact-head {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.farms-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.farms-contact-mini-card,
.farms-contact-map-panel {
  border: 1px solid var(--farms-line);
  border-radius: 8px;
  background: #fff;
  padding: 1.4rem;
  text-align: center;
  box-shadow: 0 18px 48px rgba(56, 48, 56, 0.08);
}

.farms-contact-mini-card .farms-icon,
.farms-contact-map-panel .farms-icon {
  margin: 0 auto 0.9rem;
}

.farms-contact-mini-card a {
  color: var(--farms-indigo);
  font-weight: 900;
  text-decoration: none;
}

.farms-contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
}

.farms-contact-form {
  text-align: left;
}

.farms-contact-form h3 {
  margin-bottom: 1.2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.farms-contact-map-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
}

.farms-contact-map-panel .farms-map {
  margin-top: 1.1rem;
}

.farms-contact-map-panel a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--farms-indigo);
  font-size: 0.82rem;
  font-weight: 900;
}

.farms-footer img {
  width: min(230px, 58vw);
}

@media (max-width: 980px) {
  .farms-hero {
    padding-bottom: 0;
  }

  .farms-hero-stats {
    position: relative;
  }

  .farms-hero-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 0;
  }

  .farms-quality-image {
    min-height: auto;
  }

  .farms-quality-image img {
    height: 430px;
  }

  .farms-contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .farms-brand img {
    width: min(190px, 62vw);
  }

  .farms-hero-logo {
    display: none;
  }

  .farms-hero-brandline {
    display: grid;
    justify-items: start;
    max-width: 100%;
    font-size: 0.75rem;
  }

  .farms-hero-brandline strong {
    white-space: normal;
  }

  .farms-hero-stats-inner div {
    min-height: 5rem;
    padding: 0.8rem;
  }

  .farms-hero-stats-inner strong {
    font-size: 1.6rem;
  }

  .farms-quality-point {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .farms-quality-image figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .farms-product-list ul,
  .farms-order-benefits ul {
    grid-template-columns: 1fr;
  }

  .farms-order-info-image img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .farms-page,
  .farms-header,
  .farms-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .farms-hero-inner {
    display: block;
    max-width: 100%;
  }

  .farms-hero-copy,
  .farms-hero-lede,
  .farms-hero-actions {
    width: auto;
    max-width: 100%;
  }

  .farms-hero-copy {
    padding-right: 1rem;
  }

  .farms-hero-lede {
    padding-right: 0;
  }

  .farms-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12.5vw, 3.1rem);
  }

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

  .farms-hero-visual {
    margin-top: 1.75rem;
  }

  .farms-ribbon-note {
    min-width: 112px;
  }
}

.jsg-pharmacy-wrap {
  max-width: var(--jsg-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.jsg-pharmacy-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, var(--jsg-navy) 0%, var(--jsg-navy) 48%, rgba(255, 255, 255, 0) 48%),
    var(--jsg-white);
}

.jsg-pharmacy-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: 720px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.jsg-pharmacy-hero-copy {
  color: var(--jsg-white);
}

.jsg-pharmacy-kicker,
.jsg-pharmacy-section-label {
  margin: 0 0 1rem;
  color: #10a7d9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jsg-pharmacy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  color: #d8f6ff;
  background: rgba(16, 167, 217, 0.12);
  border: 1px solid rgba(16, 167, 217, 0.32);
  border-radius: 999px;
}

.jsg-pharmacy-kicker span {
  width: 0.5rem;
  height: 0.5rem;
  background: #10a7d9;
  border-radius: 999px;
}

.jsg-pharmacy-hero-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.75rem;
}

.jsg-pharmacy-hero-brand img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  padding: 0.45rem;
  background: var(--jsg-white);
  border-radius: 0.6rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.jsg-pharmacy-hero-brand p {
  max-width: 24rem;
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.jsg-pharmacy h1,
.jsg-pharmacy h2,
.jsg-pharmacy h3 {
  margin-top: 0;
  color: var(--jsg-navy);
  line-height: 1.08;
}

.jsg-pharmacy h1 {
  max-width: 42rem;
  margin-bottom: 1.25rem;
  color: var(--jsg-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5rem);
}

.jsg-pharmacy-lede {
  margin: 0;
  color: var(--jsg-gold);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.jsg-pharmacy-intro {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #e2e8f0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.jsg-pharmacy-actions,
.jsg-pharmacy-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.jsg-pharmacy-actions {
  margin-top: 2rem;
}

.jsg-pharmacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  color: var(--jsg-navy);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.jsg-pharmacy-btn-gold {
  background: var(--jsg-gold);
  color: var(--jsg-navy);
}

.jsg-pharmacy-btn-outline {
  color: var(--jsg-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.jsg-pharmacy-btn-navy {
  color: var(--jsg-white);
  background: var(--jsg-navy);
}

.jsg-pharmacy-visual {
  position: relative;
  overflow: hidden;
  background: var(--jsg-white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.65rem;
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.22);
}

.jsg-pharmacy-visual > img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.jsg-pharmacy-visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  color: var(--jsg-white);
  background: linear-gradient(to top, rgba(11, 31, 58, 0.96), rgba(11, 31, 58, 0));
}

.jsg-pharmacy-visual-caption p {
  margin: 0 0 0.45rem;
  color: var(--jsg-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jsg-pharmacy-visual-caption strong {
  display: block;
  max-width: 28rem;
  font-size: 1.55rem;
  line-height: 1.25;
}

.jsg-pharmacy-trust {
  background: var(--jsg-white);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.jsg-pharmacy-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.jsg-pharmacy-trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
}

.jsg-pharmacy-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--jsg-gold);
  font-weight: 800;
  background: var(--jsg-navy);
  border-radius: 0.45rem;
}

.jsg-pharmacy-trust h2 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.jsg-pharmacy-trust p {
  margin: 0;
  color: var(--jsg-muted);
}

.jsg-pharmacy-products,
.jsg-pharmacy-order {
  padding: 5rem 0;
}

.jsg-pharmacy-section-head {
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.jsg-pharmacy-section-head h2,
.jsg-pharmacy-order h2 {
  max-width: 42rem;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
}

.jsg-pharmacy-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.jsg-pharmacy-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--jsg-white);
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.jsg-pharmacy-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.jsg-pharmacy-product-card img {
  width: 100%;
  height: 12rem;
  padding: 1.5rem;
  object-fit: contain;
  background: #f1f5f9;
}

.jsg-pharmacy-product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.jsg-pharmacy-product-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
}

.jsg-pharmacy-product-card p {
  flex: 1;
  margin: 0;
  color: var(--jsg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.jsg-pharmacy-product-card a {
  margin-top: 1.25rem;
  color: #28166f;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.jsg-pharmacy-order {
  background: var(--jsg-white);
}

.jsg-pharmacy-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.jsg-pharmacy-order p {
  max-width: 36rem;
  color: var(--jsg-muted);
  line-height: 1.8;
}

.jsg-pharmacy-note {
  display: grid;
  gap: 0.35rem;
  max-width: 34rem;
  margin-top: 2rem;
  padding: 1.35rem;
  color: var(--jsg-white);
  background: var(--jsg-navy);
  border-radius: 0.6rem;
}

.jsg-pharmacy-note span {
  color: #cbd5e1;
  line-height: 1.6;
}

.jsg-pharmacy-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: var(--jsg-bg);
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.jsg-pharmacy-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--jsg-navy);
  font-weight: 800;
}

.jsg-pharmacy-form-wide {
  grid-column: 1 / -1;
}

.jsg-pharmacy-form input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  color: var(--jsg-text);
  font: inherit;
  background: var(--jsg-white);
  border: 1px solid #cbd5e1;
  border-radius: 0.45rem;
  outline: none;
}

.jsg-pharmacy-form input:focus {
  border-color: #10a7d9;
  box-shadow: 0 0 0 4px rgba(16, 167, 217, 0.14);
}

.jsg-pharmacy-form button {
  width: fit-content;
}

@media (max-width: 900px) {
  .jsg-pharmacy-hero {
    background: var(--jsg-navy);
  }

  .jsg-pharmacy-hero-grid,
  .jsg-pharmacy-order-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .jsg-pharmacy-product-grid,
  .jsg-pharmacy-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .jsg-pharmacy-hero-grid,
  .jsg-pharmacy-products,
  .jsg-pharmacy-order {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .jsg-pharmacy-hero-brand {
    align-items: flex-start;
  }

  .jsg-pharmacy-hero-brand img {
    width: 4.25rem;
    height: 4.25rem;
  }

  .jsg-pharmacy-visual > img {
    height: 320px;
  }

  .jsg-pharmacy-section-head {
    align-items: flex-start;
  }

  .jsg-pharmacy-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .jsg-pharmacy-form button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .jsg-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 0;
  }

  .jsg-brand-logo {
    height: 3.25rem;
    max-width: 9.75rem;
  }

  .jsg-nav {
    width: 100%;
    justify-content: flex-start;
  }
}
