/* ===== PART 1 START: ABOUT PAGE FOUNDATION + HERO + STORY ===== */

.about-page {
  overflow-x: hidden;
  background: #f7f2e8;
}

.about-botanical-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #d8d2bf;
}

.about-botanical-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.about-botanical-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(24, 32, 24, 0.52),
      rgba(24, 32, 24, 0.24) 42%,
      rgba(24, 32, 24, 0.04) 76%
    ),
    linear-gradient(
      180deg,
      rgba(10, 16, 12, 0.06),
      rgba(10, 16, 12, 0.18)
    );
}

.about-botanical-hero__content {
  position: relative;
  z-index: 3;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 16vh 0 90px;
  color: #fffaf1;
}

.about-botanical-hero__content h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 8.3vw, 8.9rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-shadow: 0 8px 28px rgba(17, 25, 18, 0.28);
}

.about-botanical-hero__content h1 span {
  display: block;
  color: var(--brass-soft);
  font-style: italic;
  font-weight: 600;
}

.about-botanical-hero__content p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  line-height: 1.22;
}

.about-scroll-note {
  position: absolute;
  right: 30px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-scroll-note::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
}

/* ===== ABOUT ARRIVAL HANDOFF START ===== */

.is-about-arriving .site-header,
.is-about-arriving .about-botanical-hero__content,
.is-about-arriving .about-scroll-note {
  opacity: 0;
}

.is-about-arriving .site-header {
  transform: translateY(-14px);
}

.is-about-arriving .about-botanical-hero__content {
  transform: translate3d(0, 18px, 0);
}

.is-about-arriving .about-scroll-note {
  transform: translate3d(0, 10px, 0);
}

.is-about-arriving .about-botanical-hero__image {
  transform: scale(1.075);
}

.is-about-arriving .about-botanical-hero__overlay {
  opacity: 0.82;
}

.is-about-arriving .site-header,
.is-about-arriving .about-botanical-hero__content,
.is-about-arriving .about-scroll-note,
.is-about-arriving .about-botanical-hero__image,
.is-about-arriving .about-botanical-hero__overlay {
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-about-arrival-ready .site-header,
.is-about-arrival-ready .about-botanical-hero__content,
.is-about-arrival-ready .about-scroll-note {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.is-about-arrival-ready .about-botanical-hero__image {
  transform: scale(1.025);
}

.is-about-arrival-ready .about-botanical-hero__overlay {
  opacity: 1;
}

/* ===== ABOUT ARRIVAL HANDOFF END ===== */

.about-story-stage {
  position: relative;
  overflow: hidden;
  padding: 124px 20px 138px;
  background: #f7f2e8;
}

.about-story-stage--alternate {
  background: #efe7d7;
}

.about-story-stage::before,
.about-story-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
}

.about-story-stage::before {
  top: 34px;
  left: -24px;
  width: 260px;
  height: 460px;
  background:
    radial-gradient(ellipse at 40% 20%, #87956d 0 8%, transparent 9%),
    radial-gradient(ellipse at 62% 36%, #74815f 0 9%, transparent 10%),
    radial-gradient(ellipse at 44% 56%, #94a17b 0 11%, transparent 12%),
    radial-gradient(ellipse at 70% 74%, #7b8966 0 10%, transparent 11%);
  filter: blur(0.6px);
}

.about-story-stage::after {
  right: -34px;
  bottom: 38px;
  width: 250px;
  height: 360px;
  background:
    radial-gradient(ellipse at 36% 24%, #b6a46b 0 8%, transparent 9%),
    radial-gradient(ellipse at 58% 42%, #9e8e5e 0 9%, transparent 10%),
    radial-gradient(ellipse at 42% 62%, #c0b17b 0 10%, transparent 11%),
    radial-gradient(ellipse at 72% 78%, #ab9b68 0 9%, transparent 10%);
}

.about-story-stage__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 68px;
  align-items: center;
}

.about-story-copy h2,
.about-roots-intro h2,
.about-purpose-card h2,
.about-growth-panel h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.06em;
}

.about-story-copy h2 {
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: 0.88;
}

.about-story-copy p {
  color: #69715f;
  line-height: 1.82;
}

.about-artifact-board {
  position: relative;
  min-height: 560px;
  padding: 38px;
  border: 1px solid rgba(122, 102, 70, 0.15);
  background: #f8f2e7;
  box-shadow: 0 28px 70px rgba(88, 76, 56, 0.18);
}

.about-artifact-board::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(141, 116, 79, 0.14);
  pointer-events: none;
}

.about-artifact-photo {
  position: relative;
  z-index: 2;
  width: min(360px, 74%);
  margin: 14px auto 0;
  padding: 10px 10px 30px;
  transform: rotate(-3deg);
  background: #fbf5e9;
  box-shadow: 0 16px 34px rgba(85, 69, 48, 0.2);
}

.about-artifact-photo img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.about-artifact-photo figcaption {
  padding-top: 10px;
  color: #5c624f;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 0.95;
}

.about-artifact-photo span {
  color: #858b7a;
  font-size: 0.74rem;
}

.about-artifact-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  width: min(280px, 46%);
  padding: 22px 20px;
  transform: rotate(1.6deg);
  background: #f5e9cd;
  box-shadow: 0 14px 30px rgba(85, 69, 48, 0.18);
}

.about-artifact-note p {
  margin: 0;
  color: #776c54;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.24;
  font-style: italic;
}

.about-artifact-note strong {
  display: block;
  margin-top: 12px;
  color: #4f5a49;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-artifact-key {
  position: absolute;
  left: 44px;
  bottom: 48px;
  z-index: 3;
  width: 94px;
  height: 16px;
  border-radius: 16px;
  background: #8e734d;
  transform: rotate(-24deg);
  box-shadow: 0 6px 12px rgba(78, 62, 43, 0.16);
}

.about-artifact-key::before,
.about-artifact-key::after {
  content: "";
  position: absolute;
}

.about-artifact-key::before {
  left: -24px;
  top: -8px;
  width: 28px;
  height: 28px;
  border: 6px solid #967d52;
  border-radius: 50%;
}

.about-artifact-key::after {
  right: -18px;
  top: 5px;
  width: 22px;
  height: 7px;
  border-top: 5px solid #8e734d;
  border-bottom: 5px solid #8e734d;
}

.about-artifact-flower {
  position: absolute;
  left: 28px;
  top: 32px;
  width: 124px;
  height: 124px;
  opacity: 0.68;
  background:
    radial-gradient(circle at 50% 50%, #c4a36d 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 16%, #f2eee1 0 11%, transparent 12%),
    radial-gradient(ellipse at 84% 50%, #f2eee1 0 11%, transparent 12%),
    radial-gradient(ellipse at 50% 84%, #f2eee1 0 11%, transparent 12%),
    radial-gradient(ellipse at 16% 50%, #f2eee1 0 11%, transparent 12%);
}

/* ===== PART 1 END ===== */

/* ===== PART 2 START: SOLID EDITORIAL SECTIONS + ROOTS + CINEMATIC SECTION + CTA ===== */

.about-soil-transition {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 70px;
  color: #364233;
  text-align: center;
  background: #dce4d1;
}

.about-soil-transition::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 84px;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 14% 88%, #b8c4ab 0 32%, transparent 33%),
    radial-gradient(ellipse at 38% 82%, #aebaa1 0 34%, transparent 35%),
    radial-gradient(ellipse at 62% 86%, #b8c4ab 0 36%, transparent 37%),
    radial-gradient(ellipse at 86% 84%, #aebaa1 0 34%, transparent 35%);
}

.about-soil-transition__inner {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0 auto;
}

.about-soil-transition h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.about-soil-transition p {
  max-width: 660px;
  margin: 18px auto 0;
  color: #5d6a58;
  line-height: 1.78;
}

.about-roots-section {
  position: relative;
  overflow: hidden;
  padding: 122px 20px 150px;
  color: #f3ecdc;
  background: #2f3a31;
}

.about-roots-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    radial-gradient(circle at 18% 30%, rgba(232, 220, 186, 0.24), transparent 22%),
    radial-gradient(circle at 82% 44%, rgba(194, 208, 169, 0.18), transparent 26%);
}

.about-roots-section__inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.about-roots-intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-roots-intro h2 {
  font-size: clamp(3.7rem, 6vw, 6.2rem);
  line-height: 0.88;
}

.about-roots-intro p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.76;
}

.about-root-map {
  position: relative;
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.about-root-map::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 4%;
  left: 4%;
  height: 2px;
  background: #b7a173;
  box-shadow: 0 0 16px rgba(211, 185, 128, 0.2);
}

.about-root-map::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 50%;
  width: 2px;
  height: 184px;
  background: #b7a173;
  opacity: 0.68;
}

.about-root-node {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  text-align: center;
}

.about-root-node::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(218, 199, 157, 0.54);
  border-radius: 50%;
  background: rgba(255, 248, 229, 0.08);
  box-shadow: 0 0 0 8px rgba(255, 248, 229, 0.035);
  transform: translateX(-50%);
}

.about-root-node::after {
  content: "";
  position: absolute;
  top: 78px;
  left: 50%;
  width: 1px;
  height: 26px;
  background: rgba(218, 199, 157, 0.58);
}

.about-root-node h3 {
  margin: 0;
  color: var(--brass-soft);
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 0.95;
}

.about-root-node p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.58;
}

.about-root-branches {
  position: relative;
  width: min(820px, 100%);
  height: 210px;
  margin: 28px auto 0;
  opacity: 0.68;
}

.about-root-branches span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 184px;
  border-radius: 999px;
  background: #cdb885;
  transform-origin: top center;
  filter: drop-shadow(0 0 6px rgba(207, 186, 137, 0.12));
}

.about-root-branches span:nth-child(1) {
  height: 194px;
  transform: rotate(0deg);
}

.about-root-branches span:nth-child(2) {
  height: 184px;
  transform: rotate(14deg);
}

.about-root-branches span:nth-child(3) {
  height: 184px;
  transform: rotate(-14deg);
}

.about-root-branches span:nth-child(4) {
  height: 172px;
  transform: rotate(28deg);
}

.about-root-branches span:nth-child(5) {
  height: 172px;
  transform: rotate(-28deg);
}

.about-root-branches span:nth-child(6) {
  height: 158px;
  transform: rotate(44deg);
}

.about-root-branches span:nth-child(7) {
  height: 158px;
  transform: rotate(-44deg);
}

.about-root-branches::before,
.about-root-branches::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 290px;
  height: 150px;
  border-bottom: 2px solid rgba(205, 184, 133, 0.3);
  border-radius: 0 0 90% 90%;
  transform-origin: left top;
}

.about-root-branches::before {
  transform: rotate(17deg);
}

.about-root-branches::after {
  transform: scaleX(-1) rotate(17deg);
}

.about-purpose-cinematic {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  isolation: isolate;
}

.about-purpose-cinematic__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-purpose-cinematic__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(16, 26, 18, 0.78),
      rgba(16, 26, 18, 0.48) 42%,
      rgba(16, 26, 18, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(16, 26, 18, 0.1),
      rgba(16, 26, 18, 0.36)
    );
}

.about-purpose-card {
  position: relative;
  z-index: 3;
  width: min(700px, calc(100% - 48px));
  margin-left: 7vw;
  padding: 112px 0 96px;
  color: #fffaf1;
}

.about-purpose-card h2 {
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  line-height: 0.88;
}

.about-purpose-card p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.about-founder-note {
  position: relative;
  overflow: hidden;
  padding: 138px 20px 154px;
  background: #f1ebdf;
}

.about-founder-note__card {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 54px 60px;
  background: #fffaf1;
  box-shadow: 0 28px 68px rgba(73, 65, 48, 0.18);
}

.about-founder-note__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(140, 115, 78, 0.14);
  pointer-events: none;
}

.about-founder-note__card p {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  color: #665f50;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.32;
  text-align: center;
}

.about-founder-note__card strong {
  position: relative;
  display: block;
  margin-top: 22px;
  color: #54614f;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.about-growth-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 20px 126px;
  text-align: center;
  background: #fbf8f1;
}

.about-growth-cta::before,
.about-growth-cta::after {
  content: "";
  position: absolute;
  bottom: -58px;
  width: 330px;
  height: 360px;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 26% 18%, #7f8d72 0 9%, transparent 10%),
    radial-gradient(ellipse at 54% 24%, #97a483 0 10%, transparent 11%),
    radial-gradient(ellipse at 72% 42%, #849274 0 11%, transparent 12%),
    radial-gradient(ellipse at 42% 52%, #a6b092 0 12%, transparent 13%),
    radial-gradient(ellipse at 66% 70%, #7d8a70 0 12%, transparent 13%),
    radial-gradient(ellipse at 36% 82%, #a8b294 0 11%, transparent 12%);
}

.about-growth-cta::before {
  left: -36px;
}

.about-growth-cta::after {
  right: -36px;
  transform: scaleX(-1);
}

.about-growth-panel {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0 auto;
}

.about-growth-panel h2 {
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  line-height: 0.88;
}

.about-growth-panel h2 span {
  display: block;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 600;
}

.about-growth-panel p {
  max-width: 650px;
  margin: 20px auto 0;
  color: #68715f;
  line-height: 1.8;
}

.about-growth-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.about-growth-panel::before,
.about-growth-panel::after {
  content: "";
  position: absolute;
  top: -56px;
  width: 92px;
  height: 126px;
  opacity: 0.42;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, #b69268 0 7%, transparent 8%),
    radial-gradient(ellipse at 50% 18%, #e8d4c5 0 14%, transparent 15%),
    radial-gradient(ellipse at 82% 50%, #f0d9c9 0 14%, transparent 15%),
    radial-gradient(ellipse at 50% 82%, #ead7cb 0 14%, transparent 15%),
    radial-gradient(ellipse at 18% 50%, #f3ddd0 0 14%, transparent 15%);
}

.about-growth-panel::before {
  left: -130px;
  transform: rotate(-12deg);
}

.about-growth-panel::after {
  right: -130px;
  transform: rotate(12deg);
}

@media (max-width: 980px) {
  .about-story-stage__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-root-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .about-root-map::before,
  .about-root-map::after {
    display: none;
  }

  .about-root-node {
    padding-top: 84px;
  }

  .about-root-node::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .about-botanical-hero {
    min-height: 82svh;
  }

  .about-botanical-hero__content {
    width: min(100% - 30px, var(--content-width));
    padding-top: 132px;
  }

  .about-botanical-hero__content h1 {
    font-size: clamp(4rem, 17vw, 6.1rem);
  }

  .about-scroll-note {
    display: none;
  }

  .about-story-stage,
  .about-roots-section,
  .about-founder-note,
  .about-growth-cta {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-artifact-board {
    min-height: 490px;
    padding: 24px;
  }

  .about-artifact-photo {
    width: min(330px, 86%);
  }

  .about-artifact-note {
    right: 18px;
    bottom: 18px;
    width: 58%;
  }

  .about-artifact-key {
    left: 24px;
    bottom: 30px;
  }

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

  .about-purpose-cinematic {
    min-height: 76vh;
  }

  .about-purpose-card {
    width: min(100% - 28px, 700px);
    margin: 0 auto;
    padding: 82px 0 70px;
  }

  .about-purpose-card h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .about-founder-note {
    padding: 104px 14px 116px;
  }

  .about-founder-note__card {
    padding: 38px 22px;
  }

  .about-growth-actions {
    flex-direction: column;
  }

  .about-growth-panel::before,
  .about-growth-panel::after {
    display: none;
  }
}

/* ===== PART 2 END ===== */