/* ========================================
   Grove Market Liquor — Stylesheet
   Colors: Plum + Amber
   ======================================== */

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

:root {
  --plum: #6B3A6E;
  --plum-dark: #4A2549;
  --plum-light: #8B5A8E;
  --plum-lighter: #F5EEF7;
  --amber: #E8A838;
  --amber-light: #F5C86D;
  --amber-dark: #C4872A;
  --cream: #FFFAF5;
  --warm-white: #FFF9F0;
  --text-dark: #2D1F2D;
  --text-mid: #5A4558;
  --text-light: #8A7088;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 8px rgba(107, 58, 110, 0.08);
  --shadow-md: 0 8px 30px rgba(107, 58, 110, 0.12);
  --shadow-lg: 0 16px 60px rgba(107, 58, 110, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.15), rgba(232, 168, 56, 0.05));
  border: 1px solid rgba(232, 168, 56, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.text-amber {
  color: var(--amber-dark);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

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

.section {
  padding: 100px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}

.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn-secondary:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--amber);
  color: var(--text-dark);
  border-color: var(--amber);
}

.btn-cta:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--plum);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 58, 110, 0.08);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--plum);
  z-index: 1001;
}

.logo-icon {
  color: var(--plum-light);
}

.logo-text {
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  color: var(--amber-dark);
}

.logo-light {
  color: #fff;
}

.logo-light .logo-sub {
  color: var(--amber-light);
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-menu a:hover {
  color: var(--plum);
  background: var(--plum-lighter);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--plum);
  left: 0;
  transition: all var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--plum-lighter) 50%, var(--cream) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--plum);
  top: -200px;
  right: -100px;
  opacity: 0.08;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--amber);
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--plum-light);
  top: 40%;
  left: 30%;
  opacity: 0.06;
}

.shape-4 {
  width: 150px;
  height: 150px;
  background: var(--amber-light);
  top: 20%;
  right: 30%;
  opacity: 0.12;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--plum);
  background: rgba(107, 58, 110, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-headline .text-amber {
  color: var(--amber-dark);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
}

.trust-item svg {
  color: var(--amber-dark);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.hero-img-float svg {
  flex-shrink: 0;
}

.hero-img-float-1 {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.hero-img-float-2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 2s;
}

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

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ---------- About ---------- */
.about {
  background: #fff;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}

.about-img-secondary img {
  width: 300px;
  height: 250px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--amber);
  animation: float 5s ease-in-out infinite;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(107, 58, 110, 0.1);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  background: rgba(107, 58, 110, 0.15);
  align-self: stretch;
  margin: 8px 0;
}

/* ---------- Products ---------- */
.products {
  background: var(--cream);
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.product-img {
  overflow: hidden;
  height: 220px;
}

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

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--plum);
}

.product-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.products-cta {
  margin-top: 60px;
  padding: 48px;
  background: var(--plum-lighter);
  border-radius: var(--radius-lg);
}

.products-cta p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.products-cta .btn {
  margin: 0 auto;
}

/* ---------- Why Us ---------- */
.why-us {
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content .section-tag {
  margin-bottom: 16px;
}

.why-us-content .section-desc {
  margin: 0 0 40px 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  border-radius: var(--radius-md);
  color: #fff;
}

.feature-text h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-us-quote {
  position: absolute;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background: var(--plum);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-us-quote svg {
  margin-bottom: 12px;
}

.why-us-quote blockquote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ---------- Hours & Location ---------- */
.hours-section {
  background: var(--plum-dark);
  color: #fff;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hours-card,
.location-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
}

.hours-icon,
.location-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hours-card h3,
.location-card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 28px;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-day {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.hours-time {
  color: var(--amber-light);
  font-weight: 600;
}

.hours-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.location-info {
  font-style: normal;
  margin-bottom: 28px;
}

.location-info p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.location-info a {
  color: var(--amber-light);
  font-weight: 700;
  transition: color var(--transition);
}

.location-info a:hover {
  color: var(--amber);
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.map-placeholder:hover img {
  opacity: 1;
}

.map-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plum);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.map-link:hover {
  background: var(--amber);
  color: var(--text-dark);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-dark) 100%);
  overflow: hidden;
  text-align: center;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--amber);
  top: -150px;
  left: -100px;
  opacity: 0.12;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--plum-light);
  bottom: -100px;
  right: -50px;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-address {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: #fff;
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--amber-light);
  font-weight: 600;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 0.8rem;
}

/* ---------- Mobile Menu Overlay ---------- */
.nav-menu.mobile-open {
  position: fixed;
  inset: 0;
  background: rgba(255, 250, 245, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 1000;
}

.nav-menu.mobile-open a {
  font-size: 1.3rem;
  padding: 12px 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .about-grid,
  .why-us-grid {
    gap: 48px;
  }

  .hero-img-float-1 { left: -10px; }
  .hero-img-float-2 { right: -10px; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

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

  .nav-menu a {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0 80px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-img-wrapper img {
    height: 400px;
  }

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

  .about-img-secondary {
    right: 0;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .why-us-quote {
    left: 16px;
    right: 16px;
    bottom: -20px;
  }

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

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

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-img-float {
    display: none;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    border: 4px solid #fff;
  }

  .about-img-secondary img {
    width: 100%;
    height: 200px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  .products-cta {
    padding: 32px 24px;
  }

  .hours-card,
  .location-card {
    padding: 32px 24px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
