/* ============================================
   Villa Lorenci — Italian Vineyard Storefront
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;600;700&display=swap');

/* --- Variables --- */
:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A252C;
  --burgundy-light: #8B3A42;
  --olive: #556B2F;
  --olive-dark: #3D4E22;
  --olive-light: #6B8539;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --gold-pale: #E8D5A0;
  --cream: #FFFBF0;
  --cream-dark: #F5EDE0;
  --warm-white: #FDF8F0;
  --text-dark: #2C1810;
  --text-medium: #5C4A3E;
  --text-light: #8A7B70;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #E8DFD5;
  --border-light: #F0EAE2;
  --shadow-sm: 0 1px 3px rgba(44,24,16,0.06);
  --shadow-md: 0 4px 12px rgba(44,24,16,0.08);
  --shadow-lg: 0 8px 30px rgba(44,24,16,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--burgundy-dark); }

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 12px auto 0;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.text-center { text-align: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.nav--transparent { background: transparent; }
.nav.nav--solid {
  background: rgba(255, 251, 240, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav--transparent .nav__logo { color: var(--white); }
.nav--solid .nav__logo { color: var(--burgundy); }

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav--transparent .nav__links a { color: rgba(255,255,255,0.9); }
.nav--transparent .nav__links a:hover { color: var(--gold-light); }
.nav--solid .nav__links a { color: var(--text-medium); }
.nav--solid .nav__links a:hover { color: var(--burgundy); }

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav__cta {
  padding: 8px 20px !important;
  border: 1.5px solid;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
}

.nav--transparent .nav__cta { border-color: rgba(255,255,255,0.6); color: var(--white) !important; }
.nav--transparent .nav__cta:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.nav--solid .nav__cta { border-color: var(--burgundy); color: var(--burgundy) !important; }
.nav--solid .nav__cta:hover { background: var(--burgundy); color: var(--white) !important; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  transition: all 0.3s;
}

.nav--transparent .nav__toggle span { background: var(--white); }
.nav--solid .nav__toggle span { background: var(--text-dark); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero--small {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(90,37,44,0.92) 0%, rgba(44,24,16,0.85) 50%, rgba(55,107,47,0.80) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  z-index: 1;
}

/* Decorative grape vine pattern overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--white) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 120px 120px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn--outline-dark:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--text-dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark {
  background: var(--burgundy-dark);
  color: var(--white);
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section--dark .section-divider { background: var(--gold); }

/* --- Event Cards --- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.event-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card__header {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-card__date {
  text-align: center;
}

.event-card__day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.event-card__time {
  font-size: 0.9rem;
  opacity: 0.9;
  text-align: right;
}

.event-card__body {
  padding: 24px;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.event-card__desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-card__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
}

.event-card__seats {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 600;
}

.event-card__seats--low {
  color: var(--burgundy-light);
}

/* --- Experience Cards --- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.experience-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.experience-card__image {
  height: 240px;
  background: linear-gradient(135deg, var(--olive-dark), var(--olive), var(--burgundy-dark));
  position: relative;
  overflow: hidden;
}

.experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder pattern when no image */
.experience-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
  color: var(--white);
}

.experience-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
}

.experience-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.experience-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.experience-card__desc {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.experience-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.experience-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.experience-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
}

.experience-card__price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.review-card__quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold-pale);
  font-family: var(--font-heading);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* --- Vineyard Section (Home) --- */
.vineyard-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vineyard-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  background: linear-gradient(160deg, var(--olive-dark) 0%, var(--burgundy) 60%, var(--gold) 100%);
  position: relative;
}

.vineyard-section__image::after {
  content: 'Replace with vineyard photo';
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}

.vineyard-section__text h2 {
  margin-bottom: 20px;
}

.vineyard-section__text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

/* --- Booking Page --- */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--burgundy);
}

.filters-bar .btn {
  white-space: nowrap;
}

/* Availability list */
.availability-list {
  margin-top: 48px;
}

.availability-date {
  margin-bottom: 32px;
}

.availability-date__header {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--burgundy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.availability-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 8px;
  transition: box-shadow 0.2s;
}

.availability-slot:hover {
  box-shadow: var(--shadow-sm);
}

.availability-slot__time {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  min-width: 100px;
}

.availability-slot__name {
  flex: 1;
  margin-left: 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.availability-slot__info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.availability-slot__seats {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 600;
}

.availability-slot__price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--burgundy);
  min-width: 80px;
  text-align: right;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-block {
  margin-bottom: 60px;
}

.about-block h3 {
  color: var(--burgundy);
  margin-bottom: 16px;
}

.about-block p {
  color: var(--text-medium);
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- Loading States --- */
.loading {
  text-align: center;
  padding: 60px;
  color: var(--text-light);
}

.loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}

.empty-state__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* --- Tags (filter chips) --- */
.tag-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tag-chip {
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}

.tag-chip:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.tag-chip.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

/* --- Booking Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(44, 24, 16, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal__close:hover {
  background: rgba(255,255,255,0.25);
}

.modal__header h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  padding-right: 32px;
}

.modal__header-meta {
  font-size: 0.9rem;
  opacity: 0.85;
  font-family: var(--font-body);
}

.modal__body {
  padding: 28px 32px;
}

.modal__section {
  margin-bottom: 28px;
}

.modal__section:last-child {
  margin-bottom: 0;
}

.modal__section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* Variant rows */
.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.variant-row:last-child {
  border-bottom: none;
}

.variant-info {
  flex: 1;
}

.variant-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.variant-explanation {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.variant-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--burgundy);
  min-width: 70px;
  text-align: right;
  margin-right: 16px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  user-select: none;
}

.qty-btn:hover {
  background: var(--cream-dark);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.qty-value {
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--white);
}

/* Addon checkboxes */
.addon-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.addon-row:last-child {
  border-bottom: none;
}

.addon-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
  cursor: pointer;
  flex-shrink: 0;
}

.addon-label {
  flex: 1;
}

.addon-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.addon-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.addon-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  white-space: nowrap;
}

/* Promo code inputs */
.promo-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.promo-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.promo-row input:focus {
  outline: none;
  border-color: var(--burgundy);
}

.promo-result {
  font-size: 0.85rem;
  padding: 4px 0;
}

.promo-result--success {
  color: var(--olive);
}

.promo-result--error {
  color: var(--burgundy-light);
}

/* Summary */
.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table td {
  padding: 6px 0;
  font-size: 0.92rem;
}

.summary-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.summary-table .summary-discount td {
  color: var(--olive);
}

.summary-table .summary-total td {
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 12px;
  border-top: 2px solid var(--text-dark);
  font-family: var(--font-heading);
}

/* Customer info (for free orders) */
.customer-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.customer-fields .filter-group {
  min-width: 0;
}

.customer-fields .full-width {
  grid-column: 1 / -1;
}

/* Payment method */
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-method-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: capitalize;
}

.payment-method-btn:hover {
  border-color: var(--burgundy);
}

.payment-method-btn.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

/* Modal footer / CTA */
.modal__footer {
  padding: 0 32px 28px;
}

.modal__cta {
  width: 100%;
  padding: 16px;
  font-size: 0.95rem;
}

.modal__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.modal__error {
  text-align: center;
  color: var(--burgundy-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* Modal loading */
.modal__loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.modal__loading .loading__spinner {
  margin-bottom: 12px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

  .nav__links.open a { color: var(--text-dark) !important; }

  .hero { min-height: 80vh; }
  .hero--small { min-height: 40vh; }

  .section { padding: 60px 0; }

  .vineyard-section,
  .about-grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vineyard-section__image { height: 280px; }

  .events-grid,
  .experiences-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .filters-bar {
    flex-direction: column;
    margin-top: -30px;
  }

  .filter-group { min-width: 100%; }

  .availability-slot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .availability-slot__name { margin-left: 0; }
  .availability-slot__info { width: 100%; justify-content: space-between; }

  .footer__bottom { flex-direction: column; gap: 8px; }

  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal {
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .modal__header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .modal__header h2 { font-size: 1.2rem; }
  .modal__body { padding: 20px; }
  .modal__footer { padding: 0 20px 20px; }
  .customer-fields { grid-template-columns: 1fr; }
  .variant-row { flex-wrap: wrap; gap: 8px; }
  .variant-price { min-width: auto; text-align: left; margin-right: 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }

  .events-grid,
  .experiences-grid {
    grid-template-columns: 1fr;
  }

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