/* DEEPDRINK — Dark Cellar Edition */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --bg:         #0a0a0a;
  --bg-lift:    #141414;
  --bg-card:    #111111;
  --bg-glass:   rgba(14,14,14,0.82);
  --gold:       #c9a96e;
  --gold-dim:   rgba(201,169,110,0.18);
  --gold-line:  rgba(201,169,110,0.32);
  --text:       #e8e0d4;
  --muted:      #8a7f72;
  --faint:      #3a3530;
  --serif:      'Cormorant Garamond', 'STSong', 'Songti SC', 'SimSun', Georgia, serif;
  --sans:       -apple-system, 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* scroll reveal — hidden only after JS marks them */
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 52px;
  background: var(--bg-glass);
  border-bottom: 0.5px solid var(--gold-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 46%,
    rgba(201,169,110,0.07) 0%,
    rgba(201,169,110,0.02) 40%,
    transparent 72%
  );
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0 56px;
  text-align: center;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-logo {
  width: 100%;
  max-width: 680px;
  margin: 36px auto 30px;
  opacity: 0.95;
}

.hero h1 {
  max-width: 680px;
  margin: 0 auto;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--text);
}

.hero h1 span { display: block; }

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Meta strip */
.hero-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0.5px solid var(--gold-line);
}

.hero-meta span {
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.5px solid var(--gold-line);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta span:last-child { border-right: none; }

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0.5px solid var(--gold-line);
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
}

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

.button.primary {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.button.primary:hover { background: #d4b47a; }

.button.secondary {
  background: transparent;
  color: var(--gold);
}

.button.secondary:hover {
  background: var(--gold-dim);
}

/* SHARED */
.section-kicker {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 96px 0;
}

.divider {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  height: 0.5px;
  background: var(--gold-line);
}

/* POSITION */
.intro {
  background: var(--bg-lift);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.intro-grid h2 {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.intro-copy p + p { margin-top: 18px; }

/* WINE NOTES */
.notes {}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 500px;
}

.section-heading p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 340px;
  margin-bottom: 4px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--gold-line);
  border: 0.5px solid var(--gold-line);
}

.note-card {
  background: var(--bg-card);
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.24s;
}

.note-card:hover { background: #161410; }

.note-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(160deg, #1a1714 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.note-body { padding: 0 22px; }

.note-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.note-region {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.note-card h3 {
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.34;
  margin-bottom: 10px;
}

.note-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* LABEL STRIP */
.label-strip {
  padding: 56px 0;
  background: var(--bg-lift);
  text-align: center;
  border-top: 0.5px solid var(--gold-line);
  border-bottom: 0.5px solid var(--gold-line);
}

.label-strip img {
  width: min(480px, 80%);
  margin: 0 auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* CELLAR OBJECTS */

.object-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.object-copy {
  position: sticky;
  top: 100px;
}

.object-copy h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.26;
  margin-bottom: 24px;
}

.object-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.object-copy p + p { margin-top: 16px; }

.object-list {
  border-top: 0.5px solid var(--gold-line);
}

.object-item {
  padding: 28px 0;
  border-bottom: 0.5px solid var(--gold-line);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  transition: background 0.2s;
}

.object-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.object-item h3 {
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.object-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* JOURNAL */
.journal {
  background: var(--bg-lift);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--gold-line);
  border: 0.5px solid var(--gold-line);
  margin-top: 40px;
}

.journal-card {
  background: var(--bg-card);
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.24s;
}

.journal-card:hover { background: #161410; }

.journal-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.journal-card h3 {
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.44;
}

/* CONTACT */
.contact {
  background: var(--bg);
}

.contact-panel {
  background: var(--bg-card);
  border: 0.5px solid var(--gold-line);
  padding: 64px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-panel h2 {
  font-size: 1.9rem;
  font-weight: 400;
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.3;
}

.contact-panel p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 20px auto 0;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* FOOTER */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 52px;
  border-top: 0.5px solid var(--gold-line);
}

.site-footer .footer-brand {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer .footer-tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* RESPONSIVE 920px */
@media (max-width: 920px) {
  .site-header {
    padding: 16px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 2px;
  }

  .hero-inner,
  .inner {
    width: calc(100% - 48px);
  }

  .hero h1 { font-size: 2.1rem; }

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

  .hero-meta span:nth-child(2) { border-right: none; }
  .hero-meta span:nth-child(1),
  .hero-meta span:nth-child(2) {
    border-bottom: 0.5px solid var(--gold-line);
  }

  .intro-grid,
  .object-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .object-copy { position: static; }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

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

  .contact-panel { padding: 44px 32px; }

  .site-footer { padding: 24px 28px; }
  .inner { padding: 72px 0; }
}

/* RESPONSIVE 560px */
@media (max-width: 560px) {
  .site-header { padding: 14px 20px; }

  .hero-logo { max-width: 280px; }
  .hero h1 { font-size: 1.7rem; }

  .intro-grid h2,
  .section-heading h2,
  .object-copy h2,
  .contact-panel h2 {
    font-size: 1.55rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta span {
    border-right: none;
    border-bottom: 0.5px solid var(--gold-line);
  }

  .hero-meta span:last-child { border-bottom: none; }

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

  .hero-actions, .contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; text-align: center; }

  .contact-panel { padding: 36px 20px; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px 20px 28px;
  }

  .inner { padding: 60px 0; }
}
