/* ===========================
   PAS Importing — Landing Page
   =========================== */

:root {
  --brown-950: #0f0600;
  --brown-900: #1a0a00;
  --brown-800: #2c1408;
  --brown-700: #3d1c0c;
  --brown-600: #5a2c14;
  --gold:      #c9a96e;
  --cream:     #f5f0e8;
  --cream-dk:  #ede6d8;
  --white:     #ffffff;
  --text-dark: #2c2416;
  --text-mid:  #5a4e3c;
  --text-light: #9a8c78;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --max-w: 1160px;
  --px: clamp(20px, 5vw, 64px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-sans); background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: all 0.25s;
}
.btn--light {
  background: var(--white); color: var(--brown-900);
}
.btn--light:hover { background: var(--cream); }

.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--dark {
  background: var(--brown-900); color: var(--white);
}
.btn--dark:hover { background: var(--brown-800); }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(36px, 4vw, 52px);
  font-weight: 400; line-height: 1.12; color: var(--text-dark);
  margin-bottom: 24px;
}
.section-intro {
  font-size: 15px; line-height: 1.8; color: var(--text-mid);
  max-width: 620px; margin: 0 auto 56px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px var(--px);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(26, 10, 0, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px var(--px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img {
  height: 140px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav__links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__email {
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 8px 18px !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 12px !important;
  transition: all 0.2s !important;
}
.nav__email:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--white) !important;
}
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  width: 24px; height: 1px; background: rgba(255,255,255,0.8);
  border-radius: 1px; display: block; transition: transform 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, var(--brown-700) 0%, var(--brown-900) 55%, var(--brown-950) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px var(--px) 80px;
  max-width: 820px; margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 32px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 28px;
  font-style: italic;
}
.hero__subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(16px, 2vw, 20px); line-height: 1.7;
  color: rgba(255,255,255,0.5); margin-bottom: 48px;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; font-family: var(--font-sans);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 0.7;  transform: scaleY(1.15); }
}

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--cream); }
.about__grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: center;
}
.about__body {
  font-size: 15px; line-height: 1.85; color: var(--text-mid);
  margin-bottom: 16px;
}
.about__pillars {
  display: flex; gap: 32px; margin-top: 40px;
}
.pillar {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center;
}
.pillar__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar p {
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--text-mid); line-height: 1.5;
}

.about__seal {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dk); border-radius: 50%;
  aspect-ratio: 1; padding: 48px;
}
.about__logo-img { width: 100%; max-width: 200px; opacity: 0.8; }

/* ── WINES ── */
.wines { padding: 100px 0; background: var(--brown-900); }
.wines .section-label { color: rgba(255,255,255,0.4); }
.wines .section-title { color: var(--white); }
.wines .section-intro { color: rgba(255,255,255,0.5); }

.wines__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}

.wine-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.wine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.wine-card--featured {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
}
.wine-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--brown-900);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px;
}
.wine-card__img-wrap {
  aspect-ratio: 3/4; overflow: hidden;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.wine-card__img-wrap img {
  max-height: 300px; width: auto; object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.8));
  transition: transform 0.5s, filter 0.5s;
}
.wine-card:hover .wine-card__img-wrap img {
  transform: scale(1.05) translateY(-8px);
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.9));
}

.wine-card__info { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.wine-card__winery {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.wine-card__name {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 400; color: var(--white);
}
.wine-card__region {
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em; margin-bottom: 4px;
}
.wine-card__desc {
  font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,0.55); margin-top: 4px; flex: 1;
}
.wine-tag {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
}
.wine-tag--dark {
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
}

.wines__more {
  text-align: center; font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.wines__more a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 3px;
}
.wines__more a:hover { color: #e0c090; }

/* ── CATALOGUE ── */
.catalogue { padding: 100px 0; background: var(--cream-dk); }
.catalogue__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.catalogue__text p {
  font-size: 15px; line-height: 1.8; color: var(--text-mid);
  margin-bottom: 32px;
}
.catalogue__visual {
  display: flex; justify-content: center;
}
.catalogue__card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid rgba(44,36,22,0.1);
  max-width: 280px; width: 100%;
}
.catalogue__card-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.catalogue__card-top span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
}
.catalogue__card-title {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 400; line-height: 1.3; color: var(--text-dark);
  margin-bottom: 10px;
}
.catalogue__card-sub {
  font-size: 12px; color: var(--text-light); line-height: 1.6;
}

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--cream); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 720px; margin: 0 auto 40px;
}
.contact__card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid rgba(44,36,22,0.08);
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.contact__seal svg { width: 80px; height: 80px; }
.contact__name {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 400; color: var(--text-dark);
}
.contact__details { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.contact__link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--text-mid); padding: 10px;
  border: 1px solid rgba(44,36,22,0.1); transition: all 0.2s;
}
.contact__link:hover {
  background: var(--cream); color: var(--text-dark);
  border-color: rgba(44,36,22,0.2);
}
.contact__website {
  text-align: center; margin-top: 8px;
  font-size: 15px; color: var(--text-light);
}
.contact__website a:hover { color: var(--text-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--brown-900);
  padding: 40px var(--px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__logo { height: 130px; opacity: 0.6; filter: brightness(0) invert(1); }
.footer__text { text-align: right; }
.footer__text p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer__sub { margin-top: 4px; font-size: 11px; letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about__grid      { grid-template-columns: 1fr; }
  .about__seal      { max-width: 280px; margin: 0 auto; }
  .wines__grid      { grid-template-columns: 1fr 1fr; }
  .catalogue__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links       { display: none; flex-direction: column; gap: 0; }
  .nav__links.open  {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,10,0,0.97); padding: 16px var(--px);
  }
  .nav__links.open li a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__burger      { display: flex; }
  .wines__grid      { grid-template-columns: 1fr; }
  .contact__grid    { grid-template-columns: 1fr; max-width: 360px; }
  .about__pillars   { gap: 20px; }
  .footer__inner    { flex-direction: column; text-align: center; }
  .footer__text     { text-align: center; }
}
