/* =============================================================
   UNITED — Onepager
   Style aligned with dreissigacker-wein.de
   Font: NeutrafaceText Light per Brand Style Guide
   Dark: #1D2022  ·  Accent: #D4B04C
   ============================================================= */

@font-face {
  font-family: 'NeutraText';
  src: url('NeutrafaceText-Light.woff') format('woff');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark:        #1D2022;
  --dark-2:      #26282D;
  --light:       #FFFFFF;
  --cream:       #FAFAF7;
  --text:        #26282D;
  --text-muted:  #6B6E73;
  --text-light:  rgba(255,255,255,0.85);
  --text-light-2:rgba(255,255,255,0.60);
  --gold:        #D4B04C;
  --gold-bright: #E8C870;
  --gold-soft:   rgba(212,176,76,0.8);
  --rule:        rgba(255,255,255,0.25);

  --ff: 'NeutraText', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --tight:   0.04em;
  --normal:  0.08em;
  --wide:    0.16em;
  --xwide:   0.24em;

  --maxw: 1280px;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width:100%; height:auto; display:block; }
button { font: inherit; cursor: pointer; }
ul { margin:0; padding:0; list-style:none; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--ff);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- TYPOGRAPHY (per Style Guide) ---------- */
h1, h2 {
  font-family: var(--ff);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}
h3 {
  font-family: var(--ff);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
p { margin: 0 0 1em; font-weight: 300; }

.eyebrow {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin: 0 0 24px;
}
.eyebrow--light {
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 760px) {
  .eyebrow { font-size: 14px; margin-bottom: 20px; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.topbar__logo {
  display: inline-flex;
  align-items: center;
  height: 52px;
  width: 55px;
  position: relative;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.topbar__logo-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity .35s ease;
}
.topbar__logo-img--dark { opacity: 0; }

.topbar--dark .topbar__logo-img--light { opacity: 0; }
.topbar--dark .topbar__logo-img--dark  { opacity: 1; }

.topbar__nav {
  display:flex;
  gap:14px;
  align-items:center;
}
.topbar__nav a {
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity .25s ease, color .35s ease;
}
.topbar__nav a:hover { opacity: .65; }
.topbar__sep {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  transition: color .35s ease;
}
.topbar--dark .topbar__nav a { color: var(--dark); }
.topbar--dark .topbar__sep   { color: rgba(38,40,45,0.4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}
.hero__media {
  position: absolute; inset: 0;
  background: url('photography/hero.jpg') center 55% / cover no-repeat;
  filter: brightness(0.88) contrast(1.04);
  transform: scale(1.06);
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(29,32,34,0.75) 0%,
      rgba(29,32,34,0.45) 25%,
      rgba(29,32,34,0.30) 55%,
      rgba(29,32,34,0.90) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1100px;
  animation: fadeUp 1.6s 0.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content .eyebrow { margin-bottom: 36px; }

.hero__title {
  font-size: clamp(36px, 7vw, 120px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin: 0 0 36px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}
.hero__claim {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  z-index: 3;
  transition: opacity .25s ease;
}
.scroll-cue:hover { opacity: .65; }
.scroll-cue__line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.6);
  animation: lineGrow 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes lineGrow {
  0%,100% { transform: scaleY(0.4); opacity: .4; }
  50%     { transform: scaleY(1);   opacity: 1; }
}

/* ============================================================
   STORY (white editorial block)
   ============================================================ */
.story {
  background: var(--light);
  padding: clamp(96px, 14vw, 180px) 24px;
}
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.story__thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.story__thumbs figure {
  margin: 0;
  overflow: hidden;
  background: #f3f3f1;
  aspect-ratio: 3/2;
}
.story__thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.story__thumbs figure:hover img { transform: scale(1.05); }

.story__copy { padding: 0 8px; }
.story__copy .eyebrow { margin-bottom: 28px; }
.story__title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--text);
}
.story__rule {
  width: 60px;
  height: 1px;
  background: #fff;
  margin: 0 0 36px;
}
.story__lede {
  font-family: var(--ff);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 560px;
}
.story__copy p:not(.story__lede):not(.eyebrow) {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 20px;
}

.story__bottles {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: flex-end;
  min-height: clamp(320px, 36vw, 480px);
}
.story__bottles > * {
  grid-column: 1;
  grid-row: 1;
}
.story__bottles-view {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
}
.story__bottles-view[hidden] { display: none; }
.story__bottles img {
  height: clamp(320px, 36vw, 480px);
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.story__bottles-view img:first-child { transform: translateY(8px); }
.story__bottles-view:hover img:first-child  { transform: translateY(0) rotate(-1deg); }
.story__bottles-view:hover img:last-child   { transform: translateY(-6px) rotate(1deg); }

/* wine detail text view */
.story__wine-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 24px 0;
  animation: storyDetailIn .5s ease both;
}
.story__wine-details[hidden] { display: none; }
.story__wine-detail { margin-bottom: 0; }
.story__wine-divider {
  width: 32px;
  border: none;
  border-top: 1px solid #ddd;
  margin: 8px 0 24px;
}
@keyframes storyDetailIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.story__wine-name {
  display: block;
  font-family: var(--ff-display, Georgia, serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--c-ink, #1a1a1a);
}
.story__wine-block {
  margin-bottom: 20px;
}
.story__wine-block:last-of-type {
  margin-bottom: 32px;
}
.story__wine-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.story__wine-value {
  display: block;
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--c-ink, #1a1a1a);
  line-height: 1.5;
}
.story__wine-back {
  background: none;
  border: none;
  padding: 0;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  transition: color .3s;
}
.story__wine-back:hover {
  color: var(--c-ink, #1a1a1a);
}

/* ============================================================
   TEAMGEIST (dark full-bleed image)
   ============================================================ */
.teamgeist {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: clamp(96px, 12vw, 160px) 24px;
}
.teamgeist__media {
  position: absolute; inset: 0;
  background: url('photography/teamgeist-aerial.jpg') center / cover no-repeat;
  filter: brightness(0.55);
}
.teamgeist__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(29,32,34,0.75) 0%,
    rgba(29,32,34,0.55) 50%,
    rgba(29,32,34,0.90) 100%);
}
.teamgeist__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.teamgeist__title {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 36px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}
.teamgeist__rule {
  width: 60px;
  height: 1px;
  background: #fff;
  margin: 0 auto 40px;
}
.teamgeist__quote {
  font-family: var(--ff);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  max-width: 620px;
  margin: 0 auto 24px;
}
.teamgeist__author {
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* ============================================================
   COLLECTION
   ============================================================ */
.collection {
  background: var(--cream);
  padding: clamp(110px, 16vw, 200px) 24px;
  text-align: center;
}
.collection__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.collection__inner .eyebrow { margin-bottom: 28px; }
.collection__title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--text);
}
.collection__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #fff;
  margin: 36px auto 0;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: end;
  margin-top: 72px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.bottle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.bottle-card:hover { transform: translateY(-10px); }
.bottle-card__image {
  height: clamp(380px, 40vw, 560px);
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}
.bottle-card__image img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 30px 44px rgba(0,0,0,0.18));
}
.bottle-card__name {
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.bottle-card__rule {
  display: block;
  width: 32px;
  height: 1px;
  background: #fff;
  margin: 14px 0;
}
.bottle-card__notes {
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.bottle-card__profile {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CTA  (dark with full-bleed sunset photo)
   ============================================================ */
.page-end {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--dark);
}
.cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  min-height: 0;
  padding: clamp(72px, 10vh, 120px) 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__media {
  position: absolute; inset: 0;
  background: url('photography/united/united-p1-img3.png') center 52% / cover no-repeat;
  filter: brightness(0.55) contrast(1.05);
}
.cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(29,32,34,0.88) 0%,
    rgba(29,32,34,0.60) 45%,
    rgba(29,32,34,1) 100%);
}
.cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 2;
}
.cta__title {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 28px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}
.cta__rule {
  width: 60px;
  height: 1px;
  background: #fff;
  margin: 0 auto 36px;
}
.cta__sub {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin: 0 0 56px;
  line-height: 1.6;
  max-width: 540px;
}
.cta__metro-logo {
  display: inline-block;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.cta__metro-logo img {
  height: 48px;
  width: auto;
}
.cta__metro-logo:hover {
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  position: relative;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__insta {
  display: inline-flex;
  opacity: .9;
  transition: all .25s ease;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}
.site-footer__insta:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}
.site-footer__insta img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-content: center;
}
.site-footer__legal a {
  transition: all .25s ease;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.site-footer__legal a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.site-footer__legal span {
  display: none;
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }
  .story__copy { padding: 0; }
  .story__rule { margin-left: auto; margin-right: auto; }
  .story__copy p, .story__lede { margin-left: auto; margin-right: auto; }
  .story__thumbs {
    flex-direction: row;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
    gap: 16px;
  }
  .story__thumbs figure { flex: 1; }
  .story__bottles img { height: clamp(260px, 45vw, 400px); }
  .story__thumbs figure { aspect-ratio: 16/10; }

  .story__wine-details {
    align-items: center;
    text-align: center;
    padding: 24px 16px;
  }
  .story__wine-name,
  .story__wine-block,
  .story__wine-label,
  .story__wine-value {
    text-align: center;
  }
  .story__wine-divider {
    width: 48px;
    margin-left: auto;
    margin-right: auto;
  }
  .story__wine-back {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .topbar { padding: 20px 24px; }
  .topbar__logo { height: 44px; width: 46px; }

  .hero__content { padding: 0 16px; }
  .hero__claim { padding: 0 12px; }

  .story { padding: 88px 20px; }
  .story__title { font-size: 44px; }
  .story__thumbs { flex-direction: column; max-width: 360px; }

  .teamgeist { padding: 88px 20px; min-height: auto; }
  .teamgeist__title { font-size: 34px; }
  .teamgeist__author { font-size: 13px; }

  .collection { padding: 80px 20px; }
  .collection__title { font-size: 34px; letter-spacing: 0.08em; }
  .collection__grid { grid-template-columns: 1fr; gap: 48px; margin-top: 56px; padding: 40px 32px; max-width: 480px; }
  .bottle-card__image { height: 340px; }

  .cta { padding: 72px 20px; }
  .cta__title { font-size: 40px; }
  .cta__metro-logo img { height: 40px; }

  .site-footer { padding: 22px 20px; }
  .site-footer__insta { padding: 10px; }
  .site-footer__insta img { width: 20px; height: 20px; }
  .site-footer__legal { font-size: 13px; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media { animation: none; transform: none; }
  .scroll-cue__line { animation: none; }
  .hero__content { animation: none; }
  * { transition: none !important; }
}
