:root {
  --green: #006241;
  --green-accent: #00754a;
  --house-green: #1e3932;
  --uplift: #2b5148;
  --cream: #f2f0eb;
  --ceramic: #edebe9;
  --gold: #cba258;
  --ink: rgba(0, 0, 0, 0.87);
  --muted: rgba(0, 0, 0, 0.58);
  --white-soft: rgba(255, 255, 255, 0.72);
  --shadow: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --nav-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 132px;
  padding: 12px max(56px, calc((100vw - 2300px) / 2 + 72px));
  background: #fff;
  box-shadow: var(--nav-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--house-green);
  white-space: nowrap;
}

.brand img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: var(--ink);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 850;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 50px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:active,
.header-cta:active {
  transform: scale(0.95);
}

.header-cta,
.button-primary {
  background: var(--green-accent);
  color: #fff;
  border-color: var(--green-accent);
  box-shadow: 0 8px 18px rgba(0, 117, 74, 0.2);
}

.button-outline {
  color: var(--green-accent);
  background: transparent;
  border-color: var(--green-accent);
}

.button-inverted {
  color: var(--green-accent);
  background: #fff;
  border-color: #fff;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) clamp(520px, 42vw, 760px);
  align-items: start;
  gap: clamp(34px, 4.5vw, 78px);
  width: min(calc(100% - 144px), 2180px);
  margin-inline: auto;
  padding: clamp(22px, 3.4vw, 40px) 0 clamp(16px, 2.5vw, 30px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.shipping {
  display: inline-flex;
  align-items: center;
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 16px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--house-green);
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions,
.proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.proof-row span {
  padding-right: 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.proof-row span:last-child {
  border-right: 0;
}

.trust-line {
  display: inline-flex;
  max-width: 680px;
  margin: 20px 0 0;
  padding: 9px 13px;
  border-radius: 50px;
  background: rgba(0, 117, 74, 0.08);
  color: var(--house-green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.hero-product {
  position: relative;
  min-height: 430px;
  margin-top: 8px;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 8% 0 -10% 18%;
  background: var(--house-green);
  border-radius: 42% 0 0 42%;
}

.product-orbit {
  position: relative;
  min-height: 430px;
}

.bag {
  position: absolute;
  width: min(31vw, 420px);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.bag-main {
  z-index: 3;
  right: 8%;
  top: 12%;
  transform: rotate(-2deg);
}

.bag-left,
.bag-right {
  z-index: 2;
  width: min(21vw, 280px);
  opacity: 0.96;
}

.bag-left {
  left: 0;
  bottom: 12%;
  transform: rotate(-9deg);
}

.bag-right {
  right: 0;
  bottom: 4%;
  transform: rotate(7deg);
}

.quick-buy,
.why,
.offer {
  padding: clamp(42px, 5.5vw, 72px) clamp(18px, 5vw, 72px);
}

.quick-buy {
  padding-top: clamp(30px, 4vw, 52px);
  scroll-margin-top: 92px;
}

.quick-buy,
.offer {
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.why-copy h2,
.subscribe-band h2 {
  margin-bottom: 12px;
  color: var(--house-green);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-heading p,
.subscribe-band p,
.why-copy p,
.offer-step p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.slider-hint {
  margin: -14px 0 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.slider-shell {
  position: relative;
}

.roast-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, calc((100% - 54px) / 4));
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  padding: 4px 0 18px;
  scrollbar-color: var(--green-accent) var(--ceramic);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.roast-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.roast-slider.is-dragging a,
.roast-slider.is-dragging button {
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--green-accent);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.18), 0 8px 12px rgba(0, 0, 0, 0.12);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow[disabled] {
  opacity: 0.35;
}

.slider-arrow-left {
  left: -12px;
}

.slider-arrow-right {
  right: -12px;
}

.roast-slider::-webkit-scrollbar {
  height: 10px;
}

.roast-slider::-webkit-scrollbar-track {
  background: var(--ceramic);
  border-radius: 999px;
}

.roast-slider::-webkit-scrollbar-thumb {
  background: var(--green-accent);
  border-radius: 999px;
}

.roast-card {
  scroll-snap-align: start;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 16px 16px 20px;
  background: var(--cream);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.roast-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 220px;
}

.roast-card.featured {
  background: var(--house-green);
  color: #fff;
}

.view-all-card {
  background: var(--house-green);
  color: #fff;
}

.view-all-card > div {
  min-height: 100%;
  align-content: center;
}

.roast-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.roast-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 50px;
  background: #fff;
  color: var(--green);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 900;
}

.roast-card.featured .roast-badge {
  background: var(--gold);
  color: var(--house-green);
}

.roast-card h3,
.offer-step h3 {
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.2;
}

.roast-card p {
  color: var(--muted);
  line-height: 1.55;
}

.roast-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
}

.roast-card.featured p {
  color: var(--white-soft);
}

.view-all-card p {
  color: var(--white-soft);
}

@media (min-width: 981px) {
  .roast-slider {
    grid-auto-columns: minmax(230px, calc((100% - 72px) / 5));
  }

  .extra-roast {
    display: none;
  }
}

.price {
  margin-bottom: 10px;
  color: var(--green) !important;
  font-size: 18px;
  font-weight: 900;
}

.featured .price {
  color: var(--gold) !important;
}

.subscribe-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--house-green);
  color: #fff;
}

.subscribe-band h2 {
  color: #fff;
}

.subscribe-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white-soft);
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  background: var(--ceramic);
}

.why-image img {
  width: min(100%, 470px);
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.reason {
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.reason strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 18px;
}

.reason p {
  margin-bottom: 0;
}

.review {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 8vw, 130px);
  background: var(--green);
  color: #fff;
  text-align: center;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0.12em;
}

blockquote {
  max-width: 980px;
  margin: 0 auto 22px;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reviewer {
  margin-bottom: 0;
  color: var(--white-soft);
  font-weight: 800;
}

.proof-snippets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 34px auto 0;
}

.proof-snippets p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-soft);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}

.proof-snippets strong {
  color: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1480px;
  margin-inline: auto;
}

.offer-step {
  padding: 28px;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.offer-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-accent);
  color: #fff;
  font-weight: 900;
}

.faq {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(84px, 9vw, 120px);
  background: var(--ceramic);
  scroll-margin-top: 92px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--house-green);
  font-size: 19px;
  font-weight: 900;
}

details p {
  margin: -4px 24px 22px;
  max-width: 790px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 72px) clamp(84px, 9vw, 120px);
  background: var(--house-green);
  color: #fff;
  scroll-margin-top: 92px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 36px);
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0.14);
  color: var(--house-green);
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sticky-buy.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    width: auto;
    margin-inline: 0;
    padding-right: clamp(18px, 5vw, 72px);
    padding-left: clamp(18px, 5vw, 72px);
  }

  .hero-product,
  .product-orbit {
    min-height: 330px;
  }

  .bag {
    width: min(62vw, 340px);
  }

  .bag-left,
  .bag-right {
    width: min(36vw, 195px);
  }

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

  .roast-slider {
    grid-auto-columns: minmax(280px, 78vw);
    padding-inline: 6px;
  }

  .extra-roast {
    display: grid;
  }

  .proof-snippets {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: inline-flex;
  }

  .subscribe-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 92px;
    padding: 8px 16px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 8px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(36px, 12vw, 48px);
    line-height: 1.02;
  }

  .shipping {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    margin-top: 14px;
    padding: 9px 11px;
    font-size: 13px;
    border-radius: 14px;
  }

  .hero-product {
    display: none;
  }

  .quick-buy {
    padding-top: 22px;
  }

  .slider-shell {
    margin-inline: -8px;
  }

  .slider-arrow {
    top: 36%;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .slider-arrow-left {
    left: 0;
  }

  .slider-arrow-right {
    right: 0;
  }

  .sticky-buy {
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: space-between;
    max-width: none;
    border-radius: 18px 18px 0 0;
    padding: 12px 14px;
  }

  .sticky-buy span {
    max-width: 188px;
  }

  summary {
    padding: 18px;
    font-size: 17px;
  }

  details p {
    margin: -2px 18px 18px;
    font-size: 15px;
  }

  .final-cta .button {
    width: 100%;
  }
}

.roast-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.roast-card .roast-actions .button {
  margin-top: 0;
}

.roast-actions .button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.roast-card.featured .direct-cart {
  color: var(--green-accent);
}

@media (max-width: 620px) {
  .roast-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .roast-actions .button {
    width: 100%;
  }
}

.review-heading {
  max-width: 980px;
  margin: 0 auto 26px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.review-shell {
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  max-width: 1480px;
  margin: 0 auto;
  text-align: left;
}

.review-grid.review-slider {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, calc((100% - 48px) / 4));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-grid.review-slider::-webkit-scrollbar {
  display: none;
}

.review-grid.review-slider .review-card {
  scroll-snap-align: start;
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.review-card.featured-review {
  background: rgba(255, 255, 255, 0.14);
}

.review-card-stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  max-width: none;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.review-card .reviewer {
  color: var(--white-soft);
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .review-shell {
    overflow: visible;
  }

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

  .review-grid.review-slider {
    grid-auto-columns: minmax(280px, 82vw);
    overflow-x: auto;
  }
}

.hero-support {
  max-width: 620px;
  margin: -12px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.offer-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.offer-banner p {
  margin-bottom: 0;
  color: var(--white-soft);
  font-size: 17px;
  line-height: 1.5;
}

.recommendation {
  margin-top: 12px;
  color: var(--green) !important;
  font-weight: 900;
}

.final-cta > div {
  max-width: 820px;
}

.final-cta p {
  margin: 14px 0 0;
  color: var(--white-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .offer-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-support {
    margin: -8px 0 18px;
    font-size: 15px;
    line-height: 1.48;
  }

  .offer-banner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .offer-banner .button {
    width: 100%;
  }
}

/* Conversion refinements for the 3+ bag smooth coffee box offer. */
.hero-product.featured-house-espresso .bag-main {
  width: min(38vw, 530px);
  right: 3%;
  top: 3%;
  transform: rotate(-1deg);
}

.hero-product.featured-house-espresso .bag-left,
.hero-product.featured-house-espresso .bag-right {
  width: min(19vw, 240px);
  opacity: 0.9;
}

.hero-product.featured-house-espresso .bag-left {
  left: 2%;
  bottom: 8%;
}

.hero-product.featured-house-espresso .bag-right {
  right: 2%;
  bottom: 2%;
}

.offer-banner {
  padding-top: 30px;
  padding-bottom: 30px;
}

.offer-banner .button {
  min-height: 56px;
  padding: 15px 28px;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.box-unlock-cue {
  display: inline-flex;
  margin: 16px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 117, 74, 0.1);
  color: var(--house-green) !important;
  font-size: 16px !important;
  font-weight: 900;
  line-height: 1.35 !important;
}

.roast-card:not(.view-all-card)::after {
  content: "Counts toward 15% box";
  position: absolute;
  top: 60px;
  left: 26px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 52px);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--house-green);
  box-shadow: var(--shadow);
  font-size: 11px;
  font-weight: 900;
}

.roast-card.featured:not(.view-all-card)::after {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

.view-all-card {
  background: #f8f7f3;
  color: var(--house-green);
  border: 1px dashed rgba(0, 98, 65, 0.28);
  box-shadow: none;
}

.view-all-card p {
  color: var(--muted);
}

.view-all-card .button-primary {
  background: transparent;
  color: var(--green-accent);
  border-color: var(--green-accent);
  box-shadow: none;
}

.subscribe-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.subscribe-points li {
  position: relative;
  padding-left: 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.subscribe-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.review {
  background: #00583a;
}

.review-card {
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.review-card.featured-review {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
}

.review-card blockquote {
  color: #fff;
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.42;
  letter-spacing: 0;
}

.review-card .reviewer {
  color: #fff;
}

.review-highlight {
  display: inline;
  padding: 0 0.18em;
  border-radius: 0.3em;
  background: var(--gold);
  color: var(--house-green);
  font-weight: 950;
}

.offer-step {
  min-height: 245px;
}

.offer-step h3 {
  font-size: clamp(25px, 2.6vw, 34px);
}

.offer-step-featured {
  background: var(--house-green);
  color: #fff;
  transform: translateY(-6px);
}

.offer-step-featured span {
  background: var(--gold);
  color: var(--house-green);
}

.offer-step-featured h3 {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 46px);
}

.offer-step-featured p {
  color: var(--white-soft);
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
  align-items: center;
}

.final-cta-copy .button {
  margin-top: 26px;
}

.final-box-visual {
  position: relative;
  min-height: 280px;
}

.final-box-visual img {
  position: absolute;
  width: min(52%, 210px);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.final-box-visual img:first-child {
  z-index: 3;
  left: 28%;
  top: 0;
  width: min(64%, 260px);
  transform: rotate(-2deg);
}

.final-box-visual img:nth-child(2) {
  z-index: 2;
  left: 0;
  bottom: 12px;
  transform: rotate(-8deg);
}

.final-box-visual img:nth-child(3) {
  z-index: 1;
  right: 0;
  bottom: 0;
  transform: rotate(8deg);
}

@media (max-width: 980px) {
  .offer-banner .button {
    min-height: 54px;
    width: auto;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-box-visual {
    width: min(100%, 420px);
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .hero-product.featured-house-espresso .bag-main {
    width: min(72vw, 360px);
  }

  .offer-banner {
    gap: 16px;
  }

  .offer-banner .button {
    width: 100%;
    min-height: 56px;
    font-size: 17px;
  }

  .box-unlock-cue {
    align-items: center;
    width: 100%;
    border-radius: 14px;
    font-size: 15px !important;
  }

  .roast-card:not(.view-all-card)::after {
    top: 62px;
    left: 22px;
    font-size: 10px;
  }

  .review-card {
    padding: 20px;
  }

  .review-card blockquote {
    font-size: 17px;
    line-height: 1.45;
  }

  .offer-step {
    min-height: 0;
  }

  .offer-step-featured {
    transform: none;
  }

  .final-box-visual {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 86px;
    height: 86px;
  }
}

.top-testimonial {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 680px;
  margin: 20px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(0, 98, 65, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--house-green);
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.top-testimonial::first-letter {
  color: var(--gold);
}

.top-testimonial span {
  color: var(--ink);
}

.top-testimonial strong {
  color: var(--green);
}

@media (max-width: 620px) {
  .top-testimonial {
    align-items: flex-start;
    gap: 4px 6px;
    margin-top: 14px;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.28;
  }
}
