:root {
  --ink: #24140d;
  --muted: #6d5d4f;
  --cream: #fff4d7;
  --paper: #fffaf0;
  --line: rgba(36, 20, 13, 0.12);
  --shadow: 0 24px 70px rgba(30, 142, 157, 0.16);
  --radius: 8px;
  --sparkling: #13bfe4;
  --coffee: #945426;
  --milkshake: #ff5f87;
  --coconut: #4fd0b7;
  --sun: #ffc83d;
  --fruit: #ff7a3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 200, 61, 0.42), transparent 25rem),
    radial-gradient(circle at 82% 8%, rgba(19, 191, 228, 0.3), transparent 25rem),
    radial-gradient(circle at 70% 46%, rgba(255, 95, 135, 0.16), transparent 30rem),
    linear-gradient(180deg, #fff8e8 0%, #f5fffb 38%, #fff1dd 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 61, 0.1) 0 2px, transparent 2px),
    linear-gradient(rgba(66, 44, 28, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 44, 28, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 58px);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 250, 238, 0.9);
  box-shadow: 0 12px 34px rgba(28, 143, 165, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: #20a5bd;
  box-shadow: 0 16px 34px rgba(32, 165, 189, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(19, 191, 228, 0.28);
  box-shadow: 0 14px 28px rgba(19, 191, 228, 0.12);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  min-height: 78vh;
  padding: 92px 0 32px;
  align-items: center;
  border-radius: 0 0 36px 36px;
}

.hero::before {
  position: absolute;
  inset: 74px max(20px, 4vw) 22px;
  z-index: -1;
  content: "";
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.82), transparent 19rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 232, 166, 0.22), rgba(129, 229, 218, 0.18));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 10vw, 7.4rem);
  color: #20a5bd;
  text-shadow: 0 10px 26px rgba(32, 165, 189, 0.16);
}

h2 {
  max-width: 780px;
  font-size: clamp(2.05rem, 5.2vw, 4.8rem);
}

h3 {
  margin: 24px 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-statement {
  margin: 12px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff5f78, #ff9c2f 48%, #14b9da);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-statement.smaller {
  font-size: clamp(1.35rem, 3vw, 2.7rem);
}

.hero-text,
.intro-copy,
.product-copy p,
.distribution p,
.presentations p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 34px);
  align-items: end;
  justify-items: center;
  min-height: 300px;
  overflow: hidden;
  padding: 20px 8px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.75), transparent 11rem),
    radial-gradient(circle at 78% 80%, rgba(255, 200, 61, 0.2), transparent 14rem);
}

.hero-can {
  position: static;
  width: clamp(96px, 11vw, 145px);
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(62, 34, 18, 0.22));
  animation: canFloat 5.8s ease-in-out infinite;
}

.sparkling-can {
  grid-column: 1;
  z-index: 4;
  width: clamp(96px, 11vw, 145px);
  animation-name: breathe;
}

.coffee-can {
  grid-column: 2;
  z-index: 3;
  animation-delay: -2s;
}

.milkshake-can {
  grid-column: 3;
  z-index: 2;
  width: clamp(96px, 11vw, 145px);
  animation-delay: -4s;
}

.coconut-can {
  grid-column: 4;
  z-index: 1;
  width: clamp(72px, 8.8vw, 116px);
  box-shadow: 0 18px 42px rgba(62, 34, 18, 0.12);
  animation-delay: -6s;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 6vw, 72px);
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.intro-copy strong,
.product-copy strong,
.presentations strong {
  display: inline-block;
  margin-top: 14px;
  font-size: 1rem;
  text-transform: uppercase;
}

.lifestyle {
  padding: 52px 0 58px;
}

.lifestyle-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: 24px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 14px;
}

.lifestyle-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.lifestyle-card.large {
  grid-row: auto;
}

.lifestyle-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(24, 13, 8, 0.68));
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.lifestyle-card:hover img {
  transform: scale(1.04);
}

.lifestyle-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.lifestyle-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  line-height: 0.9;
  font-weight: 950;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.lifestyle-card h3 {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
}

.chooser {
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13, 151, 178, 0.86), rgba(255, 119, 77, 0.78)),
    url("assets/lifestyle-sparkling-social.jpeg") center/cover;
}

.chooser .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.moment-card {
  position: relative;
  min-height: 330px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  isolation: isolate;
  cursor: pointer;
}

.moment-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: var(--accent);
  transition: opacity 0.28s ease;
}

.moment-card:hover::before,
.moment-card.is-active::before {
  opacity: 0.72;
}

.moment-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.75rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.moment-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.moment-card img {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 16px;
  width: 90%;
  height: 62%;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.2));
  transition: transform 0.28s ease;
  transform: translateX(-50%);
}

.moment-card:hover img,
.moment-card.is-active img {
  transform: translateX(-50%) translateY(-10px) rotate(-1deg);
}

.product-section {
  padding: 74px 0;
  transition: background 0.3s ease;
}

.sparkling {
  background: linear-gradient(135deg, #e7fffb, #fff5c7 48%, #ddf8ff);
}

.coffee {
  color: #fdf5ec;
  background: linear-gradient(135deg, #26150e, #7b4b28 56%, #d6ad77);
}

.milkshake {
  background: linear-gradient(135deg, #fff1e8, #ffddea 46%, #fff4aa);
}

.coconut {
  background: linear-gradient(135deg, #fff8e7, #dffbf5 48%, #cfedff);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(22px, 4.6vw, 58px);
  align-items: center;
}

.coffee .product-copy p,
.coffee .eyebrow {
  color: rgba(255, 245, 236, 0.78);
}

.product-logo {
  width: min(280px, 78%);
  margin-bottom: 18px;
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}

.product-experience {
  position: relative;
  min-height: 500px;
  padding: 22px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 18%, color-mix(in srgb, var(--active-color), white 18%), transparent 18rem),
    rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-visual {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 20px;
  align-items: end;
  min-height: 390px;
}

.experience-visual img {
  width: 100%;
  height: auto;
  max-height: 430px;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
}

.experience-copy {
  padding-bottom: 22px;
}

.experience-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3.7vw, 3.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.flavor-pill,
.channels span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.selector {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 18px 0 2px;
  scrollbar-width: none;
}

.selector::-webkit-scrollbar {
  display: none;
}

.selector .flavor-option {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 850;
  text-transform: uppercase;
}

.single-showcase img {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  box-shadow: var(--shadow);
}

.flavor-universe {
  padding: 72px 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fff7d6, #e9fff8, #ffe5ee);
}

.flavor-marquee {
  display: flex;
  gap: 14px;
  width: max-content;
  margin-top: 28px;
  animation: marquee 34s linear infinite;
}

.flavor-pill {
  min-height: 56px;
  padding: 0 22px;
  font-size: 0.92rem;
  background: var(--flavor);
  border: 0;
  box-shadow: 0 14px 36px rgba(55, 34, 20, 0.1);
}

.presentations {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(24px, 4.8vw, 54px);
  align-items: center;
  padding: 74px 0;
}

.can-sizes {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: min(6vw, 46px);
  min-height: 330px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 239, 218, 0.42));
  box-shadow: var(--shadow);
}

.can {
  margin: 0;
  text-align: center;
  font-weight: 900;
}

.can img {
  width: 250px;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 20px 45px rgba(54, 32, 19, 0.18);
}

.can.large img {
  width: 275px;
  height: auto;
}

.can figcaption {
  margin-top: 14px;
  font-size: 1.1rem;
}

.distribution {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 18, 10, 0.9), rgba(35, 18, 10, 0.58)),
    url("assets/soma-sparkling-family.jpeg") center/cover fixed;
}

.distribution .eyebrow,
.distribution p {
  color: rgba(255, 255, 255, 0.74);
}

.distribution-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: end;
}

.channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.channels span {
  min-height: 56px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.final-cta {
  display: block;
  padding: 74px 0;
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta .button-row {
  justify-content: center;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
}

.footer-contact {
  color: var(--muted);
  text-align: right;
}

.footer-contact p {
  margin: 8px 0 0;
}

.bold-line {
  color: var(--ink) !important;
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-28px) rotate(2deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes canFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  35% {
    transform: translateY(-28px) rotate(2deg);
  }
  70% {
    transform: translateY(12px) rotate(-3deg);
  }
}

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

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .intro,
  .lifestyle-heading,
  .product-layout,
  .presentations,
  .distribution-inner,
  .final-cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-stage {
    min-height: 220px;
    gap: 16px;
  }

  .hero-can {
    width: clamp(92px, 22vw, 136px);
  }

  .sparkling-can {
    width: clamp(92px, 22vw, 136px);
  }

  .coconut-can {
    width: clamp(76px, 17vw, 108px);
  }

  .moment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .lifestyle-card {
    flex: 0 0 min(78vw, 360px);
    min-height: 240px;
    scroll-snap-align: start;
  }

  .product-experience {
    min-height: auto;
  }

  .experience-visual {
    grid-template-columns: 1fr;
  }

  .experience-visual img {
    max-height: 430px;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .hero-statement {
    font-size: 2.15rem;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 170px;
    gap: 10px;
  }

  .hero-can {
    width: 82px;
  }

  .sparkling-can {
    width: 82px;
  }

  .coffee-can {
    width: 82px;
  }

  .milkshake-can {
    width: 82px;
  }

  .coconut-can {
    width: 68px;
  }

  .moment-grid,
  .channels {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .moment-card,
  .channels span {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .product-section,
  .flavor-universe,
  .presentations,
  .distribution,
  .final-cta,
  .lifestyle,
  .intro {
    padding-block: 66px;
  }

  .lifestyle-heading {
    gap: 14px;
    margin-bottom: 16px;
  }

  .lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 12px;
  }

  .lifestyle-card {
    flex: initial;
    width: 100%;
    min-height: 0;
    height: 230px;
    scroll-snap-align: none;
  }

  .lifestyle-card::after {
    background: linear-gradient(180deg, transparent 32%, rgba(24, 13, 8, 0.76));
  }

  .lifestyle-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .lifestyle-card span {
    margin-bottom: 6px;
    font-size: 1.85rem;
    line-height: 0.95;
  }

  .lifestyle-card h3 {
    font-size: 1rem;
    line-height: 1.08;
  }

  .product-logo {
    width: 100%;
  }

  .product-experience {
    padding: 16px;
  }

  .experience-visual img {
    max-height: 380px;
  }

  .can-sizes {
    min-height: 260px;
    padding: 18px 8px;
  }

  .can img {
    width: 150px;
    height: auto;
  }

  .can.large img {
    width: 165px;
    height: auto;
  }

  .distribution {
    background-attachment: scroll;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
