/* ═══════════════════════════════════════════════════════
   VIN D'ORE — BOUTIQUE WINERY WEBSITE
   Elegant wine-style design with Hebrew/English support
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
/* Brand colors taken directly from the Vin d'Ore logo:   */
/*   Gold/amber  → #c9921a  (logo script + gold circle)   */
/*   Coral/red   → #cb4e3a  (red scribble circle)         */
:root {
  --gold:        #c9921a;
  --gold-light:  #e8aa45;
  --gold-dark:   #8a6010;
  --coral:       #cb4e3a;
  --coral-light: #e07060;
  --coral-dark:  #8a2e20;
  --burgundy:    #6b1a2a;
  --deep:        #ffffff;
  --charcoal:    #fdf8f2;
  --dark:        #faf4ea;
  --mid:         #f5ece0;
  --warm-white:  #1a1005;
  --cream:       #3a2810;
  --text-light:  #5a4020;
  --text-muted:  #8a6a40;
  --border:      rgba(160,100,20,.15);

  --font-display: 'Heebo', system-ui, sans-serif;
  --font-body-en: 'Heebo', system-ui, sans-serif;
  --font-body-he: 'Heebo', system-ui, sans-serif;
  --font-ui:      'Heebo', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --shadow-gold: 0 4px 24px rgba(160,100,20,.12);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--deep);
  color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── LANGUAGE SYSTEM ─────────────────────────────────── */
body.lang-he {
  font-family: var(--font-body-he);
  direction: rtl;
}
body.lang-en {
  font-family: var(--font-body-en);
  direction: ltr;
}

/* Switch displayed text based on active language */
body.lang-he [data-he] { content: attr(data-he); }
body.lang-en [data-en] { content: attr(data-en); }

/* Lang toggle visibility */
body.lang-he .lang-en-label { display: none; }
body.lang-en .lang-he-label { display: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}
body.lang-en h1, body.lang-en h2, body.lang-en h3 {
  letter-spacing: .03em;
}
h1 { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 400; font-style: italic; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: #ffffff; }

.body-text {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 55ch;
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 100px 0; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: .85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  z-index: 0;
  isolation: isolate;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}
body.lang-he .btn-primary::before { transform-origin: right; }
.btn-primary:hover {
  color: var(--deep);
}
.btn-primary:hover::before { transform: scaleX(1); }

#hero .btn-primary {
  color: var(--text-light);
  border-color: var(--text-light);
}
#hero .btn-primary:hover { color: var(--deep); }

.btn-wine {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
  padding-bottom: 2px;
}
.btn-wine:hover { border-color: var(--gold); }

/* ─── NAVBAR ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #F8F1EA;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: #F8F1EA;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* left: stacked logos */
.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.logo-stack a { display: flex; }
.logo-stack a:first-child img { height: 80px; width: auto; }
.logo-stack a:last-child img  { height: 50px; width: auto; }

/* right: logo + nav links + burger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-toggle {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: .4rem .9rem;
  border-radius: 2px;
  transition: var(--transition);
}
.lang-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--warm-white);
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(13,10,8,.97);
  border-top: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .4s ease;
}
.mobile-menu.open {
  max-height: 300px;
  padding: 1.5rem 0;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu a {
  font-family: var(--font-ui);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: clip;
  padding: 5rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(203,78,58,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(201,146,26,.22) 0%, transparent 55%),
    linear-gradient(160deg, #ede4d8 0%, #e4d9c8 50%, #ddd0bc 100%);
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: heroFade 1.4s ease both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow-logo {
  height: 110px;
  width: auto;
  margin-bottom: .5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-purchase {
  background: var(--gold);
  color: var(--deep) !important;
  border-color: var(--gold);
}
.btn-purchase:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.hero-title-logo {
  width: 340px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero-title {
  font-style: italic;
  font-weight: 400;
  color: var(--warm-white);
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  margin: -.5rem 0;
}
.hero-tagline {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .25em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
  text-align: center;
  transform: translateX(1rem);
  color: var(--text-light);
  max-width: 90vw;
}

body.lang-en .hero-tagline {
  align-self: center;
  text-align: center;
  transform: translateX(2rem);
}

/* Scroll indicator */
.hero-scroll-inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--text-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scrollLine {
  0%   { transform: translateX(-50%) scaleY(0); transform-origin: top; }
  50%  { transform: translateX(-50%) scaleY(1); transform-origin: top; }
  51%  { transform: translateX(-50%) scaleY(1); transform-origin: bottom; }
  100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; }
}

/* ─── ABOUT ───────────────────────────────────────────── */
#about { background: var(--charcoal); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
body.lang-he .about-grid { direction: rtl; }

.about-image {
  position: relative;
}
.about-img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--mid);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform .8s ease;
}
.about-img-frame:hover img { transform: scale(1.13); }

/* Placeholder when no image */
.about-img-frame.no-img {
  background:
    linear-gradient(135deg, var(--dark) 0%, var(--mid) 50%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-frame.no-img::after {
  content: 'Vin d\'Ore';
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  opacity: .4;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--burgundy);
  border: 2px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
body.lang-he .about-badge { right: auto; left: -1.5rem; }

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-text h2 { color: var(--warm-white); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .2rem;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── WINES ───────────────────────────────────────────── */
#wines {
  background: var(--deep);
  position: relative;
}
#wines::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { color: var(--warm-white); margin-bottom: 1rem; }
.section-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.wines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wine-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.wine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,146,26,.4);
  box-shadow: var(--shadow-gold);
}
.wine-card.featured {
  border-color: rgba(201,146,26,.35);
}

.wine-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--burgundy);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  z-index: 2;
}
body.lang-he .wine-ribbon { right: 0.5rem; left: auto; }

.wine-card-img {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.wine-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s ease;
  padding: 1rem 0;
}
.wine-card:hover .wine-card-img img { transform: scale(1.05); }

/* Wine image placeholder */
.wine-card-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wine-card-img.no-img::after {
  content: '🍷';
  font-size: 3rem;
  opacity: .3;
}

.wine-type-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(228, 66, 44, 0.15);
  backdrop-filter: blur(4px);
  color: #E4422C;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem .8rem;
}
.wine-type-badge.white { background: rgba(201, 146, 26, 0.15); color: #c9921a; }
.wine-type-badge.rose  { background: rgba(228, 66, 44, 0.1); color: #f07060; }

.wine-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.wine-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--warm-white);
}
.wine-variety {
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.wine-desc {
  font-size: .95rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.65;
}
.wine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: .25rem;
}
.wine-vintage {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
}

.terroir-overlay { display: none; }

.terroir-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.terroir-content h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.terroir-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 65ch;
  margin: 0 auto 4rem;
  line-height: 1.85;
}

.terroir-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.pillar {
  padding-top: 2rem;
}
.pillar-icon {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .75rem;
}
.pillar p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ─── QUOTE ───────────────────────────────────────────── */
#quote {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}
blockquote {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: .5;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1rem;
  opacity: .6;
}
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: .8rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.8);
  font-style: normal;
}
.quote-mark { color: rgba(255,255,255,.4); }

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
  background: var(--dark);
}
#contact::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
  margin: 0 auto 0;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { color: var(--warm-white); margin-bottom: 1rem; }
.contact-info .body-text { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-details a {
  color: var(--text-light);
  font-size: .95rem;
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FORM ────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
label {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
}
input, textarea, select {
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(90,64,32,.25);
  border-radius: var(--r-sm);
  color: var(--warm-white);
  font-family: var(--font-body-he);
  font-size: 1rem;
  padding: .65rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
body.lang-en input, body.lang-en textarea, body.lang-en select {
  font-family: var(--font-body-en);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,26,.12);
}
textarea { resize: vertical; min-height: 120px; }
input:-webkit-autofill,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--dark) inset;
  -webkit-text-fill-color: var(--warm-white);
}

.form-success {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .9rem;
  text-align: center;
}
.form-success.show { display: block; }

/* btn-wine as button element */
button.btn-wine {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ─── ORDER MODAL ─────────────────────────────────────── */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,12,4,.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.order-modal-overlay.open { display: flex; }

.order-modal {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  animation: heroFade .3s ease both;
}
.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem .5rem;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--coral); }
.order-modal h3 {
  font-size: 1.4rem;
  color: var(--warm-white);
  margin-bottom: .25rem;
}
.modal-wine-price {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--font-ui);
  font-size: .75rem;
  color: var(--text-muted);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .wines-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-height: 820px) {
  .hero-content { gap: .9rem; }
  .hero-eyebrow-logo { height: 75px; }
  .hero-title-logo { width: 240px; }
}

/* ─── WHAT MAKES US SPECIAL ──────────────────────────── */
#special {
  background: var(--charcoal);
  position: relative;
}
#special::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.pillar-card {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  transition: border-color var(--transition);
}
.pillar-card:hover { border-color: var(--gold); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .6;
}
.pillar-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--warm-white);
  margin-bottom: .75rem;
}
.pillar-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── WINE TAGLINE ────────────────────────────────────── */
.wine-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--text-light);
  border-right: 2px solid var(--gold-dark);
  padding-right: .75rem;
  line-height: 1.5;
  margin-bottom: .25rem;
}
body.lang-en .wine-tagline {
  border-right: none;
  border-left: 2px solid var(--gold-dark);
  padding-right: 0;
  padding-left: .75rem;
}

/* ─── WINE PRICE ──────────────────────────────────────── */
.wine-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 400;
}

/* ─── NEW ARRIVAL RIBBON ──────────────────────────────── */
.wine-ribbon.new {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ─── AWARD MEDAL BADGE ───────────────────────────────── */
.wine-ribbon.medal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  padding: .35rem .65rem;
  line-height: 1.2;
  color: #fff8e7;
}
.wine-ribbon.medal.gold {
  background: linear-gradient(135deg, #7a5208, #c9921a, #7a5208);
}
.wine-ribbon.medal.silver {
  background: linear-gradient(135deg, #4a4a52, #9a9aaa, #4a4a52);
  color: #f0f0f5;
}
.wine-ribbon.medal .medal-contest {
  font-size: .58rem;
  letter-spacing: .12em;
}
.wine-ribbon.medal .medal-type {
  font-size: .72rem;
  letter-spacing: .06em;
  font-weight: 700;
}

/* ─── HERO MEDALS LINE ────────────────────────────────── */
.hero-medals-line {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
  color: #E4422C;
  margin: 12px 0 28px;
  transform: translateX(0.5rem);
  background: rgba(228, 66, 44, 0.15);
  padding: 7px 22px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ─── TERROIR BG ──────────────────────────────────────── */
#terroir {
  position: relative;
  padding: 130px 0;
  background: var(--coral);
  overflow: hidden;
}
#terroir::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(0,0,0,.1) 0%, transparent 40%);
  pointer-events: none;
}

@media (max-width: 860px) {
  section { padding: 70px 0; }

  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-badge { display: none; }

  .terroir-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { padding: 0 1.25rem; }
  .wines-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3rem; }

  /* Hero */
  .hero-tagline {
    white-space: normal;
    font-size: .78rem;
    letter-spacing: .15em;
    transform: none;
    text-align: center;
    padding: 0 1rem;
  }
  body.lang-en .hero-tagline { transform: none; }

  .hero-medals-line {
    font-size: .7rem;
    letter-spacing: .05em;
    padding: 5px 12px;
    text-align: center;
    white-space: normal;
    max-width: 85vw;
  }

  .hero-title-logo { width: 220px; }
  .hero-eyebrow-logo { height: 70px; }

  /* Nav */
  .nav-inner { padding: 0 1rem; }

  /* Section headings */
  .section-header h2 { font-size: 2rem; }

  /* About */
  .about-text h2 { font-size: 2rem; }

  /* Terroir */
  .terroir-content h2 { font-size: 2rem; }

  /* Modals */
  .order-modal { padding: 2rem 1.25rem; width: 95vw; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── GOLD LINE DECORATORS ────────────────────────────── */
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-inline-end: .75rem;
}

/* ═══════════════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════════════ */

#events {
  background: var(--deep);
  position: relative;
}
#events::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--coral-dark), transparent);
}

/* ─── EVENTS TABS ─────────────────────────────────────── */
.events-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  justify-content: center;
}
.tab-btn {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .85rem 2.5rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  background: none;
  border: none;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.tab-btn.active {
  color: var(--gold-light);
}
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--warm-white); }

/* ─── TAB PANELS ──────────────────────────────────────── */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── PAST EVENTS GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item:nth-child(2) {
  aspect-ratio: 4/5;
  grid-row: span 2;
}
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Placeholder when no image */
.gallery-item.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.gallery-item.no-img::after {
  content: attr(data-label);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,11,9,.9) 0%, transparent 100%);
  padding: 1.5rem 1.25rem .9rem;
  transform: translateY(6px);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--warm-white);
  margin-bottom: .25rem;
}
.gallery-caption span {
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── UPCOMING EVENTS TIMELINE ────────────────────────── */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
/* Center spine */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--coral), transparent);
}
body.lang-he .timeline::before { left: 50%; }

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

/* Date — consistent left side */
.timeline-date {
  padding: .5rem 2rem .5rem 0;
  text-align: right;
}
body.lang-en .timeline-date { text-align: right; }

.timeline-date-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.timeline-date-month {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.timeline-date-year {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  display: block;
}

/* Center dot */
.timeline-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .4rem;
}
.timeline-dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--deep);
  box-shadow: 0 0 0 3px rgba(201,146,26,.3);
  flex-shrink: 0;
}
.timeline-item.past .timeline-dot-inner { background: var(--coral); box-shadow: 0 0 0 3px rgba(203,78,58,.3); }
.timeline-item.featured-event .timeline-dot-inner {
  background: var(--gold-light);
  width: 18px; height: 18px;
  box-shadow: 0 0 0 4px rgba(201,146,26,.25), 0 0 20px rgba(201,146,26,.3);
}

/* Event body */
.timeline-body {
  padding: .5rem 0 .5rem 2rem;
}
.timeline-event-label {
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .4rem;
  display: block;
}
.timeline-item.featured-event .timeline-event-label { color: var(--gold); }
.timeline-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--warm-white);
  margin-bottom: .5rem;
}
.timeline-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 30ch;
}
.rsvp-event-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.rsvp-event-details li {
  font-size: .85rem;
  color: var(--text-muted);
}

.timeline-body .event-location {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .6rem;
}
.event-location::before { content: '◎'; color: var(--gold); }

/* ─── "No events" empty state ─────────────────────────── */
.events-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.events-empty p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(2) { grid-row: auto; aspect-ratio: 4/3; }

  .timeline::before { left: 24px; }
  body.lang-he .timeline::before { left: auto; right: 24px; }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .timeline-dot { grid-column: 1; grid-row: 1; padding-top: .35rem; }
  .timeline-date { grid-column: 2; grid-row: 1; padding: 0 0 .25rem 1rem; text-align: left; }
  .timeline-body { grid-column: 2; grid-row: 2; padding: 0 0 0 1rem; text-align: left; }

body.lang-he .timeline-date { text-align: right; }
  body.lang-he .timeline-body { text-align: right; }
}

@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: auto; aspect-ratio: 4/3; }
  .gallery-item:nth-child(2) { aspect-ratio: 4/3; grid-row: auto; }
  .events-tabs { gap: 0; }
  .tab-btn { padding: .85rem 1.25rem; font-size: .7rem; }
}
