/* * Evette Class salon
 * Main Stylesheet
 * assets/css/main.css
 * v=1.06 (Icon Update)
 */

/* 1. CSS Custom Properties (Variables)
-------------------------------------------------- */
:root {
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --color-bg-white: #FFFFFF;
    --color-bg-gray: #F3F4F6;
    --color-text-primary: #111827;
    --color-text-muted: #6B7280;
    --color-accent-gold: #C99A2E;
    --color-accent-gold-dark: #A8771E;
    --color-border: #E5E7EB;
    
    --color-success: #16a34a;
    --color-error: #dc2626;

    --nav-height: 76px;
    --max-width: 1200px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.25rem; /* 4px */
    --radius-md: 0.5rem;  /* 8px */
    --radius-lg: 1rem;    /* 16px */
    --radius-full: 9999px;
}

/* 2. Global Resets & Base Styles
-------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

/* 3. Accessibility
-------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-accent-gold);
    color: var(--color-bg-white);
    padding: 0.5rem 1rem;
    z-index: 9999;
    transition: top 0.3s ease-in-out;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-track {
        animation: none !important;
    }
}

/* 4. Layout & Helpers
-------------------------------------------------- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 4rem 0;
}
.section-sm {
    padding: 2.5rem 0;
}

.text-center {
    text-align: center;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

/* 5. Typography
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem); /* 40px - 60px */
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem); /* 32px - 44px */
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem); /* 24px - 30px */
}

h4 {
    font-size: 1.25rem; /* 20px */
}

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

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-accent-gold-dark);
    text-decoration: underline;
}

/* 6. Buttons & Forms
-------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.9375rem; /* 15px */
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-accent-gold-dark);
    color: var(--color-bg-white);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-bg-white);
    color: var(--color-text-primary);
    border-color: var(--color-border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-bg-gray);
    color: var(--color-text-primary);
    text-decoration: none;
}

/* MODIFICATION 1: Increased horizontal padding (Existing) */
.btn-sm {
    padding: 0.5rem 1.5rem; /* Was 1rem horizontal */
    font-size: 0.875rem;
}

/* Forms */
.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

@media (min-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.booking-form label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--color-text-primary);
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 2px rgba(201, 154, 46, 0.3);
}

.booking-form button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .booking-form button[type="submit"] {
        width: auto;
        min-width: 250px;
    }
}

#form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}
#form-status.success {
    color: var(--color-success);
}
#form-status.error {
    color: var(--color-error);
}

.form-fallback {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* 7. Header & Navigation
-------------------------------------------------- */
.site-header {
    background-color: var(--color-bg-white);
    position: relative;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo img { /* Targeting img inside logo */
    height: 70px; /* Controls logo height */
    width: auto;
}

/* Desktop Nav */
.nav-links {
    display: none;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.9375rem; /* 15px */
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon {
    display: block;
    padding: 0.5rem;
    line-height: 0;
    transition: opacity 0.2s ease;
}
/* MODIFICATION: Changed hover effect for new PNG icons */
.nav-icon:hover,
.nav-icon:focus {
    opacity: 0.8;
}
.nav-icon img {
    /* Ensure images size correctly if not set by attributes */
    width: 24px;
    height: 24px;
}


/* Mobile Nav Toggle */
.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-hamburger { display: none; }

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

/* Mobile Nav Menu */
/* MODIFICATION 2: This is now controlled by JS in index.html (Existing) */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--color-bg-white);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav[hidden] {
    display: block; /* Override default 'hidden' */
}

.mobile-nav.is-open {
    transform: translateX(0);
}

body.nav-open {
    overflow: hidden; /* Prevent body scroll when nav is open */
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav ul li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav ul a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
}
.mobile-nav ul a.btn {
    text-align: center;
    margin-top: 1rem;
}


/* 8. Footer
-------------------------------------------------- */
/* MODIFICATION 7: Changed BG color and all related text/border colors (Existing) */
.site-footer {
    /* background-color: var(--color-text-primary); */
    background-color: #DDD5F3; /* NEW */
    /* color: var(--color-bg-gray); */
    color: var(--color-text-primary); /* NEW */
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    }
}

.footer-col h4 {
    font-family: var(--font-heading);
    /* color: var(--color-bg-white); */
    color: var(--color-text-primary); /* NEW */
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.logo-footer img { /* Targeted img */
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted); /* This gray is readable on new BG */
    max-width: 300px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icons a {
    /* color: var(--color-bg-gray); */
    color: var(--color-text-primary); /* NEW */
    line-height: 0;
    transition: opacity 0.2s ease; /* Added for hover */
}
/* MODIFICATION: Removed SVG hover, added IMG hover */
.social-icons a:hover,
.social-icons a:focus {
    color: var(--color-accent-gold); /* This won't affect the img, but is good practice */
    opacity: 0.8; /* This will fade the icon slightly on hover */
}
/* MODIFICATION: Replaced SVG rule with IMG rule */
.social-icons img {
    width: 24px;
    height: 24px;
}
/* MODIFICATION: Removed old SVG-specific rule
.social-icons a[aria-label*="Facebook"] svg {
    stroke: none; 
}
*/


.footer-links,
.footer-hours {
    list-style: none;
    font-size: 0.9375rem; /* 15px */
}

.footer-links li,
.footer-hours li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.site-footer address,
.site-footer address a,
.footer-booking-note a {
    /* color: var(--color-text-muted); */
    color: #374151; /* NEW - Darker gray for readability */
    text-decoration: none;
    font-style: normal;
}

/* Added this rule for the non-link address text (Existing) */
.site-footer address {
    color: #374151; /* NEW */
    line-height: 1.7;
}

.footer-links a:hover,
.site-footer address a:hover,
.footer-booking-note a:hover {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.footer-booking-note {
    font-size: 0.9rem;
    /* color: var(--color-text-muted); */
    color: #374151; /* NEW */
    margin-top: 1rem;
}

.footer-bottom {
    /* border-top: 1px solid #374151; */ /* Darker border */
    border-top: 1px solid #C4B5E0; /* NEW - Lighter border */
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.875rem;
    /* color: var(--color-text-muted); */
    color: #374151; /* NEW */
    margin: 0;
}

/* 9. Page: Home
-------------------------------------------------- */

/* Hero */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* MODIFICATION 6: Adjusted gradient slightly for mobile view (Existing) */
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 100%);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Focus more on the action */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.hero-content h1 {
    max-width: 14ch;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.25rem;
    max-width: 45ch;
    color: var(--color-text-primary);
    font-weight: 400;
    margin-bottom: 2rem;
}
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero {
        height: 80vh;
    }
    .hero-image-container::after {
         /* Revert gradient for desktop (Existing) */
        background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.3) 100%);
    }
    .hero-content .container {
        align-items: flex-end; /* Push content to the right */
        text-align: right;
    }
    .hero-content h1 {
        max-width: 12ch;
    }
    .hero-content p {
        font-size: 1.375rem;
    }
    .hero-cta {
        flex-direction: row;
        justify-content: flex-end;
    }
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--color-bg-white);
    display: block;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0) 100%);
    transition: background 0.4s ease;
}
.service-card h3 {
    font-size: 1.75rem;
    color: var(--color-bg-white);
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--color-bg-gray);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-card:hover img,
.service-card:focus img {
    transform: scale(1.05);
}
.service-card:hover .service-card-overlay,
.service-card:focus .service-card-overlay {
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.95) 20%, rgba(17, 24, 39, 0) 100%);
}
.service-card:hover p,
.service-card:focus p {
    opacity: 1;
    transform: translateY(0);
}


/* Booking Section */
.booking-section {
    background-color: var(--color-bg-gray);
}

/* Gallery Marquee */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 1rem;
    width: calc(350px * 34 + 1rem * 34); /* (image width * total images) + (gap * total images) */
    animation: scroll 120s linear infinite;
}
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-track img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 17 - 1rem * 17)); /* (image width * unique images) + (gap * unique images) */
    }
}

/* Testimonials */
.testimonials-section {
    background-color: var(--color-bg-gray);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin: 0 auto 1rem auto;
    object-fit: cover;
    border: 3px solid var(--color-border);
}
.testimonial-card .stars {
    color: var(--color-accent-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.testimonial-card blockquote {
    margin: 0;
}
.testimonial-card blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text-primary);
    margin: 0;
}
.testimonial-card footer {
    margin-top: 1rem;
}
.testimonial-card cite {
    font-style: normal;
    font-weight: 500;
    color: var(--color-text-muted);
}


/* 10. Page: About
-------------------------------------------------- */
.page-header {
    background-color: var(--color-bg-gray);
    padding: 3rem 0;
    text-align: center;
}
.page-header h1 {
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    background-color: var(--color-bg-gray);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.value-card {
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.value-card h3 {
    color: var(--color-accent-gold);
}

/* 11. Page: Services
-------------------------------------------------- */
.services-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 992px) {
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
@media (min-width: 640px) {
    .service-detail-card {
        flex-direction: row;
    }
    .service-detail-card img {
        width: 40%;
        height: auto;
        min-height: 220px;
    }
}

.service-detail-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-detail-content h3 {
    font-size: 1.75rem;
    color: var(--color-text-primary);
}
.service-detail-content p {
    font-size: 0.9375rem;
    flex-grow: 1;
}
.service-meta {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent-gold);
    margin-top: 1rem;
    display: block;
}

.cta-section {
    background-color: var(--color-accent-gold);
}
.cta-section h2 {
    color: var(--color-bg-white);
}
.cta-section p {
    color: var(--color-bg-gray);
    font-size: 1.125rem;
}
.cta-section .btn {
    background-color: var(--color-bg-white);
    color: var(--color-accent-gold);
}
.cta-section .btn:hover {
    background-color: var(--color-bg-gray);
    color: var(--color-accent-gold-dark);
}

/* 12. Page: Contact
-------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--color-accent-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.contact-form-container {
    background-color: var(--color-bg-gray);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}
.contact-form-container h2 {
    border-color: var(--color-border);
}

.contact-details-list,
.hours-list {
    list-style: none;
    margin: 1.5rem 0;
}
.contact-details-list li,
.hours-list li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
}
.contact-details-list li strong,
.hours-list li strong {
    color: var(--color-text-primary);
    margin-right: 0.5rem;
    min-width: 70px;
    display: inline-block;
}

.map-embed {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.map-embed iframe {
    width: 100%;
    height: 350px;
    border: 0;
}
.map-embed p {
    padding: 0.5rem 1rem;
    background: var(--color-bg-gray);
    font-size: 0.8rem;
    margin: 0;
}
