
:root {
  --cream: #f7f0e3;
  --paper: #fffaf1;
  --coffee: #2d1e16;
  --brown: #5b3927;
  --green: #334b39;
  --rust: #a94f2e;
  --gold: #c69a5b;
  --text: #302820;
  --muted: #eee6d7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,250,241,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,30,22,.08);
}
.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coffee); color: var(--cream);
  display: grid; place-items: center; font-weight: 800; letter-spacing: -1px;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 17px; }
.brand-copy small { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--rust); }
.nav-cta { background: var(--coffee); color: white !important; padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; }

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(21,19,15,.24), rgba(21,19,15,.42)),
    url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=2000&q=88") center/cover;
  color: white;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,19,14,.72) 0%, rgba(22,19,14,.28) 58%, rgba(22,19,14,.08) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; margin-left: max(20px, calc((100vw - 1180px)/2)); width: calc(100% - 40px); }
.eyebrow { text-transform: uppercase; letter-spacing: 2.4px; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
.eyebrow.dark { color: var(--rust); }
.eyebrow.light { color: #f2c889; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(52px, 7vw, 92px); max-width: 820px; margin-bottom: 24px; letter-spacing: -2px; }
h2 { font-size: clamp(38px, 5vw, 62px); letter-spacing: -1.4px; margin-bottom: 24px; }
h3 { font-size: 30px; }
.hero-copy { font-size: 20px; max-width: 670px; color: rgba(255,255,255,.9); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 15px 23px; font-size: 14px;
  font-weight: 700; border: 1px solid transparent; cursor: pointer;
}
.button-primary { background: var(--rust); color: white; }
.button-primary:hover { background: #8d3f25; }
.button-light { background: var(--cream); color: var(--coffee); }
.button-outline { border-color: rgba(255,255,255,.7); color: white; }
.hero-note {
  position: absolute; z-index: 2; right: 28px; bottom: 26px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.8px;
  writing-mode: vertical-rl;
}

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.intro-text { font-size: 18px; max-width: 650px; }
.intro-text p:first-child { margin-top: 4px; }
.muted { background: var(--muted); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading > p:last-child { font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--paper); overflow: hidden; border-radius: 3px; box-shadow: 0 10px 30px rgba(39,27,18,.05); }
.card-image { height: 300px; background-size: cover; background-position: center; }
.card-image-1 { background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1200&q=85"); }
.card-image-2 { background-image: url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1200&q=85"); }
.card-image-3 { background-image: url("https://images.unsplash.com/photo-1511537190424-bbbab87ac5eb?auto=format&fit=crop&w=1200&q=85"); }
.card-body { padding: 28px; }
.card-body > span { color: var(--rust); font-size: 12px; font-weight: 700; }
.card-body h3 { margin: 8px 0 10px; }
.card-body a { font-weight: 700; color: var(--rust); }

.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; max-width: none; align-items: end; }
.product { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--cream); }
.product-art { background: var(--green); display: grid; place-items: center; padding: 60px; }
.bag {
  width: min(340px, 86%);
  aspect-ratio: .72;
  background: #e6d2aa;
  border-radius: 5px 5px 16px 16px;
  padding: 42px 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: var(--coffee); transform: rotate(-2deg);
}
.bag-small { font-size: 11px; letter-spacing: 2px; border-bottom: 1px solid rgba(45,30,22,.25); padding-bottom: 12px; width: 100%; }
.bag strong { font-family: "Playfair Display", serif; font-size: 40px; margin-top: 54px; }
.bag-variety { letter-spacing: 4px; font-size: 12px; margin-top: 10px; }
.bear { font-size: 48px; margin-top: auto; }
.product-info { padding: 70px; align-self: center; }
.product-info h3 { font-size: 48px; margin-bottom: 18px; }
.product-description { font-size: 18px; }
.coffee-details { margin: 30px 0; border-top: 1px solid rgba(45,30,22,.14); }
.coffee-details div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(45,30,22,.14); }
.coffee-details dt { font-weight: 700; }
.coffee-details dd { margin: 0; text-align: right; }
.product-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { color: var(--rust); font-weight: 700; }

.story { background: var(--coffee); color: white; padding: 0; }
.story-grid { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; }
.story-photo {
  min-height: 650px;
  background:
    linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.2)),
    url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1400&q=86") center/cover;
  position: relative;
}
.story-badge {
  position: absolute; left: 40px; bottom: 40px; background: var(--rust);
  width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center;
  align-content: center; text-align: center;
}
.story-badge strong { font-family: "Playfair Display", serif; font-size: 44px; line-height: 1; }
.story-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }
.story-copy { padding: 95px 9vw; align-self: center; }
.story-copy p { color: rgba(255,255,255,.78); font-size: 18px; }
.story-copy .eyebrow { color: #e3b879; }

.wholesale-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: start; }
.large-copy { font-size: 20px; max-width: 650px; }
.wholesale-panel { background: var(--muted); padding: 42px; }
.wholesale-panel ul { padding-left: 20px; margin: 26px 0 32px; }
.wholesale-panel li { margin-bottom: 8px; }

.newsletter { background: var(--green); color: white; }
.newsletter-inner { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; }
.newsletter-inner h2 { margin-bottom: 14px; }
.newsletter-inner p { color: rgba(255,255,255,.78); }
.signup-form { display: flex; gap: 10px; flex-wrap: wrap; }
.signup-form input {
  flex: 1 1 260px; min-height: 50px; border: 0; border-radius: 999px;
  padding: 0 20px; font: inherit;
}
.signup-form small { width: 100%; color: rgba(255,255,255,.78); padding-left: 12px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-box { border-top: 3px solid var(--rust); }
.contact-box > div { display: grid; grid-template-columns: 120px 1fr; padding: 20px 0; border-bottom: 1px solid rgba(45,30,22,.14); }
.contact-box span { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: #79695e; }
.contact-box a { font-weight: 700; }
.placeholder-note { font-size: 12px; color: #7c6d63; margin-top: 18px; }

footer { background: #1d1510; color: rgba(255,255,255,.75); padding: 36px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-brand { color: white; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; font-size: 13px; }
footer p { font-size: 12px; text-align: center; }
.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; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--paper); padding: 22px 20px 28px; flex-direction: column;
    align-items: stretch; border-bottom: 1px solid rgba(45,30,22,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { text-align: center; }
  .intro-grid, .split-heading, .product, .story-grid, .wholesale-grid,
  .newsletter-inner, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid, .wholesale-grid, .newsletter-inner, .contact-grid { gap: 38px; }
  .cards { grid-template-columns: 1fr; }
  .card-image { height: 360px; }
  .product-info { padding: 45px 32px; }
  .story-photo { min-height: 500px; }
  .story-copy { padding: 70px 30px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .hero { min-height: 650px; }
  h1 { font-size: 48px; }
  h2 { font-size: 40px; }
  .hero-note { display: none; }
  .card-image { height: 250px; }
  .product-art { padding: 42px 20px; }
  .product-info h3 { font-size: 38px; }
  .wholesale-panel { padding: 30px 24px; }
  .contact-box > div { grid-template-columns: 1fr; gap: 5px; }
}


/* Coffee Bear GT brand integration */
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(198,154,91,.45);
  background: white;
}
.footer-logo { width: 58px; height: 58px; }
.brand-mark { display: none; }

.product-art {
  position: relative;
  overflow: hidden;
}
.score-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #2f3032;
  border: 4px solid #d4b47d;
  color: #fffaf1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  text-align: center;
}
.score-number {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}
.score-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.6px;
  margin-top: 7px;
}
.score-sub {
  color: #e1c38f;
  font-size: 11px;
  margin-top: 2px;
}
.branded-bag {
  background: linear-gradient(180deg, #f5efe5 0%, #dfcda9 100%);
}
.branded-bag img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 12px auto 22px;
  border: 2px solid rgba(45,30,22,.12);
}
.branded-bag strong {
  font-size: 27px;
  margin-top: 10px;
}
.bag-score {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #7a4d27;
}
.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 10px;
}
.flavor-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eee6d7;
  border: 1px solid rgba(45,30,22,.09);
  font-size: 13px;
  font-weight: 700;
}
.score-breakdown {
  margin: 28px 0;
  padding: 22px;
  background: rgba(238,230,215,.6);
  border-left: 4px solid #c69a5b;
}
.score-breakdown h4 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.score-grid span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(45,30,22,.1);
  font-size: 13px;
}
.button-certificate {
  background: transparent;
  color: var(--coffee);
  border-color: var(--coffee);
}
.button-certificate:hover {
  background: var(--coffee);
  color: white;
}
.certificate-note {
  font-size: 11px;
  color: #77675d;
  margin-top: 12px;
}
@media (max-width: 560px) {
  .brand-logo { width: 46px; height: 46px; }
  .brand-copy small { display: none; }
  .score-badge {
    width: 112px; height: 112px;
    left: 16px; top: 16px;
  }
  .score-number { font-size: 31px; }
  .score-grid { grid-template-columns: 1fr; }
}
/* Merchandise Section */

.merchandise {
  background-color: #fffaf1;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.merch-card {
  background-color: #eee6d7;
  padding: 30px;
  text-align: center;
}

.merch-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.merch-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.merch-card p {
  font-size: 15px;
}
@media (max-width: 900px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
}
/* Language Switcher */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.language-switcher a {
  color: #7c6d63;
}

.language-switcher a:hover {
  color: var(--rust);
}

.language-switcher .active-language {
  color: var(--rust);
}

.language-switcher span {
  color: #b7a99d;
}
/* =========================
   ABOUT US SECTION
   ========================= */

.about-section {
  width: 100%;
  background: #fffaf1;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.about-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background-color: #1f1a17;
  inset: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(15, 20, 16, 0.80) 0%,
    rgba(15, 20, 16, 0.55) 25%,
    rgba(15, 20, 16, 0.12) 55%,
    rgba(15, 20, 16, 0.02) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;

  max-width: 520px;

  padding-top: 180px;
  margin-left: max(40px, calc((100vw - 1180px) / 2));

  color: white;
}

.about-hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1;
  margin-bottom: 24px;
}

.about-line {
  width: 62px;
  height: 4px;
  background-color: #7aa342;
  margin-bottom: 28px;
}

.about-hero-content p {
  font-size: 25px;
  line-height: 1.45;
  font-weight: 600;
  max-width: 470px;
  color: white;
}


/* MORE THAN COFFEE */

.about-more {
  background-color: #fffaf1;
  padding: 48px 0 60px;
}

.about-more-content {
  max-width: 850px;
}

.about-more-content h2 {
  color: #38582f;
  font-size: 40px;
  margin-bottom: 18px;
}

.about-more-content p {
  font-size: 19px;
  line-height: 1.65;
  margin: 0;
}


/* MOBILE */

@media (max-width: 900px) {

  .about-hero {
    min-height: 600px;
  }

  .about-hero-content {
    padding-top: 180px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .about-overlay {
    background: rgba(15, 20, 16, 0.58);
  }

  .about-hero-content p {
    font-size: 20px;
  }

}


@media (max-width: 560px) {

  .about-hero {
    min-height: 540px;
  }

  .about-hero-content {
    padding-top: 150px;
    margin-left: 22px;
    margin-right: 22px;
  }

  .about-hero-content h2 {
    font-size: 52px;
  }

  .about-more {
    padding: 38px 0 48px;
  }

  .about-more-content h2 {
    font-size: 34px;
  }

}