/* ============================================
   THE WINE LIBRARY DADE CITY
   Bold Editorial — Terracotta & Sand
   ============================================ */

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

:root {
  --terracotta: #B85C38;
  --terracotta-deep: #9A4B2B;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sand-dark: #E8D5C0;
  --cream: #FDF8F3;
  --charcoal: #2A2118;
  --charcoal-light: #4A3F35;
  --warm-gray: #7A6B5D;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 243, 0.97);
  box-shadow: 0 1px 20px rgba(42, 33, 24, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav-logo {
  width: 28px;
  height: 35px;
  color: var(--terracotta);
}

.nav-brand-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a::after {
  width: 100%;
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--terracotta-deep) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
}

.mobile-nav-close svg {
  width: 28px;
  height: 28px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 12px 0;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--terracotta);
}

.mobile-nav-cta {
  margin-top: 16px;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 14px 36px;
  border-radius: 100px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--sand);
  padding: 100px 24px 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--terracotta) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Hero images */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(42, 33, 24, 0.15);
}

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

.hero-img-main {
  width: 340px;
  height: 480px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-secondary {
  width: 260px;
  height: 340px;
  bottom: 40px;
  left: 0;
  z-index: 3;
  border: 4px solid var(--sand);
}

.hero-accent-block {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1;
}

.hero-accent-block svg {
  width: 60px;
  height: 60px;
  opacity: 0.9;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 92, 56, 0.3);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 92, 56, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-eyebrow-light {
  color: var(--sand-dark);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

.section-heading-light {
  color: var(--white);
}

.heading-accent {
  color: var(--terracotta-light);
  font-style: italic;
}

.heading-accent-light {
  color: var(--sand-dark);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-image-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(42, 33, 24, 0.12);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--terracotta);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.15;
}

.about-text-col {
  padding: 24px 0;
}

.about-text-col p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-value svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-value span {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: 120px 0;
  background: var(--sand);
}

.experience-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exp-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 33, 24, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.12);
}

.exp-card-img {
  height: 240px;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.exp-card-body {
  padding: 32px;
}

.exp-card-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.exp-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.exp-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ============================================
   WINES
   ============================================ */
.wines {
  padding: 120px 0;
  background: var(--cream);
}

.wines-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.wines-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.wines-categories {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wines-categories li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand-dark);
}

.wines-categories li:last-child {
  border-bottom: none;
}

.wines-cat-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  min-width: 60px;
}

.wines-cat-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.wines-visual {
  position: relative;
  height: 560px;
}

.wines-img-stack {
  position: relative;
  height: 100%;
}

.wines-img-stack img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(42, 33, 24, 0.12);
  object-fit: cover;
}

.wines-img-stack img:first-child {
  width: 280px;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 2;
}

.wines-img-stack img:last-child {
  width: 240px;
  height: 340px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--charcoal);
}

.testimonials .section-eyebrow {
  color: var(--terracotta-light);
}

.testimonials-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px;
  transition: background var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 92, 56, 0.3);
}

.testimonial-quote {
  width: 32px;
  height: 32px;
  color: var(--terracotta-light);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta-light);
  letter-spacing: 0.05em;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: 120px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.visit-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.visit-inner {
  position: relative;
  z-index: 1;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.visit-info p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.visit-address {
  font-style: normal;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit-address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 0 !important;
}

.visit-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sand-dark);
}

.visit-address a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.visit-address a:hover {
  text-decoration-color: var(--white);
}

.visit-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-hours p {
  font-size: 0.9rem !important;
  margin-bottom: 8px !important;
}

.visit-hours strong {
  color: var(--white);
}

.visit-map-col {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.visit-map-link {
  position: relative;
  display: block;
}

.visit-map-link img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 33, 24, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition);
}

.visit-map-link:hover .visit-map-overlay {
  background: rgba(42, 33, 24, 0.6);
}

.visit-map-overlay svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  max-width: 440px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(42, 33, 24, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 48px 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(42, 33, 24, 0.08);
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

.form-success a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184, 92, 56, 0.3);
  text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 40px;
  color: var(--terracotta-light);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--terracotta-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .nav-brand-text {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 0.7fr;
    gap: 32px;
  }

  .hero-visual {
    height: 520px;
  }

  .hero-img-main {
    width: 260px;
    height: 380px;
  }

  .hero-img-secondary {
    width: 200px;
    height: 260px;
  }

  .about-layout,
  .wines-layout,
  .visit-layout,
  .contact-layout {
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    height: 400px;
    order: -1;
  }

  .hero-img-main {
    width: 200px;
    height: 280px;
    right: 10px;
  }

  .hero-img-secondary {
    width: 160px;
    height: 200px;
    left: 0;
    bottom: 20px;
  }

  .hero-accent-block {
    width: 80px;
    height: 80px;
    right: 40px;
  }

  .hero-accent-block svg {
    width: 40px;
    height: 40px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .about,
  .experience,
  .wines,
  .testimonials,
  .visit,
  .contact {
    padding: 80px 0;
  }

  .about-layout,
  .wines-layout,
  .visit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-col img {
    height: 400px;
  }

  .about-image-accent {
    width: 100px;
    height: 100px;
    bottom: -16px;
    right: -16px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wines-visual {
    height: 400px;
  }

  .wines-img-stack img:first-child {
    width: 200px;
    height: 280px;
  }

  .wines-img-stack img:last-child {
    width: 180px;
    height: 240px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .visit-map-link img {
    height: 240px;
  }

  .contact-form {
    padding: 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .exp-card-body {
    padding: 24px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .exp-card,
  .testimonial-card {
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
