/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --midnight: #0B1D3A;
  --midnight-light: #132D54;
  --midnight-dark: #071428;
  --mint: #1DB9A1;
  --mint-light: #2DD4BF;
  --mint-pale: #E0F7F4;
  --mint-ghost: #F0FAF8;
  --warm-cream: #F5F0EB;
  --warm-sand: #EDE6DD;
  --warm-white: #FDFCFA;
  --text-dark: #0B1D3A;
  --text-mid: #3A506B;
  --text-light: #6B8299;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 29, 58, 0.10);
  --shadow-lg: 0 8px 40px rgba(11, 29, 58, 0.14);
  --shadow-xl: 0 16px 60px rgba(11, 29, 58, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  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;
}

ul {
  list-style: none;
}

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

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

/* ===== TYPOGRAPHY ===== */
.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(--mint);
  background: var(--mint-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--mint);
  color: var(--white);
  border-color: var(--mint);
  box-shadow: 0 4px 16px rgba(29, 185, 161, 0.35);
}

.btn-primary:hover {
  background: var(--mint-light);
  border-color: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 185, 161, 0.45);
}

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

.btn-secondary:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-outline-dark:hover {
  background: var(--midnight);
  color: var(--white);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 29, 58, 0.06);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight);
}

.logo-text {
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--mint);
}

.logo-star {
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--midnight);
  background: var(--mint-pale);
}

.nav-cta {
  background: var(--midnight) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--midnight-light) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--midnight);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--midnight);
  transition: var(--transition);
}

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

.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 {
  padding: 120px 0 0;
  background: var(--warm-cream);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 120px;
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 24px;
}

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

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

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

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

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

.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-img-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

.hero-img-bakery {
  width: 280px;
  height: 200px;
  top: 60px;
  left: -40px;
  animation-delay: 0s;
}

.hero-img-produce {
  width: 240px;
  height: 180px;
  bottom: 80px;
  right: -30px;
  animation-delay: 2s;
}

.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.about-content .section-title {
  margin-bottom: 24px;
}

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

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

.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 6px;
}

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

.about-image {
  position: relative;
}

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

.about-img-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: var(--radius-lg);
  bottom: -30px;
  right: -30px;
  z-index: -1;
  opacity: 0.2;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--warm-white);
}

.products .section-header {
  margin-bottom: 60px;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(11, 29, 58, 0.04);
}

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

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

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

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

.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
}

.product-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--midnight);
}

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

/* ===== BAKERY ===== */
.bakery {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.bakery::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 185, 161, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bakery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.bakery-image {
  position: relative;
}

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

.bakery-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--midnight);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.bakery-content .section-tag {
  background: rgba(29, 185, 161, 0.2);
  color: var(--mint-light);
}

.bakery-content .section-title {
  color: var(--white);
}

.bakery-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.bakery-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.bakery-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
}

.list-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 185, 161, 0.2);
  border-radius: 50%;
  margin-top: 2px;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--warm-cream);
}

.visit .section-header {
  margin-bottom: 60px;
}

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

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.visit-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.visit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
}

.visit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 6px;
}

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

.visit-card a {
  color: var(--mint);
  font-weight: 700;
  transition: var(--transition);
}

.visit-card a:hover {
  color: var(--mint-light);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(11, 29, 58, 0.5);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}

.map-link:hover .map-overlay {
  background: rgba(11, 29, 58, 0.65);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--warm-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-content .section-title {
  margin-bottom: 16px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--midnight);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--warm-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29, 185, 161, 0.1);
}

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

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--mint-pale);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--midnight);
  margin-bottom: 20px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.sidebar-list a {
  color: var(--mint);
  font-weight: 700;
  transition: var(--transition);
}

.sidebar-list a:hover {
  color: var(--mint-light);
}

.sidebar-card-highlight {
  background: var(--midnight);
  text-align: center;
}

.sidebar-card-highlight h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.sidebar-card-highlight p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 185, 161, 0.2);
  border-radius: 50%;
}

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

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--mint-light);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.footer-hours li span:last-child {
  color: var(--mint-light);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .hero-image {
    height: 520px;
  }

  .about-inner {
    gap: 48px;
  }

  .bakery-inner {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list a {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }

  .hero-wave svg {
    height: 50px;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .about-image {
    order: -1;
  }

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

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

  .bakery-inner {
    grid-template-columns: 1fr;
  }

  .bakery-image {
    order: -1;
  }

  .bakery-image img {
    height: 360px;
  }

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

  .visit-map {
    order: -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .section-title {
    font-size: 1.7rem;
  }
}
