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

:root {
    --primary: #1A1A1A;
    --accent: #A67C52;
    --accent-dark: #8B6340;
    --accent-light: #D4B896;
    --bg: #FAF7F2;
    --bg-alt: #F3EDE4;
    --text: #1A1A1A;
    --text-muted: #555550;
    --text-light: #888880;
    --white: #ffffff;
    --border: #E5DDD3;
    --radius: 8px;
    --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* ===== SECTION DIVIDERS ===== */
.divider {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.divider svg {
    display: block;
    width: 100%;
    height: 60px;
}
.divider-bg { background: var(--bg); }
.divider-bg-alt { background: var(--bg-alt); }
.divider-bg-dark { background: var(--primary); }

@media (min-width: 769px) {
    .divider svg { height: 80px; }
}

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

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

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 4rem;
}

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

.hero-text h1 {
    margin-bottom: 1.25rem;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.hero-image {
    position: relative;
    max-width: 420px;
    justify-self: end;
}

.hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: saturate(0.8);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* ===== ABOUT ===== */
.about {
    padding: 6rem 0;
    background: var(--bg-alt);
}

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

.about-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    filter: hue-rotate(-10deg); /* 0–360deg */
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
}

.highlight-check {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== EXAMPLES ===== */
.examples {
    padding: 6rem 0;
    background: var(--bg);
}

.examples-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.examples-header h2 {
    margin-bottom: 1rem;
}

.examples-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

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

.example-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg);
    cursor: zoom-in;
    aspect-ratio: 1450 / 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.example-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.example-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 2vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.lightbox img {
    max-width: 96vw;
    max-height: 96vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    object-fit: contain;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
}

.lightbox.open img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s, color 0.2s;
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.06);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2001;
}


.lightbox-nav:hover {
    background: var(--accent);
    color: var(--white);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-nav.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-nav.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

/* ===== SERVICES ===== */
.services {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.services-header h2 {
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== WHY CHOOSE ===== */
.why {
    padding: 6rem 0;
}

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

.why-text h2 {
    margin-bottom: 1rem;
}

.why-text > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-check {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.why-list li div strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 2px;
}

.why-list li div p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.why-image img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h2 {
    margin-bottom: 1rem;
}

.pricing-header p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.pricing-rate {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-rate span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features svg { flex-shrink: 0; color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header h2 {
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1.05rem;
}

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

.testimonial-card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    position: relative;
    padding-top: 1.5rem;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.testimonial-site {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ===== LOCAL ===== */
.local {
    padding: 6rem 0;
    background: var(--bg-alt);
}

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

.local-text h2 {
    margin-bottom: 1.25rem;
}

.local-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.local-address {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.local-image img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ===== CTA BAND ===== */
.cta-band {
    padding: 5rem 0;
    background: var(--primary);
    text-align: center;
}

.cta-band h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.cta-band .btn-primary {
    background: var(--accent);
}

.cta-band .btn-primary:hover {
    background: var(--accent-dark);
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 0;
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-item span, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

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

.form-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.form-status {
    display: none;
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}
.form-status.success {
    background: rgba(39, 174, 96, 0.12);
    color: #1e8449;
    border: 1px solid rgba(39, 174, 96, 0.3);
}
.form-status.error {
    background: rgba(231, 76, 60, 0.12);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    color: var(--text-muted);
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--bg);
    z-index: 1001;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    display: block;
    transform: translateX(0);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
}

.mobile-overlay.open { display: block; }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 2.5rem; }
    .about-grid, .why-grid, .local-grid { gap: 2.5rem; }
}

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

    .hero { min-height: auto; padding: 100px 0 4rem; }
    .hero-grid,
    .about-grid,
    .why-grid,
    .local-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 300px;
        justify-self: left;
        order: -1;
    }

    .why-image { order: -1; }
    .local-image { order: -1; }

    .services-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .about-highlights { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .examples-grid { grid-template-columns: 1fr; }
}
