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

:root {
  --ink: #1A1008;
  --burgundy: #6D1826;
  --burgundy-mid: #8B2535;
  --burgundy-light: #B8485A;
  --gold: #A07840;
  --gold-light: #C9A26A;
  --gold-pale: #E8D5B0;
  --cream: #F7F2EA;
  --cream-warm: #EFE8D8;
  --parchment: #D9CEBA;
  --muted: #7A6A58;
  --border: rgba(160, 120, 64, 0.2);
  --border-strong: rgba(160, 120, 64, 0.4);
}

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

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  overflow-wrap: break-word;
  width: 100%;
  position: relative;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; }

img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid #ffd88a;
  outline-offset: 3px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 2rem; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-fill { background: var(--burgundy); color: var(--cream); border: 2px solid var(--burgundy); }
.btn-fill:hover, .btn-fill:focus-visible { background: var(--burgundy-mid); border-color: #ffffff; }
.btn-ghost { border-color: var(--border-strong); color: var(--cream-warm); background: transparent; border: 2px solid var(--border-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.12); }

.section-kicker {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem; font-weight: 500;
}
.kicker-light { color: var(--gold-light); }
.section-title {
  font-weight: 300; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; color: var(--ink);
}
.section-title strong { font-weight: 600; color: var(--burgundy); }
.section-lead { margin-top: 1rem; color: var(--muted); font-size: 0.95rem; max-width: 620px; line-height: 1.85; }

.section { padding: 6rem clamp(1rem, 5vw, 6rem); }
.section-warm { background: var(--cream-warm); }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: rgba(247, 242, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}
.lang-switch { display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem; }
.accessibility-toggle {
  border: 2px solid var(--burgundy); background: #fffdf8; color: var(--burgundy);
  padding: 0.42rem 1rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; font-weight: 700;
  border-radius: 0.9rem;
  box-shadow: 0 6px 18px rgba(109, 24, 38, 0.08);
}
.accessibility-toggle.active, .accessibility-toggle:hover, .accessibility-toggle:focus-visible {
  background: var(--burgundy); border-color: var(--burgundy); color: var(--cream);
  box-shadow: 0 10px 24px rgba(109, 24, 38, 0.18);
}
.lang-btn {
  border: 1px solid var(--border-strong); background: #fffdf8; color: var(--ink);
  padding: 0.4rem 0.7rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; font-weight: 600;
  border-radius: 0.8rem;
}
.lang-btn.active, .lang-btn:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--burgundy); text-decoration: none;
}
.nav-logo span { font-weight: 300; font-style: italic; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: background-color 0.2s, color 0.2s; font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 0.9rem;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--burgundy);
  background: rgba(109, 24, 38, 0.14);
}
.nav-cta {
  background: var(--burgundy); color: var(--cream) !important;
  padding: 0.65rem 1.5rem; transition: background 0.2s, transform 0.2s; font-weight: 700;
  border-radius: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-cta:hover {
  background: var(--burgundy-mid) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.5rem; color: var(--burgundy); cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding-top: 64px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,16,8,0.55) 0%, rgba(26,16,8,0.72) 55%, rgba(26,16,8,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 780px; text-align: center; padding: 2rem 1.2rem 5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero-content .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.6rem; display: flex; align-items: center; gap: 1rem;
}
.hero-content .eyebrow::before, .hero-content .eyebrow::after { content:''; display:block; width:32px; height:1px; background: var(--gold-light); }
.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.6rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1.6rem;
}
.hero-content h1 em { font-style: italic; color: var(--gold-pale); font-weight: 400; }
.hero-content h1 strong { font-weight: 600; }
.hero-content p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.85; color: rgba(247,242,234,0.82); max-width: 560px; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(247,242,234,0.6); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue span { width: 1px; height: 30px; background: rgba(247,242,234,0.4); animation: scrollpulse 1.8s infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink); padding: 2.5rem clamp(1rem, 3vw, 3rem);
}
.stat { text-align: center; border-right: 1px solid rgba(160,120,64,0.15); padding: 0.5rem 0.6rem; min-width: 0; }
.stat:last-child { border-right: none; }
.stat .num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold-pale); font-weight: 300; }
.stat .label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,242,234,0.5); margin-top: 0.4rem; display: block; word-break: break-word; }

/* ===== TORTENET ===== */
.tortenet { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.tortenet-text p { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-top: 1.1rem; }
.tortenet-text p:first-of-type { margin-top: 1.5rem; }
.highlight-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; }
.highlight-list li {
  font-size: 0.88rem; color: var(--ink); padding-left: 1.4rem; position: relative; line-height: 1.6;
}
.highlight-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.3rem; }
.tortenet-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.tortenet-img { width: 100%; height: 240px; object-fit: cover; border: 1px solid var(--border); }
.tortenet-box { background: var(--burgundy); padding: 2.2rem; position: relative; color: var(--cream); overflow-wrap: break-word; }
.tortenet-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold-light); opacity: 0.5; line-height: 0.5; display: block; margin-bottom: 0.5rem; }
.tortenet-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; line-height: 1.7; }
.tortenet-attr { display: block; margin-top: 1rem; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--gold-light); text-transform: uppercase; }

.timeline {
  margin-top: 4rem; display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.tl-item { text-align: center; min-width: 0; }
.tl-yr { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--burgundy); font-weight: 600; margin-bottom: 0.5rem; }
.tl-ev { font-size: 0.8rem; color: var(--muted); line-height: 1.5; word-break: break-word; }

/* ===== BOROK ===== */
.borok-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.wine-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.wine-filter {
  background: transparent; border: 1px solid var(--border-strong); color: var(--muted);
  padding: 0.5rem 1.1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif;
}
.wine-filter:hover { border-color: var(--gold); color: var(--gold); }
.wine-filter.active { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.wine-card { background: var(--cream); border: 1px solid var(--border); display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; min-width: 0; }
.wine-card:hover { box-shadow: 0 20px 50px rgba(109,24,38,0.1); transform: translateY(-4px); }
.wine-card.wide { grid-column: span 2; flex-direction: row; }
.wine-card.hidden { display: none !important; }
.wc-img { position: relative; height: 240px; overflow: hidden; }
.wine-card.wide .wc-img { width: 44%; height: auto; min-height: 320px; flex-shrink: 0; }
.wc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.wine-card:hover .wc-img img { transform: scale(1.06); }
.wc-badge {
  position: absolute; top: 1rem; left: 1rem; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; color: var(--cream);
}
.badge-red { background: var(--burgundy); }
.badge-white { background: var(--gold); }
.badge-rose { background: var(--burgundy-light); }
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--ink); }
.wc-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.wine-card.wide .wc-body { justify-content: center; padding: 2rem 2.4rem; }
.wc-type { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.wc-name { font-size: 1.5rem; font-weight: 600; color: var(--burgundy); margin: 0.4rem 0 0.2rem; word-break: break-word; }
.wine-card.wide .wc-name { font-size: 1.9rem; }
.wc-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.9rem; }
.wc-desc { font-size: 0.86rem; line-height: 1.75; color: var(--muted); padding-top: 0.9rem; border-top: 1px solid var(--border); flex: 1; }
.wc-notes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.wc-notes span { font-size: 0.68rem; color: var(--gold); border: 1px solid var(--border); padding: 0.2rem 0.6rem; }
.wc-footer { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.72rem; color: var(--muted); flex-wrap: wrap; gap: 0.4rem; }

/* ===== KOSTOLAS ===== */
.kostolo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px; background: var(--border); margin: 3rem 0; border: 1px solid var(--border);
}
.kg-item { position: relative; height: 280px; overflow: hidden; min-width: 0; }
.kg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.kg-item:hover img { transform: scale(1.05); }
.kg-item span {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.2rem 0.8rem;
  background: linear-gradient(to top, rgba(26,16,8,0.75), transparent);
  color: var(--gold-pale); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
}

.kostolas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.kostolas-card { background: var(--cream); border: 1px solid var(--border); padding: 2rem; position: relative; transition: border-color 0.2s; min-width: 0; }
.kostolas-card:hover { border-color: var(--gold-light); }
.kostolas-card.featured { background: var(--burgundy); border-color: var(--burgundy); }
.k-badge {
  position: absolute; top: -1px; right: 2rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--gold); color: var(--cream); padding: 0.3rem 0.8rem;
}
.k-name { font-size: 1.4rem; font-weight: 600; color: var(--burgundy); margin-bottom: 0.5rem; word-break: break-word; }
.kostolas-card.featured .k-name { color: var(--cream); }
.k-sub { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; word-break: break-word; }
.kostolas-card.featured .k-sub { color: rgba(247,242,234,0.6); }
.k-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.k-features li { font-size: 0.86rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.4; }
.kostolas-card.featured .k-features li { color: rgba(247,242,234,0.85); }
.k-features li::before { content: '✓'; color: var(--gold-light); font-size: 0.75rem; flex-shrink: 0; }

.kostolas-note { margin-top: 2.5rem; padding: 1.6rem 2rem; background: rgba(160,120,64,0.08); border-left: 3px solid var(--gold); }
.kostolas-note p { font-size: 0.9rem; color: var(--ink); line-height: 1.7; }

/* ===== PINCE ===== */
.pince-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pince-left { background: var(--burgundy); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 4rem clamp(1.5rem, 4vw, 4rem); }
.pince-grid-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pince-numbers {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.pince-num-item { text-align: center; min-width: 0; }
.pince-num-item .num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 300; color: var(--gold-pale); display: block; line-height: 1; word-break: break-word; }
.pince-num-item .lbl { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,242,234,0.45); margin-top: 0.4rem; display: block; word-break: break-word; }
.pince-right { padding: 4.5rem clamp(1.5rem, 4vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.pince-right p { font-size: 0.96rem; line-height: 1.85; color: var(--muted); margin-top: 1.2rem; }

.epulet-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px; background: var(--border);
}
.epulet-gallery img { height: 220px; object-fit: cover; width: 100%; transition: transform 0.4s; }
.epulet-gallery img:hover { transform: scale(1.04); }

/* ===== KAPCSOLAT / FOGLALAS ===== */
.kapcsolat-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); }
.kapcsolat-left { padding: 5rem clamp(1.2rem, 4vw, 4rem) 5rem clamp(1.2rem, 4vw, 6rem); border-right: 1px solid rgba(160,120,64,0.15); }
.kapcsolat-left h2 { font-size: 2.4rem; font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.kapcsolat-left h2 strong { font-weight: 600; }
.kapcsolat-left > p { font-size: 0.94rem; line-height: 1.85; color: rgba(239,232,216,0.6); max-width: 400px; }
.contact-info { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.ci { display: flex; align-items: center; gap: 1.2rem; font-size: 0.88rem; color: var(--cream); word-break: break-word; }
.ci-icon { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid rgba(160,120,64,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.ci a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.ci a:hover { color: var(--gold-light); }
.fb-link {
  display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 1.8rem; font-size: 0.76rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold-light); text-decoration: none; border: 1px solid rgba(160,120,64,0.3);
  padding: 0.65rem 1.4rem; transition: all 0.2s;
}
.fb-link:hover { background: rgba(160,120,64,0.1); border-color: var(--gold-light); }
.map-embed { margin-top: 2.2rem; border: 1px solid rgba(160,120,64,0.25); height: 220px; overflow: hidden; max-width: 100%; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) sepia(0.15); }

.kapcsolat-right { padding: 5rem clamp(1.2rem, 4vw, 5rem) 5rem clamp(1.2rem, 4vw, 4rem); }
.kapcsolat-right h3 { font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 0.6rem; }
.form-note { font-size: 0.85rem; color: rgba(239,232,216,0.55); line-height: 1.6; margin-bottom: 1.8rem; }
.form-note strong { color: var(--gold-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; min-width: 0; }
.form-group label { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.form-group label .optional { color: rgba(239,232,216,0.4); text-transform: none; letter-spacing: 0; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(160,120,64,0.25); color: var(--cream);
  padding: 0.8rem 1rem; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300;
  outline: none; transition: border-color 0.2s; width: 100%; max-width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(239,232,216,0.25); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-light); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.8); cursor: pointer; }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.checkbox-item {
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.86rem; color: rgba(239,232,216,0.85);
  border: 1px solid rgba(160,120,64,0.25); padding: 0.7rem 0.9rem; cursor: pointer; transition: border-color 0.2s, background 0.2s;
  word-break: break-word; overflow-wrap: anywhere;
}
.checkbox-item:hover { border-color: var(--gold-light); background: rgba(160,120,64,0.06); }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }

.form-status { margin-top: 1rem; font-size: 0.85rem; color: var(--gold-light); min-height: 1.2em; }
.form-status.error { color: var(--burgundy-light); }

/* ===== FOOTER ===== */
footer {
  background: #0D0604; padding: 2rem clamp(1rem, 4vw, 6rem); display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(160,120,64,0.12); flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: rgba(247,242,234,0.5); text-decoration: none; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(247,242,234,0.45); text-decoration: none; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.7rem; color: rgba(247,242,234,0.25); letter-spacing: 0.03em; word-break: break-word; }

/* ===== FEATURE / GDPR SECTION ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem;
}
.feature-card {
  background: var(--cream); border: 1px solid var(--border); padding: 1.5rem; min-width: 0;
}
.feature-icon {
  font-size: 1.6rem; margin-bottom: 0.8rem;
}
.feature-card h3 {
  font-size: 1.15rem; color: var(--burgundy); margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.88rem; line-height: 1.7; color: var(--muted);
}
.feature-foot {
  margin-top: 1.4rem; font-size: 0.9rem; color: var(--muted); padding: 1rem 1.2rem; background: rgba(160,120,64,0.08); border-left: 3px solid var(--gold);
}

/* ===== ACCESSIBILITY MODE ===== */
body.accessible-mode {
  font-size: 1.04rem;
  background: #111111;
  color: #f8f5ef;
  line-height: 1.8;
}
body.accessible-mode .section-title,
body.accessible-mode .section-kicker,
body.accessible-mode .feature-card h3,
body.accessible-mode .k-name,
body.accessible-mode .wc-name,
body.accessible-mode .kapcsolat-left h2,
body.accessible-mode .kapcsolat-right h3,
body.accessible-mode .nav-logo {
  color: #fff7e8;
}
body.accessible-mode .section-lead,
body.accessible-mode .feature-card p,
body.accessible-mode .tortenet-text p,
body.accessible-mode .wc-desc,
body.accessible-mode .k-features li,
body.accessible-mode .pince-right p,
body.accessible-mode .kapcsolat-left > p,
body.accessible-mode .form-note,
body.accessible-mode .highlight-list li,
body.accessible-mode .tl-ev,
body.accessible-mode .footer-copy,
body.accessible-mode .cookie-card p {
  color: #f5ebdc;
  line-height: 1.9;
}
body.accessible-mode nav,
body.accessible-mode .feature-card,
body.accessible-mode .wine-card,
body.accessible-mode .kostolas-card,
body.accessible-mode .tortenet-box,
body.accessible-mode .cookie-card,
body.accessible-mode .kapcsolat-left,
body.accessible-mode .kapcsolat-right {
  background: #161616;
  color: #f8f5ef;
  border-color: rgba(255,255,255,0.2);
}
body.accessible-mode .btn-fill {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}
body.accessible-mode .btn-ghost {
  border-color: #ffffff;
  color: #ffffff;
}
body.accessible-mode .accessibility-toggle {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
  font-weight: 800;
}
body.accessible-mode .accessibility-toggle.active {
  background: #ffd88a;
  color: #111111;
  border-color: #ffd88a;
}
body.accessible-mode .hero,
body.accessible-mode .slideshow-hero,
body.accessible-mode .section,
body.accessible-mode .section-warm,
body.accessible-mode .pince-split,
body.accessible-mode .epulet-gallery,
body.accessible-mode .stats,
body.accessible-mode .tortenet,
body.accessible-mode .feature-foot,
body.accessible-mode .kapcsolat-section,
body.accessible-mode .kapcsolat-left,
body.accessible-mode .kapcsolat-right,
body.accessible-mode .kostolas-card,
body.accessible-mode .wine-card,
body.accessible-mode .cookie-card,
body.accessible-mode .tortenet-box {
  background: #111111 !important;
  color: #f8f5ef !important;
  border-color: rgba(255,255,255,0.18) !important;
}
body.accessible-mode .hero-content p,
body.accessible-mode .section-lead,
body.accessible-mode .slide-overlay,
body.accessible-mode .slideshow-hero .slide-overlay,
body.accessible-mode .feature-card p,
body.accessible-mode .kapcsolat-left > p,
body.accessible-mode .pince-right p,
body.accessible-mode .tortenet-text p,
body.accessible-mode .form-note,
body.accessible-mode .highlight-list li,
body.accessible-mode .wc-desc,
body.accessible-mode .wc-notes span,
body.accessible-mode .stat .label,
body.accessible-mode .footer-copy {
  color: #f8f5ef !important;
}
body.accessible-mode .lang-btn,
body.accessible-mode .wine-filter,
body.accessible-mode .cookie-panel label,
body.accessible-mode .ci,
body.accessible-mode .form-group input,
body.accessible-mode .form-group textarea {
  color: #f8f5ef;
}
body.accessible-mode .lang-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #f8f5ef;
}
body.accessible-mode .lang-btn.active,
body.accessible-mode .lang-btn:hover {
  background: rgba(255,216,138,0.18);
  border-color: #ffd88a;
  color: #ffd88a;
}
body.accessible-mode .nav-cta {
  background: #ffd88a !important;
  color: #111111 !important;
  border-radius: 0.8rem;
}
body.accessible-mode .nav-cta:hover {
  background: #ffde85 !important;
}
body.accessible-mode .hero-content h1,
body.accessible-mode .hero-content p,
body.accessible-mode .hero-content .eyebrow,
body.accessible-mode .scroll-cue,
body.accessible-mode .section-kicker,
body.accessible-mode .k-sub,
body.accessible-mode .wc-sub,
body.accessible-mode .wc-footer,
body.accessible-mode .wc-notes span,
body.accessible-mode .stat .label,
body.accessible-mode .tortenet-attr {
  color: #fff7e8;
}
body.accessible-mode .hero-content h1 em,
body.accessible-mode .hero-content h1 strong,
body.accessible-mode .section-title strong,
body.accessible-mode .wc-name,
body.accessible-mode .k-name,
body.accessible-mode .tortenet-box .tortenet-quote-mark {
  color: #ffd88a;
}
body.accessible-mode .feature-foot,
body.accessible-mode .kostolas-note,
body.accessible-mode .cookie-panel {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
body.accessible-mode .nav-links a,
body.accessible-mode .footer-links a,
body.accessible-mode .ci a {
  color: #f8f5ef;
}
body.accessible-mode .nav-links a.active,
body.accessible-mode .nav-links a:hover,
body.accessible-mode .footer-links a:hover,
body.accessible-mode .ci a:hover {
  color: #ffd88a;
}
body.accessible-mode .accessibility-toggle {
  background: transparent;
  padding: 0.36rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-width: 2px;
}

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 260;
}
.cookie-banner.hidden { display: none; }
.cookie-card {
  background: rgba(13,6,4,0.96); color: var(--cream); border: 1px solid rgba(160,120,64,0.35);
  padding: 1.2rem 1.3rem; max-width: 760px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cookie-card h3 {
  font-size: 1.05rem; color: var(--gold-light); margin-bottom: 0.4rem;
}
.cookie-card p {
  font-size: 0.84rem; line-height: 1.7; color: rgba(247,242,234,0.75);
}
.cookie-actions {
  display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem;
}
.cookie-banner .btn { padding: 0.65rem 1rem; font-size: 0.68rem; }
.cookie-banner .btn-ghost { border-color: rgba(160,120,64,0.35); color: var(--cream-warm); }
.cookie-panel {
  display: none; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(160,120,64,0.2);
}
.cookie-panel.open { display: grid; gap: 0.6rem; }
.cookie-panel label {
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(247,242,234,0.8);
}
.cookie-status {
  margin-top: 0.8rem; font-size: 0.74rem; color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%);
    width: min(92vw, 420px); background: #fff; flex-direction: column;
    align-items: stretch; padding: 1.25rem 1rem; gap: 0.9rem; display: none;
    border: 1px solid rgba(109, 24, 38, 0.12); border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.85rem 1rem; }
  .lang-switch { flex-wrap: wrap; justify-content: flex-end; gap: 0.6rem; width: 100%; }
  .nav-logo { font-size: 1.4rem; }
  .nav-links a { font-size: 0.9rem; }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0; padding: 2rem clamp(1rem, 3vw, 3rem);
  }
  .stat { border-right: none; border-bottom: 1px solid rgba(160,120,64,0.15); padding-bottom: 1.5rem; }
  .tortenet { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }
  .wine-grid {
    grid-template-columns: 1fr;
  }
  .wine-card.wide { grid-column: span 1; flex-direction: column; }
  .wine-card.wide .wc-img { width: 100%; min-height: 260px; }
  .kostolo-gallery { grid-template-columns: 1fr; }
  .kostolas-grid { grid-template-columns: 1fr; }
  .pince-split { grid-template-columns: 1fr; }
  .epulet-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kapcsolat-section { grid-template-columns: 1fr; }
  .kapcsolat-left { border-right: none; }
  .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 1rem; }
  .hero-content { padding: 2rem 1rem 4rem; }
  .hero-content .eyebrow::before, .hero-content .eyebrow::after { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; min-height: 3rem; }
  .stats {
    grid-template-columns: 1fr;
    gap: 0; padding: 1rem;
  }
  .stat { border-bottom: 1px solid rgba(160,120,64,0.15); padding: 1.5rem 0.5rem; }
  .stat:last-child { border-bottom: none; }
  .timeline { grid-template-columns: 1fr; }
  .tortenet-img { height: 180px; }
 .tortenet-box { padding: 1.6rem; }
  .wine-card.wide .wc-body { padding: 1.4rem; }
  .wc-img { height: 200px; }
  .wine-card.wide .wc-img { min-height: 220px; }
  .kostolo-gallery { margin: 2rem 0; }
  .kg-item { height: 220px; }
  .kostolas-card { padding: 1.5rem; }
  .pince-left, .pince-right { padding: 2.5rem 1rem; }
  .pince-num-item .num { font-size: 2.4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .epulet-gallery { grid-template-columns: 1fr; }
  .epulet-gallery img { height: 180px; }
  .map-embed { height: 180px; }
  .accessibility-toggle, .lang-btn { min-height: 2.4rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .wc-name { font-size: 1.3rem; }
 .wine-card.wide .wc-name { font-size: 1.4rem; }
  .kapcsolat-left h2 { font-size: 1.8rem; }
  .kapcsolat-right h3 { font-size: 1.3rem; }
  .footer-copy { font-size: 0.65rem; }
}

 /* ===== Boraink aloldal ===== */

 /* ===== SLIDESHOW HERO ===== */
  .slideshow-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
  }

  .slideshow-hero .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
  }

  .slideshow-hero .slide.active {
    opacity: 1;
    z-index: 2;
  }

  .slideshow-hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slideshow-hero .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,16,8,0.25) 0%, rgba(26,16,8,0.55) 55%, rgba(26,16,8,0.85) 100%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem clamp(1.5rem, 5vw, 6rem);
  }

  .slideshow-hero .slide-overlay .slide-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .slideshow-hero .slide-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    max-width: 700px;
  }

  .slideshow-hero .slide-overlay h2 strong {
    font-weight: 600;
    color: var(--gold-pale);
  }

  .slideshow-hero .slide-overlay p {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: rgba(247,242,234,0.7);
    max-width: 540px;
    margin-top: 0.8rem;
    line-height: 1.7;
  }

  .slideshow-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .slideshow-controls .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(247,242,234,0.30);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .slideshow-controls .dot.active {
    background: var(--gold-light);
    transform: scale(1.3);
    box-shadow: 0 0 16px rgba(160,120,64,0.4);
  }

  .slideshow-controls .dot:hover {
    background: rgba(247,242,234,0.7);
  }

  .slideshow-controls .arrow {
    background: rgba(247,242,234,0.10);
    border: 1px solid rgba(247,242,234,0.15);
    color: var(--cream);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }

  .slideshow-controls .arrow:hover {
    background: rgba(247,242,234,0.20);
    border-color: var(--gold-light);
  }

  /* ===== BOROK SZEKCIÓ ===== */
  .borok-section {
    padding-top: 4rem;
  }

  /* ===== BOROK RÁCS - EGYSÉGES MEGJELENÍTÉS ===== */
  .wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .wine-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
  }

  .wine-card:hover {
    box-shadow: 0 16px 48px rgba(109, 24, 38, 0.10);
    transform: translateY(-6px);
  }

  .wc-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--parchment);
  }

  .wc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .wine-card:hover .wc-img img {
    transform: scale(1.05);
  }

  .wc-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    color: var(--cream);
    border-radius: 2px;
    font-weight: 500;
    z-index: 2;
  }

  .badge-red   { background: var(--burgundy); }
  .badge-white { background: var(--gold); color: var(--cream); }
  .badge-rose  { background: var(--burgundy-light); }
  .badge-gold  { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--ink); }

  .wc-body {
    padding: 1.6rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .wc-type {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.2rem;
  }

  .wc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin: 0.2rem 0 0.1rem;
    line-height: 1.2;
  }

  .wc-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
    font-weight: 400;
  }

  .wc-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    margin-top: 0.2rem;
  }

  .wc-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
  }

  .wc-notes span {
    font-size: 0.65rem;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.15rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
  }

  .wc-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.9rem;
    font-size: 0.7rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 0.3rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border);
  }

  /* ===== WIDE KÁRTYA (kiemelt) ===== */
  .wine-card.wide {
    grid-column: span 2;
    flex-direction: row;
  }

  .wine-card.wide .wc-img {
    width: 44%;
    height: auto;
    min-height: 300px;
    flex-shrink: 0;
  }

  .wine-card.wide .wc-body {
    justify-content: center;
    padding: 2rem 2.4rem;
  }

  .wine-card.wide .wc-name {
    font-size: 1.8rem;
  }

  .wine-card.wide .wc-desc {
    border-top: none;
    padding-top: 0;
    margin-top: 0.2rem;
  }

  /* ===== REJTVE (szűréshez) ===== */
  .wine-card.hidden {
    display: none !important;
  }

  /* ===== FEJLÉC ÉS SZŰRŐK ===== */
  .borok-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
  }

  .wine-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .wine-filter {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--muted);
    padding: 0.45rem 1.1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    border-radius: 2px;
  }

  .wine-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .wine-filter.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--cream);
  }

  /* ===== RESZPONZÍV ===== */
  @media (max-width: 1024px) {
    .wine-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .wine-card.wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 768px) {
    .slideshow-hero {
      height: 70vh;
      min-height: 400px;
      max-height: 600px;
    }

    .slideshow-hero .slide-overlay {
      padding: 2.5rem 1.2rem;
    }

    .slideshow-controls .arrow {
      width: 36px;
      height: 36px;
      font-size: 1rem;
    }

    .wine-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .wine-card.wide {
      grid-column: span 1;
      flex-direction: column;
    }

    .wine-card.wide .wc-img {
      width: 100%;
      min-height: 240px;
      height: 240px;
    }

    .wine-card.wide .wc-body {
      padding: 1.4rem 1.6rem;
    }

    .wine-card.wide .wc-name {
      font-size: 1.5rem;
    }

    .borok-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.2rem;
    }
  }

  @media (max-width: 480px) {
    .slideshow-hero {
      height: 60vh;
      min-height: 340px;
      max-height: 500px;
    }

    .slideshow-hero .slide-overlay h2 {
      font-size: 1.6rem;
    }

    .slideshow-controls {
      gap: 0.8rem;
      bottom: 1.2rem;
    }

    .slideshow-controls .dot {
      width: 8px;
      height: 8px;
    }

    .slideshow-controls .arrow {
      width: 30px;
      height: 30px;
      font-size: 0.85rem;
    }

    .wc-img {
      height: 200px;
    }

    .wc-body {
      padding: 1.2rem 1.2rem 1.4rem;
    }

    .wc-name {
      font-size: 1.3rem;
    }

    .section-title {
      font-size: 1.6rem;
    }
  }