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

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

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    color: #2D1F2D;
    background-color: #FDF8F4;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #4A1942;
    color: #FDF8F4;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: #2D1F2D;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 25, 66, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(74, 25, 66, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FDF8F4;
    background: #4A1942;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2D1F2D;
    letter-spacing: 0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9rem;
    color: #4A1942;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0.01em;
}

.main-nav a:hover {
    background: rgba(74, 25, 66, 0.06);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: #B8860B !important;
    margin-left: 0.5rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 4px;
}

.nav-phone:hover {
    background: rgba(184, 134, 11, 0.08) !important;
    border-color: rgba(184, 134, 11, 0.5);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #4A1942;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span {
    height: 0;
    width: 60%;
    align-self: flex-end;
}

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

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

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 15, 45, 0.82) 0%,
        rgba(74, 25, 66, 0.72) 50%,
        rgba(45, 31, 45, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 780px;
}

.hero-eyebrow {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    color: #FDF8F4;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title em {
    color: #D4A017;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 248, 244, 0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(253, 248, 244, 0.5);
    animation: float 2.5s ease-in-out infinite;
    transition: color 0.2s ease;
}

.hero-scroll:hover {
    color: #D4A017;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #B8860B;
    color: #FDF8F4;
    border-color: #B8860B;
}

.btn-primary:hover {
    background: #996F09;
    border-color: #996F09;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FDF8F4;
    border-color: rgba(253, 248, 244, 0.4);
}

.btn-outline:hover {
    border-color: #FDF8F4;
    background: rgba(253, 248, 244, 0.08);
}

.btn-outline-light {
    background: transparent;
    color: #4A1942;
    border-color: rgba(74, 25, 66, 0.25);
}

.btn-outline-light:hover {
    border-color: #4A1942;
    background: rgba(74, 25, 66, 0.04);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Section Shared ===== */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.section-header.light .section-eyebrow {
    color: #D4A017;
}

.section-header.light .section-title {
    color: #FDF8F4;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B8860B;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6B5468;
    line-height: 1.7;
}

/* ===== Services ===== */
.services {
    padding: 6rem 0;
    background: #FDF8F4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(74, 25, 66, 0.07);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A1942, #B8860B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 25, 66, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(74, 25, 66, 0.06);
    margin-bottom: 1.25rem;
    color: #4A1942;
}

.service-card:hover .service-icon {
    background: rgba(74, 25, 66, 0.1);
}

.service-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #2D1F2D;
}

.service-desc {
    font-size: 0.92rem;
    color: #6B5468;
    line-height: 1.65;
}

/* ===== About ===== */
.about {
    padding: 6rem 0;
    background: #F5EDE6;
}

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

.about-images {
    position: relative;
    min-height: 500px;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(74, 25, 66, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(74, 25, 66, 0.18);
    border: 4px solid #F5EDE6;
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 80px;
    height: 80px;
    background: #B8860B;
    border-radius: 4px;
    opacity: 0.2;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    color: #4A3A4A;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 25, 66, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #4A1942;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B5468;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(74, 25, 66, 0.12);
}

/* ===== Why ===== */
.why {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 15, 45, 0.9) 0%, rgba(74, 25, 66, 0.85) 100%);
}

.why-content {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    padding: 2rem;
    border: 1px solid rgba(253, 248, 244, 0.1);
    border-radius: 8px;
    background: rgba(253, 248, 244, 0.04);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(253, 248, 244, 0.08);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-2px);
}

.why-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(212, 160, 23, 0.3);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-title {
    font-size: 1.2rem;
    color: #FDF8F4;
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.92rem;
    color: rgba(253, 248, 244, 0.65);
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    padding: 5rem 0;
    background: #4A1942;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
}

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 0.75rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #FDF8F4;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(253, 248, 244, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact {
    padding: 6rem 0;
    background: #FDF8F4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(74, 25, 66, 0.06);
    color: #4A1942;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.92rem;
    color: #6B5468;
    line-height: 1.6;
}

.contact-item a {
    color: #4A1942;
    border-bottom: 1px solid rgba(74, 25, 66, 0.2);
    transition: border-color 0.2s ease;
}

.contact-item a:hover {
    border-color: #B8860B;
    color: #B8860B;
}

.contact-map {
    margin-top: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74, 25, 66, 0.08);
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid rgba(74, 25, 66, 0.07);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(74, 25, 66, 0.06);
}

.form-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    color: #2D1F2D;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A1942;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    color: #2D1F2D;
    background: #FDF8F4;
    border: 1px solid rgba(74, 25, 66, 0.12);
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    color: #2D7D4A;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2D1F2D;
}

.form-success p {
    font-size: 0.95rem;
    color: #6B5468;
}

/* ===== Footer ===== */
.site-footer {
    background: #1A0F1A;
    color: rgba(253, 248, 244, 0.6);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(253, 248, 244, 0.08);
}

.footer-brand .logo-mark {
    margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
    color: #FDF8F4;
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    color: #FDF8F4;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 248, 244, 0.55);
    transition: color 0.2s ease;
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(253, 248, 244, 0.55);
    border-bottom: 1px solid rgba(253, 248, 244, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-contact a:hover {
    color: #D4A017;
    border-color: rgba(212, 160, 23, 0.4);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: rgba(253, 248, 244, 0.35);
}

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

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(74, 25, 66, 0.08);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .nav-phone {
        margin-left: 0;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .services {
        padding: 4rem 0;
    }

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

    .about {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        min-height: 350px;
        order: -1;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-secondary {
        right: -0.5rem;
        bottom: -1rem;
    }

    .about-img-secondary img {
        height: 160px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why {
        padding: 4rem 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta {
        padding: 4rem 0;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
