/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #2D1F24;
    background-color: #FDF8F7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul, ol {
    list-style: none;
}

/* ===== Utility ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #7B2D3B;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-size: 14px;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2D1F24;
}

/* ===== Section Tags ===== */
.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: #7B2D3B;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    color: #2D1F24;
}

.section-header {
    margin-bottom: 64px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn--primary {
    background: #7B2D3B;
    color: #fff;
    border: 1px solid #7B2D3B;
}

.btn--primary:hover {
    background: #5E222C;
    border-color: #5E222C;
}

.btn--outline {
    background: transparent;
    color: #7B2D3B;
    border: 1px solid #7B2D3B;
}

.btn--outline:hover {
    background: #7B2D3B;
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: #FDF8F7;
    border: 1px solid rgba(253, 248, 247, 0.5);
}

.btn--ghost:hover {
    background: #FDF8F7;
    color: #7B2D3B;
}

.btn--full {
    width: 100%;
}

/* ===== Header / Navigation ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 247, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(45, 31, 36, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: block;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    color: #7B2D3B;
    letter-spacing: 0.04em;
}

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

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #2D1F24;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #7B2D3B;
}

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

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

.hamburger {
    display: block;
    width: 22px;
    height: 1px;
    background: #2D1F24;
    transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #2D1F24;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7447131/pexels-photo-7447131.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 31, 36, 0.72) 0%,
        rgba(45, 31, 36, 0.65) 50%,
        rgba(45, 31, 36, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
}

.hero-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(253, 248, 247, 0.7);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: #FDF8F7;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(253, 248, 247, 0.75);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 247, 0.5);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(253, 248, 247, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: #FDF8F7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(123, 45, 59, 0.1);
    border: 1px solid rgba(123, 45, 59, 0.1);
}

.service-card {
    background: #FDF8F7;
    padding: 48px 36px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: #F9EDEA;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    color: #7B2D3B;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2D1F24;
}

.service-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #6B5558;
    font-weight: 300;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid rgba(123, 45, 59, 0.2);
    border-radius: 2px;
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: #6B5558;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #7B2D3B;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B5558;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(123, 45, 59, 0.15);
}

/* ===== Gallery ===== */
.gallery {
    padding: 120px 0;
    background: #FDF8F7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(3) img { height: 100%; min-height: 400px; }

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: #2D1F24;
}

.testimonials .section-tag {
    color: rgba(253, 248, 247, 0.6);
}

.testimonials .section-tag::before {
    background: rgba(253, 248, 247, 0.4);
}

.testimonials .section-title {
    color: #FDF8F7;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid rgba(253, 248, 247, 0.1);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(253, 248, 247, 0.25);
}

.testimonial-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(253, 248, 247, 0.85);
    margin-bottom: 28px;
    font-weight: 300;
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 248, 247, 0.4);
    font-weight: 400;
}

/* ===== Visit ===== */
.visit {
    padding: 120px 0;
    background: #fff;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-address {
    font-style: normal;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2D1F24;
    margin-bottom: 40px;
    font-weight: 400;
}

.visit-hours {
    margin-bottom: 40px;
}

.visit-hours-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    font-size: 14px;
    color: #6B5558;
    font-weight: 300;
}

.hours-closed span:last-child {
    color: #7B2D3B;
}

.visit-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2D1F24;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #7B2D3B;
}

.contact-link svg {
    width: 16px;
    height: 16px;
    color: #7B2D3B;
    flex-shrink: 0;
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    height: 480px;
    border: 1px solid rgba(123, 45, 59, 0.1);
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: #F9EDEA;
}

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

.contact-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #6B5558;
    margin-bottom: 32px;
    font-weight: 300;
}

.contact-direct {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #7B2D3B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-direct-link:hover {
    color: #5E222C;
}

.contact-direct-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrap {
    background: #fff;
    padding: 48px;
    border-radius: 2px;
    border: 1px solid rgba(123, 45, 59, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6B5558;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #2D1F24;
    background: #FDF8F7;
    border: 1px solid rgba(123, 45, 59, 0.15);
    padding: 14px 16px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B8A0A3;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: #7B2D3B;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #2D1F24;
}

.form-success p {
    font-size: 14px;
    color: #6B5558;
    line-height: 1.7;
    font-weight: 300;
}

/* ===== Footer ===== */
.site-footer {
    background: #2D1F24;
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253, 248, 247, 0.08);
}

.footer-brand .logo-text {
    color: #FDF8F7;
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(253, 248, 247, 0.5);
    font-weight: 300;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(253, 248, 247, 0.6);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FDF8F7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 14px;
    color: rgba(253, 248, 247, 0.6);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FDF8F7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(253, 248, 247, 0.35);
    font-weight: 300;
}

/* ===== Mobile Navigation ===== */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #FDF8F7;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 48px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(45, 31, 36, 0.1);
    }

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

    .nav-menu a {
        font-size: 16px;
    }

    .nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(45, 31, 36, 0.4);
        z-index: 99;
    }

    .nav-overlay.visible {
        display: block;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .about-image::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(3) {
        grid-row: span 1;
    }

    .gallery-item img {
        min-height: 250px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

    .visit-map {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .nav-menu {
        width: 100%;
    }
}

/* ===== Scroll Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* Ensure content is visible without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
