/* Self-hosted fonts (latin subset) */
@font-face{font-family:'Dancing Script';font-style:normal;font-weight:400;font-display:optional;src:url('../fonts/DancingScript-400.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:400;font-display:optional;src:url('../fonts/Montserrat-400.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:500;font-display:optional;src:url('../fonts/Montserrat-500.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:600;font-display:optional;src:url('../fonts/Montserrat-600.woff2') format('woff2');}
@font-face{font-family:'Montserrat';font-style:normal;font-weight:700;font-display:optional;src:url('../fonts/Montserrat-700.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400;font-display:optional;src:url('../fonts/PlayfairDisplay-400.woff2') format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:optional;src:url('../fonts/PlayfairDisplay-700.woff2') format('woff2');}

/* ==========================================================================
   Wine Establishment — static rebuild
   Palette + type sourced from the original Kadence theme settings
   ========================================================================== */

:root {
  --wine: #722f37;
  --wine-dark: #5a242b;
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --ink: #2c2c2c;
  --gray: #555555;
  --gray-light: #999999;
  --line: #e8e8e8;
  --paper: #f8f8f8;
  --white: #ffffff;
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--ink); line-height: 1.25; }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: 90px 0; }

.section-title { font-size: clamp(30px, 4vw, 44px); text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.title-rule { width: 70px; height: 3px; background: var(--gold); margin: 18px auto 28px; border: 0; }

p a, .footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--wine); }
.btn-wine { background: var(--wine); color: var(--white); border-color: var(--wine); }
.btn-wine:hover { background: var(--wine-dark); border-color: var(--wine-dark); color: var(--white); }
.btn-lg { font-size: 16px; padding: 18px 44px; }

/* ==========================================================================
   Top bar + header
   ========================================================================== */
.topbar {
  background: var(--wine);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: var(--white); font-weight: 500; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; fill: var(--gold); }
.topbar-promo { font-size: 13.5px; }
.topbar-promo strong { color: var(--gold); letter-spacing: .3px; }
.topbar-promo a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 72px; height: 72px; }
.brand-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--ink); }

.main-nav ul { display: flex; list-style: none; gap: 28px; align-items: center; }
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--wine); }
.main-nav a:hover::after { width: 100%; }

.main-nav a.nav-cta {
  background: var(--wine);
  color: var(--white);
  padding: 11px 22px;
  transition: background .2s ease;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* Shop search (header + mobile drawer) */
.shop-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 3px 3px 3px 16px;
  transition: border-color .2s ease;
}
.shop-search:focus-within { border-color: var(--gold); background: var(--white); }
.shop-search input {
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  width: 175px;
}
.shop-search input::placeholder { color: var(--gray-light); }
.shop-search button {
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease;
}
.shop-search button:hover { background: var(--gold); }
.shop-search button svg { width: 16px; height: 16px; fill: var(--white); }
.drawer-search { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
  animation: kenburns 36s ease-in-out infinite;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; }
/* Stagger the pan phase so each slide enters at a different point of its drift */
.hero-slide:nth-child(2) { animation-delay: -9s; }
.hero-slide:nth-child(3) { animation-delay: -18s; }
.hero-slide:nth-child(4) { animation-delay: -27s; }

@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  25%  { transform: scale(1.09) translate(-1.2%, -0.8%); }
  50%  { transform: scale(1.14) translate(0.8%, 0.6%); }
  75%  { transform: scale(1.08) translate(1.2%, -0.6%); }
  100% { transform: scale(1.02) translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
}
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(20, 8, 10, .55); }

.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 140px 24px; }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content p { color: rgba(255,255,255,.9); font-size: clamp(16px, 2vw, 20px); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-kicker {
  font-family: var(--font-script);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold) !important;
  margin-bottom: 10px !important;
}
.hero-trust {
  list-style: none;
  display: flex;
  gap: 14px 34px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-trust li {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ==========================================================================
   Pre-arrival delivery
   ========================================================================== */
.delivery { background: var(--white); border-bottom: 1px solid var(--line); }
.delivery .section-sub strong { color: var(--wine); }
.delivery-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.delivery-step {
  position: relative;
  background: var(--paper);
  padding: 48px 32px 40px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(114,47,55,.35);
}
.delivery-step svg { width: 44px; height: 44px; fill: var(--wine); margin: 6px auto 18px; }
.delivery-step h3 { font-size: 21px; margin-bottom: 12px; }
.delivery-step p { font-size: 15px; }
.delivery-step p strong { color: var(--wine); }
.delivery-step a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner { background: var(--wine); padding: 56px 0; }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 640px; }
.cta-banner p strong { color: var(--gold); }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; align-items: center; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 26px rgba(0, 0, 0, .34); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  padding: 10px 14px;
  background: rgba(24,10,12,.95);
  box-shadow: 0 -6px 20px rgba(0,0,0,.25);
}
.mobile-cta .btn { display: block; text-align: center; padding: 14px 10px; font-size: 13px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 24px; }
.about-text p { margin-bottom: 18px; }
.about-quote {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--wine);
  margin: 26px 0;
}
.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-badges li { list-style: none; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: 15px; }
.about-badges svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }

.about-images { position: relative; }
.about-images img { box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.about-images .img-main { width: 88%; }
.about-images .img-overlap {
  width: 62%;
  position: absolute;
  right: 0;
  bottom: -56px;
  border: 6px solid var(--white);
}
.about-images .img-caption {
  position: absolute;
  left: 4%;
  bottom: -34px;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 24px;
  padding: 14px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  background: linear-gradient(rgba(248,248,248,.94), rgba(248,248,248,.94)), url('../img/services-bg.webp') center/cover fixed;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
  border-bottom: 3px solid transparent;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-bottom-color: var(--gold); }
.service-card svg { width: 46px; height: 46px; fill: var(--wine); margin: 0 auto 20px; }
.service-card h3 { font-size: 21px; margin-bottom: 14px; }
.service-card p { font-size: 15px; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-collage img { object-fit: cover; width: 100%; height: 100%; box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.why-collage img:first-child { grid-column: 1 / -1; aspect-ratio: 2 / 1.1; }
.why-collage img:not(:first-child) { aspect-ratio: 1; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 30px; }
.why-list li { display: flex; gap: 20px; }
.why-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-list h3 { font-size: 19px; margin-bottom: 6px; }
.why-list p { font-size: 15px; }

/* ==========================================================================
   Wine collection
   ========================================================================== */
.wines { background: var(--paper); }
.wines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.wine-card {
  background: var(--white);
  text-align: center;
  padding-bottom: 26px;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wine-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.wine-card .wine-img { background: var(--white); padding: 24px 24px 0; }
.wine-card img { height: 260px; width: 100%; object-fit: contain; }
.wine-card h3 { font-size: 16px; padding: 18px 20px 8px; min-height: 76px; }
.wine-card h3 a { color: var(--ink); }
.wine-card h3 a:hover { color: var(--wine); }
.wine-price { color: var(--wine); font-weight: 700; font-size: 18px; }

.section-actions { display: flex; gap: 18px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }

/* ==========================================================================
   Categories
   ========================================================================== */
.categories {
  background: linear-gradient(rgba(44,44,44,.82), rgba(44,44,44,.82)), url('../img/categories-bg.webp') center/cover;
}
.categories .section-title, .categories .section-sub { color: var(--white); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative;
  height: 190px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,8,10,.85), rgba(20,8,10,.15));
  transition: background .25s ease;
}
.cat-card:hover::after { background: linear-gradient(to top, rgba(114,47,55,.9), rgba(114,47,55,.3)); }
.cat-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 18px;
  padding: 18px 20px;
  width: 100%;
}
.cat-card h3 span { display: block; height: 2px; width: 34px; background: var(--gold); margin-top: 8px; transition: width .25s ease; }
.cat-card:hover h6 span { width: 60px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
  background: linear-gradient(rgba(74,24,32,.88), rgba(74,24,32,.88)), url('../img/reviews-bg.webp') center/cover fixed;
  text-align: center;
}
.reviews .section-title { color: var(--white); }
.reviews-slider { position: relative; max-width: 820px; margin: 0 auto; min-height: 300px; }
.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}
.review.active { opacity: 1; visibility: visible; position: relative; }
.review-stars { color: var(--gold); font-size: 22px; letter-spacing: 5px; margin-bottom: 24px; }
.review p { color: rgba(255,255,255,.94); font-size: 18px; font-style: italic; line-height: 1.85; margin-bottom: 26px; }
.review cite { color: var(--gold); font-style: normal; font-weight: 700; font-family: var(--font-heading); font-size: 18px; }
.review-dots { display: flex; gap: 10px; justify-content: center; margin-top: 38px; }
.review-dots button {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}
.review-dots button.active, .review-dots button:hover { background: var(--gold); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-grid a { overflow: hidden; position: relative; display: block; }
.gallery-grid a:nth-child(1), .gallery-grid a:nth-child(6) { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.07); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,6,.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 88vh; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute;
  top: 22px; right: 30px;
  background: none; border: 0;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Events
   ========================================================================== */
.events { background: var(--ink); }
.events-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.events h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.events-intro { color: rgba(255,255,255,.78); margin-bottom: 38px; }
.event-item { display: flex; gap: 18px; margin-bottom: 28px; }
.event-item svg { width: 38px; height: 38px; fill: var(--gold); flex-shrink: 0; margin-top: 4px; }
.event-item h3 { color: var(--white); font-size: 19px; margin-bottom: 6px; }
.event-item p { color: rgba(255,255,255,.72); font-size: 15px; }
.events-img img { box-shadow: 0 18px 44px rgba(0,0,0,.4); }
.events .btn { margin-top: 14px; }

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.brands-grid img {
  margin: 0 auto;
  max-height: 90px;
  width: auto;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .25s ease, opacity .25s ease;
}
.brands-grid img:hover { filter: none; opacity: 1; }

/* ==========================================================================
   Visit
   ========================================================================== */
.visit {
  background: linear-gradient(rgba(248,248,248,.93), rgba(248,248,248,.93)), url('../img/hero-4.webp') center/cover;
}
.visit-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: stretch; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.visit-info { display: flex; flex-direction: column; gap: 18px; }
.visit-card {
  background: var(--white);
  padding: 26px 30px;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.visit-card svg { width: 26px; height: 26px; fill: var(--wine); flex-shrink: 0; margin-top: 4px; }
.visit-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 4px; }
.visit-card p, .visit-card a { font-size: 15px; }
.visit-card-highlight { background: var(--wine); }
.visit-card-highlight svg { fill: var(--gold); }
.visit-card-highlight h3, .visit-card-highlight p { color: var(--white); }
.visit-card-highlight strong { color: var(--gold); }
.visit-card-highlight a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.visit-card-highlight a:hover { color: var(--gold); }

/* ==========================================================================
   Custom order form
   ========================================================================== */
.order-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.order-img img { box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.order-form h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.order-form > p { margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--ink); margin-bottom: 7px; }
.form-group label span { color: var(--wine); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: #6b6b6b; margin-top: 14px; }
.form-note a { font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(rgba(24,10,12,.93), rgba(24,10,12,.93)), url('../img/footer-bg.webp') center/cover;
  color: rgba(255,255,255,.72);
  padding: 80px 0 0;
  font-size: 15px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-brand img { width: 90px; margin-bottom: 18px; }
.footer-grid h3 { color: var(--white); font-size: 20px; margin-bottom: 22px; }
.footer-grid h2 { color: var(--white); font-size: 24px; margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 5px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; fill: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--gold); }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.page-simple { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-simple h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.page-simple p { margin-bottom: 32px; }

.ty-header-actions { display: flex; align-items: center; gap: 18px; }

.ty-hero {
  background: var(--paper);
  text-align: center;
  padding: 84px 0 56px;
  border-bottom: 1px solid var(--line);
}
.ty-check {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 10px 26px rgba(114, 47, 55, .3);
}
.ty-check svg { width: 44px; height: 44px; fill: var(--white); }
.ty-hero h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; }
.ty-lead { max-width: 640px; margin: 0 auto; font-size: 18px; }

.ty-store { text-align: center; padding: 72px 0 80px; }
.ty-store h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.ty-store > .container > p { max-width: 600px; margin: 0 auto 34px; }
.shop-search-lg {
  max-width: 540px;
  margin: 0 auto 30px;
  padding: 6px 6px 6px 24px;
}
.shop-search-lg input { width: 100%; flex: 1; font-size: 16px; }
.shop-search-lg button { width: 46px; height: 46px; }
.shop-search-lg button svg { width: 20px; height: 20px; }

.ty-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 46px;
}
.ty-cat {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--ink);
  transition: all .2s ease;
}
.ty-cat:hover { background: var(--wine); color: var(--white); border-color: var(--wine); }

.ty-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  text-align: center;
  padding: 40px 0;
  font-size: 15px;
}
.ty-footer a { color: var(--gold); }
.ty-footer a:hover { color: var(--white); }
.ty-footer-fine { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, .62); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .wines-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .topbar-hours { display: none; }
}

@media (max-width: 1280px) {
  .main-nav ul { gap: 22px; }
  .header-search input { width: 150px; }
  .brand-name { display: none; }
}

@media (max-width: 1000px) {
  .main-nav ul { gap: 15px; }
}

@media (max-width: 860px) {
  section { padding: 64px 0; }
  .topbar .container { justify-content: center; }
  .topbar .topbar-call { display: none; }
  .delivery-steps { grid-template-columns: 1fr; gap: 44px; }
  .cta-banner-inner { justify-content: center; text-align: center; }
  .main-nav a.nav-cta { padding: 11px 22px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 64px; }
  .whatsapp-float { right: 16px; bottom: 78px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
    transition: right .3s ease;
    padding: 90px 34px 34px;
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .header-search { display: none; }
  .drawer-search { display: flex; margin-bottom: 26px; }
  .drawer-search input { width: 100%; flex: 1; }

  .about-grid, .why-grid, .events-grid, .order-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-images { margin-top: 30px; margin-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .wines-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .events-img { order: -1; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .services-grid, .wines-grid, .cat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 100px 20px; }
}
