/* SUPER COCK — v2 iteration (Andrew feedback, July 2026).
   Companion to index-v2.html. The original style.css is untouched. */

::selection {
  background: #1E3226;
  color: #F6F2E9;
}

:root {
  --color-surface: #F3F1EA;
  --color-ink: #14140F;
  --color-ink-deep: #0C0C0A;
  --color-ink-light: #232319;
  --color-secondary: #1F2E23;
  --color-secondary-light: #26362B;
  --color-secondary-dark: #182219;
  --color-primary: #B89347;
  --color-primary-light: #D4B876;
  --color-primary-dark: #8C6D3F;
  --color-secondary-tint: #CFE0D2;
  --color-muted: #4B4B42;

  /* RGB channels for colors that also need to appear at partial opacity */
  --color-ink-rgb: 20, 20, 15;
  --color-surface-rgb: 243, 241, 234;
  --color-primary-rgb: 184, 147, 71;
  --color-border: rgba(var(--color-primary-rgb), 0.25);

  /* section rhythm, shared by every full-bleed section below */
  --space-section-xl: 180px;
  --space-section-md: 160px;
  --space-section-sm: 150px;
  --space-section-xs: 120px;

  --radius-sm: 2px;

  /* one warm, muted, cinematic grade shared by every photograph */
  --photo-grade: saturate(0.82) sepia(0.14) contrast(1.05) brightness(0.96);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
.slab {
  font-family: 'Roboto Slab', serif;
}

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

/* LAYOUT PRIMITIVES */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* SHARED COMPONENTS */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

/* gold underline that draws itself in as its element scrolls into view */
.rule {
  position: relative;
  display: inline-block;
}

.rule::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.22, .9, .3, 1);
}

.rule.in-view::after {
  transform: scaleX(1);
}

/* Scroll reveal — fade + rise, triggered once via IntersectionObserver
   adding .in-view (see script at bottom of index-v2.html). Same pattern
   as .rule above, generalized for headlines and grid photos. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* staggered entrance for grid photos, left-to-right / row by row */
.masonry-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.masonry-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.masonry-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.masonry-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.masonry-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.collection-grid .reveal:nth-child(2) { transition-delay: 0.12s; }

/* buttons: shared base + fill modifier */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.3s ease;
  cursor: pointer;
}

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

.btn--primary:hover {
  background: transparent;
  color: var(--color-primary-light);
}

section {
  position: relative;
  /* clears the fixed nav on anchor-jump (e.g. "Join Founders Club" -> #founders),
     sized for the nav's tallest state (mobile compact mark) plus breathing room */
  scroll-margin-top: 110px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 40px;
  color: var(--color-surface);
}

.nav--blend {
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

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

.nav-mark__icon {
  height: 72px;
  width: auto;
  display: block;
}

.nav-mark__icon--compact {
  display: none;
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 9px 18px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

/* HERO */
.hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(52, 38, 18, 0.3) 0%, rgba(52, 38, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(var(--color-ink-rgb), 0.55) 0%, rgba(var(--color-ink-rgb), 0.58) 40%, rgba(20, 17, 12, 0.88) 62%, rgba(12, 10, 7, 0.98) 82%, rgba(10, 9, 7, 0.99) 100%),
    url('../images/lifestyle/2026-07-11_dolomites-valley-view_web.webp') center 30%/cover no-repeat,
    var(--color-ink);
  color: var(--color-surface);
  padding: 0 24px;
}

.hero::before {
  /* extra dark-to-transparent fade so the fixed nav stays legible over the photo */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

.hero-mark {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.1s;
}

.hero-mark__icon {
  width: 110px;
  height: 110px;
  display: block;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  font-weight: 500;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero h1 em {
  font-style: normal;
}

.hero .sub {
  margin-top: 26px;
  font-size: 16px;
  color: rgba(var(--color-surface-rgb), 0.65);
  font-weight: 300;
  max-width: 400px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.7s;
}

.hero-cta {
  margin-top: 42px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.9s;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--color-surface-rgb), 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--color-primary), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* THE BEER — near-black stage so the can photograph reads as one seamless scene */
.beer {
  background: var(--color-ink-deep);
  color: var(--color-surface);
  padding: var(--space-section-md) 0;
}

.beer .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beer-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-visual__can {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  filter: var(--photo-grade);
  /* feather the photo's edges into the section background */
  -webkit-mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, #000 62%, transparent 98%);
  mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, #000 62%, transparent 98%);
}

.beer-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 26px;
  line-height: 1.1;
}

.beer-copy p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(var(--color-surface-rgb), 0.7);
  font-weight: 300;
  max-width: 420px;
}

.beer-note {
  display: inline-block;
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-light);
}

/* LIFESTYLE — asymmetric editorial masonry (true aspect ratios, CSS columns).
   Dark, matching Beer above it — Manifesto right after is the page's one
   deliberate light "breath", so it needs to stay the only light section. */
.masonry-section {
  background: var(--color-ink);
  color: var(--color-surface);
  padding: var(--space-section-md) 0 var(--space-section-sm);
}

.masonry-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.masonry-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-surface);
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 14px;
}

.masonry-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: var(--photo-grade);
  transition: transform 0.8s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(var(--color-ink-rgb), 0.78) 100%);
  pointer-events: none;
}

.masonry-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-surface);
}

/* MANIFESTO */
.manifesto {
  background: var(--color-surface);
  padding: var(--space-section-xl) 0;
  text-align: center;
}

.manifesto .wrap {
  max-width: 760px;
}

.manifesto h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.28;
  font-weight: 400;
  color: var(--color-ink);
}

.manifesto h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-secondary);
}

.manifesto__body {
  margin: 40px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--color-muted);
}

.manifesto .origin {
  display: block;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

/* FOUNDERS COLLECTION */
.collection {
  background: var(--color-ink);
  color: var(--color-surface);
  padding: var(--space-section-sm) 0;
  text-align: center;
}

.collection h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
}

.collection__desc {
  margin: 24px auto 70px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(var(--color-surface-rgb), 0.6);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 980px;
  margin: 0 auto;
}

.collection-grid__item {
  position: relative;
  overflow: hidden;
}

.collection-grid__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: var(--photo-grade);
  transition: transform 0.8s ease;
}

.collection-grid__item:hover img {
  transform: scale(1.03);
}

.collection-grid__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--color-ink-rgb), 0.8) 100%);
}

.collection-grid__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--color-surface-rgb), 0.75);
}

/* FOUNDERS CLUB */
.founders {
  background: var(--color-secondary);
  padding: clamp(90px, 14vw, 160px) 24px;
  display: flex;
  justify-content: center;
}

.founders .wrap {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.founders h2 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--color-surface);
}

.founders__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-secondary-tint);
  max-width: 440px;
}

.founders__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 22px;
  row-gap: 10px;
  margin: 6px 0;
}

.founders__perk {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.founders__success {
  margin-top: 10px;
  font-size: 19px;
  color: var(--color-surface);
}

.founders__form {
  display: flex;
  width: 100%;
  max-width: 420px;
  margin-top: 8px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.founders__input {
  flex: 1 1 220px;
  border: 1px solid rgba(var(--color-surface-rgb), 0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 15px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-surface);
  outline: none;
  transition: border-color 0.3s ease;
}

.founders__input:focus {
  border-color: var(--color-primary);
}

.founders__input::placeholder {
  color: rgba(var(--color-surface-rgb), 0.5);
}

.founders__form .btn {
  flex: none;
}

.founders__form .btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-ink);
}

.hidden {
  display: none;
}

/* FOOTER */
footer {
  background: var(--color-ink);
  color: rgba(var(--color-surface-rgb), 0.55);
  padding: 60px 0 40px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

footer .footer-compliance {
  justify-content: center;
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: rgba(var(--color-surface-rgb), 0.3);
}

footer .mark {
  display: flex;
  align-items: center;
}

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

/* thin-line gold social icons */
footer .social {
  display: flex;
  align-items: center;
  gap: 26px;
}

footer .social a {
  display: block;
  color: var(--color-primary);
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

footer .social a:hover {
  color: var(--color-primary-light);
  opacity: 1;
  transform: translateY(-2px);
}

footer .social svg {
  width: 21px;
  height: 21px;
  display: block;
}

footer .bottom {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer .bottom__copyright,
footer .bottom__legal {
  font-size: 11px;
  color: rgba(var(--color-surface-rgb), 0.3);
  letter-spacing: 0.04em;
}

footer .bottom__legal a:hover {
  color: var(--color-primary-light);
}

/* LEGAL PAGES (privacy, terms, contact) */
nav.nav--solid {
  position: static;
  background: var(--color-ink);
  color: var(--color-surface);
  padding: 20px 40px;
}

.legal {
  background: var(--color-surface);
  padding: 80px 0 var(--space-section-xs);
  min-height: 60vh;
}

.legal__wrap {
  max-width: 760px;
}

.legal__back {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.3s ease;
}

.legal__back:hover {
  color: var(--color-primary-dark);
}

.legal h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
}

.legal__effective {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}

.legal__intro {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--color-muted);
  max-width: 620px;
}

.legal__intro strong {
  color: var(--color-ink);
  font-weight: 600;
}

.legal__body {
  margin-top: 60px;
}

.legal__body h2 {
  margin-top: 56px;
  margin-bottom: 18px;
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 600;
  color: var(--color-ink);
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p {
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.legal__body ul {
  margin: 0 0 18px 20px;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--color-muted);
}

.legal__body li {
  margin-bottom: 6px;
}

.legal__body strong {
  color: var(--color-ink);
  font-weight: 600;
}

.legal__body a:not(.btn) {
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.legal__body a:not(.btn):hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.legal__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14.5px;
}

.legal__body th,
.legal__body td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.legal__body th {
  color: var(--color-ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.legal__body td {
  color: var(--color-muted);
  font-weight: 300;
}

.legal__closing {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

/* RESPONSIVE */
@media (max-width:820px) {
  nav {
    padding: 18px 20px;
  }

  nav.nav--solid {
    padding: 18px 20px;
  }

  .nav-mark__icon--full {
    display: none;
  }

  .nav-mark__icon--compact {
    display: block;
    height: 58px;
  }

  .nav-cta {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 9px 15px;
    white-space: nowrap;
  }

  .beer .wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .masonry-grid {
    columns: 2 200px;
  }

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

  .founders__form {
    flex-direction: column;
  }

  .founders__input {
    width: 100%;
    flex: 1 1 auto;
  }

  .founders__form .btn {
    width: 100%;
  }

  footer .wrap {
    flex-direction: column;
    text-align: center;
  }

  footer .social {
    justify-content: center;
  }

  footer .bottom {
    justify-content: center;
  }
}

@media (max-width:400px) {
  nav {
    padding: 16px;
  }

  .nav-mark__icon--compact {
    height: 48px;
  }

  .nav-cta {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 8px 13px;
  }
}

/* UTILITIES */
::selection {
  background: var(--color-primary);
  color: var(--color-ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
