:root {
  --bg: #f1efe9;
  --ink: #11110f;
  --muted: #74736d;
  --line: rgba(17,17,15,.18);
  --dark: #11110f;
  --light: #f4f2ec;
  --gold: #c8a46e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  mix-blend-mode: difference;
  color: white;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .18em;
}

.nav { display: flex; gap: 28px; font-size: 13px; }
.nav a { opacity: .78; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 130px 32px 38px;
}
.hero-inner { width: 100%; }

.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.visit h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
  margin: 0;
}

.hero h1 { font-size: clamp(72px, 12vw, 190px); max-width: 1100px; }

.hero-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .08em;
}

.arrow-link { opacity: .65; }

.section { padding: 140px 32px; }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: 100px;
}

.section-heading h2,
.visit h2 { font-size: clamp(52px, 7vw, 112px); }

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

.coffee-card {
  min-height: 330px;
  padding: 24px 24px 26px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coffee-card + .coffee-card { padding-left: 24px; }
.coffee-card:last-child { border-right: 0; }
.coffee-card span { font-size: 11px; color: var(--muted); }

.coffee-card h3 {
  margin: auto 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.coffee-card p {
  margin: 0;
  max-width: 260px;
  color: var(--muted);
  line-height: 1.5;
}

/* CANOPE, UNFILTERED — Playground Slider */
.statement {
  background: var(--dark);
  color: var(--light);
}

.unfiltered-playground {
  min-height: 92svh;
  display: block;
  padding: 0;
  overflow: hidden;
}

.unfiltered-shell {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 28px;
}

.unfiltered-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(244,242,236,.16);
}

.unfiltered-top .eyebrow { margin-bottom: 0; }

.playground-label {
  margin: 0;
  font-size: 10px;
  letter-spacing: .18em;
  color: #77756f;
}

.unfiltered-stage {
  position: relative;
  flex: 1;
  min-height: 560px;
}

.unfiltered-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition:
    opacity .55s ease,
    transform .7s cubic-bezier(.2,.75,.25,1),
    visibility .55s;
  pointer-events: none;
}

.unfiltered-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.unfiltered-slide h2 {
  margin: 0;
  max-width: 1230px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 9vw, 148px);
  line-height: .91;
  letter-spacing: -.058em;
  font-weight: 400;
}

.unfiltered-slide p {
  margin: 38px 0 0;
  max-width: 430px;
  color: #aaa79f;
  line-height: 1.5;
  font-size: 14px;
}

.unfiltered-controls {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  align-items: center;
  min-height: 100px;
  border-top: 1px solid rgba(244,242,236,.16);
}

.logo-control {
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s ease, transform .35s cubic-bezier(.2,.75,.25,1);
}

.logo-control img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.9);
}

.logo-control.prev {
  justify-self: start;
  transform: rotate(-90deg) scale(.78);
}

.logo-control.next {
  justify-self: end;
  transform: rotate(90deg) scale(.78);
}

.logo-control:hover { opacity: 1; }

.logo-control.prev:hover {
  transform: translateX(-4px) rotate(-90deg) scale(.84);
}

.logo-control.next:hover {
  transform: translateX(4px) rotate(90deg) scale(.84);
}

.logo-control:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.unfiltered-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slide-count {
  min-width: 42px;
  font-size: 10px;
  letter-spacing: .18em;
  color: #aaa79f;
}

.progress-rail {
  position: relative;
  width: min(280px, 34vw);
  height: 1px;
  background: rgba(244,242,236,.14);
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16.666%;
  background: var(--gold);
  transition: width .45s cubic-bezier(.2,.75,.25,1);
}

.progress-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.progress-dot {
  width: 4px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #77746d;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.progress-dot.is-active {
  background: var(--light);
  transform: scale(1.5);
}

.product-placeholder {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.product-placeholder h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.product-placeholder > p {
  color: var(--muted);
  max-width: 430px;
  line-height: 1.6;
}

.visit {
  background: #dedbd2;
  padding: 140px 32px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.visit-details {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.visit-details p { margin: 0; color: var(--muted); }

.visit-details a {
  margin-top: 14px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

footer {
  background: var(--dark);
  color: var(--light);
  padding: 34px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 11px;
}

footer p { margin: 0; }
footer p:last-child { text-align: right; color: #99978f; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .site-header { padding: 20px; }
  .nav { gap: 14px; }
  .nav a:nth-child(2) { display: none; }

  .hero { padding: 120px 20px 24px; }
  .hero h1 { font-size: clamp(66px, 22vw, 108px); }
  .hero-bottom { margin-top: 50px; }

  .section { padding: 100px 20px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .section-heading h2,
  .visit h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

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

  .coffee-card,
  .coffee-card + .coffee-card {
    min-height: 240px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .unfiltered-shell {
    min-height: 82svh;
    padding: 28px 20px 20px;
  }

  .unfiltered-stage { min-height: 500px; }

  .unfiltered-slide h2 {
    font-size: clamp(52px, 16vw, 88px);
  }

  .unfiltered-slide p { margin-top: 26px; }

  .unfiltered-controls {
    grid-template-columns: 62px 1fr 62px;
    min-height: 84px;
  }

  .logo-control {
    width: 58px;
    height: 58px;
  }

  .progress-rail { width: min(150px, 28vw); }
  .progress-dots { display: none; }

  .product-placeholder { grid-template-columns: 1fr; }

  .visit { padding: 100px 20px; }
  .visit-grid { grid-template-columns: 1fr; gap: 70px; }

  footer {
    padding: 30px 20px;
    grid-template-columns: 1fr 1fr;
  }

  footer p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .unfiltered-slide { transition: none; }
}
