/* ============================================
   LA CORTE DI ZIZI — Static Site Styles
   ============================================ */
:root {
  --color-lake: #2c5f6e;
  --color-lake-dark: #1e4350;
  --color-lake-light: #3a7d8f;
  --color-gold: #b8945f;
  --color-gold-light: #d4b07a;
  --color-paper: #f8f6f1;
  --color-paper-dark: #eee9df;
  --color-text: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --nav-height: 72px;
  --max-width: 1200px;
  --max-width-narrow: 860px;
  --transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-paper); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-lake); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--color-lake-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1em; }
strong { font-weight: 600; }
blockquote { border-left: 3px solid var(--color-gold); padding: 1em 1.5em; margin: 1.5em 0; background: var(--color-paper-dark); font-style: italic; color: var(--color-text-light); border-radius: 0 8px 8px 0; }

/* Utility */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-alt { background: var(--color-white); }
.section-dark { background: var(--color-lake-dark); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.gold-line { display: block; width: 60px; height: 2px; background: var(--color-gold); margin: 16px auto 24px; }
.gold-line-left { display: block; width: 60px; height: 2px; background: var(--color-gold); margin: 16px 0 24px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 1px 8px rgba(0,0,0,0.08); height: var(--nav-height); transition: background var(--transition), box-shadow var(--transition); }
.navbar.transparent { background: rgba(255,255,255,0); box-shadow: none; }
.navbar.transparent .nav-logo-text, .navbar.transparent .nav-link, .navbar.transparent .hamburger span { color: var(--color-white); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.navbar.transparent .hamburger span { background: var(--color-white); }
.navbar.transparent .lang-btn { border-color: rgba(255,255,255,0.7); color: rgba(255,255,255,0.9); }
.navbar.transparent .lang-btn.active { background: var(--color-white); color: var(--color-lake-dark); border-color: var(--color-white); }
.navbar.transparent .lang-btn:hover { background: rgba(255,255,255,0.25); color: var(--color-white); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--color-text); padding: 8px 14px; border-radius: 6px; transition: all var(--transition); white-space: nowrap; }
.nav-link:hover { color: var(--color-lake); background: rgba(44,95,110,0.06); }
.nav-link.active { color: var(--color-lake); font-weight: 600; }
.nav-item { position: relative; }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--color-white); border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 220px; padding: 8px 0; z-index: 100; }
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 8px 20px; font-size: 0.88rem; color: var(--color-text); transition: all var(--transition); }
.nav-dropdown a:hover { background: var(--color-paper); color: var(--color-lake); }
.nav-cta { background: var(--color-gold); color: var(--color-white) !important; padding: 8px 20px !important; border-radius: 6px; font-weight: 600; font-size: 0.88rem; transition: all var(--transition); display: inline-block; }
.nav-cta:hover { background: var(--color-gold-light); color: var(--color-white) !important; transform: translateY(-1px); }
.lang-switcher { display: flex; gap: 4px; margin-left: 8px; }
.lang-btn { padding: 4px 10px; font-size: 0.78rem; font-weight: 600; border: 1.5px solid var(--color-lake); border-radius: 4px; color: var(--color-lake); cursor: pointer; background: transparent; transition: all var(--transition); text-transform: uppercase; }
.lang-btn.active { background: var(--color-lake); color: var(--color-white); }
.lang-btn:hover { background: var(--color-lake-light); color: var(--color-white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); transition: all var(--transition); }

@media (max-width: 1024px) {
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--color-white); flex-direction: column; padding: 24px; gap: 0; overflow-y: auto; z-index: 999; box-shadow: inset 0 4px 12px rgba(0,0,0,0.06); }
  .nav-links.open .nav-link { color: var(--color-lake-dark) !important; text-shadow: none !important; }
  .nav-links.open .nav-cta { color: var(--color-white) !important; }
  .nav-links.open .lang-btn { border-color: var(--color-lake) !important; color: var(--color-lake) !important; }
  .nav-links.open .lang-btn.active { background: var(--color-lake) !important; color: var(--color-white) !important; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 1rem; width: 100%; }
  .nav-item:hover .nav-dropdown { display: none; }
  .nav-item.open .nav-dropdown { display: block; position: static; box-shadow: none; background: var(--color-paper); border-radius: 6px; margin: 4px 0 8px 16px; }
  .lang-switcher { margin: 16px 0 0 0; }
}

/* Hero */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--color-white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: none; }
.hero-content { position: relative; z-index: 1; padding: 40px 24px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--color-white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero p { font-size: clamp(1.1rem, 2.5vw, 1.4rem); opacity: 0.92; max-width: 600px; margin: 0 auto 32px; font-family: var(--font-display); font-style: italic; }
.page-hero { background: var(--color-lake-dark); color: var(--color-white); padding: 96px 0 48px; text-align: center; }
.page-hero h1 { color: var(--color-white); margin-bottom: 8px; }
.page-hero .subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; opacity: 0.8; }
.page-hero-image { position: relative; padding: 0; min-height: 440px; display: flex; align-items: flex-end; justify-content: center; color: var(--color-white); overflow: hidden; }
.page-hero-image .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-image .hero-bg::after { content: ''; position: absolute; inset: 0; background: none; }
.page-hero-image .hero-content { position: relative; z-index: 1; padding: 120px 24px 40px; width: 100%; }
.page-hero-image h1 { color: var(--color-white); text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.breadcrumb { padding: 16px 0; font-size: 0.85rem; color: var(--color-text-light); }
.breadcrumb a { color: var(--color-lake); }
.breadcrumb span { margin: 0 8px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); border: none; text-decoration: none; }
.btn-primary { background: var(--color-gold); color: var(--color-white); }
.btn-primary:hover { background: var(--color-gold-light); color: var(--color-white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,148,95,0.3); }
.btn-outline { border: 2px solid var(--color-lake); color: var(--color-lake); background: transparent; }
.btn-outline:hover { background: var(--color-lake); color: var(--color-white); }
.btn-white { background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5); color: var(--color-white); backdrop-filter: blur(4px); }
.btn-white:hover { background: var(--color-white); color: var(--color-lake-dark); }

/* Content */
.article-content { padding: 60px 0 80px; }
.article-content h2 { margin: 2em 0 0.6em; }
.article-content h3 { margin: 1.5em 0 0.5em; }
.article-content p { margin-bottom: 1.1em; line-height: 1.8; }
.article-content a { color: var(--color-lake); font-weight: 500; border-bottom: 1px solid rgba(44,95,110,0.2); }
.article-content a:hover { color: var(--color-gold); border-color: var(--color-gold); }
.article-content img { border-radius: 10px; margin: 1.5em auto; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.article-content ul, .article-content ol { margin: 1em 0; padding-left: 1.5em; }
.article-content li { margin-bottom: 0.5em; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin: 40px 0; }
.card { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: all var(--transition); text-decoration: none; color: var(--color-text); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); color: var(--color-text); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card-body p { color: var(--color-text-light); font-size: 0.92rem; flex: 1; }
.card-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gold); margin-bottom: 8px; }

/* Apartment cards */
.apt-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin: 40px 0; }
.apt-card { background: var(--color-white); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.07); transition: all var(--transition); text-decoration: none; color: var(--color-text); }
.apt-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.apt-card-img { height: 240px; overflow: hidden; position: relative; }
.apt-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.apt-card:hover .apt-card-img img { transform: scale(1.06); }
.apt-card-price { position: absolute; bottom: 16px; right: 16px; background: rgba(255,255,255,0.95); padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 0.95rem; color: var(--color-lake-dark); backdrop-filter: blur(4px); }
.apt-card-body { padding: 24px; }
.apt-card-body h3 { margin-bottom: 4px; }
.apt-card-subtitle { font-family: var(--font-display); font-style: italic; color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 16px; }
.apt-card-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.apt-feature { font-size: 0.8rem; padding: 4px 10px; background: var(--color-paper); border-radius: 4px; color: var(--color-text-light); }
.apt-card .btn { width: 100%; text-align: center; }

/* Address grid */
.addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin: 40px 0; }
.addr-card { background: var(--color-white); border-radius: 12px; padding: 32px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: all var(--transition); text-decoration: none; color: var(--color-text); }
.addr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); color: var(--color-text); }
.addr-card h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin: 24px 0; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: all var(--transition); }
.gallery-grid img:hover { opacity: 0.85; transform: scale(1.02); }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; align-items: center; justify-content: center; }
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 2.5rem; cursor: pointer; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin: 40px 0; }

/* Footer */
.footer { background: var(--color-lake-dark); color: rgba(255,255,255,0.8); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 16px; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--color-gold); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-cin { font-size: 0.78rem; margin-top: 12px; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .page-hero { padding: 100px 0 40px; }
  .cards-grid, .apt-cards, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .addr-grid { grid-template-columns: 1fr; }
}

/* ===== Events Page ===== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin: 32px 0 40px; }
.event-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; background: var(--color-white); border-radius: 14px; border: 1px solid var(--color-paper-dark); text-decoration: none; color: var(--color-text); transition: all var(--transition); }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(44,95,110,0.12); border-color: var(--color-gold-light); color: var(--color-text); }
.event-card-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--color-lake); border-radius: 14px; margin-bottom: 18px; color: var(--color-white); }
.event-card-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.event-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--color-lake-dark); }
.event-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.5; margin: 0; }
.events-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; justify-content: center; }
.events-links-section { text-align: center; margin-top: 48px; }
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
  .events-links { flex-direction: column; }
  .events-links .btn { text-align: center; }
}

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 768px) { .whatsapp-fab { bottom: 16px; right: 16px; width: 50px; height: 50px; } .whatsapp-fab svg { width: 26px; height: 26px; } }

/* Apartment Swiper Slider */
.apt-slider-wrapper { margin: 8px auto 24px; width: 80%; }
@media (max-width: 768px) { .apt-slider-wrapper { width: 100%; } }
.page-hero + .section { padding-top: 40px; }
.apt-slider { border-radius: 12px; overflow: hidden; }
.apt-slider .swiper-slide img { width: 100%; height: auto; display: block; cursor: pointer; }
.apt-slider .swiper-button-next, .apt-slider .swiper-button-prev { color: #fff; background: rgba(0,0,0,0.35); width: 44px; height: 44px; border-radius: 50%; backdrop-filter: blur(4px); }
.apt-slider .swiper-button-next::after, .apt-slider .swiper-button-prev::after { font-size: 18px; font-weight: 700; }
.apt-slider .swiper-pagination-bullet { background: #fff; opacity: 0.6; width: 10px; height: 10px; }
.apt-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--color-lake); }
.apt-thumbs { margin-top: 10px; }
.apt-thumbs .swiper-slide { opacity: 0.5; border-radius: 8px; overflow: hidden; cursor: pointer; transition: opacity 0.3s; border: 2px solid transparent; }
.apt-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--color-lake); }
.apt-thumbs .swiper-slide img { width: 100%; height: 72px; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .apt-slider .swiper-button-next, .apt-slider .swiper-button-prev { width: 36px; height: 36px; }
  .apt-slider .swiper-button-next::after, .apt-slider .swiper-button-prev::after { font-size: 14px; }
  .apt-thumbs .swiper-slide img { height: 56px; }
}
@media (max-width: 480px) {
  .apt-thumbs .swiper-slide img { height: 48px; }
}

/* Contact page layout */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-info img { width:100%; border-radius:12px; margin-bottom:24px; }
.contact-info h4 { margin-bottom:8px; }
.contact-info h4 a { color:var(--color-lake-dark); text-decoration:none; }
.contact-info h4 a:hover { text-decoration:underline; }
.contact-form-card { background:#f8f7f5; border-radius:16px; padding:32px; }
.contact-form-card h3 { font-family:var(--font-heading); font-size:1.4rem; margin-bottom:6px; color:var(--color-lake-dark); }
.contact-form-card .form-subtitle { font-size:0.9rem; color:#666; margin-bottom:20px; }
.contact-form-card label { display:block; font-family:var(--font-body); font-size:0.85rem; font-weight:500; color:#444; margin-bottom:4px; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea { width:100%; padding:10px 14px; border:1px solid #d0cec9; border-radius:8px; font-family:var(--font-body); font-size:0.95rem; background:#fff; color:#333; transition:border-color 0.2s; box-sizing:border-box; margin-bottom:14px; }
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { outline:none; border-color:var(--color-lake); }
.contact-form-card textarea { resize:vertical; min-height:80px; }
.contact-form-card .form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.btn-whatsapp { display:inline-flex; align-items:center; justify-content:center; gap:10px; width:100%; background:#25D366; color:#fff; padding:14px 24px; border:none; border-radius:50px; font-family:var(--font-body); font-size:1rem; font-weight:600; cursor:pointer; transition:background 0.3s,transform 0.2s; margin-top:6px; text-decoration:none; }
.btn-whatsapp:hover { background:#1ebe57; transform:translateY(-2px); color:#fff; }
.btn-whatsapp svg { width:22px; height:22px; fill:#fff; flex-shrink:0; }
@media (max-width:768px) {
  .contact-grid { grid-template-columns:1fr; gap:32px; }
  .contact-form-card .form-row { grid-template-columns:1fr; }
}

/* Hero best rate */
.hero-best-rate { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-top: 12px; font-weight: 500; }
.btn-sub { display: block; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; margin-top: 2px; }

/* ===== Interactive Map Embed ===== */
.map-section { padding: 40px 0 0; }
.map-section .container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.map-section h3 { text-align: center; margin-bottom: 6px; font-size: 1.3rem; color: var(--color-lake-dark); }
.map-section .map-subtitle { text-align: center; font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 20px; font-style: italic; font-family: var(--font-display); }
.map-embed { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06); }
.map-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
  .map-section { padding: 28px 0 0; }
  .map-embed { padding-bottom: 75%; border-radius: 8px; }
  .map-section h3 { font-size: 1.15rem; }
}
