/* ============================================
   Ma's General Store — Styles
   Palette: Deep Navy (#1a2744) + Warm Gold (#c8a45e)
   Fonts: DM Serif Display + Inter
   ============================================ */

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

:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --navy-dark: #111b30;
  --gold: #c8a45e;
  --gold-light: #dbb96e;
  --gold-pale: #f5e8c4;
  --cream: #faf8f4;
  --cream-warm: #f7f3ec;
  --white: #ffffff;
  --text: #1a1f2e;
  --text-light: #5a6278;
  --text-muted: #8a90a0;
  --border: #e8e4dc;
  --shadow-sm: 0 1px 3px rgba(26,39,68,0.06), 0 1px 2px rgba(26,39,68,0.04);
  --shadow-md: 0 4px 16px rgba(26,39,68,0.08), 0 2px 4px rgba(26,39,68,0.04);
  --shadow-lg: 0 12px 40px rgba(26,39,68,0.12), 0 4px 12px rgba(26,39,68,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 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-body);
  color: var(--text);
  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;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus {
  top: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  transition: var(--transition);
}
.logo:hover { color: var(--gold); }
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { font-weight: 400; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--gold) !important;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle-lines {
  position: absolute;
  top: 8px;
  left: 6px;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 50%, #f0ebe0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,164,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 120px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,39,68,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 540px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 600px;
}
.hero-img-wrap {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main {
  width: 380px;
  height: 480px;
  top: 0;
  right: 0;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  width: 260px;
  height: 200px;
  bottom: 40px;
  left: -20px;
  border: 4px solid var(--cream);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-accent {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.hero-accent::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* HERO WAVE */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--cream);
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-sm {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
}
.btn-outline-sm:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--gold);
}
.btn-full { width: 100%; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}
.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--cream);
}
.products .container {
  text-align: center;
}
.products .section-desc {
  margin: 0 auto 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-xl);
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  padding: 20px 24px 0;
  font-weight: 400;
}
.product-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-light);
  padding: 8px 24px 24px;
}

.products-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-stack {
  position: relative;
  height: 560px;
}
.about-img-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.about-content .section-desc {
  margin-bottom: 24px;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 16px;
}
.about-content p em {
  color: var(--navy);
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.about-feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info .section-desc {
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.visit-detail a:hover { color: var(--gold); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-link {
  display: block;
  position: relative;
}
.map-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.map-link:hover img { transform: scale(1.02); }
.map-link-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.map-link:hover .map-link-overlay {
  background: var(--navy);
  color: var(--gold);
}

.visit-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.visit-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.visit-visual img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--navy);
  color: var(--white);
}
.contact .section-eyebrow { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-content .section-desc { margin-bottom: 36px; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.contact-method:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(4px);
}
.contact-method svg { color: var(--gold); flex-shrink: 0; }

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-success p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--gold); color: var(--navy); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong,
.footer-contact strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-contact span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   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);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content { max-width: 100%; }
  .hero-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img-main {
    width: 280px;
    height: 360px;
  }
  .hero-img-float {
    width: 200px;
    height: 150px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { max-width: 480px; }
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .visit-visual { max-width: 480px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
  }
  .nav-menu.open {
    max-height: 400px;
    padding: 16px 24px;
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-menu a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none !important;
  }
  .nav-toggle { display: block; }

  .hero { padding: 100px 24px 0; min-height: auto; }
  .hero-grid { gap: 40px; }
  .hero-visual { height: 320px; }
  .hero-img-main { width: 220px; height: 280px; }
  .hero-img-float { width: 160px; height: 120px; bottom: 20px; left: -10px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.5rem; }

  .section { padding: 72px 0; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-img-stack { height: 400px; }
  .about-img-accent { width: 160px; height: 120px; bottom: -20px; right: -10px; }
  .about-badge { top: -12px; left: -12px; padding: 12px 16px; font-size: 0.8rem; }
  .about-features { grid-template-columns: 1fr; }
  .visit-visual { display: none; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-visual { height: 260px; }
  .hero-img-main { width: 180px; height: 240px; }
  .hero-img-float { width: 140px; height: 100px; }
}
