:root {
  --wood-700: #8b684f;
  --wood-600: #9b7458;
  --wood-500: #ad8163;
  --mocha-900: #4b2d1f;
  --mocha-800: #5d3927;
  --mocha-700: #744b34;
  --olive-700: #667149;
  --olive-600: #748254;
  --olive-500: #859464;
  --cream-50: #faf7f1;
  --cream-100: #f3eee5;
  --cream-200: #e8dfd1;
  --sand-300: #d9c3a1;
  --ink-900: #291816;
  --ink-700: #5a4338;
  --line: rgba(79, 53, 38, 0.12);
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(47, 30, 21, 0.1);
  --shadow-card: 0 18px 36px rgba(65, 41, 27, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 88px;
  --shell: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(133, 148, 100, 0.08), transparent 24%),
    linear-gradient(180deg, #f4ede2 0%, #f1e8db 100%);
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  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;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 0;
  transition:
    padding 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding: 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  width: 100%;
  margin: 0;
  padding: 1rem 1.4rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(135deg, rgba(214, 191, 167, 0.2), rgba(153, 117, 92, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(46, 28, 21, 0.16);
  color: var(--white);
}

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

.brand-logo {
  width: clamp(104px, 10vw, 160px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(43, 26, 19, 0.16));
}

.header-panel,
.site-nav,
.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

.header-panel {
  gap: 1.5rem;
}

.site-nav {
  gap: 1.55rem;
}

.site-nav a,
.footer-meta a {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-meta a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  background: currentColor;
}

.site-nav a:hover::after,
.footer-meta a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 0.9rem;
}

.social-links {
  gap: 0.55rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(52, 32, 23, 0.22);
}

.social-links svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(43, 26, 19, 0.12);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.menu-toggle span:not(.sr-only) {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    top 220ms ease;
}

.site-header.menu-open .menu-toggle {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 28px rgba(43, 26, 19, 0.18);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  top: -7px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--olive-500), var(--olive-700));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 22px rgba(70, 84, 50, 0.18);
}

.button-primary:hover {
  background: linear-gradient(180deg, #8c9c6a, #6b764b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 16px 30px rgba(71, 80, 49, 0.24);
}

.button-header-mobile {
  display: none;
  min-height: 46px;
  padding: 0.8rem 1rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-secondary-dark {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(117, 76, 54, 0.06);
}

.button-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.94);
}

.button-tertiary {
  align-self: flex-start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--mocha-800);
  background: transparent;
  box-shadow: none;
}

.button-tertiary:hover {
  color: var(--olive-700);
  transform: none;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--wood-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero,
.problem,
.services,
.founder-spotlight,
.community,
.site-footer {
  position: relative;
}

.hero {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(181, 153, 100, 0.16), transparent 20%),
    radial-gradient(circle at 12% 18%, rgba(133, 148, 100, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  width: 100%;
  min-height: 100dvh;
}

.hero-video-shell {
  position: relative;
  width: 100%;
  min-height: inherit;
  height: 100dvh;
  overflow: hidden;
  border-radius: 0;
  background: #d8c8b4;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
}

.hero-video-frame {
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  border: 0;
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 0.98;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 53, 31, 0.78) 0%, rgba(48, 61, 36, 0.58) 34%, rgba(54, 68, 41, 0.18) 58%, rgba(233, 238, 224, 0.2) 76%, rgba(233, 238, 224, 0.06) 100%),
    linear-gradient(180deg, rgba(35, 45, 28, 0.22) 0%, rgba(35, 45, 28, 0.34) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: inherit;
  max-width: 36rem;
  padding: calc(clamp(2.5rem, 4vw, 4.5rem) + 4rem) clamp(2.5rem, 4vw, 4.5rem) clamp(2.5rem, 4vw, 4.5rem);
  text-align: left;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(4.4rem, 7.2vw, 8rem);
  line-height: 0.84;
  font-weight: 300;
  text-wrap: balance;
}

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

.hero .eyebrow {
  color: rgba(255, 250, 244, 0.82);
}

.hero-text,
.hero-subnote,
.founder-copy p,
.footer-copy p,
.service-card p,
.section-copy li,
.community-title-card p {
  color: var(--ink-700);
  line-height: 1.72;
}

.hero-text {
  max-width: 25rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-subnote {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.88rem;
}

.visual-panel img,
.founder-feature img,
.community-card img {
  height: 100%;
  object-fit: cover;
}

.visual-panel,
.founder-feature,
.community-card {
  position: relative;
  overflow: hidden;
}

.visual-panel::after,
.founder-feature::after,
.community-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.community-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.problem {
  padding: 1rem 0 3rem;
}

.section-split,
.founder-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.section-copy,
.founder-copy,
.footer-copy {
  padding: 1rem 0;
}

.section-copy h2,
.section-heading h2,
.founder-copy h2,
.footer-copy h2,
.community-title-card h3 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  font-weight: 300;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--wood-600);
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--wood-700);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-panel {
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.visual-panel-landscape {
  min-height: 360px;
}

.visual-panel img {
  min-height: 420px;
}

.visual-panel-landscape img {
  min-height: 360px;
  object-position: center 28%;
}

.visual-panel::after,
.founder-feature::after,
.community-card::after {
  background: linear-gradient(180deg, rgba(32, 19, 13, 0) 45%, rgba(32, 19, 13, 0.16) 100%);
}

.services {
  padding: 2.8rem 0 3.4rem;
  background:
    radial-gradient(circle at top right, rgba(124, 146, 97, 0.12), transparent 22%),
    linear-gradient(180deg, #ece3d5 0%, #e6dac8 100%);
}

.section-heading {
  text-align: center;
}

.service-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 31rem;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 34px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 48px rgba(72, 46, 32, 0.14);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.service-feature-image,
.service-feature-overlay {
  position: absolute;
  inset: 0;
}

.service-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.04);
}

.service-feature-overlay {
  background:
    linear-gradient(180deg, rgba(31, 20, 14, 0.14) 0%, rgba(31, 20, 14, 0.22) 32%, rgba(31, 20, 14, 0.56) 100%),
    linear-gradient(90deg, rgba(53, 64, 41, 0.3) 0%, rgba(53, 64, 41, 0.1) 45%, rgba(53, 64, 41, 0.32) 100%);
}

.service-feature-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  padding: clamp(2rem, 4vw, 3rem);
}

.service-feature .eyebrow,
.service-feature h3,
.service-feature p {
  color: var(--white);
}

.service-feature h3 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  text-wrap: balance;
}

.service-feature p:last-of-type {
  max-width: 32rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-feature .button {
  margin-top: 1.6rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 252px;
  padding: 1.6rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(72, 46, 32, 0.1);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 44px rgba(72, 46, 32, 0.14);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: var(--wood-600);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-icon svg {
  width: 32px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.footer-meta h3 {
  margin: 0 0 0.55rem;
  color: var(--ink-900);
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
  font-weight: 300;
}

.service-card p {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
}

.service-card .button {
  margin-top: auto;
}

.founder-spotlight {
  padding: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(171, 129, 99, 0.24), transparent 22%),
    linear-gradient(90deg, var(--mocha-700) 0%, var(--mocha-900) 100%);
}

.founder-grid {
  gap: 2.4rem;
  padding: 2.6rem 0;
  color: var(--white);
}

.founder-copy .eyebrow,
.site-footer .eyebrow,
.founder-copy h2,
.footer-copy h2,
.footer-meta h3 {
  color: var(--white);
}

.founder-copy p {
  color: rgba(255, 250, 244, 0.78);
}

.founder-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  max-width: 480px;
  min-height: 320px;
  margin-left: 1rem;
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(17, 9, 6, 0.24);
}

.founder-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.community {
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  min-height: min(98svh, 1120px);
  background: linear-gradient(180deg, #f5ede3 0%, #efe4d6 100%);
}

.community > .shell {
  position: relative;
  z-index: 2;
}

.community-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.community-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(124%, 2200px);
  height: max(124%, 1240px);
  border: 0;
  transform: translate(-50%, -50%) scale(1.22);
  opacity: 1;
  filter: saturate(0.95) contrast(1.04);
  pointer-events: none;
}

.community-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 13, 10, 0.48) 0%, rgba(24, 13, 10, 0.34) 22%, rgba(24, 13, 10, 0.28) 52%, rgba(24, 13, 10, 0.42) 100%),
    radial-gradient(circle at top left, rgba(124, 89, 63, 0.12), transparent 30%);
}

.community .section-heading h2 {
  color: var(--white);
  text-shadow: 0 8px 28px rgba(21, 11, 8, 0.28);
}

.community-stage {
  display: grid;
  align-content: center;
  min-height: min(98svh, 1120px);
  padding: 9rem 1.5rem 6rem;
  text-align: center;
}

.community-copy {
  position: relative;
  z-index: 2;
}

.community-stage .eyebrow {
  color: rgba(255, 250, 244, 0.82);
}

.community-stage .section-heading {
  max-width: 58rem;
  margin: 0 auto;
}

.community-lead {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 250, 244, 0.84);
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: center;
  text-wrap: balance;
}

.community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.92fr 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
}

.community-card,
.community-title-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(24, 14, 10, 0.18);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.community-card {
  min-height: 220px;
  padding: 0.7rem;
}

.community-card.tall {
  grid-row: span 2;
  min-height: 470px;
}

.community-card.compact {
  min-height: 220px;
}

.community-title-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.community-title-card h3 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.community-title-card p:last-child {
  margin-bottom: 0;
}

.community-title-card h3,
.community-title-card p,
.community-title-card .eyebrow {
  color: var(--white);
}

.community-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.community-card-prep img {
  object-position: 28% center;
  filter: saturate(1.02) contrast(1.03);
}

.community-card figcaption {
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.45rem;
}

.community-actions {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.community-actions .button {
  margin: 0 auto;
}

.site-footer {
  padding: 0 0 2rem;
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.4rem;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(56, 34, 23, 0.9) 0%, rgba(70, 43, 30, 0.82) 34%, rgba(91, 58, 40, 0.58) 58%, rgba(102, 69, 48, 0.38) 100%),
    linear-gradient(180deg, rgba(45, 29, 20, 0.18) 0%, rgba(45, 29, 20, 0.34) 100%),
    url("assets/top-view-delicious-groceries-paper-bag.jpg");
  background-position: center center, center center, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  color: var(--white);
  box-shadow: 0 24px 50px rgba(73, 45, 31, 0.2);
}

.journey-panel .eyebrow,
.journey-panel h2,
.journey-panel p {
  color: var(--white);
}

.journey-panel h2 {
  max-width: 15ch;
}

.journey-copy p:last-child {
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 250, 244, 0.84);
}

.journey-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.footer-grid {
  padding: 1.8rem 2rem;
  background: linear-gradient(180deg, #cfb18c 0%, #c5a17b 100%);
}

.footer-logo {
  width: min(100%, 172px);
  height: auto;
  object-fit: contain;
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.85rem;
  color: rgba(41, 24, 22, 0.86);
}

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

.footer-meta div {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-top: 0.9rem;
  color: rgba(77, 50, 35, 0.84);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
  min-width: 0;
  line-height: 1.45;
  white-space: nowrap;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
}

.footer-logo-bottom {
  width: min(100%, 164px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(32, 19, 13, 0.48);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.inquiry-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.4rem;
  width: min(980px, 100%);
  max-height: min(92svh, 980px);
  padding: 1.45rem;
  overflow: auto;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(164, 121, 93, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 233, 0.98));
  box-shadow: 0 28px 80px rgba(36, 20, 15, 0.22);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink-900);
  background: rgba(73, 44, 31, 0.08);
  cursor: pointer;
}

.modal-close span {
  font-size: 1.7rem;
  line-height: 1;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at bottom left, rgba(133, 148, 100, 0.16), transparent 24%),
    linear-gradient(135deg, #f1e8db 0%, #e5d4c0 100%);
}

.modal-copy h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 300;
}

.modal-copy p:last-of-type {
  margin: 1rem 0 0;
}

.modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.modal-highlights span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(79, 53, 38, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0.4rem 0.4rem 0;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
}

.inquiry-form span {
  color: var(--ink-900);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(79, 53, 38, 0.12);
  border-radius: 16px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.78);
}

.inquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.inquiry-form input:focus-visible,
.inquiry-form select:focus-visible,
.inquiry-form textarea:focus-visible {
  outline: 2px solid rgba(102, 113, 73, 0.72);
  outline-offset: 2px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-floating-meal {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .section-split,
  .founder-grid,
  .footer-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .journey-panel,
  .inquiry-modal {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 96svh;
  }

  .hero-video-shell {
    min-height: 96svh;
    height: 96svh;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(42, 53, 31, 0.7) 0%, rgba(48, 61, 36, 0.42) 38%, rgba(233, 238, 224, 0.1) 100%),
      linear-gradient(180deg, rgba(35, 45, 28, 0.16) 0%, rgba(35, 45, 28, 0.26) 100%);
  }

  .hero-copy {
    min-height: 96svh;
    max-width: 36rem;
    padding: calc(var(--header-height) + 2rem) 1.6rem 4.5rem;
  }

  .hero-video-frame {
    width: max(138%, 1900px);
    height: max(138%, 1080px);
    transform: translate(-50%, -50%) scale(1.16);
  }

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

  .service-feature {
    min-height: 28rem;
  }

  .service-feature-copy {
    width: min(100%, 34rem);
  }

  .service-feature h3 {
    font-size: clamp(2.3rem, 5.6vw, 3.6rem);
  }

  .community-card.large,
  .community-card.tall,
  .community-card.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 280px;
  }

  .founder-feature {
    margin: 0 auto;
    width: min(100%, 480px);
    order: -1;
  }

  .footer-meta {
    padding-top: 0.5rem;
  }

  .journey-actions {
    justify-content: flex-start;
  }

  .inquiry-form {
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: flex;
    justify-content: center;
    padding: 0.6rem 0 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    width: min(100%, calc(100vw - 1.5rem));
    border-radius: 24px;
    padding: 0.85rem 1rem;
    margin-inline: auto;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-self: start;
  }

  .brand-logo {
    width: min(142px, 32vw);
  }

  .menu-toggle {
    display: inline-block;
    width: 46px;
    height: 46px;
  }

  .header-mobile-actions {
    display: flex;
    justify-self: center;
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .button-header-mobile {
    display: inline-flex;
  }

  .menu-toggle {
    justify-self: end;
  }

  .header-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 5.6rem);
    left: 50%;
    width: min(calc(100vw - 1.5rem), 420px);
    display: grid;
    gap: 1.05rem;
    padding: 1.05rem;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
      linear-gradient(135deg, rgba(121, 92, 70, 0.92), rgba(77, 53, 39, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 24px 44px rgba(46, 28, 21, 0.26);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .site-header.menu-open .header-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .site-nav,
  .header-actions {
    display: grid;
    width: 100%;
    gap: 0.9rem;
    justify-items: center;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1rem;
  }

  .header-actions .button {
    width: 100%;
  }

  .social-links {
    gap: 0.7rem;
    justify-content: center;
  }

  .hero-stage,
  .hero-video-shell,
  .hero-copy {
    min-height: 100svh;
  }

  .hero-video-shell {
    height: 100svh;
  }

  .hero-video-frame {
    width: max(170%, 1700px);
    height: max(170%, 980px);
    transform: translate(-50%, -50%) scale(1.16);
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(36, 45, 28, 0.3) 0%, rgba(36, 45, 28, 0.38) 20%, rgba(36, 45, 28, 0.72) 100%),
      linear-gradient(90deg, rgba(42, 53, 31, 0.34) 0%, rgba(42, 53, 31, 0.12) 40%, rgba(42, 53, 31, 0.22) 100%);
  }

  .hero-copy {
    align-items: center;
    justify-content: center;
    max-width: 28rem;
    padding: calc(var(--header-height) + 1.3rem) 1.1rem 3rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 10vw, 4.8rem);
    line-height: 0.9;
    text-align: center;
  }

  .hero-text {
    max-width: 24rem;
    font-size: 0.98rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero .eyebrow {
    text-align: center;
  }

  .community-stage {
    min-height: min(150svh, 1680px);
    padding: 8.25rem 1rem 4.75rem;
  }

  .community-video-shell {
    inset: -12% -10%;
  }

  .community-video-frame {
    width: max(360%, 300svh);
    height: max(360%, 220svh);
    transform: translate(-50%, -50%) scale(1.14);
  }

  .service-grid,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .service-feature {
    min-height: 24rem;
  }

  .service-feature-copy {
    width: 100%;
    padding: 1.6rem;
  }

  .service-feature h3 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .service-feature p:last-of-type {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .modal-backdrop {
    place-items: start center;
    padding: calc(env(safe-area-inset-top, 0px) + 0.75rem) 0.75rem 0.75rem;
  }

  .inquiry-modal {
    max-height: min(88svh, 920px);
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100vw - 1rem, 1180px);
  }

  .site-header {
    padding: 0.5rem 0 0;
  }

  .hero-stage,
  .hero-video-shell,
  .hero-copy {
    min-height: 100svh;
  }

  .hero-video-shell {
    height: 100svh;
  }

  .hero-video-frame {
    width: max(220%, 1500px);
    height: max(220%, 920px);
    transform: translate(-50%, -50%) scale(1.12);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    min-height: 74px;
    width: min(calc(100vw - 1rem), 28rem);
    padding: 0.75rem 0.85rem;
    border-radius: 22px;
    margin-inline: auto;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .brand-logo {
    width: min(106px, 30vw);
  }

  .button-header-mobile {
    min-height: 42px;
    padding: 0.72rem 0.88rem;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .community-title-card,
  .footer-grid {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .header-panel {
    top: calc(env(safe-area-inset-top, 0px) + 5.15rem);
    left: 50%;
    width: min(calc(100vw - 1rem), 24rem);
    padding: 0.95rem;
  }

  .community-stage {
    min-height: min(188svh, 2200px);
    padding: 7.75rem 1rem 4.25rem;
  }

  .community-video-shell {
    inset: -22% -28%;
  }

  .community-video-frame {
    width: max(560%, 360svh);
    height: max(560%, 290svh);
    transform: translate(-50%, -50%) scale(1.12);
  }

  .footer-bottom {
    gap: 0.7rem;
    font-size: 0.72rem;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .footer-logo-bottom {
    width: min(100%, 92px);
  }

  .modal-backdrop {
    padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 0.5rem 0.5rem;
  }

  .inquiry-modal {
    gap: 1rem;
    max-height: calc(100svh - env(safe-area-inset-top, 0px) - 1rem);
    padding: 1rem;
    border-radius: 24px;
  }

  .modal-copy {
    padding: 1rem;
  }

  .inquiry-form {
    padding: 0.1rem;
  }

  .hero-copy {
    max-width: 22rem;
    align-items: center;
    justify-content: center;
    padding: calc(74px + 1rem) 1rem 2.35rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
    line-height: 0.92;
    text-align: center;
  }

  .hero-text {
    max-width: 20rem;
    font-size: 0.92rem;
    line-height: 1.66;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-feature {
    min-height: 22rem;
    border-radius: 26px;
  }

  .service-feature-copy {
    padding: 1.35rem;
  }

  .section-copy h2,
  .section-heading h2,
  .founder-copy h2,
  .footer-copy h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }
}
