/* SIPCRAFT — award-style drink landing */
:root {
  --cream: #fef7ef;
  --cocoa: #1e120c;
  --blue: #3a7ca5;
  --brown: #8b5a2b;
  --black: #111111;
  --coral: #e07a5f;
  --cream-dim: #f3e8d8;
  --cocoa-soft: #3a2a22;
  --text-muted: rgba(30, 18, 12, 0.62);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--cocoa);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(254, 247, 239, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 18, 12, 0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--cocoa);
}

.nav__links {
  display: none;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav__links a {
  opacity: 0.72;
  transition: opacity 0.25s var(--ease);
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--cream);
  transition: transform 0.3s var(--ease), background 0.25s;
}

.nav__cta:hover {
  transform: scale(1.04);
  background: var(--black);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn--solid {
  background: var(--cocoa);
  color: var(--cream);
}

.btn--solid:hover {
  background: var(--black);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(254, 247, 239, 0.45);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(254, 247, 239, 0.08);
}

.nutrition .btn--ghost,
.benefits .btn--ghost,
.cta .btn--ghost {
  color: var(--cocoa);
  border-color: rgba(30, 18, 12, 0.2);
}

.cta .btn--ghost:hover {
  border-color: var(--cocoa);
  background: rgba(30, 18, 12, 0.05);
}

.btn--lg {
  padding: 1.15rem 1.9rem;
  font-size: 1rem;
}

/* —— HERO —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  color: var(--cream);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.92);
  transform: scale(1.08);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(30, 18, 12, 0.35) 0%, rgba(30, 18, 12, 0.78) 70%, rgba(17, 17, 17, 0.92) 100%),
    linear-gradient(180deg, rgba(30, 18, 12, 0.45) 0%, transparent 40%, rgba(30, 18, 12, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 72rem;
}

.hero__eyebrow {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.hero__title {
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero__wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 12rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--cream);
  text-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.25);
}

.hero__claim {
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 28rem;
  margin: 0 auto 2.25rem;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* —— MESSAGE —— */
.message {
  background: var(--cocoa);
  color: var(--cream);
}

.message__pin {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
}

.message__lines {
  max-width: 58rem;
  width: 100%;
}

.msg-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 5.25rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  opacity: 0.12;
  will-change: opacity;
}

.msg-line--accent {
  color: var(--coral);
}

/* —— FLAVORS horizontal —— */
.flavors {
  background: var(--cream);
  color: var(--cocoa);
}

.flavors__pin {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 1rem) 0 2rem;
  overflow: hidden;
}

.flavors__head {
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.flavors__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  max-width: 14ch;
}

.flavors__sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.flavors__track-wrap {
  overflow: hidden;
  width: 100%;
}

.flavors__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-left: clamp(1.25rem, 5vw, 4rem);
  padding-right: clamp(1.25rem, 5vw, 4rem);
  width: max-content;
  will-change: transform;
}

.flavor-card {
  flex: 0 0 auto;
  width: min(78vw, 22rem);
  background: #fff;
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  border: 1px solid rgba(30, 18, 12, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(30, 18, 12, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease);
}

.flavor-card:hover {
  transform: translateY(-6px);
}

.flavor-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.flavor-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 18, 12, 0.25), transparent 45%);
  pointer-events: none;
}

.flavor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.flavor-card:hover .flavor-card__media img {
  transform: scale(1.06);
}

.flavor-card[data-accent="blue"] .flavor-card__tag { color: var(--blue); }
.flavor-card[data-accent="brown"] .flavor-card__tag { color: var(--brown); }
.flavor-card[data-accent="black"] .flavor-card__tag { color: var(--black); }
.flavor-card[data-accent="coral"] .flavor-card__tag { color: var(--coral); }

.flavor-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.flavor-card__tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.flavor-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.flavor-card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.flavor-card__meta {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cocoa);
}

.flavor-card--cta {
  background: var(--cocoa);
  color: var(--cream);
  border-color: transparent;
  justify-content: center;
  min-height: 100%;
}

.flavor-card__cta-inner {
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  min-height: 28rem;
}

.flavor-card__cta-inner h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.flavor-card__cta-inner p {
  opacity: 0.75;
  font-size: 1rem;
}

.flavor-card--cta .btn--solid {
  background: var(--cream);
  color: var(--cocoa);
  align-self: flex-start;
  margin-top: 0.75rem;
}

.flavor-card--cta .btn--solid:hover {
  background: #fff;
}

/* —— NUTRITION —— */
.nutrition {
  padding: clamp(6rem, 14vw, 12rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream-dim);
}

.nutrition__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.nutrition__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.nutrition__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 14ch;
}

.nutrition__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(30, 18, 12, 0.1);
  border: 1px solid rgba(30, 18, 12, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 700px) {
  .nutrition__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .nutrition__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.macro {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 14rem;
}

.macro__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cocoa);
  display: inline;
}

.macro__unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coral);
  margin-left: 0.15rem;
}

.macro__label {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.macro p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.45;
}

/* —— BENEFITS sticky —— */
.benefits {
  padding: clamp(5rem, 12vw, 10rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream);
}

.benefits__layout {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .benefits__layout {
    grid-template-columns: minmax(16rem, 0.9fr) 1.2fr;
    gap: 4rem;
    align-items: start;
  }

  .benefits__sticky {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
}

.benefits__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 32ch;
  line-height: 1.55;
}

.benefits__stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.benefit {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 18, 12, 0.07);
  padding: 1.75rem;
  box-shadow: 0 1rem 2.5rem rgba(30, 18, 12, 0.04);
}

.benefit__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--cocoa);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.benefit > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  max-width: 42ch;
}

.benefit__img {
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: contrast(1.05) saturate(0.95);
}

.benefit:hover .benefit__img img {
  transform: scale(1.05);
}

/* —— TESTIMONIALS marquee —— */
.voices {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--cocoa);
  color: var(--cream);
  overflow: hidden;
}

.voices__head {
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}

.voices__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quote-card {
  flex: 0 0 auto;
  width: min(85vw, 22rem);
  background: rgba(254, 247, 239, 0.06);
  border: 1px solid rgba(254, 247, 239, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.quote-card__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--coral);
  margin-bottom: 1rem;
}

.quote-card p {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.quote-card footer {
  font-size: 0.85rem;
  opacity: 0.65;
  font-weight: 500;
}

/* —— CTA —— */
.cta {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--cream);
}

.cta__panel {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--cocoa);
  color: var(--cream);
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
}

@media (min-width: 900px) {
  .cta__panel {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.cta__copy {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 1rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.cta__text {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 36ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cta .btn--solid {
  background: var(--cream);
  color: var(--cocoa);
}

.cta .btn--solid:hover {
  background: #fff;
}

.cta .btn--ghost {
  color: var(--cream);
  border-color: rgba(254, 247, 239, 0.35);
}

.cta .btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(254, 247, 239, 0.08);
}

.cta__visual {
  min-height: 20rem;
  position: relative;
}

.cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
  filter: contrast(1.05);
}

/* —— FOOTER —— */
.footer {
  background: var(--black);
  color: rgba(254, 247, 239, 0.85);
  padding: 4rem clamp(1.25rem, 5vw, 4rem) 2rem;
}

.footer__top {
  max-width: 72rem;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__cols h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--coral);
}

.footer__cols a {
  display: block;
  font-size: 0.92rem;
  opacity: 0.7;
  margin-bottom: 0.55rem;
  transition: opacity 0.2s;
}

.footer__cols a:hover {
  opacity: 1;
}

.footer__bottom {
  max-width: 72rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(254, 247, 239, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
