/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito Sans', sans-serif;
    color: #3D2B1F;
    background: #FFF9F5;
    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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #3D2B1F;
}
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C07A56;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: #6B5344;
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: #C07A56;
    color: #fff;
    border-color: #C07A56;
}
.btn-primary:hover { background: #A86540; border-color: #A86540; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 122, 86, 0.35); }
.btn-secondary {
    background: transparent;
    color: #3D2B1F;
    border-color: #3D2B1F;
}
.btn-secondary:hover { background: #3D2B1F; color: #fff; transform: translateY(-2px); }
.btn-light {
    background: #fff;
    color: #C07A56;
    border-color: #fff;
}
.btn-light:hover { background: #FFF9F5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-nav { margin-left: 8px; }

/* ========== HEADER / NAV ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
}
.site-header.scrolled {
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
    padding: 10px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #C07A56, #E8A87C);
    border-radius: 50%;
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3D2B1F;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3D2B1F;
    position: relative;
    transition: color 0.3s;
}
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C07A56;
    transition: width 0.3s;
}
.main-nav a:not(.btn):hover { color: #C07A56; }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #3D2B1F;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C07A56 0%, #E8A87C 30%, #F5D5C0 55%, #FDE8D8 75%, #FFF0E6 100%);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(192, 122, 86, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232, 168, 124, 0.3) 0%, transparent 60%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(61, 43, 31, 0.7);
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #3D2B1F;
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-title em {
    font-style: italic;
    color: #A86540;
}
.hero-sub {
    font-size: 1.15rem;
    color: #5C4033;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(61, 43, 31, 0.75);
    font-weight: 500;
}
.hero-trust svg {
    vertical-align: middle;
    margin-right: 4px;
    color: #A86540;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(61, 43, 31, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== INTRO STRIP ========== */
.intro-strip {
    background: #fff;
    padding: 0;
    border-top: 1px solid rgba(192, 122, 86, 0.15);
    border-bottom: 1px solid rgba(192, 122, 86, 0.15);
}
.intro-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.intro-item {
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid rgba(192, 122, 86, 0.15);
}
.intro-item:last-child { border-right: none; }
.intro-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E8A87C;
    line-height: 1;
    margin-bottom: 12px;
}
.intro-item p {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: #FFF9F5;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(192, 122, 86, 0.1);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(192, 122, 86, 0.12);
    border-color: rgba(192, 122, 86, 0.25);
}
.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(192, 122, 86, 0.12), rgba(232, 168, 124, 0.12));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C07A56;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3D2B1F;
}
.service-card p {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.7;
}
.services-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(192, 122, 86, 0.08), rgba(232, 168, 124, 0.08));
    border-radius: 20px;
}
.services-cta p {
    font-size: 1.05rem;
    color: #5C4033;
    margin-bottom: 20px;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: #fff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 43, 31, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
    border-radius: 16px;
}
.gallery-item:hover::after { opacity: 1; }

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: #FFF9F5;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(192, 122, 86, 0.15);
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #C07A56;
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(192, 122, 86, 0.3);
}
.about-badge .badge-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}
.about-badge .badge-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}
.about-content .section-title { margin-bottom: 24px; }
.about-body {
    font-size: 1.02rem;
    color: #6B5344;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(192, 122, 86, 0.2);
    border-bottom: 1px solid rgba(192, 122, 86, 0.2);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C07A56;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.82rem;
    color: #6B5344;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 100px 0;
    background: #fff;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review-card {
    background: #FFF9F5;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(192, 122, 86, 0.1);
    transition: all 0.3s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(192, 122, 86, 0.1);
}
.review-stars {
    display: flex;
    gap: 4px;
    color: #E8A87C;
    margin-bottom: 16px;
}
.review-text {
    font-size: 1rem;
    color: #5C4033;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.review-author {
    font-size: 0.88rem;
    font-weight: 600;
    color: #C07A56;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #A86540 0%, #C07A56 40%, #D4956A 70%, #E8A87C 100%);
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 20px;
}
.cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: #FFF9F5;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-body {
    font-size: 1.02rem;
    color: #6B5344;
    margin-bottom: 36px;
    line-height: 1.8;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(192, 122, 86, 0.12), rgba(232, 168, 124, 0.12));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C07A56;
}
.contact-detail strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3D2B1F;
    margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
    font-size: 0.95rem;
    color: #6B5344;
    line-height: 1.6;
}
.contact-detail a:hover { color: #C07A56; }
.map-wrap { border-radius: 16px; overflow: hidden; }

/* ========== CONTACT FORM ========== */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 44px;
    border: 1px solid rgba(192, 122, 86, 0.12);
    box-shadow: 0 16px 48px rgba(192, 122, 86, 0.08);
}
.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}
.form-sub {
    font-size: 0.9rem;
    color: #6B5344;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3D2B1F;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(192, 122, 86, 0.25);
    border-radius: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: #3D2B1F;
    background: #FFF9F5;
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C07A56;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192, 122, 86, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B89888;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
    font-size: 0.78rem;
    color: #B89888;
    margin-top: 12px;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 44px 20px;
}
.success-icon {
    color: #C07A56;
    margin-bottom: 20px;
}
.form-success h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #3D2B1F;
}
.form-success p {
    font-size: 0.95rem;
    color: #6B5344;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #3D2B1F;
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links strong,
.footer-hours strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #E8A87C;
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    padding: 5px 0;
    transition: color 0.3s;
}
.footer-links a:hover { color: #E8A87C; }
.footer-hours p {
    font-size: 0.92rem;
    padding: 4px 0;
}
.btn-footer {
    margin-top: 20px;
    background: #C07A56;
    color: #fff;
    border-color: #C07A56;
}
.btn-footer:hover { background: #A86540; border-color: #A86540; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-bottom a:hover { color: #E8A87C; }

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid,
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFF9F5;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .main-nav a:not(.btn) { font-size: 1.1rem; }
    .btn-nav { margin-left: 0; margin-top: 8px; }
    .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
    .intro-strip-inner { grid-template-columns: 1fr; }
    .intro-item { border-right: none; border-bottom: 1px solid rgba(192, 122, 86, 0.15); }
    .intro-item:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; max-width: 400px; margin: 0 auto; }
    .about-badge { right: 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
    .cta-actions { flex-direction: column; align-items: center; }
}
