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

:root {
    --sidebar: #43515e;
    --sidebar-w: 230px;
    --yellow: #ecd327;
    --red: #9d1111;
    --text-dark: #56585a;
    --text-light: #86939e;
    --teal: #4fc3a3;
    --white: #ffffff;
    --off-white: #f5f6f7;
    --black: #000000;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: var(--sidebar);
    z-index: 1000;
    display: flex; flex-direction: column; align-items: center;
    padding: 2rem 1.5rem;
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #c0392b, #e67e22, #c0392b) 1;
    overflow-y: auto;
}
.sidebar-logo { margin-bottom: 2.5rem; }
.sidebar-logo img { width: 170px; height: auto; }
.sidebar-nav { list-style: none; text-align: center; width: 100%; flex-grow: 1; }
.sidebar-nav li { margin-bottom: 0.25rem; }
.sidebar-nav a {
    display: block; padding: 0.7rem 1rem;
    color: var(--text-light); text-decoration: none;
    font-size: 1rem; letter-spacing: 0.5px;
    transition: color 0.3s;
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--yellow); }
.sidebar-hours {
    margin-top: auto; text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}
.sidebar-hours strong {
    display: block; color: var(--white); font-size: 0.85rem;
    letter-spacing: 0.5px; margin-bottom: 0.3rem;
}
.sidebar-hours span {
    display: block; color: var(--text-light); font-size: 0.8rem;
}

/* ===== MAIN CONTENT (offset by sidebar) ===== */
.main-content { margin-left: var(--sidebar-w); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 60px; background: var(--sidebar); z-index: 1000;
    align-items: center; justify-content: space-between;
    padding: 0 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mobile-nav img { height: 45px; }
.mobile-toggle {
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.mobile-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--white); margin: 6px 0; transition: 0.3s;
}
.mobile-menu {
    display: none; position: fixed; top: 60px; left: 0; right: 0;
    background: var(--sidebar); z-index: 999;
    padding: 1rem 0 1.5rem; text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block; padding: 0.75rem; color: var(--text-light);
    text-decoration: none; font-size: 1rem; transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--yellow); }
.mobile-menu .mobile-hours {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light); font-size: 0.8rem;
}

@media (max-width: 900px) {
    .sidebar { display: none; }
    .mobile-nav { display: flex; }
    .main-content { margin-left: 0; padding-top: 60px; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: url('images/home.jpeg') center/cover no-repeat;
    text-align: center; padding: 4rem 2rem;
    position: relative;
}
.hero-content {
    position: relative; z-index: 1; max-width: 620px;
    background: rgba(67, 81, 94, 0.55);
    padding: 3rem 3.5rem;
}
.hero h1 {
    font-family: 'Playfair Display', serif; color: var(--yellow);
    font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 600;
    line-height: 1.15; margin-bottom: 1rem;
}
.hero .gold-line { margin: 1.5rem auto; background: var(--red); }
.hero p {
    color: var(--white); font-size: 1.15rem; font-weight: 300;
    max-width: 600px; margin: 0 auto 2rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    min-height: 70vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 4rem 2rem; position: relative;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(67, 81, 94, 0.55);
}
.page-banner-content { position: relative; z-index: 1; max-width: 700px; }
.page-banner h2 {
    font-family: 'Playfair Display', serif; color: var(--white);
    font-size: 3.5rem; font-weight: 300; margin-bottom: 0.75rem;
}
.page-banner p {
    color: var(--white); font-size: 1.1rem; font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 14px 32px;
    background: var(--red); color: var(--white); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; border: 2px solid var(--red);
    transition: all 0.3s; cursor: pointer;
}
.btn:hover { background: #b91515; border-color: #b91515; }
.btn-outline {
    background: transparent; color: var(--white); border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--sidebar); }
.btn-teal { background: var(--teal); border-color: var(--teal); }
.btn-teal:hover { background: #3da88b; border-color: #3da88b; }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.section-dark { background: #1a1a1a; color: var(--white); }
.section-cream { background: var(--off-white); }
.container { max-width: 1000px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}
.section-header .highlight { color: var(--red); }
.section-header p {
    color: var(--text-light); font-size: 1rem; max-width: 600px; margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.gold-line { width: 60px; height: 3px; background: var(--yellow); margin: 1rem auto; }

/* ===== OUR STORY SECTION ===== */
.our-story {
    background: url('images/ourstory_bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 5rem 2rem;
    position: relative;
}
.our-story::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(67, 81, 94, 0.75);
}
.our-story .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.our-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}
.our-story p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.our-story p:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT CONTENT ===== */
.about-content { max-width: 750px; margin: 0 auto; text-align: center; }
.about-content p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.9; }
.about-icon {
    width: 70px; height: 70px; border: 2px solid #ddd; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.5rem; color: var(--text-light);
}

/* ===== SPECIALTIES ===== */
.specialties-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 600px) {
    .specialties-grid { grid-template-columns: 1fr; }
}
.specialty-card-img {
    position: relative; overflow: hidden;
}
.specialty-collage {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px; aspect-ratio: 1.2;
}
.specialty-collage img {
    width: 100%; height: 100%; object-fit: cover;
}
.specialty-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.specialty-icon {
    display: block; font-size: 1.5rem; color: var(--white);
    margin-bottom: 0.3rem; opacity: 0.9;
}
.specialty-overlay h3 {
    font-family: 'Playfair Display', serif; font-size: 1.15rem;
    color: var(--white); font-weight: 700;
}
.specialty-underline {
    width: 40px; height: 2px; background: var(--yellow);
    margin-top: 0.5rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white); border: 1px solid #e5e5e5; padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    margin-bottom: 1.2rem; color: var(--text-dark);
    border-bottom: 3px solid var(--yellow); padding-bottom: 0.75rem;
}
.service-item {
    display: flex; justify-content: space-between; padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0; font-size: 0.95rem;
}
.service-item:last-child { border: none; }
.service-price { color: var(--red); font-weight: 700; white-space: nowrap; margin-left: 1rem; }

/* ===== GALLERY ===== */
.gallery-categories { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; }
.gallery-btn {
    padding: 8px 20px; border: 2px solid var(--sidebar); background: none;
    color: var(--text-dark); cursor: pointer; font-size: 0.8rem;
    letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}
.gallery-btn.active, .gallery-btn:hover { background: var(--sidebar); color: var(--white); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}
.gallery-item {
    aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 2000;
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    color: white; font-size: 2.5rem; cursor: pointer; background: none;
    border: none; line-height: 1;
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: #baae91;
    padding: 5rem 2rem;
}
.reviews-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.review-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid #eaeaea;
    padding: 2.5rem 2.5rem;
    text-align: center;
}
.review-card .review-text {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.review-card .review-sep {
    width: 150px;
    height: 1px;
    background: #eaeaea;
    margin: 1rem auto;
}
.review-card .review-author {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
}

/* ===== CTA ===== */
.cta {
    text-align: center; padding: 4.5rem 2rem;
    background: var(--black); color: var(--white);
    border-top: 3px solid var(--yellow);
}
.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 2rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form label {
    display: block; font-size: 0.85rem; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 0.3rem; font-weight: 700;
}
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #ccc;
    font-family: 'Lato', sans-serif; font-size: 0.95rem;
    margin-bottom: 1.2rem; background: var(--white); transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--teal);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { border: none; width: 100%; text-align: center; font-family: 'Lato', sans-serif; }
.contact-info h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
    width: 44px; height: 44px; background: var(--sidebar); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-item a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.contact-item a:hover { color: var(--teal); }

/* ===== FOOTER ===== */
.footer {
    background: var(--white); color: var(--text-dark);
    padding: 3rem 2rem; border-top: 3px solid #e0e0e0;
}
.footer-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr auto; gap: 2rem;
    align-items: center;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
.footer-logo img { height: 60px; }
.footer-tagline { font-size: 0.95rem; color: var(--text-light); }
.footer-tagline em { color: var(--red); }
.footer-contact h4 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-contact p { font-size: 0.85rem; line-height: 1.8; color: var(--text-light); }
.footer-contact a { color: var(--text-light); text-decoration: none; }
.footer-contact a:hover { color: var(--teal); }
.footer-social {
    display: flex; gap: 1rem; justify-content: center;
    margin-top: 1.5rem; padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    text-decoration: none; font-size: 1.1rem;
    transition: transform 0.3s, opacity 0.3s;
}
.footer-social a:hover { transform: scale(1.15); opacity: 0.85; }
.footer-social .social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--white);
}
.footer-social .social-tiktok {
    background: #000000;
    color: var(--white);
}
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
    text-align: center; padding: 1.5rem 2rem 0; margin-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.8rem; color: var(--text-light);
}
.footer-bottom a { color: var(--teal); text-decoration: none; }
