:root {
  --green: #55723a;
  --green-dark: #2a3d1e;
  --ink: #0a0a0a;
  --muted: #5f6658;
  --paper: #ffffff;
  --soft: #fafafa;
  --cream: #fef8ed;
  --cream-2: #f8ebcc;
  --blue-soft: #edf8fb;
  --radius: 20px;
  --max: 1520px;
  --side: 40px;
  --heading: "EB Garamond", "Times New Roman", serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: -0.2px;
  overflow-x: hidden;
}

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

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

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - var(--side) * 2));
  margin-inline: auto;
}

.section-pad-top {
  padding-top: 90px;
}

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

h1 {
  font-family: var(--heading);
  color: var(--green);
  font-size: 56px;
  line-height: 64px;
  font-weight: 400;
  letter-spacing: -3px;
}

h2 {
  font-family: var(--heading);
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: -2.5px;
}

h3 {
  font-family: var(--heading);
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -1.7px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 90px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  width: min(1600px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
}

.brand img {
  width: 96px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  line-height: 23px;
  white-space: nowrap;
}

.nav-right {
  justify-content: flex-end;
}

.nav-links button img {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-fullscreen-stage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  transform-origin: top left;
  background: #f5f6ee;
}

.hero-fullscreen-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.hero-intro {
  width: 577px;
  max-width: 45%;
  margin-top: 0;
  font-size: 20px;
  line-height: 30px;
}

.hero-image {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.origin {
  padding: 80px 0;
}

.origin-copy {
  width: min(50%, 760px);
}

.origin-copy h2 {
  text-align: left;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading.narrow {
  width: 615px;
}

.section-heading p,
.text-block p {
  font-size: 20px;
  line-height: 30px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.question-card {
  min-height: 164px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 32px 32px 16px;
  border-radius: var(--radius);
  background: var(--soft);
}

.question-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex: 0 0 auto;
}

.question-card p {
  font-size: 16px;
  line-height: 23px;
}

.ingredient-section {
  position: relative;
  padding: 0;
  background: #f5f6ee;
  overflow: visible;
}

.ingredient-shell {
  position: relative;
  z-index: 1;
  height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 844px) minmax(420px, 624px);
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  border-radius: var(--radius);
  background: #f5f6ee;
}

.ingredient-content {
  padding-left: 0;
}

.ingredient-content h2 {
  max-width: 804px;
}

.ingredient-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ingredient-cards article {
  display: grid;
  grid-template-columns: 156px 1fr;
  align-items: center;
  min-height: 176px;
  gap: 4px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(75, 96, 58, 0.08);
}

.ingredient-cards img {
  width: 156px;
  height: 156px;
  object-fit: contain;
  border-radius: 18px;
}

.ingredient-cards article > div {
  padding: 0 8px 0 12px;
}

.ingredient-cards p {
  margin-top: 4px;
  color: #30352f;
  font-size: 16px;
  line-height: 23px;
}

.map-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  justify-self: end;
  width: min(624px, 100%);
  max-width: 100%;
  aspect-ratio: 4 / 5;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.realization {
  padding: 80px 0;
  text-align: center;
}

.quote-over-image {
  position: relative;
  height: 651px;
  overflow: hidden;
  border-radius: var(--radius);
}

.quote-over-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-over-image p {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 783px;
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 30px;
}

.realization h2 {
  max-width: 994px;
  margin: 20px auto 0;
  color: var(--green);
}

.philosophy {
  position: relative;
  width: min(var(--max), calc(100% - var(--side) * 2));
  height: 900px;
  margin-inline: auto;
  scroll-margin-top: 90px;
  overflow: hidden;
  border-radius: var(--radius);
}

.philosophy-bg {
  position: absolute;
  top: -8%;
  left: -2%;
  width: 104%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
}

.philosophy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.16) 45%,
    rgba(255, 255, 255, 0) 70%
  );
}

.philosophy-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.philosophy-heading {
  max-width: 890px;
  margin: 0 auto;
  text-align: center;
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.glass-grid article {
  min-height: 161px;
  min-width: 0;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: rgba(66, 89, 47, 0.4);
  color: #fff;
  backdrop-filter: blur(8px);
}

.glass-grid p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 23px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 0 40px;
  overflow: hidden;
}

.mission-vision article {
  overflow: hidden;
  border-radius: var(--radius);
}

.mission-vision img {
  width: 100%;
  height: 487px;
  object-fit: cover;
}

.text-block {
  position: relative;
  min-height: 162px;
  padding: 20px 20px 0;
}

.text-block h2 {
  margin-bottom: 12px;
}

.core-values {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.core-bg {
  position: absolute;
  inset: 0;
}

.core-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 62%, #fff 100%),
    linear-gradient(to top, rgba(255, 255, 255, 0) 62%, #fff 100%);
}

.core-layout {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.core-layout > h2 {
  color: #89351a;
  text-align: center;
}

.value-list {
  display: grid;
  gap: 24px;
}

.value-list article {
  min-height: 212px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 12px 8px rgba(239, 217, 170, 0.35);
}

.value-list img {
  width: 100px;
  height: 100px;
  margin-top: 20px;
}

.team {
  padding: 80px 0 40px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}

.team-grid article {
  padding: 16px;
  border-radius: var(--radius);
  background: transparent;
}

.team-grid img {
  width: 100%;
  height: 311px;
  object-fit: cover;
  border-radius: 12px;
}

.team-grid h3 {
  margin-top: 16px;
}

.team-grid p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 23px;
}

.timeline {
  padding: 40px 0 80px;
  text-align: center;
}

.timeline-list {
  position: relative;
  width: 440px;
  max-width: 100%;
  min-height: 300px;
  margin: 20px auto 0;
  text-align: left;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(169, 219, 226, 0), #a9dbe2 18%, #a9dbe2 82%, rgba(169, 219, 226, 0));
  transform: scaleY(var(--line-scale, 1));
  transform-origin: top center;
}

.timeline-list article {
  position: relative;
  width: 50%;
  min-height: 96px;
}

.timeline-list article::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.timeline-left {
  padding-right: 24px;
  text-align: right;
}

.timeline-right {
  margin-left: 50%;
  padding-left: 24px;
}

.timeline-left::after {
  right: -1px;
  border-right: 10px solid #a9dbe2;
}

.timeline-right::after {
  left: -1px;
  border-left: 10px solid #a9dbe2;
}

.timeline-list article + article {
  margin-top: -4px;
}

.timeline-list span {
  display: block;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  letter-spacing: -2.5px;
}

.timeline-list h3 {
  font-family: var(--heading);
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -1.2px;
}

.timeline-list ul {
  margin: 8px 0 0;
  padding-left: 16px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.2px;
}

.timeline-left ul {
  direction: rtl;
  padding-left: 0;
  padding-right: 16px;
}

.timeline-left li {
  direction: ltr;
}

.sustainability {
  padding: 0 0 80px;
}

.sustainability h2 {
  text-align: center;
}

.sustain-list {
  width: 746px;
  max-width: 100%;
  margin: 32px auto 0;
  display: grid;
  gap: 20px;
}

.sustain-list article {
  display: grid;
  grid-template-columns: 337px 1fr;
  gap: 20px;
  align-items: center;
}

.sustain-list img {
  width: 337px;
  height: 225px;
  object-fit: cover;
  border-radius: 12px;
}

.sustain-list p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 23px;
}

.community {
  padding-bottom: 80px;
}

.community-heading {
  text-align: center;
  margin-bottom: 32px;
}

.community-heading h2 {
  width: 1108px;
  max-width: 100%;
  margin: 12px auto 0;
}

.community-image {
  position: relative;
  height: 855px;
  scroll-margin-top: 90px;
  overflow: hidden;
  border-radius: var(--radius);
}

.community-image > img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
}

.community-cards {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.community-cards article {
  min-height: 188px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(66, 89, 47, 0.42);
  color: #fff;
  backdrop-filter: blur(10px);
}

.community-cards p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 23px;
}

.collab {
  position: relative;
  height: 1015px;
  scroll-margin-top: 90px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(#eefbff, #dff5fb);
  text-align: center;
}

.collab-copy {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

.collab-copy h2 {
  width: 665px;
  max-width: calc(100% - 40px);
  margin: 12px auto 0;
}

.letter-stack {
  position: absolute;
  left: calc(50% + 11.5px);
  top: 242px;
  width: 877px;
  height: 1012px;
  transform: translateX(-50%);
}

.letter {
  position: absolute;
  object-fit: contain;
}

.letter.back {
  width: 835px;
  height: 880px;
  left: 42px;
  top: 132px;
}

.letter.l1 {
  width: 556px;
  height: 543px;
  left: 0;
  top: 0;
}

.letter.l2 {
  width: 515px;
  height: 503px;
  left: 356px;
  top: 82px;
}

.letter.l3 {
  width: 492px;
  height: 499px;
  left: 122px;
  top: 249px;
}

.letter.l4 {
  width: 500px;
  height: 444px;
  left: 234px;
  top: 449px;
}

.letter.front {
  width: 829px;
  height: 574px;
  left: 45px;
  top: 434px;
}

.gu-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  margin-top: 690px;
  gap: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.button-icon {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 100px;
  background: var(--green);
}

.button-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.button-label {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-left: -1px;
  padding: 0 20px;
  border-radius: 100px;
  background: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}

.contact article {
  min-height: 325px;
  padding: 32px;
  border-radius: 12px;
  background: #f4f5ef;
}

.contact h3 {
  margin-top: 20px;
}

.contact p {
  margin: 8px 0 28px;
  font-size: 16px;
  line-height: 23px;
}

.contact .gu-button {
  margin-top: 0;
}

.site-footer {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  color: #fff;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - var(--side) * 2));
  min-height: 392px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 80px 0;
  text-shadow: 0 2px 18px rgba(20, 38, 12, 0.28);
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-logo {
  width: 235px;
  height: auto;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-company h2 {
  color: #fff;
  font-family: var(--body);
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.footer-company p,
.footer-links a {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.5px;
}

.footer-company p:first-of-type {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.2px;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-links h3 {
  color: #fff;
  font-family: var(--body);
  font-size: 16px;
  line-height: 23px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.social-list a {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.footer-badge {
  margin-top: 20px;
  width: 119px;
  padding: 4px 6px;
  border-radius: 8px;
  background: #fff;
  color: #1e75bb;
  font-size: 9px;
  line-height: 11px;
  font-weight: 700;
  text-align: center;
}

.motion-ready .will-animate,
.motion-ready .question-card,
.motion-ready .ingredient-cards article,
.motion-ready .glass-grid article,
.motion-ready .mission-vision article,
.motion-ready .value-list article,
.motion-ready .team-grid article,
.motion-ready .sustain-list article,
.motion-ready .community-cards article,
.motion-ready .contact article,
.motion-ready .footer-company,
.motion-ready .footer-links > div {
  will-change: transform, opacity;
}

.motion-ready .hero-fullscreen-stage,
.motion-ready .map-card,
.motion-ready .philosophy-bg,
.motion-ready .quote-over-image img,
.motion-ready .core-bg img,
.motion-ready .community-image > img,
.motion-ready .footer-bg,
.motion-ready .letter {
  will-change: transform, opacity;
}

.motion-ready .hero-copy,
.motion-ready .hero-image img,
.motion-ready .ingredient-content h2 {
  will-change: transform, opacity;
}

.motion-ready .typing-char {
  will-change: opacity;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  :root {
    --side: 24px;
  }

  .nav-left,
  .nav-right a {
    display: none;
  }

  .hero-copy,
  .ingredient-shell,
  .mission-vision,
  .contact {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-intro {
    max-width: none;
    width: auto;
    margin-top: 0;
  }

  .hero-copy {
    height: auto;
    align-items: flex-start;
    gap: 24px;
  }

  .ingredient-content {
    padding-left: 0;
  }

  .ingredient-shell {
    height: auto;
    padding: 40px 24px;
  }

  .map-card {
    justify-self: center;
  }

  .map-card img {
    height: 100%;
  }

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

  .core-layout {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --side: 16px;
  }

  h1 {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.6px;
  }

  h2 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .quote-over-image {
    height: 360px;
  }

  .section-heading.narrow,
  .origin-copy,
  .quote-over-image p {
    width: auto;
  }

  .quote-over-image p {
    left: 24px;
    right: 24px;
    transform: none;
  }

  .question-grid,
  .ingredient-cards,
  .team-grid,
  .sustain-list article,
  .glass-grid,
  .community-cards {
    grid-template-columns: 1fr;
  }

  .ingredient-cards article {
    grid-template-columns: 120px 1fr;
  }

  .ingredient-cards img {
    width: 120px;
    height: 120px;
  }

  .philosophy {
    height: auto;
    min-height: 900px;
  }

  .mission-vision img {
    height: auto;
  }

  .timeline-list span {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .community-image {
    height: auto;
  }

  .community-image > img {
    height: auto;
  }

  .community-cards {
    position: static;
    margin-top: 12px;
  }

  .collab {
    height: 760px;
  }

  .letter-stack {
    width: 720px;
    transform: translateX(-50%) scale(0.62);
    transform-origin: top center;
  }

  .collab .gu-button {
    margin-top: 510px;
  }
}
