:root {
  --ink: #183247;
  --muted: #5d7182;
  --blue: #205a8f;
  --teal: #31a7c7;
  --teal-dark: #117990;
  --orange: #f49028;
  --coral: #f46363;
  --leaf: #6fa95b;
  --lemon: #ffe36d;
  --cream: #fff8ea;
  --sky: #eaf8fb;
  --white: #ffffff;
  --line: #dbe8ee;
  --shadow: 0 18px 48px rgba(24, 50, 71, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffcf7;
  font-family: ui-rounded, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.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;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px clamp(18px, 4vw, 46px);
  background: rgba(255, 252, 247, 0.94);
  border-bottom: 1px solid rgba(24, 50, 71, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(17, 121, 144, 0.16);
  object-fit: cover;
}

.brand span {
  display: block;
  max-width: 210px;
  line-height: 1.1;
}

.brand strong {
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: var(--sky);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(-7px);
}

.nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(540px, 74vh, 720px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(49, 167, 199, 0.28) 0 18%, transparent 36%),
    linear-gradient(110deg, #183247 0%, #1f465f 56%, #d9e8ec 56%, #eef7f8 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 22%, var(--blue) 22% 45%, var(--orange) 45% 73%, var(--leaf) 73% 100%);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding-block: clamp(46px, 8vh, 74px);
}

.hero__portrait {
  position: relative;
  align-self: stretch;
  min-height: clamp(470px, 62vh, 650px);
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #d9e8ec;
  box-shadow: 0 28px 68px rgba(10, 28, 42, 0.34);
}

.hero__portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 50, 71, 0.02) 0%, rgba(24, 50, 71, 0.1) 100%);
  content: "";
  pointer-events: none;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 35%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lemon);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.4rem, 7.2vw, 6.2rem);
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  font-weight: 650;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(244, 144, 40, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  color: var(--blue);
  border-color: var(--teal);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link::after {
  content: "->";
}

.proof-strip {
  background: var(--blue);
  color: var(--white);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-block: 20px;
}

.proof-strip p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section {
  padding-block: clamp(62px, 9vw, 104px);
}

.section-tint {
  background: var(--sky);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.split-layout--contact {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
}

.split-copy h2,
.section-heading h2,
.cta-panel h2,
.contact-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

.split-copy p,
.section-heading p,
.cta-panel p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.split-copy p {
  margin: 18px 0 0;
}

.split-copy .text-link,
.split-copy .btn {
  margin-top: 24px;
}

.image-feature {
  margin: 0;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-feature--wide img {
  aspect-ratio: 16 / 10;
}

.image-feature figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.banner-story-section {
  padding-block: clamp(48px, 8vw, 86px);
  background: #fff5df;
}

.banner-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.banner-story__copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.banner-story__copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.banner-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(244, 144, 40, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--row > div {
  max-width: 760px;
}

.section-heading p {
  max-width: 700px;
  margin: 16px 0 0;
}

.steps-grid,
.package-grid,
.testimonial-grid,
.fit-grid,
.rules-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.package-card,
.testimonial-card,
.result-card,
.contact-card,
.package-detail,
.recipe-card,
.fit-grid article,
.rules-grid article,
.mini-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(24, 50, 71, 0.08);
}

.step-card {
  padding: 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.step-card:nth-child(2) .step-number {
  background: var(--orange);
}

.step-card:nth-child(3) .step-number {
  background: var(--leaf);
}

.step-card h3,
.package-card h3,
.fit-grid h3,
.result-card h2 {
  font-size: 1.34rem;
}

.step-card p,
.package-card p,
.fit-grid p,
.result-card p,
.package-detail p {
  color: var(--muted);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.package-card::before,
.package-detail::before {
  display: block;
  width: 70px;
  height: 7px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.package-card:nth-child(2)::before,
.package-detail:nth-child(2)::before {
  background: var(--orange);
}

.package-card:nth-child(3)::before,
.package-detail:nth-child(3)::before {
  background: var(--leaf);
}

.package-card--featured,
.package-detail--featured {
  border-color: rgba(244, 144, 40, 0.55);
  box-shadow: 0 20px 50px rgba(244, 144, 40, 0.16);
}

.package-kicker {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.clean-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.section-photo-band {
  color: var(--white);
  background:
    linear-gradient(120deg, var(--blue), var(--teal-dark) 62%, var(--leaf));
}

.photo-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.photo-band__inner > div {
  max-width: 720px;
}

.photo-band__inner .eyebrow {
  color: var(--lemon);
}

.photo-band__inner h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.photo-band__inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

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

.testimonial-card {
  margin: 0;
  padding: 28px;
}

.testimonial-card p {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 750;
}

.testimonial-card cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(234, 248, 251, 0.92), rgba(255, 248, 234, 0.96)),
    linear-gradient(90deg, var(--teal), var(--orange));
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-options a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(49, 167, 199, 0.35);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #c9dbe4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfe;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.btn:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(244, 144, 40, 0.45);
  outline-offset: 3px;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-block: 44px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer strong {
  color: var(--lemon);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  gap: 9px;
  align-content: start;
}

.site-footer a {
  text-decoration: none;
}

.footer-title {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.copyright {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0 0 24px;
  font-size: 0.9rem;
  text-align: center;
}

.page-hero {
  color: var(--white);
  background: var(--blue);
}

.page-hero__inner {
  display: grid;
  min-height: 360px;
  align-content: center;
  padding-block: 58px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  font-weight: 650;
}

.page-hero .eyebrow {
  color: var(--lemon);
}

.page-hero--work {
  background:
    linear-gradient(90deg, rgba(24, 50, 71, 0.9), rgba(49, 167, 199, 0.58)),
    url("assets/images/jacky-quiche.jpeg") center 34% / cover;
}

.page-hero--recipes {
  background:
    linear-gradient(90deg, rgba(24, 50, 71, 0.88), rgba(24, 50, 71, 0.34)),
    url("assets/images/chaos-to-calm-banner.jpg") center / cover;
}

.page-hero--testimonials {
  background:
    linear-gradient(90deg, rgba(24, 50, 71, 0.86), rgba(111, 169, 91, 0.55)),
    url("assets/images/chaos-to-calm-banner.jpg") center / cover;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(24, 50, 71, 0.9), rgba(244, 144, 40, 0.5)),
    url("assets/images/jacky-quiche.jpeg") center 28% / cover;
}

.package-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-detail {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.package-detail h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.package-detail .clean-list,
.package-detail .timeline-list {
  margin-top: 20px;
}

.price-note {
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.timeline-list {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline-list li {
  position: relative;
  padding-left: 44px;
  color: var(--muted);
}

.timeline-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  content: counter(steps);
  counter-increment: steps;
  font-size: 0.85rem;
  font-weight: 900;
}

.timeline-list strong {
  display: block;
  color: var(--ink);
}

.method-layout {
  display: grid;
  gap: 20px;
}

.fit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fit-grid article {
  padding: 22px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-panel > div {
  max-width: 760px;
}

.recipe-rules {
  background: var(--orange);
  color: var(--ink);
}

.rules-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-block: 20px;
}

.rules-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 16px;
  border-color: rgba(24, 50, 71, 0.12);
}

.rules-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.rules-grid p {
  margin: 0;
  font-weight: 760;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recipe-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.recipe-photo {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}

.recipe-photo--image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center 18%;
}

.recipe-art {
  display: grid;
  place-items: center;
  background: var(--sky);
}

.recipe-art span {
  position: absolute;
  display: block;
}

.recipe-art--beans {
  background: #fdf1db;
}

.recipe-art--beans span:nth-child(1) {
  width: 144px;
  height: 88px;
  border-radius: 50% 50% 44% 44%;
  background: var(--orange);
  box-shadow: inset 0 -14px 0 rgba(24, 50, 71, 0.08);
}

.recipe-art--beans span:nth-child(2),
.recipe-art--beans span:nth-child(3),
.recipe-art--beans span:nth-child(4) {
  width: 42px;
  height: 28px;
  border-radius: 50%;
  background: #8b4d27;
}

.recipe-art--beans span:nth-child(2) {
  transform: translate(-38px, -2px) rotate(-18deg);
}

.recipe-art--beans span:nth-child(3) {
  background: #f3efe7;
  transform: translate(8px, -16px) rotate(14deg);
}

.recipe-art--beans span:nth-child(4) {
  background: #7e2030;
  transform: translate(42px, 10px) rotate(-10deg);
}

.recipe-art--potato {
  background: #e6f6ec;
}

.recipe-art--potato span {
  width: 88px;
  height: 126px;
  border-radius: 48% 52% 50% 45%;
  background: #c9863c;
  box-shadow: inset 12px -16px 0 rgba(255, 227, 109, 0.38);
}

.recipe-art--potato span:nth-child(1) {
  transform: translate(-48px, 8px) rotate(-12deg);
}

.recipe-art--potato span:nth-child(2) {
  background: #d99b4f;
  transform: translate(22px, -4px) rotate(10deg);
}

.recipe-art--potato span:nth-child(3) {
  width: 126px;
  height: 28px;
  border-radius: 999px;
  background: #f3efe7;
  transform: translate(12px, 70px);
}

.recipe-art--tuna {
  background: #eaf4ff;
}

.recipe-art--tuna span {
  width: 82px;
  height: 54px;
  border-radius: 50%;
  background: #d99b4f;
  box-shadow: inset -10px -8px 0 rgba(24, 50, 71, 0.11);
}

.recipe-art--tuna span:nth-child(1) {
  transform: translate(-44px, -26px) rotate(8deg);
}

.recipe-art--tuna span:nth-child(2) {
  transform: translate(42px, -18px) rotate(-8deg);
}

.recipe-art--tuna span:nth-child(3) {
  transform: translate(-4px, 36px) rotate(12deg);
}

.recipe-art--tuna span:nth-child(4) {
  width: 150px;
  height: 16px;
  border-radius: 999px;
  background: var(--teal);
  transform: translate(0, 78px);
}

.recipe-art--tray {
  background: #fff0ed;
}

.recipe-art--tray span:nth-child(1) {
  width: 172px;
  height: 104px;
  border-radius: 8px;
  background: #617b87;
  box-shadow: inset 0 0 0 12px #dfe7eb;
}

.recipe-art--tray span:nth-child(2) {
  width: 70px;
  height: 48px;
  border-radius: 50%;
  background: #9b4c32;
  transform: translate(-34px, -4px);
}

.recipe-art--tray span:nth-child(3) {
  width: 50px;
  height: 26px;
  border-radius: 999px;
  background: #f6bf4b;
  box-shadow: 48px 12px 0 #e87839, 24px -22px 0 #f6bf4b;
  transform: translate(24px, 10px) rotate(-12deg);
}

.recipe-art--curry {
  background: #f6ffe7;
}

.recipe-art--curry span:nth-child(1) {
  width: 150px;
  height: 98px;
  border-radius: 50% 50% 44% 44%;
  background: #d97729;
  box-shadow: inset 0 -12px 0 rgba(24, 50, 71, 0.1);
}

.recipe-art--curry span:nth-child(2) {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d7c677;
  box-shadow: 44px 14px 0 #d7c677, -38px 18px 0 #d7c677;
  transform: translate(0, -6px);
}

.recipe-art--curry span:nth-child(3),
.recipe-art--curry span:nth-child(4) {
  width: 46px;
  height: 18px;
  border-radius: 999px;
  background: var(--leaf);
}

.recipe-art--curry span:nth-child(3) {
  transform: translate(-42px, -44px) rotate(20deg);
}

.recipe-art--curry span:nth-child(4) {
  transform: translate(44px, -42px) rotate(-18deg);
}

.recipe-art--tofu {
  background: #fff7cf;
}

.recipe-art--tofu span {
  width: 74px;
  height: 56px;
  border-radius: 8px;
  background: #f5e5c5;
  box-shadow: inset -8px -8px 0 rgba(24, 50, 71, 0.08);
}

.recipe-art--tofu span:nth-child(1) {
  transform: translate(-44px, -18px) rotate(-9deg);
}

.recipe-art--tofu span:nth-child(2) {
  transform: translate(30px, -4px) rotate(7deg);
}

.recipe-art--tofu span:nth-child(3) {
  width: 152px;
  height: 16px;
  border-radius: 999px;
  background: #7a4424;
  transform: translate(0, 58px);
}

.recipe-art--brownie {
  background: #f8ebe2;
}

.recipe-art--brownie span:nth-child(1) {
  width: 150px;
  height: 112px;
  border-radius: 8px;
  background: #5c2f22;
  box-shadow: inset 0 -14px 0 rgba(0, 0, 0, 0.12);
}

.recipe-art--brownie span:nth-child(2) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2e1811;
  box-shadow: 32px 18px 0 #2e1811, -36px 22px 0 #2e1811, 18px -28px 0 #2e1811, -22px -20px 0 #2e1811;
}

.recipe-art--brownie span:nth-child(3) {
  width: 170px;
  height: 16px;
  border-radius: 999px;
  background: var(--coral);
  transform: translate(0, 74px);
}

.recipe-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.recipe-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--sky);
  font-size: 0.78rem;
  font-weight: 900;
}

.recipe-card h2 {
  font-size: 1.28rem;
}

.recipe-card p {
  color: var(--muted);
}

.recipe-card details {
  margin-top: auto;
}

.recipe-card summary {
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.recipe-card ol {
  padding-left: 20px;
  color: var(--muted);
}

.testimonial-masonry {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.testimonial-card--large p {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.testimonial-masonry .testimonial-card:nth-child(2) {
  grid-row: span 2;
}

.result-card {
  padding: 26px;
  background: var(--sky);
}

.contact-card {
  padding: clamp(24px, 4vw, 34px);
}

.contact-options--stacked a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-note {
  margin-top: 26px;
  padding: 18px;
  color: var(--muted);
}

.mini-note strong {
  color: var(--ink);
}

.contact-form--large {
  padding: clamp(24px, 4vw, 36px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 9px;
    font-size: 0.88rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .package-detail-grid,
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand span {
    max-width: 180px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: min(760px, calc(100svh - 68px));
    align-items: stretch;
    background: #d9e8ec;
  }

  .hero__inner {
    display: block;
    width: 100%;
    min-height: inherit;
    padding-block: 0;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100% - 32px, var(--max));
    min-height: inherit;
    align-content: end;
    margin-inline: auto;
    padding-block: 28px 34px;
  }

  .hero__portrait {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__portrait::before {
    background:
      linear-gradient(180deg, rgba(24, 50, 71, 0.04) 0%, rgba(24, 50, 71, 0.08) 36%, rgba(24, 50, 71, 0.9) 86%, rgba(24, 50, 71, 0.96) 100%),
      linear-gradient(90deg, rgba(24, 50, 71, 0.55) 0%, rgba(24, 50, 71, 0.08) 58%, rgba(24, 50, 71, 0) 100%);
  }

  .hero__portrait img {
    height: 100%;
    min-height: 0;
    object-position: center 28%;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .hero__lead {
    max-width: 360px;
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .proof-strip__inner,
  .split-layout,
  .split-layout--contact,
  .banner-story,
  .steps-grid,
  .package-grid,
  .testimonial-grid,
  .footer-grid,
  .rules-grid,
  .testimonial-masonry,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--row,
  .photo-band__inner,
  .cta-panel {
    align-items: start;
    flex-direction: column;
  }

  .image-feature img {
    aspect-ratio: 4 / 3;
  }

  .intro-section .image-feature {
    display: none;
  }

  .package-detail-grid,
  .recipe-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-masonry .testimonial-card:nth-child(2) {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .container,
  .hero__content,
  .copyright {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-block: 54px;
  }

  .page-hero__inner {
    min-height: 310px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  .recipe-photo {
    min-height: 190px;
  }

  .contact-form,
  .contact-card,
  .package-detail,
  .recipe-card__body,
  .testimonial-card,
  .result-card {
    padding: 20px;
  }
}
