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

:root {
    --sage: #8a9e8c;
    --sage-light: #c5d4c6;
    --sage-pale: #f0f4f0;
    --stone: #4a4a45;
    --stone-light: #7a7a74;
    --cream: #faf9f6;
    --white: #ffffff;
    --accent: #6b8f71;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--stone);
    background: var(--cream);
    line-height: 1.7;
}

nav {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 5vw;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138, 158, 140, 0.15);
}

.nav-logo-link {
    /* ugh */
}

.nav-logo {
    width: 25%;
    color: var(--stone);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--stone-light);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 5vw 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%; 
    right: -5%;
    width: 55vw; 
    height: 110vh;
    pointer-events: none;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    margin-left: 40rem;
    margin-top: 15rem;
    min-width: 1000px;
    object-fit: none;
    transform: translateY(24px);
    animation: fadeUp 1s ease forwards 0.2s;
}

.hero-inner {
    max-width: 680px;
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 1s ease forwards 0.2s;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px; 
    height: 1px;
    background: var(--sage);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--stone);
    margin-bottom: 1.5rem;
}

h1 em { 
    font-style: italic; 
    color: var(--accent); 
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--stone-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: 1px solid var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: var(--stone);
    border-color: var(--stone-light);
    margin-left: 1rem;
}

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

section { 
    padding: 7rem 5vw; 
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--stone);
    margin-bottom: 1.5rem;
}

.about { 
    background: var(--white); 
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    color: var(--stone-light);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-text p a {
    color: var(--stone-light);
}

.about-card {
    background: var(--sage-pale);
    padding: 3rem;
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -12px; 
    left: -12px;
    right: 12px; 
    bottom: 12px;
    border: 1px solid var(--sage-light);
    pointer-events: none;
}

.about-card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.about-card-name {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-light);
}

.services-wrap { 
    max-width: 1100px; 
    margin: 0 auto; 
}

.services-header { 
    max-width: 500px; 
    margin-bottom: 4rem; 
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 0; 
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.service-card:hover::after { 
    width: 100%; 
}

.service-card:hover { 
    background: var(--sage-pale); 
}

.service-icon { 
    font-size: 1.8rem; 
    margin-bottom: 1.2rem; 
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--stone-light);
    line-height: 1.7;
}

.contact { 
    background: var(--stone); 
    color: var(--cream); 
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact h2 { 
    color: var(--cream); 
}

.contact .section-label { 
    color: var(--sage-light); 
}

.contact-intro {
    color: rgba(250,249,246,0.65);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-items { 
    margin-top: 10rem;
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

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

.contact-item-icon {
    width: 40px; 
    height: 40px;
    border: 1px solid rgba(197,212,198,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-item-text { 
    display: flex; 
    flex-direction: column; 
}

.contact-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.2rem;
}

.contact-item-value {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-item-value:hover { 
    color: var(--sage-light); 
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid rgba(197,212,198,0.3);
    text-decoration: none;
    color: var(--sage-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.contact-note {
    background: rgba(138,158,140,0.12);
    border-left: 2px solid var(--sage);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.contact-note p {
    color: rgba(250,249,246,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

footer {
    background: #3a3a36;
    padding: 2rem 5vw;
}

.footer-line-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    font-size: 0.78rem;
    color: rgba(250,249,246,0.4);
    letter-spacing: 0.05em;
    padding: 1rem;
}

footer a {
    color: rgba(250,249,246,0.4);
}

footer a:visited {
    color: rgba(250,249,246,0.4);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

@media (max-width: 768px) {
    .about-grid, .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
    }
    .contact-items {
        margin-top: 0rem;
    }
    .services-grid { 
    grid-template-columns: 1fr; 
    }
    .nav-links { 
    display: none; 
    }
    .btn-outline { 
    margin-left: 0; 
    margin-top: 0.75rem; 
    display: block; 
    text-align: center; 
    }
    .hero::before {
        background-image: none !important;
    }
    .hero .hero-img {
        display: none;
    }
}