@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --background: #faf8f7;
  --foreground: #141414;
  --card: #f7f3f0;
  --card-foreground: #141414;
  --primary: #c41530;
  --primary-foreground: #ffffff;
  --secondary: #ede6df;
  --secondary-foreground: #141414;
  --muted: #efeae6;
  --muted-foreground: #78716c;
  --accent: #8b5e34;
  --accent-foreground: #f7f3f0;
  --border: #e0d8d0;
  --charcoal: #1f1f1f;
  --wood: #6b4a28;
  --wood-dark: #3d2c16;
  --crimson-dark: #991025;
  --cream: #f5f0eb;
  --radius: 0.75rem;
  --shadow-soft: 0 4px 20px -4px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(196,21,48,0.3);
  --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 1rem 0;
}

.header.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(250,248,247,0.8);
  border-bottom: 1px solid rgba(224,216,208,0.5);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-soft);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
  transition: transform 0.3s;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  transition: color 0.3s;
  color: var(--primary-foreground);
  position: relative;
}

.header.scrolled .nav-desktop a {
  color: var(--foreground);
}

.nav-desktop a:hover {
  color: var(--primary);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--crimson-dark) 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(196,21,48,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
}

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

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
}

.header.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  background: rgba(250,248,247,0.95);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-logo {
  height: 10rem;
  width: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 2rem;
  height: 2rem;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 5rem 0 6rem;
  background: var(--secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(196,21,48,0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
}

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

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.product-card-body {
  padding: 1.5rem;
}

.product-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  color: white;
  margin-bottom: 0.75rem;
}

.product-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 0 6rem;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}

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

.feature-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  color: white;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 0;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  color: var(--primary-foreground);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(196, 21, 48, 0.3);
}

.google-review-btn:hover {
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-card.primary {
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  color: white;
  box-shadow: var(--shadow-glow);
}

.stat-card.card {
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.stat-card.wood {
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: white;
}

.stat-card.offset {
  margin-top: 2rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card.primary .stat-value,
.stat-card.wood .stat-value {
  color: white;
}

.stat-card.card .stat-value {
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.stat-card.card .stat-label {
  color: var(--muted-foreground);
}

.stat-value-sm {
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.stat-label-sm {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ===== QUOTE FORM ===== */
.quote {
  padding: 5rem 0 6rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.quote .section-title,
.quote .section-desc {
  color: white;
}

.quote .section-desc {
  opacity: 0.7;
}

.quote-form {
  max-width: 42rem;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group textarea {
  padding-left: 1rem;
  min-height: 120px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

/* ===== MAP ===== */
.map-section {
  padding: 5rem 0 6rem;
  background: var(--secondary);
}

.map-grid {
  display: grid;
  gap: 2rem;
}

.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.map-card-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  color: white;
}

.map-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.map-card p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.map-hours {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--charcoal);
  color: white;
}

.map-hours h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.map-hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.map-hours-row span:last-child {
  font-weight: 600;
  color: white;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: white;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  margin: 1.5rem 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: block;
  animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

.whatsapp-float:hover {
  animation-play-state: paused;
}

.whatsapp-ping {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
}

.whatsapp-ping::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-12px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-6px); }
  60% { transform: translateY(0); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== PRODUCT PAGE ===== */
.product-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, #0a0a0a 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1rem;
  margin-bottom: 2rem;
  transition: opacity 0.3s;
}

.back-link:hover {
  opacity: 0.8;
}

.product-hero-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-hero-icon {
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  box-shadow: var(--shadow-glow);
  color: white;
}

.product-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.product-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 48rem;
}

.gallery {
  padding: 4rem 0 6rem;
}

.gallery h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.gallery h2 span {
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item .aspect {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-code {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(196,21,48,0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,31,31,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Features section */
.product-features {
  padding: 4rem 0 6rem;
  background: var(--secondary);
}

.product-features h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.features-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.features-list-item .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Product CTA */
.product-cta {
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, var(--primary), var(--crimson-dark));
  text-align: center;
}

.product-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.product-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.product-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Image Viewer Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.modal-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulseGlow-wpp {
  0%, 100% { box-shadow: 0 0 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 40px rgba(37,211,102,0.7); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: transform 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.toast.success {
  background: #25D366;
  color: white;
}

.toast.error {
  background: var(--primary);
  color: white;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .product-cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-logo {
    height: 14rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .about-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-logo {
    height: 18rem;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .map-grid {
    grid-template-columns: 2fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .section-title {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-hero h1 {
    font-size: 3.5rem;
  }
}
