/* =========================================================
   ROOT / RESET
========================================================== */

:root {
  --espresso: #17120e;
  --espresso-soft: #221a14;
  --brown: #3c2a1a;
  --brown-light: #684a32;

  --gold: #c89a55;
  --gold-light: #e4c48e;

  --cream: #f6f0e7;
  --cream-dark: #e8ded0;
  --paper: #fcfaf6;

  --white: #ffffff;
  --text: #241d18;
  --muted: #746a61;
  --line: rgba(36, 29, 24, 0.12);

  --container: 1240px;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.menu-open {
  overflow: hidden;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input {
  font: inherit;
}


button {
  border: 0;
}


.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}


.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--gold-light);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.eyebrow.dark {
  color: #9a6c32;
}


.eyebrow.light {
  color: var(--gold-light);
}


/* =========================================================
   BUTTONS
========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 25px;

  border-radius: 4px;

  font-size: 0.92rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border 0.2s ease;
}


.btn:hover {
  transform: translateY(-2px);
}


.btn-gold {
  background: var(--gold);
  color: var(--espresso);
}


.btn-gold:hover {
  background: #d5aa68;
}


.btn-dark {
  background: var(--espresso);
  color: var(--white);
}


.btn-dark:hover {
  background: #2b211a;
}


.btn-cream {
  background: var(--cream);
  color: var(--espresso);
}


.btn-cream:hover {
  background: var(--white);
}


.btn-outline-light {
  background: rgba(33, 25, 18, 0.34);

  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(2px);
}


.btn-outline-light:hover {
  background: rgba(10, 7, 5, 0.5);

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
  background: linear-gradient(90deg, #6b3e26, #b76422);
  color: var(--cream);
}

.announcement-inner {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 26px;

  font-size: 0.8rem;
}

.announcement-inner p {
  display: flex;
  align-items: center;
  gap: 5px;

  color: rgba(255, 255, 255, 0.86);
}

.announcement-inner p strong {
  color: #ffffff;
  font-weight: 800;
}

.announcement-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ffe0a6;

  font-weight: 800;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.announcement-inner a:hover {
  color: #ffffff;
}

.announcement-inner a span {
  transition: transform 0.2s ease;
}

.announcement-inner a:hover span {
  transform: translateX(4px);
}


/* Mobile */

@media (max-width: 700px) {

  .announcement-inner {
    min-height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 28px;

    padding: 10px 0;

    font-size: 0.7rem;
  }

  .announcement-inner p {
    max-width: none;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 4px 6px;
  }

  .announcement-inner p strong {
    white-space: nowrap;
  }

  .announcement-inner a {
    white-space: nowrap;
  }
}


/* Small mobile */

@media (max-width: 420px) {

  .announcement-inner {
    grid-template-columns: 1fr;

    justify-items: center;

    gap: 4px;

    padding: 9px 0;

    text-align: center;
  }

  .announcement-inner p {
    justify-content: center;
  }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(252, 250, 246, 0.96);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: clamp(82px, 7vw, 106px);

  display: grid;

  grid-template-columns:
    minmax(110px, 160px)
    1fr
    minmax(110px, 160px);

  align-items: center;

  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: clamp(72px, 6.5vw, 96px);

  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(20px, 2.3vw, 37px);
}

.desktop-nav a {
  position: relative;

  padding: 28px 0;

  font-size: 0.88rem;
  font-weight: 600;

  color: #41372f;

  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  bottom: 20px;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 14px;
}

.header-icon {
  position: relative;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  transition: background 0.2s ease;
}

.header-icon:hover {
  background: var(--cream);
}

.header-icon svg {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: var(--text);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;

  top: 0;
  right: -1px;

  width: 17px;
  height: 17px;

  display: grid;
  place-items: center;

  background: var(--gold);
  color: var(--espresso);

  border-radius: 50%;

  font-size: 0.64rem;
  font-weight: 800;
}

.cart-count:empty {
  display: none;
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 1.5px;

  margin: 5px auto;

  background: var(--text);

  transition: 0.2s ease;
}

.mobile-menu {
  display: none;
}


/* Smaller desktop */

@media (max-width: 1150px) {

  .header-inner {
    grid-template-columns:
      minmax(95px, 120px)
      1fr
      minmax(95px, 120px);
  }

  .desktop-nav {
    gap: clamp(16px, 2vw, 24px);
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }
}


/* Tablet */

@media (max-width: 950px) {

  .header-inner {
    min-height: 88px;

    grid-template-columns: 1fr auto;

    gap: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo img {
    height: 72px;
  }

  .header-actions {
    gap: 8px;
  }

  .mobile-menu {
    display: block;

    max-height: 0;

    overflow: hidden;

    background: var(--paper);

    transition: max-height 0.35s ease;
  }

  .mobile-menu.open {
    max-height: 500px;
  }

  .mobile-menu-inner {
    padding: 13px 0 25px;

    display: flex;
    flex-direction: column;
  }

  .mobile-menu a {
    padding: 13px 0;

    border-bottom: 1px solid var(--line);

    font-weight: 600;

    position: relative;
  
    transition:
      color 0.2s ease,
      padding-left 0.2s ease;
  }
  
  
  .mobile-menu a::before {
    content: "";
  
    position: absolute;
  
    left: 0;
    bottom: -1px;
  
    width: 0;
    height: 1px;
  
    background: var(--gold);
  
    transition: width 0.25s ease;
  }
  
  
  .mobile-menu a:hover {
    color: var(--brown-light);
  
    padding-left: 8px;
  }
  
  
  .mobile-menu a:hover::before {
    width: 100%;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .site-header {
    backdrop-filter: blur(10px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-logo img {
    height: 62px;
  }

  .header-actions {
    gap: 2px;
  }

  .header-icon {
    width: 36px;
    height: 36px;
  }

  .header-icon svg {
    width: 20px;
    height: 20px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}


/* Small mobile */

@media (max-width: 480px) {

  .header-inner {
    min-height: 72px;
  }

  .brand-logo img {
    height: 56px;
  }

  .header-icon {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .menu-toggle span {
    width: 21px;
  }
}


/* Very small mobile */

@media (max-width: 430px) {

  .hero-line {
    white-space: normal;
  }

  .hero h1 {
    max-width: 100%;
  }
}


/* Very small mobile */

@media (max-width: 360px) {

  .brand-logo img {
    height: 50px;
  }

  .header-actions {
    gap: 0;
  }

  .header-icon {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: clamp(600px, 72vh, 710px);

  display: flex;
  align-items: center;

  overflow: hidden;

  background-image: url("images/img6.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
}


/* Darker on the left for text readability,
   lighter towards the products on the right */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(15, 10, 7, 0.93) 0%,
      rgba(15, 10, 7, 0.85) 26%,
      rgba(15, 10, 7, 0.64) 44%,
      rgba(15, 10, 7, 0.25) 66%,
      rgba(15, 10, 7, 0.05) 100%
    );

  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;

  padding: clamp(65px, 7vw, 85px) 0;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
}

.hero .eyebrow {
  margin-bottom: 22px;

  color: var(--gold-light);

  font-size: 0.73rem;
  font-weight: 700;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);

  line-height: 0.94;
  letter-spacing: -0.045em;

  color: var(--white);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line-white {
  color: var(--white);
}

.hero-line-gold {
  color: var(--gold-light);
  padding-bottom: 20px;
}

.hero-description {
  max-width: 580px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;

  gap: 13px;

  flex-wrap: wrap;
}

.btn-outline {
  background: rgba(15, 10, 7, 0.18);

  color: var(--white);

  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.7);
}

.hero-meta {
  margin-top: 39px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  align-items: center;
}

.hero-meta span:not(:last-child)::after {
  content: "•";

  margin: 0 12px;

  color: var(--gold);
}


/* Smaller desktop */

@media (max-width: 1150px) {

  .hero {
    background-position: 58% center;
  }
}


/* Tablet */

@media (max-width: 950px) {

  .hero {
    min-height: 650px;

    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(15, 10, 7, 0.95) 0%,
        rgba(15, 10, 7, 0.88) 38%,
        rgba(15, 10, 7, 0.58) 72%,
        rgba(15, 10, 7, 0.22) 100%
      );
  }
}


/* Mobile */

@media (max-width: 700px) {

  .hero {
    min-height: 610px;

    background-position: 68% center;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(15, 10, 7, 0.96) 0%,
        rgba(15, 10, 7, 0.88) 52%,
        rgba(15, 10, 7, 0.65) 100%
      );
  }

  .hero-line-gold {
    padding-bottom: 12px;
  }

  .hero-description {
    max-width: 500px;

    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 28px;

    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    margin-top: 28px;

    flex-direction: column;
    align-items: flex-start;

    gap: 7px;
  }

  .hero-meta span:not(:last-child)::after {
    display: none;
  }
}


/* Small mobile */

@media (max-width: 480px) {

  .hero {
    min-height: 570px;

    background-position: 70% center;
  }

  .hero-inner {
    padding: 52px 0;
  }

  .hero .eyebrow {
    margin-bottom: 16px;

    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero-description {
    font-size: 0.91rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-meta {
    font-size: 0.61rem;
  }
}


/* Very small mobile */

@media (max-width: 360px) {

  .hero {
    min-height: 550px;
  }

  .hero-description {
    font-size: 0.88rem;
  }
}


/* Short landscape screens */

@media (max-height: 650px) and (min-width: 700px) {

  .hero {
    min-height: 540px;
  }

  .hero-inner {
    padding: 55px 0;
  }

  .hero-meta {
    margin-top: 24px;
  }
}


/* =========================================================
   GENERAL SECTION HEADER
========================================================== */

.section-top {
  margin-bottom: 43px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}


.section-top h2 {
  max-width: 720px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);

  line-height: 0.98;
  letter-spacing: -0.04em;
}


.section-link,
.text-arrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding-bottom: 5px;

  border-bottom: 1px solid var(--line);

  font-size: 0.85rem;
  font-weight: 700;
}


.section-link span,
.text-arrow span {
  transition: transform 0.2s ease;
}


.section-link:hover span,
.text-arrow:hover span {
  transform: translateX(5px);
}


/* =========================================================
   PRODUCTS
========================================================== */

.shop-section {
  padding: 110px 0 120px;

  background: var(--paper);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}


.product-card {
  background: var(--white);

  border: 1px solid var(--line);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.product-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 24px 60px rgba(40, 29, 20, 0.09);
}


.product-image {
  position: relative;

  height: 390px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #e9ddcc;

  padding: 28px;
}


.product-photo {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition: transform 0.4s ease;
}


.product-card:hover .product-photo {
  transform: scale(1.035);
}


/* House Blend image is slightly larger than the others,
   so this keeps all four bags visually consistent */

.product-photo-house {
  transform: scale(0.92);
}


.product-card:hover .product-photo-house {
  transform: scale(0.95);
}


.product-label {
  position: absolute;

  top: 16px;
  left: 16px;

  z-index: 5;

  padding: 7px 11px;

  background: rgba(252, 250, 246, 0.95);

  border-radius: 999px;

  color: #4d3929;

  font-size: 0.66rem;
  font-weight: 700;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.product-info {
  padding: 23px 21px 20px;
}


.product-category {
  margin-bottom: 7px;

  color: #997044;

  font-size: 0.66rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.product-info h3 {
  margin-bottom: 9px;

  font-size: 1.35rem;
}


.product-info p {
  min-height: 64px;

  color: var(--muted);

  font-size: 0.83rem;
  line-height: 1.65;
}


.product-bottom {
  margin-top: 20px;
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 14px;

  border-top: 1px solid var(--line);
}


.product-option {
  color: #887d73;

  font-size: 0.68rem;
}


.product-bottom a {
  flex-shrink: 0;

  color: #6f4c2b;

  font-size: 0.72rem;
  font-weight: 700;
}


@media (max-width: 1150px) {

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-image {
    height: 480px;
  }
}


@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }


  .product-image {
    height: 480px;
  }
}


@media (max-width: 470px) {
  .product-image {
    height: 390px;
  }
}


/* =========================================================
   BENEFITS
========================================================== */

.benefits-section {
  padding: 65px 0;

  background: var(--cream);
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}


.benefit {
  padding: 0 36px;

  border-right: 1px solid rgba(36, 29, 24, 0.11);
}


.benefit:first-child {
  padding-left: 0;
}


.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}


.benefit-number {
  margin-bottom: 24px;

  color: #a77842;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.12em;
}


.benefit h3 {
  margin-bottom: 9px;

  font-size: 1.2rem;
}


.benefit p {
  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.7;
}


/* =========================================================
   SUBSCRIPTION
========================================================== */

.subscription-section {
  padding: 115px 0;

  background: var(--espresso);
  color: var(--white);
}


.subscription-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 90px;
}


.subscription-image {
  position: relative;
  overflow: hidden;

  border-radius: 4px;
}


.subscription-image img {
  width: 100%;
  height: 560px;

  object-fit: cover;
  object-position: center;

  display: block;
}


.subscription-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.28)
    );

  pointer-events: none;
}


.subscription-offer {
  position: absolute;

  right: 24px;
  bottom: 24px;

  z-index: 3;

  width: 165px;
  height: 165px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 22px;

  background: var(--gold);
  color: var(--espresso);

  border-radius: 50%;

  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}


.subscription-offer strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.1;
}


.subscription-offer span {
  margin-top: 7px;

  font-size: 0.65rem;
  line-height: 1.35;
}


.subscription-copy h2 {
  margin-bottom: 25px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);

  line-height: 0.98;
  letter-spacing: -0.04em;
}


.subscription-copy h2 span {
  display: block;
  color: var(--gold-light);
}


.subscription-copy > p {
  max-width: 520px;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.8;
}


.subscription-points {
  margin: 30px 0 35px;

  display: grid;

  gap: 11px;

  color: rgba(255, 255, 255, 0.83);

  font-size: 0.85rem;
}


.subscription-points div {
  display: flex;
  gap: 12px;
}


.subscription-points span {
  color: var(--gold-light);
}

/* Tablet */

@media (max-width: 950px) {

  .subscription-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .subscription-copy {
    order: 1;
  }

  .subscription-image {
    order: 2;
  }

  .subscription-copy > p {
    max-width: 620px;
  }

  .subscription-image img {
    height: 500px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .subscription-section {
    padding: 80px 0;
  }

  .subscription-grid {
    gap: 45px;
  }

  .subscription-image img {
    height: 420px;
  }

  .subscription-offer {
    right: 18px;
    bottom: 18px;

    width: 145px;
    height: 145px;

    padding: 18px;
  }
}


/* Small mobile */

@media (max-width: 480px) {

  .subscription-image img {
    height: 360px;
  }

  .subscription-offer {
    width: 125px;
    height: 125px;

    right: 14px;
    bottom: 14px;

    padding: 14px;
  }

  .subscription-offer strong {
    font-size: 1rem;
  }

  .subscription-offer span {
    font-size: 0.6rem;
  }
}


/* =========================================================
   STORY
========================================================== */

.story-section {
  padding: 125px 0;

  background: var(--paper);
}


.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;

  align-items: center;
}


.story-copy h2 {
  max-width: 590px;

  margin-bottom: 24px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);

  line-height: 0.98;
  letter-spacing: -0.04em;
}


.story-lead {
  max-width: 560px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.8;
}


.story-points {
  margin: 37px 0;

  display: grid;
}


.story-points > div {
  padding: 18px 0;

  display: grid;
  grid-template-columns: 45px 1fr;

  border-bottom: 1px solid var(--line);
}


.story-points > div > span {
  padding-top: 4px;

  color: #a27542;

  font-size: 0.7rem;
  font-weight: 700;
}


.story-points h3 {
  margin-bottom: 4px;

  font-family: var(--sans);

  font-size: 0.92rem;
  font-weight: 700;
}


.story-points p {
  color: var(--muted);

  font-size: 0.8rem;
}


.story-satisfaction {
  margin: -8px 0 30px;
  padding: 18px 20px;
  border-left: 3px solid #a27542;
  background: var(--cream);
}

.story-satisfaction p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.story-satisfaction p strong {
  color: var(--text);
}

.story-satisfaction a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a27542;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.story-satisfaction a span {
  transition: transform 0.2s ease;
}

.story-satisfaction a:hover span {
  transform: translateX(4px);
}


.story-image-wrap {
  position: relative;

  padding-left: 40px;
}


.story-image-wrap::before {
  content: "";

  position: absolute;

  top: 45px;
  left: 0;

  width: 54%;
  height: 78%;

  background: var(--cream);

  z-index: 0;
}


.story-image-wrap img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 620px;

  object-fit: cover;
  object-position: center;

  border-radius: 3px;
}


.story-image-caption {
  position: relative;
  z-index: 3;

  width: calc(100% - 70px);

  margin: -23px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  background: var(--white);

  border: 1px solid var(--line);

  box-shadow: 0 15px 45px rgba(30, 22, 16, 0.09);
}


.story-image-caption span {
  padding: 15px 12px;

  text-align: center;

  border-right: 1px solid var(--line);

  color: #68594d;

  font-size: 0.69rem;
  font-weight: 700;
}


.story-image-caption span:last-child {
  border-right: 0;
}

/* Tablet */

@media (max-width: 950px) {

  .story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .story-image-wrap img {
    height: 500px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .story-section {
    padding: 80px 0;
  }

  .story-image-wrap {
    padding-left: 0;
  }

  .story-image-wrap::before {
    display: none;
  }

  .story-image-wrap img {
    height: 420px;
  }

  .story-image-caption {
    width: 94%;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .story-image-wrap img {
    height: 360px;
  }
}


/* =========================================================
   PURPOSE / CHARITY
========================================================== */

.purpose-section {
  position: relative;

  padding: 130px 0;

  background-image:
    linear-gradient(
      rgba(18, 12, 8, 0.75),
      rgba(18, 12, 8, 0.75)
    ),
    url("images/img20.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
}


.purpose-inner {
  max-width: 760px;

  text-align: center;
}


.purpose-inner h2 {
  margin: 18px auto 20px;

  max-width: 700px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}


.purpose-inner p {
  max-width: 620px;

  margin: 0 auto 30px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1.02rem;
  line-height: 1.8;
}


.purpose-section .btn {
  margin-top: 8px;
}


@media (max-width: 620px) {
  .purpose-section {
    padding: 95px 0;
    background-position: center;
  }

  .purpose-inner p {
    font-size: 0.97rem;
  }
}


/* =========================================================
   REVIEWS
========================================================== */

.reviews-section {
  padding: 120px 0;
  background: var(--cream);
}

.review-heading {
  margin-bottom: 45px;
}

.reviews-slider {
  position: relative;
}

.reviews-window {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;

  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);

  min-height: 360px;

  padding: 34px;

  display: flex;
  flex-direction: column;

  background: var(--paper);

  border: 1px solid rgba(36, 29, 24, 0.1);
}

.featured-review {
  background: var(--espresso);
  color: var(--white);
}

.stars {
  margin-bottom: 30px;

  color: var(--gold);

  font-size: 0.8rem;
  letter-spacing: 0.13em;
}

.review-card blockquote {
  flex: 1;

  margin-bottom: 32px;

  font-family: var(--serif);
  font-size: 1.18rem;

  line-height: 1.5;
}

.review-author strong {
  display: block;

  margin-bottom: 4px;

  font-size: 0.78rem;
}

.review-author span {
  color: var(--muted);

  font-size: 0.7rem;
}

.featured-review .review-author span {
  color: rgba(255, 255, 255, 0.55);
}


/* arrows */

.reviews-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  z-index: 5;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(36, 29, 24, 0.12);
  border-radius: 50%;

  cursor: pointer;

  box-shadow: 0 8px 24px rgba(36, 29, 24, 0.08);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.reviews-arrow:hover {
  background: var(--white);
}

.reviews-arrow svg {
  width: 22px;
  height: 22px;

  fill: #4a4a4a;
}

.reviews-arrow-left {
  left: -66px;
}

.reviews-arrow-right {
  right: -66px;
}


/* dots */

.reviews-dots {
  margin-top: 26px;

  display: flex;
  justify-content: center;

  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border-radius: 50%;

  background: #d0b27f;

  opacity: 0.38;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.reviews-dot.active {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================================================
   RESPONSIVE REVIEW CONTROLS
========================================================= */

/* Smaller desktop:
   keep 3 reviews, but move arrows underneath */
@media (max-width: 1400px) {

  .reviews-slider {
    padding-bottom: 64px;
  }

  .reviews-arrow {
    top: auto;
    bottom: 0;

    width: 44px;
    height: 44px;

    transform: none;
  }

  .reviews-arrow-left {
    left: calc(50% - 54px);
    right: auto;
  }

  .reviews-arrow-right {
    left: calc(50% + 10px);
    right: auto;
  }
}


/* Tablet:
   show 2 reviews at a time */
@media (max-width: 1100px) and (min-width: 761px) {

  .reviews-track {
    gap: 18px;
  }

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .reviews-window {
    padding: 0;
  }
}


/* Mobile:
   show 1 review at a time */
@media (max-width: 760px) {

  .reviews-track {
    gap: 0;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews-window {
    padding: 0;
  }

  .reviews-slider {
    padding-bottom: 64px;
  }

  .reviews-dots {
    display: none;
  }

  .reviews-arrow {
    background: var(--paper);
    border-color: rgba(36, 29, 24, 0.14);
  }

  .reviews-arrow-left {
    left: calc(50% - 54px);
  }

  .reviews-arrow-right {
    left: calc(50% + 10px);
  }
}


/* =========================================================
   REFER A FRIEND CTA
========================================================== */

.home-referral { 
  padding: 70px 0; 
  background-image: url('images/img11.avif'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); 
}

.refer-content-background { 
  /* Shading increased from 0.4 to 0.6 for better contrast */
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('your-image-path.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); 
  
  /* Creates space around the inside edges of the container */
  padding: 60px 40px; 
  
  /* Optional: keeps text readable if the image container has a max-width */
  box-sizing: border-box; 
}


.home-referral-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.home-referral h2 {
  margin: 12px 0 14px;

  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-referral p {
  max-width: 600px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.95rem;
  line-height: 1.75;
}

.home-referral .btn {
  flex-shrink: 0;
}


/* Tablet / mobile */

@media (max-width: 760px) {

  .home-referral {
    padding: 60px 0;
  }

  .home-referral-inner {
    align-items: flex-start;
    flex-direction: column;

    gap: 28px;
  }

}

/* Small mobile */

@media (max-width: 470px) {

  .refer-content-background { 
  
  /* Creates space around the inside edges of the container */
  padding: 40px 20px; 
}
}


/* =========================================================
   GIFT SECTION
========================================================== */

.gift-promo {
  padding: 110px 0 120px;
  background: var(--paper);
}

.gift-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.gift-copy h2 {
  max-width: 580px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gift-copy p {
  max-width: 560px;
  margin: 18px 0 28px;
}

.gift-card {
  position: relative;

  min-height: 430px;
  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;
  border-radius: 4px;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.03) 0%,
      rgba(10, 7, 5, 0.10) 28%,
      rgba(10, 7, 5, 0.22) 62%,
      rgba(10, 7, 5, 0.32) 100%
    ),
    url("images/hero-coffee.png") center / cover no-repeat;

  /* Actually brighten the image */
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.10);

  color: #fff;
}

.gift-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.gift-card > * {
  position: relative;
  z-index: 2;
}

.gift-mini-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #d8b271;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.gift-card-title {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 4.2vw, 4rem);
  line-height: 0.95;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.gift-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.gift-features span {
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(3px);
}

.gift-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.gift-card a:hover {
  background: rgba(0, 0, 0, 0.62);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .gift-grid {
    grid-template-columns: 1fr;
  }

  .gift-card {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .gift-card {
    padding: 26px;
    min-height: 340px;
  }

  .gift-card-title {
    font-size: 2.35rem;
  }

  .gift-features span {
    font-size: 0.76rem;
  }
}


/* =========================================================
   NEWSLETTER
========================================================== */

.newsletter {
  padding: 90px 0;

  background: #382619;
  color: var(--white);
}


.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;

  align-items: center;

  gap: 70px;
}


.newsletter h2 {
  margin-bottom: 9px;

  font-size: clamp(2.4rem, 4vw, 4rem);

  line-height: 1;
}


.newsletter p {
  color: rgba(255, 255, 255, 0.6);
}


.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;

  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}


.newsletter-form input {
  padding: 17px 0;

  background: transparent;
  color: var(--white);

  border: 0;
  outline: 0;
}


.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}


.newsletter-form button {
  padding: 0 0 0 30px;

  background: transparent;
  color: var(--gold-light);

  font-size: 0.8rem;
  font-weight: 700;

  cursor: pointer;
}


.newsletter-message {
  width: 100%;
  margin-top: 10px;

  font-size: 0.85rem;
  line-height: 1.5;
}


/* =========================================================
   SUBSCRIPTIONS HERO
========================================================== */

.subscriptions-hero {
  padding: 80px 0 95px;
  background: var(--paper);
}


.subscriptions-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 75px;
}


.subscriptions-hero-copy {
  padding: 35px 0;
}


.subscriptions-hero-copy .eyebrow {
  margin-bottom: 22px;
}


.subscriptions-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


.subscriptions-hero-copy h1 .hero-accent {
  display: block;
  color: var(--brown-light);
}

.keep-together {
  white-space: nowrap;
}


.subscriptions-hero-copy > p {
  max-width: 540px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}


.subscriptions-hero-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;
  gap: 24px;

  flex-wrap: wrap;
}


.subscriptions-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--text);

  font-size: 0.86rem;
  font-weight: 800;

  border-bottom: 1px solid var(--line);

  padding-bottom: 4px;
}


.subscriptions-text-link span {
  transition: transform 0.2s ease;
}


.subscriptions-text-link:hover span {
  transform: translateX(4px);
}


.subscriptions-hero-meta {
  margin-top: 36px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.subscriptions-hero-meta span {
  display: flex;
  align-items: center;
}


.subscriptions-hero-meta span:not(:last-child)::after {
  content: "•";

  margin: 0 12px;

  color: var(--gold);
}


.subscriptions-hero-image {
  position: relative;

  overflow: hidden;

  min-height: 570px;

  border-radius: 4px;
}


.subscriptions-hero-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}


.subscriptions-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.02),
      rgba(10, 7, 5, 0.20)
    );

  pointer-events: none;
}


.subscriptions-hero-offer {
  position: absolute;

  right: 25px;
  bottom: 25px;

  z-index: 2;

  width: 165px;
  height: 165px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gold);
  color: var(--espresso);

  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}


.subscriptions-hero-offer strong {
  font-family: var(--serif);

  font-size: 1.15rem;
  line-height: 1.1;
}


.subscriptions-hero-offer span {
  margin-top: 7px;

  font-size: 0.65rem;
  line-height: 1.35;
}


/* Tablet */

@media (max-width: 950px) {

  .subscriptions-hero {
    padding: 70px 0 80px;
  }

  .subscriptions-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .subscriptions-hero-copy {
    padding: 0;
  }

  .subscriptions-hero-copy h1 {
    max-width: 720px;
  }

  .subscriptions-hero-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .subscriptions-hero {
    padding: 60px 0 70px;
  }

  .subscriptions-hero-grid {
    gap: 42px;
  }

  .subscriptions-hero-copy h1 {
    max-width: 100%;
  }

  .subscriptions-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .subscriptions-hero-actions .btn {
    width: 100%;
  }

  .subscriptions-text-link {
    width: fit-content;
  }

  .subscriptions-hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .subscriptions-hero-meta span:not(:last-child)::after {
    display: none;
  }

  .subscriptions-hero-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .subscriptions-hero-offer {
    right: 18px;
    bottom: 18px;

    width: 145px;
    height: 145px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .subscriptions-hero-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .subscriptions-hero-offer {
    right: 14px;
    bottom: 14px;

    width: 125px;
    height: 125px;

    padding: 14px;
  }

  .subscriptions-hero-offer strong {
    font-size: 1rem;
  }

  .subscriptions-hero-offer span {
    font-size: 0.6rem;
  }
}


/* =========================================================
   HOW IT WORKS
========================================================== */

.subscription-steps {
  padding: 110px 0;
  background: var(--espresso);
  color: var(--white);
}


.subscription-steps-heading {
  margin-bottom: 70px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}


.subscription-steps-heading h2 {
  max-width: 700px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: var(--white);
}


.subscription-steps-heading h2 span {
  display: block;
  color: var(--gold-light);
}


.subscription-steps-heading > p {
  max-width: 470px;
  justify-self: end;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.96rem;
  line-height: 1.8;
}


.subscription-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.subscription-step {
  position: relative;

  padding: 42px 40px 10px 0;
}


.subscription-step:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}


.subscription-step:not(:first-child) {
  padding-left: 40px;
}


.subscription-step-number {
  display: block;

  margin-bottom: 45px;

  color: var(--gold);

  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}


.subscription-step h3 {
  margin-bottom: 15px;

  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.15;

  color: var(--white);
}


.subscription-step p {
  max-width: 310px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.88rem;
  line-height: 1.75;
}


/* Tablet */

@media (max-width: 950px) {

  .subscription-steps {
    padding: 90px 0;
  }

  .subscription-steps-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

  .subscription-steps-heading > p {
    max-width: 600px;
    justify-self: start;
  }

  .subscription-steps-grid {
    grid-template-columns: 1fr;
  }

  .subscription-step,
  .subscription-step:not(:first-child) {
    padding: 32px 0;
  }

  .subscription-step:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .subscription-step-number {
    margin-bottom: 18px;
  }

  .subscription-step p {
    max-width: 520px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .subscription-steps {
    padding: 75px 0;
  }

  .subscription-steps-heading {
    margin-bottom: 40px;
  }

  .subscription-step {
    padding: 28px 0;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .subscription-step h3 {
    font-size: 1.5rem;
  }
}


/* =========================================================
   SUBSCRIPTION COFFEES
========================================================== */

.subscription-coffees {
  padding: 115px 0;
  background: var(--paper);
}


.subscription-coffees-heading {
  margin-bottom: 60px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}


.subscription-coffees-heading h2 {
  max-width: 680px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}


.subscription-coffees-heading h2 span {
  display: block;
  color: var(--brown-light);
}


.subscription-coffees-heading > p {
  max-width: 480px;
  justify-self: end;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.8;
}


.subscription-coffee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}


.subscription-coffee-card {
  min-width: 0;
}


.subscription-coffee-image {
  position: relative;

  height: 470px;

  padding: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: var(--cream-dark);

  border-radius: 4px;
}


.subscription-coffee-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 2px;

  transition: transform 0.45s ease;
}


.subscription-coffee-card:hover .subscription-coffee-image img {
  transform: scale(1.015);
}


.subscription-coffee-tag {
  position: absolute;

  top: 16px;
  left: 16px;

  padding: 8px 11px;

  background: rgba(252, 250, 246, 0.94);
  color: var(--espresso);

  border-radius: 999px;

  font-size: 0.64rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.subscription-coffee-content {
  min-height: 145px;

  padding-top: 21px;

  display: flex;
  flex-direction: column;
}


.subscription-coffee-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;
}


.subscription-coffee-top h3 {
  margin-bottom: 7px;

  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;

  color: var(--text);
}


.subscription-coffee-top p {
  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.5;
}


.subscription-coffee-top > strong {
  flex-shrink: 0;

  color: var(--brown);

  font-size: 0.84rem;
  font-weight: 800;
}


.subscription-coffee-actions {
  margin-top: auto;
  padding-top: 20px;

  display: flex;
  align-items: center;
  gap: 20px;
}


.subscription-coffee-actions .btn {
  padding: 13px 19px;
}


.subscription-coffee-link {
  color: var(--text);

  font-size: 0.78rem;
  font-weight: 800;

  border-bottom: 1px solid var(--line);

  padding-bottom: 3px;
}


/* Tablet */

@media (max-width: 1050px) {

  .subscription-coffee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subscription-coffee-image {
    height: 430px;
  }
}


@media (max-width: 950px) {

  .subscription-coffees {
    padding: 95px 0;
  }

  .subscription-coffees-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .subscription-coffees-heading > p {
    max-width: 600px;
    justify-self: start;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .subscription-coffees {
    padding: 80px 0;
  }

  .subscription-coffee-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .subscription-coffee-image {
    height: 460px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .subscription-coffee-image {
    height: 390px;
  }

  .subscription-coffee-top {
    flex-direction: column;
    gap: 10px;
  }

  .subscription-coffee-actions {
    justify-content: space-between;
  }
}


/* =========================================================
   PRODUCT DETAIL
========================================================== */

.product-detail {
  padding: 95px 0 110px;

  background: var(--paper);
}


.product-detail-grid {
  display: grid;

  grid-template-columns: 1.02fr 0.98fr;

  align-items: center;

  gap: 85px;
}


/* Image */

.product-detail-image {
  height: 650px;

  overflow: hidden;

  border-radius: 4px;
}


.product-detail-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 2px;
}


/* Content */

.product-detail-copy {
  max-width: 590px;
}


.product-detail-copy h1 {
  margin-bottom: 15px;

  font-size: clamp(3rem, 4.5vw, 4.8rem);

  line-height: 0.98;

  letter-spacing: -0.045em;
}


.product-detail-facts {
  padding: 22px 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  display: grid;

  gap: 8px;
}


.product-detail-facts p {
  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.6;
}


.product-detail-facts strong {
  color: var(--text);
}


.product-detail-description {
  margin-top: 27px;

  color: var(--muted);

  font-size: 0.94rem;

  line-height: 1.8;
}


.product-detail-description strong {
  color: var(--text);

  font-weight: 700;
}


.product-detail-points {
  margin: 28px 0 34px;

  display: grid;

  gap: 11px;

  color: var(--text);

  font-size: 0.86rem;
}


.product-detail-points div {
  display: flex;

  align-items: flex-start;

  gap: 11px;
}


.product-detail-points span {
  color: var(--gold);

  font-weight: 800;
}


.product-detail-subscribe {
  padding-bottom: 3px;

  color: var(--text);

  border-bottom: 1px solid var(--line);

  font-size: 0.82rem;
  font-weight: 800;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-outline-dark {
  background: transparent;
  color: var(--text);

  border: 1px solid var(--text);
}


.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}


/* Tablet */

@media (max-width: 950px) {

  .product-detail {
    padding: 75px 0 90px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-detail-image {
    width: 72%;
    max-width: 540px;
    height: auto;
  
    margin: 0 auto;
  }

  .product-detail-image img {
    width: 100%;
    height: auto;

    object-fit: initial;
  }

  .product-detail-copy {
    max-width: 680px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .product-detail {
    padding: 65px 0 80px;
  }

  .product-detail-grid {
    gap: 42px;
  }

  .product-detail-image {
    width: 78%;
  }

  .product-detail-copy h1 {
    font-size: 3.2rem;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .product-detail-copy h1 {
    font-size: 2.7rem;
  }

  .product-detail-image {
    width: 84%;
  }

  .product-detail-copy .btn {
    width: 100%;
  }

  .product-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   CHARITY SUBSCRIPTION
========================================================== */

.charity-plan-intro {
  margin-bottom: 18px;

  color: var(--brown);

  font-size: 1.05rem;
  line-height: 1.6;
}


.charity-plan-statement {
  margin-top: 4px;

  color: var(--text);

  font-size: 0.95rem;
  line-height: 1.6;
}


.charity-plan-notes {
  margin-top: 20px;

  display: grid;
  gap: 7px;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.6;
}


.charity-plan-sizes {
  margin: 26px 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.charity-plan-sizes div {
  padding: 18px 12px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  text-align: center;
}


.charity-plan-sizes div:not(:last-child) {
  border-right: 1px solid var(--line);
}


.charity-plan-sizes strong {
  color: var(--brown);

  font-size: 0.82rem;
}


.charity-plan-sizes span {
  color: var(--muted);

  font-size: 0.78rem;
}


.charity-coffee-details {
  margin-bottom: 32px;

  padding-top: 4px;
}


.charity-coffee-details h2 {
  margin-bottom: 15px;

  font-size: 1.8rem;
  line-height: 1.15;

  color: var(--text);
}


.charity-coffee-details p {
  margin-bottom: 6px;

  color: var(--muted);

  font-size: 0.86rem;
  line-height: 1.6;
}


.charity-coffee-details strong {
  color: var(--text);
}


/* Small mobile */

@media (max-width: 470px) {

  .charity-plan-sizes {
    grid-template-columns: 1fr;
  }

  .charity-plan-sizes div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}


/* =========================================================
   SHOP HERO
========================================================== */

.shop-hero {
  padding: 80px 0 95px;

  background: var(--paper);
}


.shop-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;

  align-items: center;

  gap: 75px;
}


.shop-hero-copy {
  padding: 35px 0;
}


.shop-hero-copy .eyebrow {
  margin-bottom: 22px;
}


.shop-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


.shop-hero-copy h1 span {
  display: block;

  color: var(--brown-light);
}


.shop-hero-copy > p {
  max-width: 540px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}


.shop-hero-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;

  gap: 24px;

  flex-wrap: wrap;
}


.shop-hero-meta {
  margin-top: 36px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.shop-hero-meta span {
  display: flex;
  align-items: center;
}


.shop-hero-meta span:not(:last-child)::after {
  content: "•";

  margin: 0 12px;

  color: var(--gold);
}


/* Image */

.shop-hero-image {
  position: relative;

  min-height: 570px;

  overflow: hidden;

  border-radius: 4px;
}


.shop-hero-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


.shop-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.01),
      rgba(10, 7, 5, 0.12)
    );

  pointer-events: none;
}


/* Tablet */

@media (max-width: 950px) {

  .shop-hero {
    padding: 70px 0 80px;
  }

  .shop-hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .shop-hero-copy {
    padding: 0;
  }

  .shop-hero-copy h1 {
    max-width: 720px;
  }

  .shop-hero-image {
    min-height: 500px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .shop-hero {
    padding: 60px 0 70px;
  }

  .shop-hero-grid {
    gap: 42px;
  }

  .shop-hero-copy h1 {
    max-width: 100%;
  }

  .shop-hero-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 18px;
  }

  .shop-hero-actions .btn {
    width: 100%;
  }

  .shop-hero-meta {
    align-items: flex-start;
    flex-direction: column;

    gap: 7px;
  }

  .shop-hero-meta span:not(:last-child)::after {
    display: none;
  }

  .shop-hero-image {
    min-height: 420px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .shop-hero-image {
    min-height: 350px;
  }
}


/* =========================================================
   SHOP COFFEES
========================================================== */

.shop-coffees {
  padding: 115px 0;
  background: var(--paper);
}


.shop-coffees-heading {
  margin-bottom: 60px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}


.shop-coffees-heading h2 {
  max-width: 680px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;

  text-wrap: balance;
}


.shop-coffees-heading h2 span {
  display: block;
  color: var(--brown-light);
}


.shop-coffees-heading > p {
  max-width: 480px;
  justify-self: end;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.8;
}


/* Product grid */

.shop-coffee-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);

  gap: 48px 28px;
}


.shop-coffee-card {
  grid-column: span 2;

  min-width: 0;

  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--line);
  border-radius: 4px;
}


/* Centre the final two cards */

.shop-coffee-card:nth-child(4) {
  grid-column: 2 / span 2;
}


/* Image area */

.shop-coffee-image {
  position: relative;

  height: 470px;

  padding: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: var(--cream-dark);
}


.shop-coffee-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  border-radius: 2px;

  transition: transform 0.45s ease;
}


.shop-coffee-card:hover .shop-coffee-image img {
  transform: scale(1.015);
}


.shop-coffee-tag {
  position: absolute;

  top: 22px;
  left: 22px;

  z-index: 2;

  padding: 9px 14px;

  background: rgba(252, 250, 246, 0.96);
  color: var(--espresso);

  border-radius: 999px;

  font-size: 0.64rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Product information */

.shop-coffee-content {
  min-height: 180px;

  padding: 28px;

  display: flex;
  flex-direction: column;

  background: var(--white);
}


.shop-coffee-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;
}


.shop-coffee-top h3 {
  margin-bottom: 8px;

  font-family: var(--serif);

  font-size: 1.6rem;
  line-height: 1.15;

  color: var(--text);
}


.shop-coffee-top p {
  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.55;
}


.shop-coffee-top > strong {
  flex-shrink: 0;

  color: var(--brown);

  font-size: 0.84rem;
  font-weight: 800;
}


.shop-coffee-actions {
  margin-top: auto;
  padding-top: 24px;

  display: flex;
  align-items: center;

  gap: 20px;
}


.shop-coffee-actions .btn {
  padding: 13px 19px;
}


.shop-coffee-link {
  padding-bottom: 3px;

  color: var(--text);

  border-bottom: 1px solid var(--line);

  font-size: 0.78rem;
  font-weight: 800;
}


/* Tablet */

@media (max-width: 1050px) {

  .shop-coffee-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-coffee-card,
  .shop-coffee-card:nth-child(4) {
    grid-column: auto;
  }

  .shop-coffee-image {
    height: 440px;
  }
}


@media (max-width: 950px) {

  .shop-coffees {
    padding: 95px 0;
  }

  .shop-coffees-heading {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 50px;
  }

  .shop-coffees-heading > p {
    max-width: 600px;
    justify-self: start;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .shop-coffees {
    padding: 80px 0;
  }

  .shop-coffee-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .shop-coffee-image {
    height: 460px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .shop-coffee-image {
    height: 380px;
    padding: 20px;
  }

  .shop-coffee-content {
    padding: 22px;
  }

  .shop-coffee-top {
    flex-direction: column;

    gap: 10px;
  }

  .shop-coffee-actions {
    justify-content: space-between;
  }
}


/* =========================================================
   SHOP SUBSCRIPTION CTA
========================================================== */

.shop-subscription-cta {
  padding: 105px 0;

  background: var(--espresso);
  color: var(--white);
}


.shop-subscription-cta-inner {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}


.shop-subscription-cta-inner h2 {
  margin-bottom: 22px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: var(--white);

  text-wrap: balance;
}


.shop-subscription-cta-inner h2 span {
  display: block;

  color: var(--gold-light);
}


.shop-subscription-cta-inner > p {
  max-width: 560px;

  margin: 0 auto;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.96rem;
  line-height: 1.8;
}


.shop-subscription-cta-inner .btn {
  margin-top: 30px;
}


/* Mobile */

@media (max-width: 700px) {

  .shop-subscription-cta {
    padding: 80px 0;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .shop-subscription-cta-inner .btn {
    width: 100%;
  }
}


/* =========================================================
   GIFTS HERO
========================================================== */

.gifts-hero {
  padding: 80px 0 95px;
  background: var(--paper);
}


.gifts-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 75px;
}


.gifts-hero-copy {
  padding: 35px 0;
}


.gifts-hero-copy .eyebrow {
  margin-bottom: 22px;
}


.gifts-hero-copy h1 {
  max-width: 650px;
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


.gifts-hero-copy h1 span {
  display: block;
  color: var(--brown-light);
}


.gifts-hero-copy > p {
  max-width: 540px;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}


.gifts-hero-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}


.gifts-hero-meta {
  margin-top: 36px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.gifts-hero-meta span {
  display: flex;
  align-items: center;
}


.gifts-hero-meta span:not(:last-child)::after {
  content: "•";

  margin: 0 12px;

  color: var(--gold);
}


/* Image */

.gifts-hero-image {
  position: relative;

  min-height: 570px;

  overflow: hidden;

  border-radius: 4px;
}


.gifts-hero-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


.gifts-hero-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(10, 7, 5, 0.01),
      rgba(10, 7, 5, 0.12)
    );

  pointer-events: none;
}


/* Tablet */

@media (max-width: 950px) {

  .gifts-hero {
    padding: 70px 0 80px;
  }

  .gifts-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gifts-hero-copy {
    padding: 0;
  }

  .gifts-hero-copy h1 {
    max-width: 720px;
  }

  .gifts-hero-image {
    min-height: 500px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .gifts-hero {
    padding: 60px 0 70px;
  }

  .gifts-hero-grid {
    gap: 42px;
  }

  .gifts-hero-copy h1 {
    max-width: 100%;
  }

  .gifts-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .gifts-hero-actions .btn {
    width: 100%;
  }

  .gifts-hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .gifts-hero-meta span:not(:last-child)::after {
    display: none;
  }

  .gifts-hero-image {
    min-height: 420px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .gifts-hero-image {
    min-height: 350px;
  }
}


/* =========================================================
   GIFT OPTIONS
========================================================== */

.gift-options {
  padding: 115px 0;
  background: var(--cream);
}


.gift-options-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 80px;
}


/* Gift builder */

.gift-builder h2 {
  max-width: 620px;
  margin-bottom: 22px;

  font-size: clamp(2.9rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;

  text-wrap: balance;
}


.gift-builder h2 span {
  display: block;
  color: var(--brown-light);
}


.gift-builder > p {
  max-width: 540px;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.8;
}


.gift-builder-form {
  margin-top: 38px;

  display: grid;
  gap: 22px;
}


.gift-field {
  display: grid;
  gap: 9px;
}


.gift-field label {
  color: var(--text);

  font-size: 0.8rem;
  font-weight: 800;
}


.gift-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}


.gift-field select:focus {
  outline: none;
  border-color: var(--gold);
}


.gift-builder-form .btn {
  width: fit-content;

  margin-top: 6px;
}

.gift-checkout-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px 20px;
  background: rgba(171, 128, 74, 0.08);
  border: 1px solid rgba(171, 128, 74, 0.2);
  border-radius: 4px;
}


.gift-checkout-note-icon {
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 1rem;
}


.gift-checkout-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}


.gift-checkout-note strong {
  color: var(--text);
}


.gift-renewal-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}


/* Gift benefits */

.gift-benefits {
  padding: 42px;

  background: var(--espresso);
  color: var(--white);

  border-radius: 4px;
}


.gift-benefits .eyebrow {
  color: var(--gold-light);
}


.gift-benefits h3 {
  margin-bottom: 20px;

  font-family: var(--serif);

  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.035em;

  color: var(--white);
}


.gift-benefits > p {
  max-width: 470px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.94rem;
  line-height: 1.8;
}


.gift-benefit-list {
  margin-top: 30px;

  display: grid;
  gap: 14px;
}


.gift-benefit-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.86rem;
  line-height: 1.6;
}


.gift-benefit-list span {
  color: var(--gold-light);

  font-weight: 800;
}


/* Tablet */

@media (max-width: 950px) {

  .gift-options {
    padding: 95px 0;
  }

  .gift-options-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gift-builder {
    max-width: 680px;
  }

  .gift-benefits {
    max-width: 680px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .gift-options {
    padding: 80px 0;
  }

  .gift-benefits {
    padding: 32px;
  }

  .gift-builder-form .btn {
    width: 100%;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .gift-benefits {
    padding: 26px;
  }

  .gift-benefits h3 {
    font-size: 2.35rem;
  }
}


/* =========================================================
   FAQ HERO
========================================================== */

.faq-hero {
  padding: 115px 0 125px;

  background: var(--espresso);
  color: var(--white);
}


.faq-hero-inner {
  max-width: 820px;
}


.faq-hero .eyebrow {
  margin-bottom: 22px;
}


.faq-hero h1 {
  max-width: 800px;
  margin-bottom: 26px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  color: var(--white);

  text-wrap: balance;
}


.faq-hero h1 span {
  display: block;

  color: var(--gold-light);
}


.faq-hero p {
  max-width: 580px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 1rem;
  line-height: 1.8;
}


.faq-hero .btn {
  margin-top: 32px;
}


/* Mobile */

@media (max-width: 700px) {

  .faq-hero {
    padding: 85px 0 95px;
  }

  .faq-hero h1 {
    max-width: 100%;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .faq-hero .btn {
    width: 100%;
  }
}

/* Very small mobile */

@media (max-width: 360px) {

  .faq-hero h1 {
    font-size: 3.9rem;
  }

}


/* =========================================================
   FAQS
========================================================== */

.faq-section {
  padding: 110px 0 120px;
  background: var(--paper);
}


.faq-container {
  max-width: 980px;
}


.faq-item {
  border-top: 1px solid var(--line);
}


.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}


.faq-item summary {
  position: relative;

  padding: 30px 52px 30px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  list-style: none;

  color: var(--text);

  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;

  cursor: pointer;
}


.faq-item summary::-webkit-details-marker {
  display: none;
}


.faq-item summary span {
  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  color: var(--gold);

  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 400;

  transition: transform 0.25s ease;
}


.faq-item[open] summary span {
  transform: translateY(-50%) rotate(45deg);
}


.faq-answer {
  max-width: 820px;

  padding: 0 0 34px;
}


.faq-answer p,
.faq-answer li {
  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.8;
}


.faq-answer p + p {
  margin-top: 15px;
}


.faq-answer ul,
.faq-answer ol {
  margin: 18px 0;

  padding-left: 22px;

  display: grid;
  gap: 10px;
}


.faq-answer strong {
  color: var(--text);
}


/* Mobile */

@media (max-width: 700px) {

  .faq-section {
    padding: 80px 0 90px;
  }

  .faq-item summary {
    padding: 24px 42px 24px 0;

    font-size: 1.25rem;
  }

  .faq-answer {
    padding-bottom: 28px;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .faq-item summary {
    font-size: 1.15rem;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.9rem;
  }
}


/* =========================================================
   CONTACT
========================================================== */

.contact-section {
  padding: 115px 0 125px;
  background: var(--paper);
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 95px;
}


/* Copy */

.contact-copy {
  max-width: 540px;
}


.contact-copy h1 {
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


.contact-copy h1 span {
  display: block;
  color: var(--brown-light);
}


.contact-copy > p {
  max-width: 500px;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.8;
}


.contact-email {
  margin-top: 40px;

  padding-top: 25px;

  border-top: 1px solid var(--line);

  display: grid;
  gap: 7px;
}


.contact-email span {
  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.contact-email a {
  width: fit-content;

  color: var(--text);

  font-size: 0.95rem;
  font-weight: 700;

  border-bottom: 1px solid var(--line);
}


/* Form */

.contact-form {
  padding: 42px;

  display: grid;
  gap: 22px;

  background: var(--cream);

  border-radius: 4px;
}


.contact-field {
  display: grid;
  gap: 9px;
}


.contact-field label {
  color: var(--text);

  font-size: 0.8rem;
  font-weight: 800;
}


.contact-field input,
.contact-field textarea {
  width: 100%;

  padding: 16px;

  background: var(--paper);

  border: 1px solid var(--line);
  border-radius: 4px;

  color: var(--text);

  font: inherit;
  font-size: 0.9rem;
}


.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}


.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}


.contact-form .btn {
  width: fit-content;

  margin-top: 4px;
}


.hidden {
  display: none;
}


/* Tablet */

@media (max-width: 950px) {

  .contact-section {
    padding: 90px 0 100px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-copy {
    max-width: 680px;
  }

  .contact-form {
    max-width: 680px;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .contact-section {
    padding: 75px 0 85px;
  }

  .contact-copy h1 {
    max-width: 100%;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form .btn {
    width: 100%;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .contact-form {
    padding: 24px;
  }
}


/* =========================================================
   REFER A FRIEND
========================================================== */

.referral-section {
  padding: 130px 0 140px;
  background: var(--paper);
}


.referral-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}


.referral-inner h1 {
  margin-bottom: 25px;

  font-size: clamp(4.4rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


.referral-inner h1 span {
  display: block;
  color: var(--brown-light);
}


.referral-inner > p {
  max-width: 560px;
  margin: 0 auto;

  color: var(--muted);

  font-size: 0.96rem;
  line-height: 1.8;
}


.referral-inner .btn {
  margin-top: 32px;
}


@media (max-width: 700px) {

  .referral-section {
    padding: 90px 0 100px;
  }

  .referral-inner h1 {
    max-width: 100%;
  }
}


@media (max-width: 470px) {

  .referral-inner .btn {
    width: 100%;
  }
}


/* =========================================================
   FOOTER
========================================================== */

.site-footer {
  background: #120e0b;
  color: var(--white);
}


.footer-top {
  padding: 80px 0 65px;

  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);

  gap: 70px;
}


.footer-brand img {
  width: 105px;

  margin-bottom: 20px;
}


.footer-brand p {
  max-width: 270px;

  color: rgba(255, 255, 255, 0.54);

  font-size: 0.78rem;
  line-height: 1.7;
}


.footer-column {
  display: flex;
  flex-direction: column;

  gap: 10px;
}


.footer-column h3 {
  margin-bottom: 9px;

  font-family: var(--sans);

  color: var(--gold-light);

  font-size: 0.67rem;
  font-weight: 700;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.footer-column a {
  color: rgba(255, 255, 255, 0.63);

  font-size: 0.77rem;

  transition: color 0.2s ease;
}


.footer-column a:hover {
  color: var(--white);
}


.footer-bottom {
  min-height: 66px;

  display: flex;
  align-items: center;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.68rem;
}


/* Tablet */

@media (max-width: 950px) {

  .footer-top {
    grid-template-columns: repeat(3, 1fr);

    gap: 50px 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* Small mobile */

@media (max-width: 470px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 22px 0;
  }
}


/* =========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 950px) {

  .gift-grid,
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }


  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 0;
  }


  .benefit {
    padding: 0 30px;
  }


  .benefit:nth-child(2) {
    border-right: 0;
  }


  .benefit:nth-child(3) {
    padding-left: 0;
  }
}


@media (max-width: 700px) {

  .container {
    width: min(92%, 560px);
  }


  .shop-section,
  .reviews-section,
  .gift-promo {
    padding: 80px 0;
  }


  .section-top {
    align-items: flex-start;
    flex-direction: column;
  }


  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }


  .benefit,
  .benefit:first-child,
  .benefit:nth-child(3) {
    padding: 25px 0;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }


  .benefit:last-child {
    border-bottom: 0;
  }


  .purpose-section {
    padding: 90px 0;
  }


  .purpose-inner {
    margin-left: auto;
  }


  .gift-card {
    min-height: 360px;
    padding: 28px;
  }


  .newsletter-form {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }


  .newsletter-form input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }


  .newsletter-form button {
    padding: 17px 0;
    text-align: left;
  }
}


/* Accessibility */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}


/* Respect reduced-motion preferences */

@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;
  }
}