@import url("custom-vars.css");

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
  font-family: var(--disp);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.01em
}

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

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

section {
  padding: 84px 22px
}

.wrap {
  max-width: 1120px;
  margin: 0 auto
}

.mag {
  color: var(--mag)
}

.cya {
  color: var(--cya)
}

.yel {
  color: var(--yel)
}

/* dots texture */
.dots {
  position: relative;
  overflow: hidden
}

.dots::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: radial-gradient(currentColor 2px, transparent 2.2px);
  background-size: 16px 16px;
  opacity: .14;
  pointer-events: none
}

/* buttons + pills */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap
}

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

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-yellow {
  background: var(--yel);
  color: var(--ink)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn-white {
  background: #fff;
  color: var(--ink)
}

.pill {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--ink)
}

.pill-y {
  background: var(--yel)
}

.pill-c {
  background: var(--cya);
  color: #04323a
}

.pill-m {
  background: var(--mag);
  color: #3d0f22
}

/* burst */
.burst {
  position: relative;
  width: 150px;
  height: 150px;
  flex: none
}

.burst img {
  width: 100%;
  height: 100%
}

.burst span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  font-size: .82rem;
  line-height: 1.02;
  padding: 0 24%;
  transform: rotate(-8deg)
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line)
}

.nav .row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.navlogo {
  height: 40px;
  width: auto;
  display: block
}

.nav .links {
  display: flex;
  align-items: center;
  gap: 22px
}

.nav .links a {
  font-family: var(--disp);
  font-weight: 600;
  font-size: .85rem
}

.nav .links a.txt:hover {
  color: var(--mag)
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 61
}

.hamburger .icon-open,
.hamburger .icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity .2s ease, transform .2s ease
}

.hamburger .icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(.6)
}

.nav-open .hamburger .icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(.6)
}

.nav-open .hamburger .icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1)
}

body.nav-open {
  overflow: hidden;
}

/* Mobile menu overlay (sibling of <header>, see comment in header_wine_and_spirit.php) */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow-y: auto;
  margin-top: 74px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease
}

.mobile-menu-bottom {
  flex: 1;
  width: 100%;
  background: #11111142;
  margin-top: -20px;
}

@media(max-width:580px) {
  .mobile-menu {
    margin-top: 64px;
  }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  padding-bottom: 10px;
  color: black;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.mobile-menu-links a {
  font-family: var(--disp);
  font-weight: 600;
  font-size: .85rem
}

.mobile-menu-links a:not(.nav-cta-menu) {
  padding: 14px 22px;
  border-top: 1px solid rgb(135 61 61 / 12%);
}

.mobile-menu-links a.txt:hover {
  color: var(--mag)
}

.nav-cta-menu {
  display: none
}

.nav-cta {
  display: none
}

@media(max-width:767px) {
  .nav-cta-inline {
    display: none
  }

  .nav-cta {
    display: inline-flex;
    margin-left: auto;
  }
}

@media(max-width:768px) {
  .hamburger {
    display: flex
  }

  .nav .links {
    display: none
  }

  .nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
  }
}

@media(max-width:580px) {
  .nav-cta {
    display: none
  }

  .nav-cta-menu {
    display: inline-flex;
    justify-content: center;
    margin: 18px 22px 0
  }
}

/* HERO */
.hero {
  background: var(--yel);
  color: var(--ink);
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px
}

.hero .kicker {
  font-family: var(--disp);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .78rem;
  text-transform: uppercase;
  margin-bottom: 22px
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem)
}

.hero .lede {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 640px;
  margin: 24px 0 32px
}

.hero .cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-burst {
  position: absolute;
  right: 5%;
  top: 64px;
  width: 172px;
  height: 172px
}

@media(max-width:820px) {
  .hero-burst {
    display: none
  }
}

/* FIX (dark) */
.fix {
  background: var(--ink);
  color: #00ACC8
}

.fix .wrap {
  color: #fff
}

.fix h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 18px 0 30px
}

.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.card {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 26px
}

.card .tag {
  display: inline-block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px
}

.card p {
  color: #d5d5d0
}

.fixrow {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 34px;
  align-items: center;
  margin-top: 46px
}

.fixrow h3 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: 14px
}

.fixrow p {
  color: #d5d5d0;
  margin-top: 16px;
  max-width: 560px
}

.biglogo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto
}

@media(max-width:820px) {
  .cards2 {
    grid-template-columns: 1fr
  }

  .fixrow {
    grid-template-columns: 1fr
  }

  .biglogo {
    max-width: 220px
  }
}

/* WHY NOW (light) */
.why-now {
  background: #faf9f6
}

.why-now h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 16px 0 34px
}

.shifts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px
}

.shift {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px
}

.num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--disp);
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem
}

.shift h4 {
  font-size: 1.08rem;
  margin-bottom: 6px
}

.shift p {
  color: var(--muted);
  font-size: .95rem
}

.source {
  color: #9a9a95;
  font-size: .82rem;
  font-style: italic;
  margin-top: 26px
}

/* WORLD / stops */
.world {
  background: #fff
}

.world .intro h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin: 16px 0 12px
}

.world .intro p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 640px;
  margin-bottom: 20px
}

.stop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line)
}

.stop:nth-child(even) .stoptext {
  order: 2
}

.stophead {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px
}

.stophead .num {
  width: 56px;
  height: 56px;
  font-size: 1.4rem
}

.stophead .kick {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .01em
}

.stophead .sub {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem
}

.stop ul {
  list-style: none;
  margin: 14px 0 20px
}

.stop li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  color: #333
}

.stop li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--b, #111)
}

.stop .emph {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  margin: 6px 0 18px;
  display: inline-block
}

.gallery {
  display: grid;
  gap: 12px
}

.gallery.one {
  grid-template-columns: 1fr
}

.gallery.two {
  grid-template-columns: 1fr 1fr
}

@media(max-width: 480px) {
  .gallery.two {
    grid-template-columns: 1fr
  }
}

.gallery.full img {
  aspect-ratio: 108 / 103;
  height: auto;
  object-fit: contain;
  background: #f4f3ef
}

.gallery figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2ee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10)
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72));
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: 26px 14px 12px
}

.stopburst {
  position: absolute;
  right: -6px;
  top: -18px;
  width: 104px;
  height: 104px;
  z-index: 3
}

.stopmedia {
  position: relative
}

@media(max-width:820px) {
  .stop {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .stop:nth-child(even) .stoptext {
    order: 0
  }

  .stopburst {
    width: 100px;
    height: 100px
  }
}

/* WHY SOBO (dark) */
.whysobo {
  background: var(--ink);
  color: #F65097
}

.whysobo .wrap {
  color: #fff
}

.whysobo h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 16px 0 34px
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.pillar {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.pdot {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-top: 6px
}

.pillar h4 {
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.pillar p {
  color: #cfcfca;
  font-size: .96rem
}

@media(max-width:820px) {
  .pillars {
    grid-template-columns: 1fr
  }
}

/* STORE band */
.store {
  background: var(--cya);
  color: #04323a;
  text-align: center
}

.store h2 {
  font-size: clamp(2rem, 4.6vw, 3rem)
}

.store p {
  max-width: 620px;
  margin: 16px auto 26px;
  font-weight: 500;
  font-size: 1.08rem
}

/* CTA final (magenta) */
.cta-final {
  background: var(--mag);
  color: #fff;
  position: relative
}

.cta-final h2 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);

}

.cta-final h2 span {
  color: var(--ink);
}

@media(max-width: 769px) {
  .cta-final h2 span {
    display: inline-block;
    margin-top: 6px;
  }
}

.cta-final .lede {
  max-width: 620px;
  font-weight: 500;
  font-size: 1.12rem;
  margin: 20px 0 30px
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center
}

.ccard {
  background: #111;
  border-radius: 18px;
  padding: 26px 28px
}

.ccard .lab {
  color: #b9b9b4;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px
}

.ccard .name {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px
}

.ccard a {
  color: var(--yel);
  font-weight: 600;
  display: block;
  margin: 3px 0
}

.cta-final .btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px
}

.cta-burst {
  position: absolute;
  right: 6%;
  top: 56px;
  width: 150px;
  height: 150px
}

@media(max-width:820px) {
  .contact {
    grid-template-columns: 1fr
  }

  .cta-burst {
    display: none
  }
}

/* FOOTER */
footer {
  background: #0c0c0c;
  color: #c9c9c4;
  padding: 44px 22px
}

footer .row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

footer .flinks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

footer .flinks a {
  font-weight: 600;
  font-size: .9rem
}

footer .flinks a:hover {
  color: #fff
}

footer .tag {
  font-size: .82rem;
  color: #8a8a85;
  width: 100%;
  text-align: center;
  margin-top: 22px
}

footer img {
  width: 180px
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transition: opacity 1.1s ease-out;
  will-change: opacity;
}

.reveal.reveal-in {
  opacity: 1;
}

.reveal-group .reveal {
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}

/* Burst elements pop into place instead of a plain fade */
.burst.reveal {
  opacity: 0;
  transform: scale(.4) rotate(-25deg);
  transition: opacity .6s cubic-bezier(.34, 1.56, .64, 1), transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.burst.reveal.reveal-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
