/* ===========================
   LOMBRICES PR – Global Styles
   =========================== */
:root {
  --brown-dark:   #3B2107;
  --brown-mid:    #6B3A1F;
  --brown-light:  #A0622A;
  --cream:        #F5F0E8;
  --cream-dark:   #EAE0CC;
  --green-dark:   #2D4A1E;
  --green-mid:    #4A7C35;
  --green-light:  #7CB55A;
  --white:        #FFFFFF;
  --text-dark:    #1E1208;
  --text-mid:     #4A3520;
  --text-light:   #7A6050;
  --shadow:       0 4px 24px rgba(59,33,7,0.10);
  --shadow-lg:    0 8px 40px rgba(59,33,7,0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-brown { background: var(--brown-mid); color: var(--white); border-color: var(--brown-mid); }
.btn-brown:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { background: var(--cream); color: var(--green-dark); border-color: var(--cream); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(245,240,232,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(107,58,31,0.12); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 44px; width: 44px; object-fit: contain; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--brown-dark); white-space: nowrap; }
.nav-links { display: flex; list-style: none; gap: 2px; margin-left: auto; flex-wrap: nowrap; }
.nav-links a { display: block; padding: 7px 11px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--cream-dark); color: var(--brown-dark); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle { background: var(--cream-dark); border: 1px solid rgba(107,58,31,0.2); border-radius: 20px; padding: 5px 12px; font-size: 0.78rem; font-weight: 700; cursor: pointer; color: var(--text-mid); display: flex; align-items: center; gap: 3px; transition: var(--transition); white-space: nowrap; }
.lang-toggle:hover { background: var(--brown-light); color: var(--white); }
.lang-es.active, .lang-en.active { color: var(--brown-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brown-mid); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; padding: 100px 24px 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(74,124,53,0.18) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(107,58,31,0.15) 0%, transparent 50%), linear-gradient(135deg, var(--brown-dark) 0%, #1a3a0a 60%, var(--green-dark) 100%); z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.hero-eyebrow { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--green-light); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; z-index: 1; }
.scroll-line { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ── SECTIONS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-mid); background: rgba(74,124,53,0.1); padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--brown-dark); line-height: 1.2; }

/* ── WHY SECTION ── */
.why-section { padding: 100px 0; background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); border: 1px solid rgba(107,58,31,0.08); transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--brown-dark); margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ── PRODUCT TEASER ── */
.product-teaser { padding: 100px 0; background: var(--cream-dark); }
.teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.teaser-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--brown-dark); margin-bottom: 20px; line-height: 1.2; }
.teaser-text p { color: var(--text-mid); margin-bottom: 32px; line-height: 1.8; }
.teaser-text em { color: var(--green-dark); font-style: italic; }
.teaser-visual { position: relative; }
.teaser-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--cream); box-shadow: var(--shadow-lg); }
.teaser-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); border: 2px dashed rgba(107,58,31,0.2); border-radius: var(--radius-lg); }
.teaser-placeholder .big-worm { font-size: 5rem; }
.teaser-placeholder p { color: var(--text-light); font-size: 0.9rem; }
.teaser-stat { position: absolute; bottom: -20px; left: -20px; background: var(--green-dark); color: var(--white); border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-lg); }
.teaser-stat strong { display: block; font-size: 2rem; font-family: var(--font-display); }
.teaser-stat span { font-size: 0.8rem; opacity: 0.85; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-dark) 100%); padding: 80px 0; }
.cta-content { text-align: center; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer { background: var(--brown-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; display: block; margin-top: 8px; }
.footer-brand img { height: 52px; width: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 12px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 10px; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ── PAGE HERO ── */
.page-hero { padding: 130px 24px 70px; background: linear-gradient(135deg, var(--brown-dark) 0%, var(--green-dark) 100%); text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.page-hero .hero-eyebrow { color: var(--green-light); margin-bottom: 16px; }

/* ── ABOUT PAGE ── */
.about-story { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; }
.about-img-wrap img { width: 80%; height: 80%; object-fit: contain; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--brown-dark); margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.about-text blockquote { border-left: 4px solid var(--green-mid); padding: 12px 20px; margin: 24px 0; font-style: italic; color: var(--text-light); font-size: 1rem; background: rgba(74,124,53,0.05); border-radius: 0 8px 8px 0; }
.mission-section { background: var(--cream-dark); padding: 80px 0; }
.mission-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mission-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--green-mid); }
.mission-card h3 { font-family: var(--font-display); color: var(--brown-dark); margin-bottom: 12px; font-size: 1.1rem; }
.mission-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.founder-section { padding: 100px 0; }
.founder-inner { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.founder-photo { background: var(--cream-dark); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); font-size: 5rem; border: 3px solid rgba(107,58,31,0.1); }
.founder-info h2 { font-family: var(--font-display); color: var(--brown-dark); font-size: 2rem; margin-bottom: 4px; }
.founder-info .founder-title { color: var(--green-dark); font-weight: 700; margin-bottom: 24px; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; display: block; }
.founder-info p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; }

/* ── PRODUCTS PAGE ── */
.products-section { padding: 100px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-bottom: 60px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(107,58,31,0.08); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-header { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--green-dark) 100%); padding: 32px 28px 24px; }
.product-card-header .product-icon { font-size: 2.5rem; margin-bottom: 12px; }
.product-card-header h3 { font-family: var(--font-display); color: var(--white); font-size: 1.35rem; margin-bottom: 6px; }
.product-card-header .product-latin { color: rgba(255,255,255,0.65); font-style: italic; font-size: 0.85rem; }
.product-card-body { padding: 28px; }
.product-card-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.price-table { list-style: none; }
.price-table li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(107,58,31,0.08); font-size: 0.95rem; color: var(--text-mid); }
.price-table li:last-child { border-bottom: none; }
.price { font-weight: 700; color: var(--green-dark); font-size: 1.05rem; }
.out-of-stock { opacity: 0.5; }
.out-of-stock .price { text-decoration: line-through; }
.badge-oos { background: #e53e3e; color: white; font-size: 0.65rem; padding: 2px 8px; border-radius: 10px; font-weight: 700; }
.order-cta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(107,58,31,0.08); }
.how-to-order { background: var(--cream-dark); border-radius: var(--radius-lg); padding: 48px; margin-top: 60px; text-align: center; }
.how-to-order h2 { font-family: var(--font-display); color: var(--brown-dark); font-size: 2rem; margin-bottom: 16px; }
.how-to-order > p { color: var(--text-mid); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.order-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.order-option { background: var(--white); border-radius: var(--radius); padding: 20px 28px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); font-weight: 600; color: var(--text-mid); transition: var(--transition); border: 2px solid transparent; }
.order-option:hover { border-color: var(--green-mid); color: var(--green-dark); transform: translateY(-2px); }
.order-option .opt-icon { font-size: 1.4rem; }

/* ── CUIDADOS PAGE ── */
.cuidados-section { padding: 100px 0; }
.cuidados-intro { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.cuidados-intro p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }
.care-topics { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.care-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); border-left: 5px solid var(--green-mid); transition: var(--transition); }
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.care-card-icon { font-size: 2rem; margin-bottom: 14px; }
.care-card h3 { font-family: var(--font-display); color: var(--brown-dark); font-size: 1.25rem; margin-bottom: 14px; }
.care-card p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.75; }
.care-card ul { color: var(--text-mid); font-size: 0.93rem; padding-left: 20px; line-height: 2.1; margin-top: 10px; }
.care-tip { background: rgba(74,124,53,0.08); border: 1px solid rgba(74,124,53,0.2); border-radius: 8px; padding: 12px 16px; margin-top: 14px; font-size: 0.88rem; color: var(--green-dark); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); color: var(--brown-dark); font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); transition: var(--transition); }
.contact-method:hover { transform: translateX(4px); }
.contact-method .method-icon { font-size: 1.6rem; }
.contact-method strong { display: block; color: var(--brown-dark); font-size: 0.9rem; }
.contact-method span { color: var(--text-light); font-size: 0.88rem; }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form h3 { font-family: var(--font-display); color: var(--brown-dark); font-size: 1.5rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid rgba(107,58,31,0.15); border-radius: 8px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--cream); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; text-align: center; padding: 20px; background: rgba(74,124,53,0.1); border-radius: 8px; color: var(--green-dark); font-weight: 700; margin-top: 16px; }

/* ── BLOG PAGE ── */
.blog-section { padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); background: rgba(74,124,53,0.1); padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.blog-card-body { padding: 28px; }
.blog-card h3 { font-family: var(--font-display); color: var(--brown-dark); font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.blog-meta { font-size: 0.8rem; color: var(--text-light); }

/* ── LOMBRIZ PAGE ── */
.lombriz-section { padding: 100px 0; }
.lombriz-intro { max-width: 800px; margin: 0 auto 64px; }
.lombriz-intro h2 { font-family: var(--font-display); color: var(--brown-dark); font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 20px; }
.lombriz-intro p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; margin-bottom: 14px; }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 56px; }
.fact-box { background: var(--brown-dark); color: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.fact-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--green-light); display: block; }
.fact-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; display: block; }

/* ── MANUALES PAGE ── */
.manuales-section { padding: 100px 0; }
.manuales-coming { text-align: center; padding: 80px 40px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.manuales-coming .big-icon { font-size: 5rem; margin-bottom: 20px; }
.manuales-coming h2 { font-family: var(--font-display); color: var(--brown-dark); font-size: 2rem; margin-bottom: 16px; }
.manuales-coming p { color: var(--text-light); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .teaser-inner, .about-grid, .founder-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .teaser-stat { position: static; display: inline-flex; gap: 12px; align-items: baseline; margin-top: 20px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; border-bottom: 1px solid rgba(107,58,31,0.12); box-shadow: var(--shadow); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-to-order { padding: 32px 20px; }
  .contact-form { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
}
