:root {
  --forest: #4a5c44;
  --forest-deep: #2d3a29;
  --sage: #9da591;
  --paper: #fdf5f0;
  --stone: #ded6cd;
  --ink: #1f271d;
  --white: #fffdfa;
  --line: rgba(31, 39, 29, 0.18);
  --page-pad: clamp(1.4rem, 5vw, 5.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  background: var(--sage);
  color: var(--forest-deep);
}

.skip-link {
  position: fixed;
  z-index: 11000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  min-height: 6.5rem;
  padding: 1.25rem var(--page-pad);
}

.brand,
.footer-brand {
  display: inline-flex;
  width: clamp(8rem, 10vw, 10rem);
}

.brand {
  filter: brightness(0) invert(1);
}

.brand img,
.footer-brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(1.3rem, 3vw, 3rem);
  color: var(--forest-deep);
}

.site-nav a {
  position: relative;
  padding-block: 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem var(--page-pad) 6rem;
  background: var(--forest);
  color: var(--paper);
}

.eyebrow,
.section-label {
  margin: 0 0 1.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.9rem, 7vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 32rem;
  margin: 2.4rem 0 2.6rem;
  color: rgba(253, 245, 240, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.15em;
  transition: transform 220ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.2rem, 0.2rem);
}

.hero-visual {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

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

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
}

.intro {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 3fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.intro-content h2 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5.5vw, 6.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 54rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  color: rgba(31, 39, 29, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.75;
}

.intro-copy p {
  margin: 0;
}

.values {
  background: var(--forest-deep);
  color: var(--paper);
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 3fr;
  gap: clamp(2rem, 6vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.values-heading h2,
.section-head h2,
.identity-copy h2,
.closing h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0 var(--page-pad) clamp(5rem, 9vw, 9rem);
  list-style: none;
}

.value-list li {
  min-height: 20rem;
  padding: 1.5rem clamp(1rem, 2.4vw, 2.5rem) 2rem;
  border-top: 1px solid rgba(253, 245, 240, 0.34);
  border-right: 1px solid rgba(253, 245, 240, 0.17);
}

.value-list li:first-child {
  padding-left: 0;
}

.value-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-number {
  display: block;
  margin-bottom: 4rem;
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.value-list h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.value-list p {
  margin: 0;
  color: rgba(253, 245, 240, 0.67);
  line-height: 1.7;
}

.section-head {
  display: grid;
  grid-template-columns: 2fr minmax(15rem, 1fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-head h2 {
  max-width: 12ch;
}

.section-head > p {
  max-width: 27rem;
  margin: 0 0 0.5rem;
  color: rgba(31, 39, 29, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.product-card {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
}

.product-card-tote {
  grid-column: span 7;
  background: var(--stone);
}

.product-card-bottle {
  grid-column: span 5;
  background: var(--sage);
}

.product-card-container {
  grid-column: 3 / span 8;
  min-height: 34rem;
  margin-top: clamp(0rem, 2vw, 2rem);
  background: var(--white);
}

.product-card img {
  position: absolute;
  inset: 5rem 1.5rem 0;
  width: calc(100% - 3rem);
  height: calc(100% - 5rem);
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card-bottle img {
  inset: 5rem 1rem 0;
  width: calc(100% - 2rem);
  height: calc(100% - 5rem);
}

.product-card-container img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.product-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.4rem;
  padding: clamp(1.3rem, 2.3vw, 2.3rem);
}

.product-copy span {
  grid-row: span 2;
  padding-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.product-copy h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  line-height: 1;
}

.product-copy p {
  margin: 0;
  color: rgba(31, 39, 29, 0.67);
  font-size: 0.88rem;
}

.statement {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 72svh;
  padding: 6rem var(--page-pad);
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
  text-align: center;
}

.statement blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 6.7vw, 7.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.statement-leaf {
  position: absolute;
  right: -5rem;
  bottom: -9rem;
  width: clamp(18rem, 42vw, 46rem);
  aspect-ratio: 1.4;
  border: 1px solid rgba(253, 245, 240, 0.16);
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
}

.statement-leaf::after {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
  background: rgba(253, 245, 240, 0.16);
  content: "";
  transform: rotate(-32deg);
  transform-origin: left;
}

.identity {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.identity-visual {
  margin: 0;
  padding: clamp(0.8rem, 1.5vw, 1.4rem);
  background: var(--white);
  box-shadow: 0 1.5rem 5rem rgba(47, 61, 43, 0.1);
}

.identity-visual img {
  width: 100%;
}

.identity-copy h2 {
  max-width: 9ch;
}

.identity-copy > p:not(.section-label) {
  max-width: 34rem;
  margin: 2rem 0 3rem;
  color: rgba(31, 39, 29, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.palette {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.swatch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 8rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.swatch span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.swatch strong {
  font-size: 0.84rem;
  font-weight: 600;
}

.swatch-paper {
  background: var(--paper);
}

.swatch-stone {
  background: var(--stone);
}

.swatch-sage {
  background: var(--sage);
}

.swatch-forest {
  background: var(--forest);
  color: var(--paper);
}

.closing {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 3rem;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--stone);
}

.closing h2 {
  max-width: 11ch;
}

.closing img {
  justify-self: end;
  width: min(22rem, 80%);
  opacity: 0.22;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 3rem var(--page-pad) 6rem;
  background: var(--forest-deep);
  color: var(--paper);
}

.footer-brand {
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(253, 245, 240, 0.66);
  font-size: 0.8rem;
}

.site-footer p:last-child {
  text-align: right;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {
  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-list li {
    min-height: 17rem;
    border-bottom: 1px solid rgba(253, 245, 240, 0.17);
  }

  .value-list li:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .value-list li:nth-child(3) {
    padding-left: 0;
  }

  .product-card {
    min-height: 34rem;
  }

  .product-card-container {
    min-height: 28rem;
  }

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

  .identity-copy {
    max-width: 48rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    display: flex;
    justify-content: space-between;
    min-height: 5.5rem;
    color: var(--paper);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle-icon,
  .menu-toggle-icon::before {
    display: block;
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle-icon {
    position: relative;
  }

  .menu-toggle-icon::before {
    position: absolute;
    top: -0.38rem;
    content: "";
  }

  .menu-open .menu-toggle-icon {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle-icon::before {
    top: 0;
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 7rem var(--page-pad);
    background: var(--forest-deep);
    color: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

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

  .hero-copy {
    min-height: 80svh;
    padding-top: 9rem;
  }

  .hero-visual {
    min-height: 68svh;
  }

  .intro,
  .values-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .product-card-tote,
  .product-card-bottle,
  .product-card-container {
    grid-column: 1 / -1;
  }

  .product-card-container {
    margin-top: 0;
  }

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

  .closing img {
    justify-self: start;
    width: min(16rem, 65%);
  }

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

  .site-footer p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 1.25rem;
  }

  .brand {
    width: 7.7rem;
  }

  h1 {
    font-size: clamp(3.45rem, 18.5vw, 5rem);
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list li,
  .value-list li:first-child,
  .value-list li:nth-child(2),
  .value-list li:nth-child(3),
  .value-list li:last-child {
    min-height: 14rem;
    padding-inline: 0;
    border-right: 0;
  }

  .value-number {
    margin-bottom: 2.5rem;
  }

  .product-card {
    min-height: 30rem;
  }

  .product-card-container {
    min-height: 24rem;
  }

  .statement {
    min-height: 62svh;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 7rem;
  }

  .site-footer p:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

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

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

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