/* =========================================================
   Juhász Pincészet és Vendégház – Kóka
   Színvilág: szőlőzöld + vörösbor + halvány/világos beige
   ========================================================= */

:root {
  /* Vörösbor */
  --wine:        #6e1423;
  --wine-dark:   #4f0d18;
  --wine-deep:   #3a0a12;
  --wine-soft:   #8a2433;

  /* Szőlőzöld */
  --vine:        #5d7a39;
  --vine-dark:   #44602a;
  --vine-soft:   #7a9850;

  /* Beige / világos */
  --beige:       #f6efe0;
  --beige-2:     #efe5d0;
  --beige-3:     #e7dabd;
  --cream:       #faf6ec;
  --sand:        #d9c9a3;

  /* Semleges */
  --ink:         #2a211c;
  --muted:       #6f6457;
  --line:        rgba(58, 45, 36, .14);
  --white:       #fffdf8;

  --maxw:        1180px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 4px 16px rgba(58, 25, 20, .10);
  --shadow:      0 14px 40px rgba(58, 25, 20, .16);
  --shadow-lg:   0 24px 70px rgba(58, 25, 20, .22);

  --serif:  "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:   "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--wine); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--wine-soft); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--wine-dark);
  margin: 0 0 .4em;
  letter-spacing: .01em;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--vine);
  margin-bottom: 14px;
}

.section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.section .lead { font-size: 1.1rem; color: var(--muted); margin-top: 8px; }

.bg-beige { background: var(--beige); }
.bg-beige-2 { background: var(--beige-2); }
.bg-cream  { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: var(--wine-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--wine-dark); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: var(--white); border-color: #fff; }

/* ---------- Decorative grape / bottle watermarks ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  opacity: .07;
  z-index: 0;
}
.deco svg { width: 100%; height: 100%; display: block; }
.deco--grape-tr { top: -30px; right: -20px; width: 230px; height: 230px; color: var(--vine); }
.deco--bottle-bl { bottom: -40px; left: -30px; width: 150px; height: 320px; color: var(--wine); opacity: .06; }
.deco--grape-bl { bottom: -20px; left: 2%; width: 180px; height: 180px; color: var(--vine); }
.section > .container { position: relative; z-index: 1; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 16px 0;
}
.site-header.solid {
  background: rgba(250, 246, 236, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(58,25,20,.10);
  padding: 9px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 50px; width: auto; border-radius: 8px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b {
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600;
  color: var(--wine-dark);
}
.brand-name span {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--vine); font-weight: 600;
}
.site-header:not(.solid) .brand-name b { color: var(--white); }
.site-header:not(.solid) .brand-name span { color: var(--beige-3); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink); position: relative; padding: 4px 0;
}
.site-header:not(.solid) .nav-links a { color: rgba(255,255,255,.92); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--vine); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--white); transition: .3s;
}
.site-header.solid .nav-toggle span { background: var(--ink); }

.nav-links a.nav-btn {
  color: var(--white);
  padding: 4px 8px;
} 

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(58,10,18,.55) 0%, rgba(58,10,18,.30) 40%, rgba(40,33,28,.72) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--beige-3); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  margin-bottom: .2em;
}
.hero h1 .accent { font-style: italic; color: var(--beige-3); }
.hero p.sub {
  max-width: 620px; margin: 0 auto 34px;
  font-size: 1.18rem; color: rgba(255,255,255,.92);
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8); font-size: .68rem;
  letter-spacing: .24em; text-transform: uppercase; text-align: center;
}
.hero-scroll .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.7);
  border-radius: 12px; margin: 0 auto 8px; position: relative;
}
.hero-scroll .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: #fff; border-radius: 2px;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} }

/* Wavy divider under hero (winery vibe) */
.wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 3;
}
.wave svg { width: 100%; height: 70px; display: block; }

/* =========================================================
   About / Bemutatkozás
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.about-text p { color: var(--muted); margin: 0 0 18px; }
.about-text p strong { color: var(--ink); }
.about-media { position: relative; }
.about-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  object-fit: cover; aspect-ratio: 4/5;
}
.about-media .badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--wine); color: var(--cream);
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow);
  text-align: center;
}
.about-media .badge b { font-family: var(--serif); font-size: 2.2rem; display: block; line-height: 1; color: var(--beige-3); }
.about-media .badge span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line);
}
.about-stats .stat b {
  font-family: var(--serif); font-size: 2.3rem; color: var(--wine); display: block; line-height: 1;
}
.about-stats .stat span { font-size: .82rem; color: var(--muted); }

/* =========================================================
   Services / Szolgáltatások
   ========================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card .thumb { aspect-ratio: 3/2; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .thumb img { transform: scale(1.07); }
.service-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card .ico {
  width: 46px; height: 46px; margin: -50px 0 14px; position: relative; z-index: 2;
  background: var(--wine); border-radius: 12px; display: grid; place-items: center;
  color: var(--beige-3); box-shadow: var(--shadow-sm);
}
.service-card .ico svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* =========================================================
   Wines / Borok
   ========================================================= */
.wines { background: var(--wine-deep); color: var(--beige); position: relative; overflow: hidden; }
.wines h2, .wines h3 { color: var(--cream); }
.wines .eyebrow { color: var(--vine-soft); }
.wines .lead { color: rgba(246,239,224,.7); }
.wines .deco { opacity: .05; color: var(--cream); }

.wines-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px;
}
.wine-card {
  background: linear-gradient(170deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(246,239,224,.14);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.wine-card:hover { transform: translateY(-8px); border-color: var(--vine-soft); background: linear-gradient(170deg, rgba(255,255,255,.10), rgba(255,255,255,.03)); }
.wine-bottle { width: 54px; height: 150px; margin: 0 auto 22px; }
.wine-card .type {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--vine-soft); font-weight: 600;
}
.wine-card h3 { font-size: 2rem; font-style: italic; margin: 6px 0 4px; }
.wine-card .grape { font-size: .92rem; color: rgba(246,239,224,.66); margin-bottom: 16px; }
.wine-card p { font-size: .94rem; color: rgba(246,239,224,.82); margin: 0; }
.wine-card .tag {
  display: inline-block; margin-top: 18px; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream);
  border: 1px solid rgba(246,239,224,.28); border-radius: 999px; padding: 5px 14px;
}
.wines-foot { text-align: center; margin-top: 50px; color: rgba(246,239,224,.7); }

/* =========================================================
   Gallery / Galéria
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative;
  background: var(--beige-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(58,10,18,.45));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-more { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(28,12,14,.94); align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.4rem;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.26); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   News / Hírek & Események
   ========================================================= */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.news-card {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--beige-2); position: relative; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--vine); color: var(--cream);
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.news-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-card time { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--vine); font-weight: 600; }
.news-card h3 { font-size: 1.4rem; margin: 8px 0 10px; }
.news-card p { color: var(--muted); font-size: .94rem; margin: 0 0 16px; flex: 1; }
.news-card .more { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
#news-status { color: var(--muted); }

/* =========================================================
   Contact / Kapcsolat
   ========================================================= */
.contact { background: var(--wine-deep); color: var(--beige); position: relative; overflow: hidden; }
.contact h2 { color: var(--cream); }
.contact .eyebrow { color: var(--vine-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-info .lead { color: rgba(246,239,224,.75); margin-bottom: 32px; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.contact-list .ci-ico {
  flex: 0 0 48px; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(246,239,224,.16);
  display: grid; place-items: center; color: var(--vine-soft);
}
.contact-list .ci-ico svg { width: 22px; height: 22px; }
.contact-list b { color: var(--cream); font-family: var(--sans); font-weight: 600; display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 3px; }
.contact-list a, .contact-list span { color: rgba(246,239,224,.9); font-size: 1.06rem; }
.contact-list a:hover { color: var(--vine-soft); }

.booking-card {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
}
.booking-card h3 { font-size: 1.9rem; margin-bottom: 6px; }
.booking-card p { color: var(--muted); font-size: .96rem; margin: 0 0 24px; }
.booking-actions { display: flex; flex-direction: column; gap: 14px; }
.booking-actions .btn { width: 100%; justify-content: center; }
.booking-note { font-size: .82rem; color: var(--muted); margin-top: 20px; text-align: center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--wine-deep);
  color: rgba(246,239,224,.7);
  padding: 56px 0 30px;
  border-top: 1px solid rgba(246,239,224,.12);
  text-align: center;
}
.site-footer .f-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.site-footer .f-brand img { height: 46px; border-radius: 8px; }
.site-footer .f-brand b { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.site-footer .f-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 18px 0 26px; list-style: none; padding: 0; }
.site-footer .f-links a { color: rgba(246,239,224,.78); font-size: .86rem; }
.site-footer .f-links a:hover { color: var(--vine-soft); }
.site-footer .copy { font-size: .78rem; color: rgba(246,239,224,.5); }
.site-footer .copy a { color: rgba(246,239,224,.7); }

/* =========================================================
   Blog (Hírek listázó + olvasó) – PORTABLE-BLOG kompatibilis
   ========================================================= */
.subpage { padding-top: 120px; }
.subpage-hero { background: var(--wine-deep); color: var(--cream); padding: 70px 0 56px; text-align: center; }
.subpage-hero h1 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 3.6rem); }
.subpage-hero p { color: rgba(246,239,224,.75); max-width: 600px; margin: 8px auto 0; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--vine); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-img { aspect-ratio: 16/10; background: var(--beige-2); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--vine); font-weight: 600; }
.post-card h2 { font-size: 1.45rem; margin: 8px 0 10px; color: var(--wine-dark); }
.post-card p { color: var(--muted); font-size: .94rem; flex: 1; margin: 0 0 14px; }
.post-card-meta { font-size: .78rem; color: var(--muted); }
.post-card .more { font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 12px; }

.blog-pager { display: flex; gap: 10px; justify-content: center; margin-top: 50px; }
.pager-link, .pager-current {
  min-width: 44px; height: 44px; padding: 0 16px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 600;
}
.pager-link { background: var(--beige-2); color: var(--wine); }
.pager-link:hover { background: var(--wine); color: var(--white); }
.pager-current { background: var(--wine); color: var(--white); }
.pager-disabled { opacity: .4; pointer-events: none; }

.post { max-width: 760px; margin: 0 auto; }
.post-header { text-align: center; margin-bottom: 34px; }
.post-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--vine); font-weight: 600; }
.post-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: 12px 0 14px; }
.post-meta { color: var(--muted); font-size: .9rem; }
.post-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 36px; box-shadow: var(--shadow); aspect-ratio: 16/9; object-fit: cover; }
.post-content { font-size: 1.08rem; color: var(--ink); }
.post-content p { margin: 0 0 1.3em; }
.post-content h2, .post-content h3 { margin: 1.6em 0 .5em; }
.post-content img { border-radius: var(--radius); margin: 1.4em 0; box-shadow: var(--shadow-sm); }
.post-content ul, .post-content ol { padding-left: 1.3em; margin: 0 0 1.3em; }
.post-content blockquote {
  border-left: 3px solid var(--vine); padding: 4px 0 4px 20px; margin: 1.4em 0;
  color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 1.3rem;
}
.post-back { display: block; text-align: center; margin-top: 50px; }
#blog-status, #post-status { text-align: center; color: var(--muted); padding: 40px 0; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 1; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .services-grid, .wines-grid, .news-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-media img { aspect-ratio: 16/11; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: var(--cream); padding: 90px 30px 30px;
    transform: translateX(100%); transition: transform .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; }
  .nav-links a { color: var(--ink) !important; font-size: 1rem; padding: 10px 0; width: 100%; }
  .nav-cta { margin: 14px 0 0; }
  .nav-toggle { display: block; z-index: 70; }
  .site-header:not(.solid) { background: rgba(58,10,18,.35); backdrop-filter: blur(6px); }
  .services-grid, .wines-grid, .news-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .about-media .badge { left: 0; }
  .about-stats .stat b { font-size: 1.8rem; }
}
