
:root {
  --espresso: #22130e;
  --espresso-soft: #3a241b;
  --cream: #f4eddc;
  --paper: #fbf7ec;
  --gold: #c49332;
  --gold-soft: #ddb65c;
  --brick: #8e3020;
  --olive: #3b4730;
  --ink: #251b16;
  --line: rgba(34, 19, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(196, 147, 50, 0.08), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.12;
  content: "";
  background-image:
    repeating-linear-gradient(17deg, transparent 0 3px, rgba(34, 19, 14, 0.12) 3px 4px),
    repeating-linear-gradient(103deg, transparent 0 5px, rgba(255, 255, 255, 0.2) 5px 6px);
  background-size: 11px 13px, 17px 19px;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.top-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 34px;
  padding: 7px 24px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.top-note a {
  color: var(--gold-soft);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  position: relative;
}

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

.nav-links a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.nav-cta:hover {
  background: var(--espresso);
  color: var(--cream);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
  min-height: 700px;
  padding-block: 70px 88px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--brick);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold-soft);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.7vw, 92px);
}

h1 em,
h2 em {
  color: var(--brick);
  font-weight: 400;
}

.hero-lede {
  max-width: 520px;
  margin: 30px 0 0;
  color: #63544c;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-dark {
  background: var(--espresso);
  color: var(--cream);
}

.button-gold {
  background: var(--gold);
  color: var(--espresso);
}

.button-cream {
  background: var(--cream);
  color: var(--espresso);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.origin-stamp {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 55px;
  color: var(--brick);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.origin-number {
  padding-right: 12px;
  border-right: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
  min-height: 555px;
}

.hero-visual::before {
  position: absolute;
  top: 10px;
  right: -15px;
  width: 88%;
  height: 88%;
  border: 1px solid rgba(196, 147, 50, 0.42);
  border-radius: 48% 48% 4px 4px;
  content: "";
}

.hero-image-frame {
  position: absolute;
  inset: 38px 38px 22px 0;
  overflow: hidden;
  border-radius: 48% 48% 5px 5px;
  background: var(--gold);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(34, 19, 14, 0.38), transparent 52%);
}

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

.hero-card {
  position: absolute;
  right: -3px;
  bottom: 0;
  z-index: 2;
  width: 190px;
  padding: 20px;
  background: var(--gold);
  color: var(--espresso);
}

.hero-card span {
  display: block;
  margin-bottom: 35px;
  font-size: 10px;
  font-weight: 800;
}

.hero-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}

.bean {
  position: absolute;
  z-index: 3;
  width: 33px;
  height: 48px;
  border-radius: 48% 52% 48% 52%;
  background: var(--brick);
  box-shadow: inset 9px 0 rgba(34, 19, 14, 0.2);
  transform: rotate(35deg);
}

.bean::after {
  position: absolute;
  top: 7px;
  left: 15px;
  width: 4px;
  height: 34px;
  border-radius: 50%;
  content: "";
  background: var(--cream);
  opacity: 0.45;
}

.bean-one {
  top: 75px;
  left: -17px;
}

.bean-two {
  right: 40px;
  bottom: 96px;
  width: 22px;
  height: 33px;
  background: var(--espresso);
  transform: rotate(-28deg);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #efe3c9;
}

.ticker > div {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
  min-width: 100%;
  padding: 17px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
}

.ticker span:first-child {
  margin-left: 30px;
}

.ticker b {
  color: var(--brick);
  font-style: normal;
}

.story {
  padding: 125px 0;
  background: var(--espresso);
  color: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr 0.65fr;
  gap: 64px;
}

.story-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-label span {
  color: var(--gold);
}

.story-label p {
  margin: 0;
}

.story-main h2,
.coffee h2,
.offer-copy h2,
.experience h2,
.find-us h2 {
  font-size: clamp(44px, 5.6vw, 74px);
}

.story-main h2 em {
  color: var(--gold-soft);
}

.story-copy {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(244, 237, 220, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.story-aside {
  align-self: end;
}

.story-aside p {
  margin: 24px 0 0;
  color: rgba(244, 237, 220, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.line-art {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(221, 182, 92, 0.5);
  border-radius: 50%;
}

.line-art::before,
.line-art::after {
  position: absolute;
  border: 1px solid rgba(221, 182, 92, 0.5);
  border-radius: 50%;
  content: "";
}

.line-art::before {
  inset: 16px;
}

.line-art::after {
  inset: 32px;
  background: var(--gold);
}

.coffee {
  padding-block: 125px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 8px;
  color: #6e5e55;
  font-size: 15px;
  line-height: 1.8;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.pillar {
  position: relative;
  min-height: 390px;
  padding: 26px 30px 34px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.pillar:last-child {
  border-right: 0;
}

.pillar.featured {
  background: var(--gold);
}

.pillar-index {
  font-size: 10px;
  font-weight: 800;
}

.pillar-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin: 60px auto 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brick);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
}

.mark-roast {
  border-color: rgba(34, 19, 14, 0.4);
}

.mark-roast span {
  position: relative;
  width: 38px;
  height: 55px;
  border-radius: 50%;
  background: var(--espresso);
  transform: rotate(30deg);
}

.mark-roast span::after {
  position: absolute;
  top: 6px;
  left: 17px;
  width: 4px;
  height: 43px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.mark-share {
  font-size: 48px;
}

.pillar h3,
.offer-list h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.pillar p {
  margin: 0;
  color: #6e5e55;
  font-size: 13px;
  line-height: 1.7;
}

.pillar.featured p {
  color: rgba(34, 19, 14, 0.72);
}

.offer {
  padding: 105px 0;
  background: #e7d9bc;
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: center;
}

.offer-image {
  position: relative;
  height: 650px;
}

.offer-image::before {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(142, 48, 32, 0.35);
  content: "";
}

.offer-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical-copy {
  position: absolute;
  top: 28px;
  right: -46px;
  color: var(--brick);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.offer-copy {
  padding-left: 10px;
}

.offer-copy h2 {
  max-width: 650px;
}

.offer-list {
  margin: 45px 0 35px;
  border-top: 1px solid var(--line);
}

.offer-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.offer-list article > span {
  color: var(--brick);
  font-size: 10px;
  font-weight: 800;
}

.offer-list h3 {
  margin-bottom: 6px;
}

.offer-list p {
  max-width: 520px;
  margin: 0;
  color: #6e5e55;
  font-size: 13px;
  line-height: 1.65;
}

.experience {
  padding-block: 125px 140px;
}

.experience-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.65fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 70px;
}

.story-label.dark {
  color: var(--ink);
  align-self: start;
}

.experience-heading > p {
  margin: 0 0 6px;
  color: #6e5e55;
  font-size: 14px;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.64fr 0.5fr;
  gap: 24px;
  align-items: start;
}

.gallery figure {
  margin: 0;
}

.gallery-large img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.gallery-small {
  padding-top: 85px;
}

.gallery-small img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.gallery figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-note {
  margin-top: 195px;
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: var(--espresso);
  color: var(--cream);
}

.gallery-note span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: 0.6;
}

.gallery-note p {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.3;
}

.find-us {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--brick);
  color: var(--cream);
}

.find-us::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(34, 19, 14, 0.22), transparent 60%);
}

.find-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.45fr;
  gap: 55px;
  align-items: center;
}

.find-us h2 em {
  color: var(--gold-soft);
}

.find-copy p {
  margin: 0 0 28px;
  color: rgba(244, 237, 220, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.cup-rings {
  position: relative;
  justify-self: end;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(244, 237, 220, 0.3);
  border-radius: 50%;
}

.cup-rings::before {
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(244, 237, 220, 0.3);
  border-radius: 50%;
  content: "";
}

.cup-rings span {
  position: absolute;
  inset: 58px;
  border: 22px solid var(--espresso);
  border-radius: 50%;
}

.cup-rings i {
  position: absolute;
  right: 31px;
  bottom: 69px;
  width: 42px;
  height: 34px;
  border: 8px solid var(--espresso);
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

footer {
  padding-top: 80px;
  background: var(--espresso);
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.55fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 75px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: 0.12em;
}

.footer-brand span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-call p {
  margin: 0 0 15px;
  color: rgba(244, 237, 220, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-call a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.footer-links {
  display: grid;
  gap: 14px;
  justify-items: start;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  border-top: 1px solid rgba(244, 237, 220, 0.14);
  color: rgba(244, 237, 220, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .hero-copy {
    padding-top: 15px;
  }

  .hero-visual {
    min-height: 640px;
  }

  .story-grid,
  .experience-heading {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .story-aside,
  .experience-heading > p {
    grid-column: 2;
  }

  .offer-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }

  .gallery {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .gallery-note {
    grid-column: 2;
    margin-top: 0;
  }

  .find-grid {
    grid-template-columns: 1fr 0.65fr;
  }

  .cup-rings {
    display: none;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 560px);
  }

  .top-note span {
    display: none;
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 9px;
  }

  .hero {
    gap: 35px;
    padding-block: 54px 62px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .origin-stamp {
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-image-frame {
    right: 18px;
    bottom: 18px;
  }

  .hero-card {
    width: 148px;
    padding: 16px;
  }

  .hero-card span {
    margin-bottom: 18px;
  }

  .hero-card p {
    font-size: 17px;
  }

  .story,
  .coffee,
  .experience {
    padding-block: 82px;
  }

  .story-grid,
  .section-heading,
  .offer-grid,
  .experience-heading,
  .gallery,
  .find-grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-aside,
  .experience-heading > p {
    grid-column: auto;
  }

  .story-label {
    padding: 0;
  }

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

  .pillar {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar-mark {
    margin-block: 35px 30px;
  }

  .offer {
    padding-block: 80px;
  }

  .offer-image {
    height: 460px;
  }

  .vertical-copy {
    display: none;
  }

  .offer-copy {
    padding-left: 0;
  }

  .gallery-large img,
  .gallery-small img {
    height: 430px;
  }

  .gallery-small {
    padding-top: 0;
  }

  .gallery-note {
    grid-column: auto;
    margin-top: 0;
  }

  .find-us {
    padding-block: 82px;
  }

  .footer-main {
    padding-bottom: 55px;
  }

  .footer-call a {
    font-size: 26px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 20px;
  }
}

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

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