/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #c9a961;
    --secondary-color: #1a1a1a;
    --accent-color: #a88e4f;
    --text-dark: #2d2d2d;
    --text-light: #757575;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   Utilities
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 0;
}

.btn-primary {
    background: var(--text-dark);
    color: var(--bg-white);
    box-shadow: none;
    border: 1px solid var(--text-dark);
}

.btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: none;
}

.btn-outline {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: none;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-brand:hover .logo-icon {
    background: var(--primary-color);
    color: var(--text-dark);
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

.nav-brand h1 .brand-main {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-brand h1 .brand-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-dark);
    color: var(--primary-color);
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

/* Language Toggle Button */
.lang-toggle {
    background: var(--text-dark);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/gallery-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    margin: 10px auto 0;
    animation: scrollAnimation 2s infinite;
}

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

@keyframes scrollAnimation {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 60px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: var(--bg-light);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
}

.feature {
    display: block;
    padding-left: 25px;
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 20px;
    background: var(--primary-color);
}

.feature-icon {
    display: none;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.8;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 60px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 45px 35px;
    text-align: left;
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-price {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 60px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: var(--bg-light);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

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

/* ===================================
   Appointment Section
   =================================== */
.appointment {
    padding: 60px 0;
    background: var(--bg-light);
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.appointment-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.working-hours {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.appointment-note {
    background: var(--bg-white);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 2px;
}

.appointment-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.appointment-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 2px;
    box-shadow: var(--shadow);
}

.appointment-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Time slot availability styling */
#time option[disabled] {
    color: #dc3545 !important;
    font-style: italic;
}

#time option:not([disabled]):not([value=""]) {
    color: #28a745;
    font-weight: 500;
}

/* Highlight available slots on hover */
#time:hover {
    border-color: var(--primary-color);
}

/* Service duration info in select */
#time option[disabled][style*="italic"] {
    color: #666 !important;
    background: #f8f9fa;
    font-size: 0.9em;
}

.appointment-success {
    text-align: center;
    padding: 50px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.appointment-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.appointment-success p {
    color: var(--text-light);
    margin-bottom: 30px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Modern contact cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    color: inherit;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.12);
    transform: translateY(-2px);
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-color);
    color: white;
}

.contact-card-icon {
    width: 42px;
    height: 42px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
}

.contact-card-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-card-arrow {
    color: var(--border-color);
    flex-shrink: 0;
    transition: color 0.2s;
}
.contact-card:hover .contact-card-arrow {
    color: var(--primary-color);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 380px;
    border: 1px solid var(--border-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #111;
    color: rgba(255,255,255,0.55);
    padding: 64px 0 28px;
    font-size: 0.88rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link .logo-icon {
    background: var(--primary-color);
    color: #111;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    border: none;
}

.footer-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(201,169,97,0.08);
}

/* Column label */
.footer-col-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-color); }

/* Nav links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-color); }

/* Working hours */
.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    gap: 12px;
}
.footer-hours li span:first-child { color: rgba(255,255,255,0.4); }
.footer-hours .closed { color: rgba(255,255,255,0.25); }

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

.footer-admin-link {
    color: rgba(255,255,255,0.08);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.3); }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        gap: 50px;
    }

    .appointment-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-brand h1 .brand-main {
        font-size: 1.2rem;
    }

    .nav-brand h1 .brand-sub {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-frame img {
        height: 400px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Contact section — mobile */
    .contact {
        padding: 40px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info {
        gap: 8px;
    }

    .contact-card {
        padding: 14px 16px;
        gap: 12px;
        overflow: hidden;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .contact-card-icon svg {
        width: 16px;
        height: 16px;
    }

    .contact-card-value {
        font-size: 0.84rem;
        word-break: break-word;
    }

    .contact-card-label {
        font-size: 0.65rem;
    }

    .contact-card-arrow {
        display: none;
    }

    .contact-map {
        height: 250px;
        border-radius: 10px;
    }

    /* Footer — mobile */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-hours li {
        justify-content: center;
        gap: 16px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-col p {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .navbar .container {
        padding: 15px 20px;
    }

    .nav-brand {
        gap: 8px;
    }

    .nav-brand h1 {
        font-size: 0.95rem;
    }

    .nav-brand h1 .brand-main {
        font-size: 1.05rem;
    }

    .nav-brand h1 .brand-sub {
        font-size: 0.6rem;
        letter-spacing: 1px;
        margin-top: 1px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    /* Contact cards — small screens */
    .contact-card {
        padding: 12px 14px;
    }

    .contact-card-label {
        font-size: 0.65rem;
    }

    .contact-card-value {
        font-size: 0.82rem;
    }

    .contact-card-arrow {
        display: none;
    }

    .contact-map {
        height: 240px;
    }

    /* Footer — small screens */
    .footer-hours li {
        font-size: 0.78rem;
    }

    .footer-col-label {
        font-size: 0.65rem;
    }
}

/* ===================================
   Holiday Notice
   =================================== */
#holidayNotice {
    background: #fefefe;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 12px 0;
    margin: 0;
}

#holidayNotice .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.holiday-content {
    max-width: 900px;
    margin: 0 auto;
}

.holiday-content p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 500;
}

.holiday-date {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    #holidayNotice {
        padding: 10px 20px;
    }

    .holiday-content p {
        font-size: 0.8rem;
    }
}
