:root {
  --ink: #171715;
  --paper: #f3efe6;
  --sand: #d9cfbd;
  --sage: #77806d;
  --clay: #a4684f;
  --cream: #e6dfd2;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .42em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover {
  border-color: currentColor;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 8vw 80px 6vw;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .34em;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.065em;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #4d4a44;
  font-size: 1.06rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 15px 22px;
  border: 1px solid var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

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

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  background: transparent;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.22), transparent 60%),
    var(--sage);
}

.sun {
  position: absolute;
  top: 10%;
  right: 8%;
  width: min(20vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 244, 210, .65);
}

.cup {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(25vw, 330px);
  transform: translate(-50%, -35%);
}

.cup__rim {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 56px;
  border-radius: 50%;
  background: #f6f0e5;
  box-shadow: inset 0 -12px 0 rgba(40, 33, 25, .12);
}

.cup__rim::after {
  content: "";
  position: absolute;
  inset: 11px 18px;
  border-radius: 50%;
  background: #554033;
}

.cup__body {
  width: 82%;
  height: 260px;
  margin: -16px auto 0;
  border-radius: 0 0 36% 36% / 0 0 18% 18%;
  background: linear-gradient(90deg, #d7c4aa, #f1e7d8 45%, #c9b394);
}

.cup__shadow {
  width: 112%;
  height: 40px;
  margin: 24px 0 0 -6%;
  border-radius: 50%;
  background: rgba(29, 31, 26, .25);
  filter: blur(7px);
}

.visual-note {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section {
  padding: 110px 6vw;
}

.about {
  border-top: 1px solid rgba(23,23,21,.18);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: end;
}

.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.055em;
}

.about__grid p {
  max-width: 620px;
  margin-bottom: 8px;
  color: #514d46;
  font-size: 1.12rem;
  line-height: 1.8;
}

.values {
  padding-top: 40px;
}

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

.card {
  min-height: 350px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.card > span {
  font-size: .72rem;
  letter-spacing: .2em;
  opacity: .72;
}

.card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.03em;
}

.card p {
  margin-bottom: 0;
  opacity: .8;
}

.card--fresh {
  background: #556657;
}

.card--mellow {
  background: #8a6756;
}

.card--wholesome {
  background: #786f4e;
}

.card--trusted {
  background: #363b39;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.section-label--light {
  color: rgba(255,255,255,.65);
}

.socials {
  border-top: 1px solid rgba(255,255,255,.22);
}

.socials a {
  display: flex;
  justify-content: space-between;
  padding: 20px 2px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.socials a:hover span {
  transform: translate(3px, -3px);
}

.socials span {
  transition: transform .2s ease;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 26px 6vw;
  color: #5d5850;
  background: var(--paper);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 560px;
  }

  .about__grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 22px 20px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .nav {
    display: none;
  }

  .hero__content {
    padding: 130px 22px 70px;
  }

  .hero__visual {
    min-height: 440px;
  }

  .cup {
    width: 230px;
  }

  .section {
    padding: 80px 22px;
  }

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

  .card {
    min-height: 260px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
    padding: 22px;
  }
}
