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

:root {
    --terracotta: #C06C44;
    --terracotta-dark: #A85530;
    --terracotta-light: #D4916E;
    --sand: #F5F0EB;
    --sand-dark: #E8E0D6;
    --sand-darker: #D4C8BA;
    --cream: #FAF8F5;
    --charcoal: #2C2825;
    --charcoal-light: #4A4440;
    --warm-gray: #6B6460;
    --warm-gray-light: #9B9490;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--sand-dark);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--terracotta);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--warm-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--charcoal);
}

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

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--terracotta);
    border: 1px solid var(--terracotta);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--terracotta);
    color: var(--white);
}

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

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--cream);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.headline-accent {
    font-style: italic;
    color: var(--terracotta);
}

.hero-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8125rem;
    color: var(--warm-gray-light);
    letter-spacing: 0.01em;
}

.hero-detail svg {
    color: var(--terracotta-light);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 520px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--terracotta-light);
    border-radius: 2px;
    z-index: -1;
}

.hero-line {
    height: 1px;
    background: linear-gradient(to right, var(--sand-dark), transparent);
    margin: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border: 1px solid var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--sand-darker);
}

.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--white);
}

.btn-light:hover {
    background: var(--sand);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--terracotta);
    margin-bottom: 2rem;
}

.section-line-light {
    background: rgba(255, 255, 255, 0.4);
}

/* ===== SERVICES ===== */
.services {
    padding: 7rem 0;
    background: var(--cream);
}

.section-header {
    margin-bottom: 4rem;
}

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

.service-card {
    padding: 2.4rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(192, 108, 68, 0.08);
}

.service-icon {
    color: var(--terracotta);
    margin-bottom: 1.4rem;
    opacity: 0.85;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 0;
    background: var(--sand);
}

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

.about-image {
    overflow: hidden;
    border-radius: 2px;
}

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

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 1.4rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-darker);
}

.about-value {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.4rem 1.6rem;
}

.value-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.value-detail {
    font-size: 0.9375rem;
    color: var(--warm-gray);
}

/* ===== COMMUNITY / CTA ===== */
.community {
    padding: 7rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(192, 108, 68, 0.12);
}

.community::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(192, 108, 68, 0.08);
}

.community-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.community-content .section-title {
    color: var(--white);
    margin-bottom: 1.6rem;
}

.community-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
}

.community-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.8rem;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 0;
    background: var(--cream);
}

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

.contact-info {
    max-width: 460px;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 2.4rem;
}

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

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

.contact-detail svg {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.detail-value a {
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.detail-value a:hover {
    color: var(--terracotta);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 2px;
    padding: 2.4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-input,
.form-textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    border: 1px solid var(--sand-dark);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--warm-gray-light);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--terracotta);
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    background: rgba(192, 108, 68, 0.08);
    border: 1px solid rgba(192, 108, 68, 0.2);
    border-radius: 2px;
    color: var(--terracotta-dark);
    font-size: 0.9375rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.3rem;
    color: var(--terracotta-light);
    font-weight: 300;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.footer-contact a {
    font-size: 0.9375rem;
    color: var(--terracotta-light);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
    }

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

    .about-grid {
        gap: 2.5rem;
    }

    .about-image img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.4rem;
        border-bottom: 1px solid var(--sand-dark);
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.4s var(--ease-out);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 0.9375rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-image {
        min-height: 360px;
        order: -1;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

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

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

    .about-image img {
        height: 360px;
    }

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

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

    .community-cta {
        flex-direction: column;
    }

    .community-cta .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.8rem;
    }

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

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
