
:root {
  --burgundy: #4a1718;
  --burgundy-deep: #2e0d0f;
  --aqua: #66d0d4;
  --orange: #ee8136;
  --cream: #f4f0e8;
  --ink: #261d1a;
  --white: #fffdf9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 108px;
  padding: 18px clamp(24px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  width: 260px;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .brand-mark {
  width: 82px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 0 16px 0 16px;
}

.brand .brand-wordmark {
  width: 166px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  width: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-tagline {
  margin-top: 3px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .015em;
  white-space: nowrap;
}

nav { display: flex; gap: 34px; }

.nav-link {
  position: relative;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.hero {
  position: relative;
  min-height: 790px;
  padding: 165px clamp(24px, 6.8vw, 104px) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  overflow: hidden;
  background: var(--burgundy);
  color: var(--white);
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0 0 0 auto;
  width: 43%;
  opacity: .34;
  background-image: url("assets/coffee-texture.png");
  background-position: center;
  background-size: cover;
  filter: contrast(1.18) saturate(1.08);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.4) .6px, transparent .6px);
  background-size: 5px 5px;
}

.hero-copy { position: relative; z-index: 3; max-width: 720px; }

.eyebrow {
  margin: 0 0 24px;
  color: var(--aqua);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.dark { color: #16898f; }

.hero h1,
.contact-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}

.hero h1 em,
.contact-title h1 em {
  color: var(--orange);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 38px 0 0;
  color: rgba(255,255,255,.79);
  font-size: 1.14rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--aqua); color: var(--burgundy-deep); }
.button.light { background: var(--cream); color: var(--burgundy); }

.text-link {
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 8px 0;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.text-link span { color: var(--orange); }

.hero-product {
  position: relative;
  z-index: 3;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-disc {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 40px 80px rgba(15,2,2,.32);
}

.product-can {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  filter: drop-shadow(0 28px 30px rgba(12,0,0,.28));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.product-note {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 38px;
  width: 180px;
  padding: 15px 18px;
  background: var(--cream);
  color: var(--burgundy);
}

.product-note span {
  display: block;
  color: #16898f;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.product-note strong {
  display: block;
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.intro {
  padding: 110px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
}

.intro h2,
.story h2,
.contact-details h2,
.wholesale h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.intro-copy {
  align-self: end;
  max-width: 600px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.intro-copy .micro {
  margin-top: 26px;
  color: #736660;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8d0c3;
  border-bottom: 1px solid #d8d0c3;
}

.feature {
  min-height: 330px;
  padding: 46px clamp(28px, 4vw, 62px);
  border-right: 1px solid #d8d0c3;
}

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

.feature-number {
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.feature h3 {
  margin: 72px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.feature p {
  margin: 0;
  color: #695b55;
  line-height: 1.7;
}

.story {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.story-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.story-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-stamp {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 134px;
  height: 134px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--burgundy);
  font: 700 .85rem/1.35 Georgia, serif;
  text-align: center;
  text-transform: uppercase;
}

.story-copy {
  padding: 100px clamp(42px, 7vw, 110px);
  align-self: center;
}

.story-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 34px 0 28px;
  color: #695b55;
  font-size: 1.06rem;
  line-height: 1.75;
}

.clean-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
  list-style: none;
}

.clean-list li {
  padding: 13px 0;
  border-bottom: 1px solid #ddd4c8;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.wholesale {
  padding: 100px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  background: var(--burgundy);
  color: var(--white);
}

.wholesale > div:last-child {
  align-self: end;
  max-width: 540px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}

.wholesale .button { margin-top: 24px; }

.site-footer {
  position: relative;
  padding: 70px clamp(24px, 7vw, 110px) 90px;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 50px;
  background: var(--burgundy-deep);
  color: rgba(255,255,255,.72);
}

.footer-logo {
  width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .brand-mark {
  width: 78px;
  height: 55px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 0 15px 0 15px;
}

.footer-logo .brand-wordmark {
  width: 165px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-label {
  margin-top: 0;
  color: var(--aqua);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer > div > p:not(.footer-label) {
  display: block;
  margin: 8px 0;
  font-size: .9rem;
  line-height: 1.5;
}

.copyright {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: 22px;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
}

.contact-hero {
  position: relative;
  min-height: 610px;
  padding: 178px clamp(24px, 7vw, 110px) 80px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  background: var(--burgundy);
  color: var(--white);
}

.contact-hero::before {
  position: absolute;
  content: "";
  inset: 0 0 0 auto;
  width: 44%;
  background: var(--orange);
  opacity: .9;
}

.contact-title { position: relative; z-index: 2; max-width: 800px; }
.contact-title h1 { font-size: clamp(5rem, 9vw, 9rem); }

.contact-title > p:last-child {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-can {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(78%, 360px);
  filter: drop-shadow(0 30px 25px rgba(35,3,3,.32));
  transform: rotate(5deg);
}

.contact-grid {
  padding: 100px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
}

.contact-details h2 { font-size: clamp(2.6rem, 4vw, 4.7rem); }

.detail {
  padding: 24px 0;
  border-bottom: 1px solid #d7cec2;
}

.detail span,
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #7a6b64;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.detail a,
.detail p {
  margin: 0;
  font: 400 1.28rem/1.45 Georgia, "Times New Roman", serif;
}

.contact-form {
  padding: 48px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(63,40,31,.09);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfb4a7;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select { height: 48px; }

.contact-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #16898f; }

.submit { margin-top: 4px; }

.form-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: #7b6e68;
  font-size: .75rem;
  line-height: 1.55;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 155px;
  }
  .hero-product { min-height: 500px; }
  .hero::after { width: 100%; opacity: .09; }
  .intro, .wholesale, .story, .contact-grid { grid-template-columns: 1fr; }
  .intro { gap: 44px; }
  .features { grid-template-columns: 1fr; }
  .feature { min-height: auto; border-right: 0; border-bottom: 1px solid #d8d0c3; }
  .feature:last-child { border-bottom: 0; }
  .feature h3 { margin-top: 38px; }
  .story-image { min-height: 520px; }
  .wholesale { gap: 45px; }
  .contact-hero { grid-template-columns: 1fr .55fr; }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 164px;
    padding: 12px 18px 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .brand { width: 220px; height: 72px; gap: 7px; }
  .brand .brand-mark { width: 68px; height: 49px; border-radius: 0 12px 0 12px; }
  .brand .brand-wordmark { width: 145px; }
  .brand-copy { width: 145px; }
  .brand-tagline { margin-top: 3px; font-size: .66rem; line-height: 1.08; }
  nav {
    margin-top: 20px;
    gap: 28px;
  }
  .nav-link { font-size: .62rem; letter-spacing: .1em; }
  .hero { min-height: auto; padding: 194px 22px 66px; }
  .hero h1, .contact-title h1 { font-size: 4.15rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-product { min-height: 390px; }
  .sun-disc { width: 280px; height: 280px; }
  .product-note { right: -8px; bottom: 10px; width: 150px; }
  .intro { padding: 76px 22px; }
  .intro h2, .story h2, .wholesale h2 { font-size: 2.65rem; }
  .feature { padding: 38px 22px; }
  .story-image { min-height: 420px; }
  .story-copy { padding: 70px 22px; }
  .clean-list { grid-template-columns: 1fr; }
  .wholesale { padding: 76px 22px; }
  .site-footer { grid-template-columns: 1fr; padding: 58px 22px 88px; gap: 26px; }
  .copyright { right: 22px; }
  .contact-hero { min-height: 700px; padding: 194px 22px 48px; grid-template-columns: 1fr; }
  .contact-hero::before { top: auto; width: 100%; height: 38%; }
  .contact-can { width: 220px; margin-top: 28px; }
  .contact-grid { padding: 72px 22px; }
  .contact-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-can { animation: none; }
}

.honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(46, 13, 15, .84), rgba(46, 13, 15, .9)),
    url("assets/coffee-texture.png") center/cover;
}

.thanks-card {
  width: min(100%, 620px);
  padding: 64px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(20, 3, 3, .38);
  text-align: center;
}

.thanks-card > img {
  width: 210px;
  height: 78px;
  margin: 0 auto 34px;
  object-fit: cover;
}

.thanks-card h1 {
  margin: 0;
  color: var(--burgundy);
  font: 400 clamp(4rem, 9vw, 7rem)/.9 Georgia, "Times New Roman", serif;
  letter-spacing: -.05em;
}

.thanks-card > p:not(.eyebrow) {
  margin: 28px auto;
  max-width: 460px;
  color: #695b55;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .thanks-card { padding: 44px 24px; }
}
