:root {
  --navy: #131d32;
  --deep: #0a1020;
  --sand: #f2ddc4;
  --cream: #f7ead9;
  --orange: #e6542b;
  --bright: #ff8155;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", sans-serif;
  --script: "Pacifico", cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}
body {
  margin: 0;
  background: var(--deep);
  color: var(--sand);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
body.age-locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  cursor: pointer;
}
::selection {
  background: var(--orange);
  color: var(--cream);
}
:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 6px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--sand);
  color: var(--navy);
  z-index: 20;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1600px;
  margin: auto;
  padding: 16px 5.5%;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #f2ddc421;
}
.brand img {
  width: 80px;
  max-height: 80px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 14px;
  font-weight: 600;
}
.site-header nav a {
  position: relative;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.site-header nav a:hover:after {
  width: 100%;
}
.header-tag {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
}
.header-tag span {
  color: var(--bright);
  margin-left: 18px;
  font-size: 22px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 76% 80%,
      #df65284d 0%,
      #a24d3424 26%,
      transparent 55%
    ),
    linear-gradient(140deg, #0a1020 35%, #14192a 65%, #3c2932);
  padding: 24px 5.5% 0;
}
.hero-inner {
  max-width: 1424px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 690px;
  align-items: center;
}
.hero-copy {
  padding: 35px 0 65px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--bright);
  margin-bottom: 35px;
}
.short-rule {
  width: 32px;
  height: 1px;
  background: currentColor;
}
h1 {
  width: max-content;
  max-width: 100%;
  line-height: 0.8;
  font-weight: 800;
  margin-bottom: 46px;
}
.social {
  font-family: var(--display);
  font-size: clamp(100px, 12.7vw, 196px);
  text-transform: uppercase;
  display: block;
  letter-spacing: -0.015em;
}
.sundaze {
  font-family: var(--script);
  font-size: clamp(65px, 7.8vw, 120px);
  color: var(--orange);
  display: block;
  font-weight: 400;
  transform: rotate(-7deg);
  margin-top: -3px;
  margin-left: 24px;
  line-height: 1.1;
}
.hero-description {
  font-family: var(--display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 17px;
}
.hero-detail {
  color: #c8bfba;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 54px;
  padding: 13px 23px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-orange {
  background: var(--orange);
  color: #fff7ec;
}
.button-orange:hover {
  background: #c94320;
  transform: translateY(-2px);
}
.button span {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.hero-products {
  height: 640px;
  position: relative;
  display: grid;
  place-items: center;
}
.product-note {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-align: right;
}
.product-note em {
  font-style: normal;
  color: var(--bright);
}
.hero-product-caption {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #c3afa1;
}
.hero-bottom {
  max-width: 1424px;
  margin: auto;
  padding: 22px 0;
  border-top: 1px solid #f2ddc425;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #d1c5b9;
}
.hero-bottom a {
  display: flex;
  gap: 30px;
}
.hero-bottom a span {
  color: var(--bright);
}
.marquee {
  overflow: hidden;
  background: var(--orange);
  color: var(--deep);
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.marquee i {
  font-style: normal;
  padding: 0 30px;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.section-pad {
  padding: 100px 5.5%;
}
.flavors {
  background: var(--cream);
  color: var(--navy);
}
.section-heading {
  max-width: 1424px;
  margin: 0 auto 55px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.section-heading .eyebrow {
  color: #99502e;
  margin-bottom: 23px;
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.99;
  letter-spacing: -0.01em;
}
h2 em {
  font-family: var(--script);
  font-size: 0.7em;
  text-transform: none;
  font-weight: 400;
  color: var(--orange);
}
.section-heading > p {
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 4px;
  max-width: 360px;
  color: #655c53;
}
.maine {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  background: var(--navy);
  min-height: 590px;
}
.maine-photo {
  position: relative;
  overflow: hidden;
}
.maine-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  min-height: 520px;
}
.photo-caption {
  position: absolute;
  bottom: 30px;
  left: 35px;
  color: var(--cream);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 14px;
}
.maine-copy {
  padding: 85px clamp(30px, 6vw, 110px);
  align-self: center;
}
.maine-copy .eyebrow {
  color: var(--bright);
  margin-bottom: 28px;
}
.maine-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(50px, 5vw, 74px);
}
.maine-copy p:not(.eyebrow) {
  max-width: 390px;
  color: #c9c3bc;
  margin-bottom: 20px;
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  gap: 24px;
  border-bottom: 1px solid #f2ddc44d;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}
.text-link span {
  color: var(--bright);
}
.ordering-note {
  padding: 35px 5.5%;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #f2ddc422;
  background: #0e1626;
}
.note-mark {
  font-size: 38px;
  color: var(--orange);
}
.ordering-note p {
  font-size: 14px;
  color: #bdb6af;
  max-width: 670px;
}
.ordering-note strong {
  color: var(--sand);
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.ordering-note > a {
  font-size: 14px;
  margin-left: auto;
  white-space: nowrap;
}
.ordering-note > a span {
  margin-left: 20px;
  color: var(--bright);
}
.site-footer {
  padding: 60px 5.5% 26px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 45px;
  padding-bottom: 48px;
}
.footer-top img {
  width: 90px;
  max-height: 90px;
  object-fit: contain;
}
.footer-top p {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.15;
}
.footer-top p span {
  color: var(--orange);
}
.footer-top > a:last-child {
  margin-left: auto;
  font-size: 14px;
}
.footer-top > a:last-child span {
  margin-left: 20px;
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #f2ddc422;
  padding-top: 24px;
  color: #a7a4a2;
  font-size: 12px;
}
.footer-bottom p:last-child {
  text-align: right;
}
.age-gate {
  border: 1px solid #f2ddc43d;
  background: var(--deep);
  color: var(--sand);
  max-width: calc(100% - 32px);
  width: 510px;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border-radius: 3px;
  overflow: auto;
}
.age-gate::backdrop {
  background: #070c18d9;
  backdrop-filter: blur(10px);
}
.age-card {
  text-align: center;
  padding: 38px 34px;
  background: radial-gradient(ellipse at bottom, #e6542b15, transparent 65%);
}
.age-card > img {
  height: 80px;
  width: 90px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.age-card .eyebrow {
  color: var(--bright);
  font-size: 13px;
  margin-bottom: 20px;
}
.age-card h2 {
  font-size: 58px;
  margin-bottom: 22px;
}
.age-card > p:not(.eyebrow) {
  color: #c4bcb4;
  font-size: 16px;
}
.age-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 27px 0;
}
.age-actions .button {
  justify-content: center;
  gap: 25px;
}
.age-no {
  background: transparent;
  color: var(--sand);
  font-size: 14px;
  border: 0;
  min-height: 35px;
}
.age-no:hover {
  text-decoration: underline;
}
.age-card .age-fine {
  font-size: 12px !important;
  color: #a99c92 !important;
}
.noscript-note {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: white;
  z-index: 20;
  padding: 16px;
  text-align: center;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 40px;
  }
  .hero-inner {
    min-height: 730px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    height: 98px;
  }
  .hero-inner {
    min-height: 620px;
  }
  .hero-products {
    height: 590px;
  }
  .social {
    font-size: 130px;
  }
  .sundaze {
    font-size: 79px;
  }
  .hero .eyebrow {
    font-size: 13px;
  }
  .hero-description {
    font-size: 28px;
  }
  .section-pad {
    padding: 75px 5%;
  }
  .maine-copy {
    padding: 50px 35px;
  }
  .maine-photo img {
    min-height: 550px;
  }
  .ordering-note {
    gap: 20px;
  }
  .ordering-note > a {
    display: none;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header {
    height: 90px;
    padding: 12px 6%;
  }
  .brand img {
    width: 62px;
    max-height: 66px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 13px;
  }
  .site-header nav a:last-child {
    display: none;
  }
  .header-tag {
    font-size: 12px;
    letter-spacing: 0.07em;
  }
  .header-tag span {
    margin-left: 5px;
  }
  .hero {
    padding: 0 6%;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 42px 0 20px;
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
    letter-spacing: 0.12em;
    font-size: 12px;
    margin-bottom: 27px;
  }
  .short-rule {
    width: 22px;
  }
  h1 {
    margin: 0 auto 30px;
  }
  .social {
    font-size: clamp(106px, 24vw, 165px);
  }
  .sundaze {
    font-size: clamp(69px, 15vw, 103px);
    margin-left: 15px;
  }
  .hero-description {
    font-size: 28px;
  }
  .hero-detail {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 23px;
  }
  .desktop-break {
    display: none;
  }
  .button {
    min-height: 52px;
  }
  .hero-products {
    height: 450px;
    margin: 0 0 10px;
  }
  .product-note {
    font-size: 12px;
    right: 0;
    top: 38px;
    text-align: right;
    max-width: 110px;
  }
  .hero-product-caption {
    font-size: 10px;
    bottom: 8px;
    letter-spacing: 0.08em;
  }
  .hero-bottom {
    font-size: 11px;
    padding: 19px 0;
  }
  .hero-bottom a {
    gap: 12px;
  }
  .marquee {
    padding: 10px 0;
  }
  .marquee-track span {
    font-size: 20px;
  }
  .marquee i {
    padding: 0 22px;
  }
  .section-pad {
    padding: 66px 6%;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading .eyebrow {
    font-size: 13px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 58px;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 25px;
  }
  .maine {
    grid-template-columns: 1fr;
  }
  .maine-photo {
    height: 380px;
  }
  .maine-photo img {
    min-height: 0;
    object-position: 32% center;
  }
  .photo-caption {
    left: 6%;
    bottom: 24px;
    font-size: 12px;
  }
  .maine-copy {
    padding: 55px 6% 60px;
  }
  .maine-copy h2 {
    font-size: 62px;
  }
  .maine-copy p:not(.eyebrow) {
    max-width: 100%;
  }
  .ordering-note {
    padding: 28px 6%;
    align-items: flex-start;
    gap: 18px;
  }
  .note-mark {
    font-size: 28px;
  }
  .ordering-note p {
    font-size: 13px;
  }
  .ordering-note strong {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .site-footer {
    padding: 45px 6% 28px;
  }
  .footer-top {
    gap: 25px;
    padding-bottom: 33px;
  }
  .footer-top img {
    width: 70px;
  }
  .footer-top p {
    font-size: 25px;
  }
  .footer-top > a:last-child {
    display: none;
  }
  .footer-bottom {
    display: block;
    font-size: 12px;
  }
  .footer-bottom p:last-child {
    text-align: left;
    margin-top: 15px;
  }
  .age-card {
    padding: 28px 22px;
  }
  .age-card h2 {
    font-size: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* The flavor lineup inherits the label palette. */
.lineup-info {
  max-width: 1424px;
  margin: 0 auto 23px;
  padding-top: 21px;
  border-top: 1px solid #131d3229;
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.lineup-info b {
  margin: 0 12px;
  color: var(--orange);
}
.flavor-grid {
  max-width: 1424px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 48px;
}
.flavor-card {
  min-width: 0;
}
.can-stage {
  height: 330px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 58%, var(--wash), transparent 72%), #eee3d3;
  border-top: 3px solid var(--flavor);
}
.can-stage img {
  width: auto;
  height: 275px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(4px 12px 9px #131d3233);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.flavor-card:hover .can-stage img {
  transform: translateY(-8px) rotate(3deg);
}
.flavor-number {
  position: absolute;
  left: 15px;
  top: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131d328c;
}
.flavor-copy {
  padding: 20px 0 0;
}
.flavor-family {
  font-family: var(--display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #746354;
  margin-bottom: 9px;
}
.flavor-copy h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  min-height: 62px;
  margin-bottom: 12px;
}
.flavor-copy > p:last-child {
  font-size: 14px;
  line-height: 1.6;
  color: #74685b;
}
.lineup-footnote {
  max-width: 1424px;
  margin: 45px auto 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #131d3220;
  padding-top: 24px;
  font-size: 13px;
  color: #726456;
}
.lineup-footnote span {
  font-size: 12px;
}
.hero-products {
  --pointer-x: 0px;
  --pointer-y: 0px;
}
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.is-waiting {
  opacity: 0;
  transform: translateY(24px);
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-waiting .can-stage img {
  transform: translateY(15px);
}
@media (min-width: 1600px) {
  .can-stage {
    height: 390px;
  }
  .can-stage img {
    height: 330px;
  }
}
@media (max-width: 1100px) {
  .flavor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .can-stage {
    height: 360px;
  }
  .can-stage img {
    height: 305px;
  }
}
@media (max-width: 700px) {
  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 15px;
  }
  .lineup-info {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .lineup-info b {
    margin: 0 6px;
  }
  .can-stage {
    height: 265px;
  }
  .can-stage img {
    height: 220px;
    max-width: 88%;
  }
  .flavor-number {
    font-size: 11px;
    left: 10px;
    top: 9px;
  }
  .flavor-copy {
    padding-top: 16px;
  }
  .flavor-family {
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    min-height: 28px;
    margin-bottom: 6px;
  }
  .flavor-copy h3 {
    font-size: 25px;
    min-height: 53px;
  }
  .flavor-copy > p:last-child {
    font-size: 13px;
  }
  .lineup-footnote {
    display: block;
    margin-top: 33px;
  }
  .lineup-footnote span {
    display: block;
    margin-top: 7px;
  }
  .product-note {
    top: 4px;
    right: 1%;
    font-size: 11px;
  }
  .hero-product-caption {
    bottom: 0;
  }
  .hero-products {
    height: 460px;
  }
  .reveal.is-waiting {
    transform: translateY(15px);
  }
}
@media (max-width: 380px) {
  .can-stage {
    height: 238px;
  }
  .can-stage img {
    height: 198px;
  }
  .flavor-copy h3 {
    font-size: 23px;
  }
  .header-tag {
    display: none;
  }
  .lineup-info {
    font-size: 10px;
  }
  .flavor-family {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
}

[hidden] {
  display: none !important;
}
.motion-toggle {
  margin-top: 22px;
  background: none;
  border: 1px solid #f2ddc437;
  border-radius: 2px;
  padding: 8px 12px;
  color: #beb5ac;
  font-size: 12px;
}
.motion-toggle:hover {
  color: var(--sand);
  border-color: var(--sand);
}
.motion-paused * {
  animation-play-state: paused !important;
}
.motion-paused .reveal {
  transition: none;
}
.age-locked .marquee-track {
  animation-play-state: paused;
}
.can-stage img {
  mix-blend-mode: multiply;
  filter: none;
}
.motion-toggle:disabled {
  cursor: default;
  opacity: 0.75;
}
/* Maintain legible catalog labels on compact screens. */
.flavor-family {
  font-size: 12px;
  min-height: 34px;
}
.flavor-number,
.hero-product-caption,
.product-note,
.hero-bottom {
  font-size: 12px;
}
.lineup-info {
  font-size: 14px;
  flex-wrap: wrap;
  gap: 8px 20px;
}
/* Transparent two-can cutout floats over the page’s dusk background. */
.hero-scene {
  position: absolute;
  inset: 15px -45px 20px -45px;
  display: grid;
  place-items: center;
  animation: hero-drift 8s ease-in-out infinite;
}
.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(var(--pointer-x), var(--pointer-y));
  transition: transform 0.6s ease-out;
}
.product-note,
.hero-product-caption {
  z-index: 2;
  pointer-events: none;
}
.age-locked .hero-scene {
  animation-play-state: paused;
}
@keyframes hero-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media (max-width: 700px) {
  .hero-scene {
    inset: 10px -30px 20px;
  }
  .hero-products {
    height: 455px;
  }
  .hero-product-caption {
    font-size: 11px;
  }
  .product-note {
    font-size: 12px;
    max-width: 130px;
  }
}
