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

:root {
    --color-burgundy: #781F37;
    --color-burgundy-dark: #5A1528;
    --color-burgundy-light: #9E2A4A;
    --color-blush: #F5E6E0;
    --color-blush-light: #FAF3F0;
    --color-blush-mid: #EDE0D8;
    --color-cream: #FDFCFA;
    --color-text: #1A1A1A;
    --color-text-light: #5A5A5A;
    --color-text-muted: #8A8A8A;
    --color-border: #E8DDD8;
    --color-white: #FFFFFF;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --container-max: 1200px;
    --radius: 2px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.section-header--center {
    text-align: center;
}

/* ─── Dividers ─── */
.divider {
    display: block;
    height: 1px;
    background: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.divider--left {
    width: 60px;
}

.divider--center {
    width: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

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

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

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
    border-color: var(--color-white);
}

.btn--dark {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

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

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav.scrolled .nav__brand {
    color: var(--color-text);
}

.nav.scrolled .nav__links a {
    color: var(--color-text-light);
}

.nav.scrolled .nav__cta {
    color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav__brand-icon {
    width: 28px;
    height: 28px;
    background: var(--color-burgundy);
    clip-path: polygon(50% 0%, 65% 35%, 100% 35%, 72% 55%, 82% 90%, 50% 70%, 18% 90%, 28% 55%, 0% 35%, 35% 35%);
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-md);
}

.nav__links a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: width var(--transition);
}

.nav__links a:hover::after {
    width: 100%;
}

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

.nav__cta {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    transition: all var(--transition) !important;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: var(--color-burgundy) !important;
    border-color: var(--color-burgundy) !important;
    color: var(--color-white) !important;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-white);
    transition: all var(--transition);
}

.nav.scrolled .nav__toggle-line {
    background: var(--color-text);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── 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__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.45) 0%,
        rgba(26, 26, 26, 0.55) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    max-width: 800px;
}

.hero__frame {
    animation: heroFadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero__subhead {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

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

/* ─── Intro ─── */
.intro {
    padding: var(--space-2xl) 0;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro__text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.intro__image {
    position: relative;
}

.intro__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.intro__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-burgundy);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

/* ─── Services ─── */
.services {
    padding: var(--space-2xl) 0;
    background: var(--color-blush-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(120, 31, 55, 0.08);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-blush-mid);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.service-card:hover .service-card__number {
    color: var(--color-burgundy);
    opacity: 0.2;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-card__list li {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding-left: 1rem;
    position: relative;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 4px;
    height: 1px;
    background: var(--color-burgundy);
}

/* ─── Approach ─── */
.approach {
    padding: var(--space-2xl) 0;
}

.approach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.approach__image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.approach__content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.approach__points {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.approach__point {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.approach__point-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-burgundy);
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
}

.approach__point h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.approach__point p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ─── Numbers ─── */
.numbers {
    padding: var(--space-xl) 0;
    background: var(--color-burgundy);
}

.numbers__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.numbers__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.numbers__value {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1;
}

.numbers__suffix {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.numbers__label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ─── Community ─── */
.community {
    padding: var(--space-2xl) 0;
    background: var(--color-blush-light);
}

.community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.community__content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.community__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.community__image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.community__image-item:first-child img {
    height: 100%;
    min-height: 300px;
}

/* ─── Contact ─── */
.contact {
    padding: var(--space-2xl) 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact__info p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.contact__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.contact__detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.contact__detail-icon {
    color: var(--color-burgundy);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact__detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--color-burgundy);
}

/* Form */
.contact__form-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(120, 31, 55, 0.08);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact__success {
    text-align: center;
    padding: var(--space-lg);
}

.contact__success-icon {
    margin-bottom: var(--space-sm);
}

.contact__success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
    color: var(--color-burgundy);
}

.contact__success p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
    background: var(--color-text);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
}

.footer__brand-icon {
    width: 24px;
    height: 24px;
    background: var(--color-burgundy);
    clip-path: polygon(50% 0%, 65% 35%, 100% 35%, 72% 55%, 82% 90%, 50% 70%, 18% 90%, 28% 55%, 0% 35%, 35% 35%);
    flex-shrink: 0;
}

.footer__brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    max-width: 400px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__copy,
.footer__address {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ─── Scroll animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services__grid,
    .intro__grid,
    .approach__grid,
    .community__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .intro__image,
    .approach__image-wrap,
    .community__image-grid {
        order: -1;
    }
    
    .numbers__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem var(--space-md) var(--space-lg);
        gap: var(--space-sm);
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__links a {
        color: var(--color-text-light) !important;
        font-size: 0.8rem;
    }
    
    .nav__cta {
        border-color: var(--color-burgundy) !important;
        color: var(--color-burgundy) !important;
    }
    
    .nav__links a::after {
        display: none;
    }
    
    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .service-card {
        padding: var(--space-md);
    }
    
    .numbers__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__form-wrap {
        padding: var(--space-md);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .numbers__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    
    .community__image-grid {
        grid-template-columns: 1fr;
    }
}
