/* ==========================================================================
   Todofotovoltaica · Enerty Sur Electricidad
   Stylesheet principal
   ========================================================================== */

:root {
    --primary: #FFB400;
    --primary-dark: #FF7A00;
    --primary-light: #FFE082;
    --secondary: #1A1A1A;
    --secondary-soft: #2C2C2C;
    --accent: #FF5722;
    --bg: #FFFFFF;
    --bg-alt: #F8F9FA;
    --bg-dark: #111111;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --border: #E5E7EB;
    --success: #10B981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
    --radius: 12px;
    --radius-lg: 20px;
    --container: 1200px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Tamaño base seguro para iconos SVG: nunca más grandes que su contenedor */
svg { max-width: 100%; max-height: 100%; flex-shrink: 0; }

a { color: var(--primary-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: .75rem; }
h4 { font-size: 1.125rem; margin-bottom: .5rem; }

/* Evita que los compuestos con guion (micro-inversores, aire-agua...)
   se partan al final de la linea */
.nb { white-space: nowrap; }

p { margin-bottom: 1rem; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #E5E7EB; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #D1D5DB; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-header .eyebrow { color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: .85rem; margin-bottom: .75rem; display: inline-block; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .9rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
}
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; box-shadow: 0 8px 20px rgba(255,122,0,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,122,0,.4); color: #fff; }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: #fff; }
.btn-light { background: #fff; color: var(--secondary); }
.btn-light:hover { background: var(--bg-alt); color: var(--secondary); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.4); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg svg { width: 20px; height: 20px; }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand img { height: 90px; width: auto; }
@media (max-width: 720px) { .brand img { height: 64px; } }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { color: var(--text); padding: .55rem .85rem; font-weight: 500; font-size: .95rem; border-radius: 8px; }
.nav a:hover { background: var(--bg-alt); color: var(--secondary); }
.nav .nav-dropdown { position: relative; }
.nav .dropdown-toggle { display: flex; align-items: center; gap: .25rem; cursor: pointer; }
.nav .dropdown-toggle::after { content: ''; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 4px; margin-top: -3px; }
.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 200;
}
.nav .nav-dropdown:hover .dropdown-menu,
.nav .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: .6rem .85rem; border-radius: 6px; font-size: .9rem; }
.dropdown-menu a:hover { background: var(--bg-alt); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--secondary); margin: 5px 0; transition: .3s; }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(255,180,0,.15), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255,122,0,.12), transparent 50%),
        linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,180,0,.2), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content .pre-title {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,180,0,.15);
    color: var(--primary-dark);
    padding: .45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 1.5rem;
}
.hero-content .pre-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero h1 { margin-bottom: 1.25rem; font-size: clamp(1.65rem, 3.6vw, 2.6rem); line-height: 1.2; }
.hero h1 span { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; max-width: 540px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-stats .stat strong { display: block; font-size: 2rem; color: var(--secondary); font-weight: 800; line-height: 1; }
.hero-stats .stat span { font-size: .85rem; color: var(--text-light); }
.hero-visual { position: relative; }
.hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,180,0,.08), rgba(255,87,34,.08));
    pointer-events: none;
}
.hero-card .save-amount { font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.hero-card .save-label { color: var(--text-light); margin-bottom: 1.5rem; }
.hero-card ul { list-style: none; }
.hero-card li { display: flex; align-items: center; gap: .65rem; padding: .5rem 0; color: var(--text); font-weight: 500; }
.hero-card li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--primary); color: #fff; border-radius: 50%; font-size: .8rem; font-weight: 700; flex-shrink: 0; }

/* ============ TRUST BAR ============ */
.trust-bar { padding: 2rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; align-items: center; text-align: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: .65rem; color: var(--text); font-weight: 600; font-size: .95rem; }
.trust-item svg { width: 28px; height: 28px; color: var(--primary-dark); }

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,180,0,.15), rgba(255,87,34,.15));
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--secondary); margin-bottom: .5rem; }
.service-card p { color: var(--text-light); margin-bottom: 1rem; font-size: .95rem; }
.service-card .link { color: var(--primary-dark); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .25rem; }
.service-card .link::after { content: '→'; transition: transform .2s; }
.service-card:hover .link::after { transform: translateX(4px); }

/* ============ FEATURES ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature { text-align: center; padding: 1rem; }
.feature .icon { width: 72px; height: 72px; margin: 0 auto 1.25rem; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 24px rgba(255,122,0,.25); }
.feature .icon svg { width: 32px; height: 32px; }
.feature h3 { margin-bottom: .5rem; }
.feature p { color: var(--text-light); font-size: .95rem; }

/* ============ PROCESS ============ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step .num { width: 60px; height: 60px; margin: 0 auto 1.25rem; border-radius: 50%; background: #fff; border: 2px solid var(--primary); color: var(--primary-dark); font-size: 1.5rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p { font-size: .9rem; color: var(--text-light); }

/* ============ TESTIMONIALS ============ */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: #FFB400; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial blockquote { font-style: normal; color: var(--text); margin-bottom: 1.5rem; line-height: 1.7; font-size: .95rem; }
.testimonial blockquote::before { content: '"'; font-size: 3rem; color: var(--primary); font-family: Georgia, serif; line-height: 0; vertical-align: -0.4em; margin-right: .25rem; }
.testimonial .author { display: flex; align-items: center; gap: .75rem; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.testimonial .author strong { display: block; font-size: .95rem; color: var(--secondary); }
.testimonial .author span { display: block; font-size: .8rem; color: var(--text-light); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--secondary); font-size: 1.05rem; padding-right: 2rem; position: relative; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--primary-dark); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding-top: 1rem; color: var(--text-light); line-height: 1.7; }

/* ============ CTA STRIP ============ */
.cta-strip {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D2D2D 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,180,0,.2), transparent 60%);
}
.cta-strip-inner { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; }
.cta-strip h2 { color: #fff; margin-bottom: .5rem; }
.cta-strip p { color: #D1D5DB; margin-bottom: 0; }
.cta-strip-actions { display: flex; gap: 1rem; justify-content: flex-end; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-dark); color: #B0B5BD; padding: 4rem 0 1.5rem; }
.footer-visit { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.footer-gallery a { display: block; overflow: hidden; border-radius: 10px; line-height: 0; }
.footer-gallery img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform .35s ease; }
.footer-gallery a:hover img { transform: scale(1.05); }
.footer-map { display: flex; flex-direction: column; gap: .65rem; }
.footer-map iframe { width: 100%; height: 200px; border: 0; border-radius: 10px; }
.footer-map-cta { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary) !important; font-size: .9rem; font-weight: 600; }
.footer-map-cta:hover { color: #fff !important; }
@media (max-width: 900px) { .footer-visit { grid-template-columns: 1fr; gap: 1.25rem; } .footer-gallery img { height: 110px; } .footer-map iframe { height: 180px; } }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 88px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; color: #9CA3AF; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .65rem; }
.site-footer a { color: #B0B5BD; font-size: .9rem; }
.site-footer a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact .contact-item { display: flex; align-items: center; gap: .65rem; color: #B0B5BD; font-size: .9rem; }
.footer-contact .contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.footer-contact .contact-item { align-items: flex-start; gap: .5rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid #2C2C2C; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }

/* ============ WHATSAPP FLOAT BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
    z-index: 99;
    transition: all .3s;
    animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes pulse {
    0% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ PAGE HEADER (interior pages) ============ */
.page-header {
    padding: 4rem 0 3rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,180,0,.12), transparent 50%),
        linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: var(--text-light); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--text-muted); }
.page-header h1 { margin-bottom: .75rem; max-width: 900px; }
.page-header .lead { font-size: 1.2rem; color: var(--text-light); max-width: 760px; }

/* ============ CONTENT ============ */
.content { padding: 4rem 0; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.content-main h2 { margin-top: 2.5rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 1.5rem; }
.content-main ul, .content-main ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-main li { margin-bottom: .5rem; }
.content-main p { line-height: 1.75; }
.content-main img { border-radius: var(--radius); margin: 1.5rem 0; }

.aside-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 90px; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.aside-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 1.25rem; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card ul { list-style: none; margin: 1rem 0; padding: 0; }
.aside-card li { padding: .4rem 0; display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; }
.aside-card li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
    background: linear-gradient(135deg, rgba(255,180,0,.08), rgba(255,87,34,.08));
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}
.highlight-box h3 { color: var(--primary-dark); margin-bottom: .5rem; }
.highlight-box p:last-child { margin-bottom: 0; }

/* ============ TWO-COL ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col-img { background: linear-gradient(135deg, rgba(255,180,0,.12), rgba(255,87,34,.12)); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 6rem; }

/* ============ TABLES ============ */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table.spec { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
table.spec th, table.spec td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .95rem; }
table.spec th { background: var(--bg-alt); font-weight: 700; color: var(--secondary); }
table.spec tr:last-child td { border-bottom: 0; }

/* ============ TAGS ============ */
.tag { display: inline-block; background: rgba(255,180,0,.15); color: var(--primary-dark); padding: .25rem .75rem; border-radius: 999px; font-size: .8rem; font-weight: 600; margin-right: .35rem; margin-bottom: .35rem; }

/* ============ CONTACT BLOCK ============ */
.contact-block {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}
.contact-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,180,0,.25), transparent 70%);
    border-radius: 50%;
}
.contact-block > * { position: relative; z-index: 1; }
.contact-block h2 { color: #fff; }
.contact-block p { color: #D1D5DB; margin-bottom: 2rem; }

/* ============ STORE / SHOP SECTION ============ */
.store-section { background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%); }
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.store-text h2 { margin-bottom: 1rem; }
.store-text .store-eyebrow { color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; margin-bottom: .75rem; display: inline-block; }
.store-text p { color: var(--text-light); line-height: 1.7; }
.store-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0 2rem; }
.store-info-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.store-info-item svg { width: 22px; height: 22px; color: var(--primary-dark); flex-shrink: 0; }
.store-info-item strong { display: block; font-size: .8rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.store-info-item span { display: block; color: var(--secondary); font-weight: 700; font-size: .95rem; }
.store-info-item a { color: inherit; }
.store-photos { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.store-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.store-photos .main { grid-row: 1 / span 2; aspect-ratio: 4/5; }
.store-photos .sm { aspect-ratio: 4/3; }

/* ============ MAP EMBED ============ */
.map-wrap { width: 100%; height: 360px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) {
    .store-grid { grid-template-columns: 1fr; }
    .store-info { grid-template-columns: 1fr; }
    .store-photos { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
    .store-photos .main { grid-row: auto; aspect-ratio: 4/3; }
}

/* ============ ZONES ============ */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.zone-pill { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: center; gap: .5rem; transition: all .2s; }
.zone-pill:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
.zone-pill svg { width: 18px; height: 18px; color: var(--primary-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero-grid, .two-col, .content-grid, .cta-strip-inner { grid-template-columns: 1fr; }
    .cta-strip-actions { justify-content: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .aside-card { position: static; }
    .section { padding: 3.5rem 0; }
    .hero { padding: 3rem 0 4rem; }
}

@media (max-width: 720px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem; border-top: 1px solid var(--border); box-shadow: var(--shadow); align-items: stretch; gap: 0; }
    .nav.is-open { display: flex; }
    .nav a { width: 100%; padding: .75rem 1rem; }
    .nav .nav-dropdown { width: 100%; }
    .nav .dropdown-menu { position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; min-width: 0; padding-left: 1rem; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    .header-actions .btn:not(.menu-toggle) { display: none; }
    .contact-block { padding: 2rem 1.5rem; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.flex { display: flex; } .gap-1 { gap: 1rem; } .flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
