*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0a0a0a;
    --ink:     #1c1c1c;
    --mid:     #6b6b6b;
    --rule:    #d4d0ca;
    --paper:   #f5f4f1;
    --white:   #ffffff;
    --accent:  #2c2c2c;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 72px;
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

/* ── HERO ───────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-text {
    padding: clamp(3rem, 3vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 8vw, 7rem) clamp(1.5rem, 2vw, 8rem);
    animation: fadeUp 0.9s ease both;
}

.hero-text-right {
    padding: clamp(3rem, 3vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 8vw, 7rem) clamp(1.5rem, 0vw, 8rem);
    animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1.4rem;
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.6rem;
}

.hero-heading em {
    font-style: italic;
    font-weight: 600;
}

.hero-sub {
    font-size: 1rem;
    color: var(--mid);
    font-weight: 300;
    max-width: 38ch;
    margin-bottom: 2.8rem;
}

.hero-cta {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.25s, transform 0.2s;
}

.hero-cta:hover {
    background: var(--mid);
    transform: translateY(-1px);
}

.hero-panel {
    height: 100vh;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease both;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        var(--rule) 39px,
        var(--rule) 40px
    );
    opacity: 0.4;
}

.hero-panel-inner {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.hero-stat {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 0.5rem;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--rule);
    margin: 1.4rem auto;
}

/* ── SECTION SHARED ─────────────────────── */
section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
    max-width: 60px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 2rem;
}

/* ── ABOUT ──────────────────────────────── */
#about {
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: clamp(0rem, 0vw, 6rem);
    align-items: start;
}

.about-body p {
    font-size: 1.05rem;
    color: #3a3a3a;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-strengths {
    background: var(--paper);
    padding: 2.4rem;
    border-left: 3px solid var(--black);
}

.about-strengths h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    color: var(--black);
}

.about-strengths ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.about-strengths li {
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 300;
    padding-left: 1.2rem;
    position: relative;
}

.about-strengths li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mid);
}

/* ── SERVICES ───────────────────────────── */
#services {
    background: var(--paper);
    border-top: 1px solid var(--rule);
}

.services-intro {
    max-width: 62ch;
    font-size: 1.05rem;
    color: #3a3a3a;
    font-weight: 300;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}

.service-card {
    background: var(--white);
    padding: 2.4rem 2rem;
    transition: background 0.25s;
}

.service-card:hover {
    background: var(--black);
}

.service-card:hover .service-num,
.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: var(--white);
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.25s;
}

.service-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.8rem;
    transition: color 0.25s;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.6;
    transition: color 0.25s;
}

/* ── CONTACT ────────────────────────────── */
#contact {
    background: var(--black);
    border-top: 1px solid #2a2a2a;
}

#contact .section-label { color: #666; }
#contact .section-label::after { background: #333; }

#contact .section-heading { color: var(--white); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-intro {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    max-width: 42ch;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
}

.contact-item-value {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 300;
}

.contact-item-value a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.contact-item-value a:hover {
    border-color: #888;
}

/* ── FOOTER ─────────────────────────────── */
footer {
    background: var(--black);
    border-top: 1px solid #1e1e1e;
    padding: 2rem clamp(1.5rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.05em;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.35;
    filter: invert(1);
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 820px) {
    #hero { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .hero-text { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .nav-links { gap: 1.4rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 520px) {
    .nav-links { display: none; }
}