:root {
  --bg: #FDFCF8;
  --ink: #2C2C24;
  --moss: #5D7052;
  --moss-dark: #46563E;
  --mist: #F3F4F1;
  --clay: #C18C5D;
  --clay-deep: #A96F42;
  --sand: #E6DCCD;
  --stone: #F0EBE5;
  --grass: #78786C;
  --timber: #DED8CF;
  --sienna: #A85448;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px -2px rgba(93, 112, 82, 0.15);
  --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.22);
  --shadow-deep: 0 28px 80px -34px rgba(44, 44, 36, 0.42);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-soft: 2rem;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --nav-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overscroll-behavior-y: none;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 9% 9%, color-mix(in srgb, var(--sand) 72%, transparent), transparent 28rem),
    radial-gradient(circle at 92% 5%, color-mix(in srgb, var(--moss) 18%, transparent), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, var(--stone) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 60;
  border-radius: 999px;
  background: var(--moss);
  color: var(--mist);
  padding: 11px 16px;
  box-shadow: var(--shadow-soft);
  transition: top 180ms var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 14px;
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 128px) 0;
}

.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(100% - 28px, 1120px);
  min-height: var(--nav-height);
  margin: 14px auto 0;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--timber) 66%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--white) 76%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-left: 4px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 8px 24px -14px rgba(93, 112, 82, .65);
}

.brand-copy {
  display: grid;
  line-height: 1.02;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--grass);
  font-size: .74rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--grass);
  font-size: .92rem;
  font-weight: 800;
}

.nav-links a,
.mobile-menu a,
.footer-line a,
.feature-card a,
.contact-link {
  position: relative;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-links a::after,
.mobile-menu a::after,
.footer-line a::after,
.feature-card a::after,
.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.feature-card a:hover,
.feature-card a:focus-visible,
.footer-line a:hover,
.footer-line a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--moss);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.mobile-menu a:hover::after,
.mobile-menu a:focus-visible::after,
.feature-card a:hover::after,
.feature-card a:focus-visible::after,
.footer-line a:hover::after,
.footer-line a:focus-visible::after,
.contact-link:hover::after,
.contact-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  left: 14px;
  right: 14px;
  top: 92px;
  z-index: 49;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--timber) 70%, transparent);
  border-radius: 2rem 1.4rem 2.4rem 1.6rem;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0 28px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    background-color 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    color 240ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: scale(1.045) translateY(-1px);
  box-shadow: 0 10px 32px -12px rgba(93, 112, 82, .32);
}

.button:active {
  transform: scale(.96);
}

.button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--moss) 75%, transparent);
  outline-offset: 4px;
}

.button-primary {
  background: var(--moss);
  color: var(--mist);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--moss-dark);
  color: var(--white);
}

.button-outline {
  background: color-mix(in srgb, var(--white) 58%, transparent);
  border-color: var(--clay);
  color: var(--clay-deep);
}

.button-light {
  background: var(--mist);
  color: var(--moss-dark);
}

.hero {
  margin-top: calc(var(--nav-height) * -1);
  padding-top: clamp(116px, 15vw, 170px);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1.06fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: color-mix(in srgb, var(--mist) 82%, transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.9rem);
  line-height: .94;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.08;
  font-weight: 760;
}

.hero-lead,
.section-head p,
.story-copy p,
.benefit-copy p,
.contact-copy p {
  max-width: 58ch;
  color: var(--grass);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.hero-facts div {
  min-width: 136px;
  padding: 13px 16px;
  border: 1px solid color-mix(in srgb, var(--timber) 70%, transparent);
  border-radius: 24px 42px 28px 36px;
  background: color-mix(in srgb, var(--white) 52%, transparent);
  box-shadow: 0 14px 40px -30px rgba(93, 112, 82, .4);
}

.hero-facts dt {
  color: var(--grass);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-width: 0;
  min-height: clamp(350px, 48vw, 620px);
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(88%, 540px);
  aspect-ratio: 1;
  border: 1px dashed color-mix(in srgb, var(--timber) 82%, transparent);
  border-radius: 42% 58% 34% 66% / 62% 32% 68% 38%;
  background:
    radial-gradient(circle at 28% 24%, color-mix(in srgb, var(--white) 68%, transparent), transparent 18rem),
    color-mix(in srgb, var(--sand) 42%, transparent);
  transform: rotate(6deg);
  box-shadow: 0 20px 80px -56px rgba(93, 112, 82, .42);
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  border: 8px solid color-mix(in srgb, var(--white) 84%, transparent);
  box-shadow: var(--shadow-deep);
  transform: rotate(-2deg);
  transition: transform 650ms var(--ease-out);
}

.hero-photo img,
.benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.organic-mask {
  border-radius: 46% 54% 32% 68% / 62% 33% 67% 38%;
}

.organic-mask-alt {
  border-radius: 30% 70% 70% 30% / 32% 32% 68% 68%;
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 180px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--timber) 64%, transparent);
  border-radius: 1.4rem 2.4rem 1.7rem 2.2rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--white) 88%, transparent), color-mix(in srgb, var(--sand) 62%, transparent));
  color: var(--moss-dark);
  font-size: .88rem;
  font-weight: 900;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(12px);
}

.note-menu {
  left: 2%;
  top: 15%;
  transform: rotate(-7deg);
}

.note-vegan {
  right: 3%;
  bottom: 16%;
  transform: rotate(5deg);
}

.blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: blur(34px);
  opacity: .65;
}

.blob-one {
  width: 340px;
  height: 310px;
  right: 11%;
  top: 15%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: color-mix(in srgb, var(--clay) 42%, transparent);
}

.blob-two {
  width: 280px;
  height: 280px;
  left: 4%;
  bottom: 4%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: color-mix(in srgb, var(--moss) 24%, transparent);
}

.section-head {
  position: relative;
  z-index: 2;
  text-align: center;
}

.menu-section {
  background:
    radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--moss) 10%, transparent), transparent 26rem),
    color-mix(in srgb, var(--stone) 46%, transparent);
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin-top: 54px;
}

.feature-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid color-mix(in srgb, var(--timber) 58%, transparent);
  background: color-mix(in srgb, var(--white) 66%, transparent);
  box-shadow: var(--shadow-soft);
  transition: transform 340ms var(--ease-out), box-shadow 340ms var(--ease-out), background-color 340ms var(--ease-out);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px) rotate(.6deg);
  box-shadow: 0 24px 48px -24px rgba(93, 112, 82, .26);
  background: color-mix(in srgb, var(--white) 88%, transparent);
}

.feature-card:nth-child(even):hover,
.feature-card:nth-child(even):focus-within {
  transform: translateY(-6px) rotate(-.6deg);
}

.shape-one {
  border-radius: 4.5rem 2rem 3rem 2rem;
}

.shape-two {
  border-radius: 2rem 4.8rem 2rem 3.4rem;
  margin-top: 24px;
}

.shape-three {
  border-radius: 3.6rem 2rem 5rem 2.2rem;
}

.shape-four {
  border-radius: 2.2rem 3.8rem 2.4rem 5rem;
  margin-top: 28px;
}

.card-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--moss) 12%, transparent);
  color: var(--moss);
  font-weight: 1000;
}

.feature-card p {
  color: var(--grass);
  font-weight: 600;
}

.feature-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay-deep);
  font-weight: 900;
}

.story-section {
  overflow: hidden;
}

.story-grid,
.benefits,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(32px, 7vw, 92px);
}

.tilted-frame {
  margin: 0;
  padding: 12px;
  border-radius: 3rem 2rem 4.5rem 2rem;
  background: var(--white);
  box-shadow: var(--shadow-deep);
  transform: rotate(-2.2deg);
}

.tilted-frame img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 2.4rem 1.6rem 3.8rem 1.8rem;
}

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

.soft-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 800;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 17px;
  height: 17px;
  border-radius: 70% 30% 50% 50% / 50% 55% 45% 50%;
  background: var(--moss);
  box-shadow: 8px 5px 0 color-mix(in srgb, var(--clay) 45%, transparent);
}

.steps-section {
  background: color-mix(in srgb, var(--sand) 32%, transparent);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 36px);
  margin-top: 52px;
}

.steps-curve {
  position: absolute;
  left: 8%;
  right: 8%;
  top: -18px;
  width: 84%;
  height: 120px;
  color: color-mix(in srgb, var(--clay) 62%, transparent);
  pointer-events: none;
}

.step-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--timber) 62%, transparent);
  border-radius: 2rem;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  box-shadow: var(--shadow-soft);
}

.step-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.step-card p {
  color: var(--grass);
  font-weight: 650;
}

.benefits-section {
  overflow: hidden;
}

.benefits {
  grid-template-columns: minmax(0, .92fr) minmax(0, .9fr);
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.benefit-tags span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: color-mix(in srgb, var(--moss) 10%, transparent);
  color: var(--moss-dark);
  font-weight: 900;
}

.benefit-photo {
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  margin: 0;
  border: 10px solid color-mix(in srgb, var(--white) 86%, transparent);
  box-shadow: var(--shadow-deep);
  transform: rotate(2deg);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 116px) 0 32px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 10%, color-mix(in srgb, var(--clay) 28%, transparent), transparent 34rem),
    linear-gradient(180deg, var(--moss) 0%, var(--moss-dark) 100%);
  color: var(--mist);
}

.contact-copy p,
.contact-copy address {
  color: color-mix(in srgb, var(--mist) 82%, transparent);
}

.contact-copy address {
  margin-top: 30px;
  font-style: normal;
  font-weight: 700;
}

.contact-copy h2 {
  max-width: 9.5ch;
}

.contact-actions {
  align-items: center;
}

.contact-link {
  color: var(--mist);
  font-weight: 900;
}

.map-panel {
  min-width: 0;
  overflow: hidden;
  border: 10px solid color-mix(in srgb, var(--mist) 86%, transparent);
  border-radius: 3rem 1.8rem 4.8rem 2.2rem;
  background: var(--stone);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .34);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  border: 0;
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 30px;
  color: color-mix(in srgb, var(--mist) 82%, transparent);
  font-weight: 800;
}

.medweb-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--mist) 22%, transparent);
  color: color-mix(in srgb, var(--mist) 78%, transparent);
  font-size: .95rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .nav-order {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .hero-grid,
  .story-grid,
  .benefits,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-art {
    min-height: auto;
    order: -1;
    padding-top: 8px;
  }

  .hero-art::before {
    width: min(78%, 360px);
  }

  .hero-photo {
    width: min(100%, 350px);
    aspect-ratio: 1.18;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 8.5vw, 4rem);
    line-height: .98;
  }

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

  .shape-two,
  .shape-four {
    margin-top: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps-curve {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --nav-height: 60px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .nav-wrap {
    width: min(100% - 20px, 1120px);
    top: 10px;
    min-height: 60px;
    padding: 6px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: .98rem;
  }

  .menu-toggle {
    min-height: 44px;
    padding-inline: 15px;
  }

  .mobile-menu {
    top: 80px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-art {
    margin-top: 6px;
  }

  .hero-photo {
    max-width: 245px;
    margin-inline: auto;
    border-width: 6px;
    transform: rotate(-1.4deg);
  }

  .floating-note {
    padding: 9px 12px;
    font-size: .76rem;
  }

  .note-menu {
    left: 1%;
    top: 4%;
  }

  .note-vegan {
    display: none;
  }

  h1 {
    margin-bottom: 16px;
    max-width: 10ch;
    font-size: clamp(2.55rem, 12.6vw, 3.35rem);
    line-height: .96;
  }

  h2 {
    font-size: clamp(2.1rem, 10.4vw, 3.2rem);
  }

  .hero-lead,
  .section-head p,
  .story-copy p,
  .benefit-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .button {
    width: auto;
    min-height: 50px;
    padding-inline: 22px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .feature-card {
    padding: 25px;
  }

  .tilted-frame {
    padding: 8px;
    transform: rotate(-1deg);
  }

  .benefit-photo {
    border-width: 7px;
  }

  .contact-copy h2 {
    max-width: 10.5ch;
  }

  .map-panel {
    border-width: 7px;
    border-radius: 2rem 1.3rem 3.2rem 1.5rem;
  }

  .map-panel iframe {
    height: 360px;
  }

  .footer-line,
  .medweb-footer {
    font-size: .9rem;
  }
}

/* Phone-first polish after Peter's VEG correction. Keep this block last except reduced-motion. */
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--timber) 74%, transparent);
}

.brand-copy strong {
  font-family: var(--font-body);
  letter-spacing: .01em;
}

.hero-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--moss-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-mini span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--timber) 74%, transparent);
  border-radius: 999px;
  padding: 0 12px;
  background: color-mix(in srgb, var(--white) 55%, transparent);
  color: var(--moss-dark);
  font-size: .88rem;
  font-weight: 850;
}

.food-float {
  --float-y: 0px;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .62;
  transform: translate3d(0, var(--float-y), 0) rotate(var(--r, 0deg));
  transition: opacity 180ms var(--ease-out);
  will-change: transform;
}

.food-leaf {
  width: 38px;
  height: 22px;
  border-radius: 100% 0 100% 0;
  background: color-mix(in srgb, var(--moss) 82%, var(--sand));
  box-shadow: 10px 7px 0 -5px color-mix(in srgb, var(--clay) 42%, transparent);
}

.food-leaf::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 2px;
  width: 1px;
  height: 24px;
  background: color-mix(in srgb, var(--mist) 75%, transparent);
  transform: rotate(48deg);
  transform-origin: top;
}

.food-tomato {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sienna) 76%, var(--clay));
  box-shadow: inset -5px -6px 0 color-mix(in srgb, var(--clay-deep) 22%, transparent);
}

.food-rice {
  width: 48px;
  height: 14px;
  border-radius: 999px 999px 999px 2px;
  background: color-mix(in srgb, var(--sand) 82%, var(--white));
  box-shadow: 0 7px 0 -4px color-mix(in srgb, var(--moss) 24%, transparent);
}

.leaf-one {
  left: 7vw;
  top: 24vh;
}

.tomato-one {
  right: 12vw;
  top: 22vh;
}

.rice-one {
  right: 28vw;
  bottom: 11vh;
}

.leaf-two {
  right: 8vw;
  top: 12%;
}

.mobile-menu {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -12px, 0) scale(.98);
  transform-origin: top right;
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    visibility 0s linear 220ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    visibility 0s linear 0s;
}

.menu-toggle {
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.menu-toggle:active {
  transform: scale(.96);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-art {
    order: 0;
  }

  .hero-copy {
    order: -1;
  }

  .hero-photo {
    width: min(100%, 560px);
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    width: min(100% - 18px, 1120px);
    min-height: 56px;
    padding: 6px 8px;
  }

  .brand {
    gap: 8px;
    padding-left: 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-copy small {
    font-size: .7rem;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 14px;
  }

  .mobile-menu {
    top: 74px;
    left: 9px;
    right: 9px;
    padding: 12px;
    gap: 3px;
    border-radius: 1.6rem 1rem 1.9rem 1.2rem;
  }

  .mobile-menu a {
    min-height: 46px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 94px;
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    display: grid;
    justify-items: start;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: .71rem;
    letter-spacing: .01em;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 12px;
    font-size: clamp(2.28rem, 11.2vw, 2.9rem);
    line-height: 1.02;
  }

  .hero-lead,
  .section-head p,
  .story-copy p,
  .benefit-copy p,
  .contact-copy p {
    max-width: 34ch;
    font-size: .98rem;
    line-height: 1.48;
  }

  .hero-actions,
  .contact-actions {
    align-items: center;
    margin-top: 18px;
    gap: 10px 14px;
  }

  .button {
    width: auto;
    min-height: 46px;
    padding-inline: 20px;
  }

  .hero-phone {
    min-height: 46px;
  }

  .hero-mini {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-mini span {
    min-height: 31px;
    padding-inline: 10px;
    font-size: .8rem;
  }

  .hero-art {
    margin-top: 0;
    width: 100%;
  }

  .hero-art::before {
    width: 88%;
    max-width: none;
  }

  .hero-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.45;
    border-width: 5px;
    border-radius: 2.1rem 4.2rem 2.4rem 3.4rem;
  }

  .hero-photo img {
    object-position: center 48%;
  }

  .floating-note {
    display: none;
  }

  .food-float {
    opacity: .38;
    transform: translate3d(0, calc(var(--float-y) * .55), 0) rotate(var(--r, 0deg));
  }

  .leaf-one {
    left: auto;
    right: 18px;
    top: 170px;
  }

  .tomato-one,
  .rice-one,
  .leaf-two {
    display: none;
  }

  h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.55rem);
    line-height: 1.04;
  }

  h3 {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .section-head {
    text-align: left;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 1.4rem 2.1rem 1.5rem 1.7rem;
  }

  .feature-card h3,
  .feature-card p,
  .feature-card a {
    grid-column: 2;
  }

  .feature-card p {
    margin-bottom: 5px;
    font-size: .95rem;
    line-height: 1.38;
  }

  .card-number {
    grid-row: 1 / span 3;
    width: 38px;
    height: 38px;
    margin: 0;
    font-size: .86rem;
  }

  .story-grid,
  .benefits {
    gap: 24px;
  }

  .tilted-frame img {
    aspect-ratio: 1.35;
  }

  .soft-list {
    gap: 9px;
    margin-top: 18px;
  }

  .soft-list li {
    padding-left: 27px;
  }

  .soft-list li::before {
    width: 13px;
    height: 13px;
  }

  .steps {
    gap: 10px;
    margin-top: 28px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px;
    border-radius: 1.35rem;
  }

  .step-card span {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 1.05rem;
  }

  .step-card h3,
  .step-card p {
    grid-column: 2;
  }

  .step-card p {
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.38;
  }

  .benefit-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .benefit-tags span {
    min-height: 34px;
    padding-inline: 12px;
    font-size: .88rem;
  }

  .benefit-photo {
    width: 100%;
    aspect-ratio: 1.28;
  }

  .contact-section {
    padding: 96px 0 24px;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .contact-shell {
    padding-top: 74px;
  }

  .contact-actions {
    align-items: center;
  }

  .contact-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .map-panel iframe {
    height: 330px;
  }

  .footer-line {
    gap: 10px 18px;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 2.18rem;
  }

  .button {
    padding-inline: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .hero-photo,
  .tilted-frame,
  .benefit-photo,
  .feature-card:hover,
  .feature-card:focus-within,
  .button:hover,
  .button:focus-visible,
  .food-float {
    transform: none !important;
  }
}
