:root {
    --bg: #0c0d0c;
    --bg-2: #141613;
    --bg-3: #1b1e19;
    --fg: #f3f3ee;
    --muted: #9a9d94;
    --accent: #a7c4a0;
    --accent-ink: #11140c;
    --line: rgba(243, 243, 238, 0.10);
    --font-display: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); animation: reveal .9s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s); }
@keyframes reveal { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.5rem; border-radius: 100px;
    font-weight: 600; font-size: .98rem; letter-spacing: .01em;
    border: 1px solid transparent; transition: transform .2s, background .2s, color .2s;
}
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { transform: translateY(-2px); background: #bcd3b6; }
.btn--ghost { border-color: var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px);
    background: rgba(12, 13, 12, 0.6); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; }
.brand__dot { color: var(--accent); }
.nav__links { display: flex; gap: 1.8rem; font-weight: 500; font-size: .96rem; }
.nav__links a { color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--fg); }
.nav__cta { padding: .6rem 1.2rem; font-size: .9rem; }

/* ---------- Layout ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 6.5rem 1.5rem; }
.section__head { margin-bottom: 3rem; }
.kicker { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .2em;
    font-size: .78rem; color: var(--accent); margin: 0 0 1rem; font-weight: 600; }
.kicker--dark { color: var(--accent-ink); opacity: .7; }
.section__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
    font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; margin: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center;
    background-size: cover; background-position: center; }
.hero__inner { max-width: var(--max); width: 100%; margin: 0 auto; padding: 7rem 1.5rem 5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: .8rem; color: var(--accent);
    font-weight: 600; margin: 0 0 1.5rem; }
.hero__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
    font-size: clamp(3rem, 11vw, 8.5rem); line-height: .92; margin: 0; }
.hero__title span { display: block; }
.hero__lead { max-width: 34rem; margin: 1.8rem 0 0; font-size: 1.2rem; color: #d8dad2; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
    width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
    display: grid; place-items: center; color: var(--muted); animation: bob 2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ---------- Marquee ---------- */
.marquee { background: var(--accent); color: var(--accent-ink); overflow: hidden; padding: .8rem 0;
    border-top: 1px solid var(--accent-ink); border-bottom: 1px solid var(--accent-ink); }
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: scroll 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
    letter-spacing: -.01em; padding-right: 1rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.service { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
    padding: 2.2rem; transition: transform .25s, border-color .25s, background .25s; }
.service:hover { transform: translateY(-6px); border-color: var(--accent); background: var(--bg-3); }
.service__no { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--accent); }
.service h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin: 1.2rem 0 .6rem; letter-spacing: -.01em; }
.service p { color: var(--muted); margin: 0; line-height: 1.6; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 22px; aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.about__badge { position: absolute; right: -14px; bottom: -14px; background: var(--accent); color: var(--accent-ink);
    border-radius: 18px; padding: 1.1rem 1.4rem; display: flex; flex-direction: column; line-height: 1; }
.about__badge strong { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.about__badge span { font-size: .82rem; font-weight: 600; margin-top: .35rem; }
.about__body p { color: #cfd2c9; line-height: 1.65; margin: 1.4rem 0; max-width: 38ch; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.ticks li { padding-left: 1.8rem; position: relative; color: var(--fg); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.tile { position: relative; margin: 0; border-radius: 20px; overflow: hidden; }
.tile--wide { grid-row: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.06); }
.tile figcaption { position: absolute; left: 1.1rem; bottom: 1.1rem; background: rgba(12,13,12,.7);
    backdrop-filter: blur(6px); padding: .5rem 1rem; border-radius: 100px; font-weight: 600; font-size: .95rem; }
.tile:not(.tile--wide) { min-height: 220px; }

/* ---------- Team ---------- */
.team__card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0;
    background: var(--bg-2); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.team__photo img { height: 100%; width: 100%; object-fit: cover; min-height: 420px; }
.team__bio { padding: 3rem; align-self: center; }
.team__role { color: var(--accent); font-weight: 600; margin: .4rem 0 1.2rem; }
.team__bio > p { color: #cfd2c9; line-height: 1.65; max-width: 44ch; }
.team__links { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.8rem; font-weight: 600; }
.team__links a { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

/* ---------- CTA ---------- */
.cta { background: var(--accent); color: var(--accent-ink); border-radius: 32px;
    margin: 4rem auto 6rem; padding: 5rem; text-align: center; }
.cta__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
    font-size: clamp(2.6rem, 8vw, 6rem); line-height: .92; margin: 0; }
.cta__lead { font-size: 1.15rem; margin: 1.2rem auto 2.6rem; opacity: .8; max-width: 32rem; }
.cta__cards { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta__card { background: var(--accent-ink); color: var(--fg); border-radius: 18px; padding: 1.4rem 2rem;
    display: flex; flex-direction: column; gap: .4rem; min-width: 16rem; text-align: left; transition: transform .2s; }
.cta__card:hover { transform: translateY(-4px); }
.cta__label { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--muted); }
.cta__value { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 3rem 1.5rem;
    display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer__brand p { color: var(--muted); margin: .6rem 0 0; max-width: 24rem; }
.footer__contact { display: flex; flex-direction: column; gap: .5rem; font-weight: 600; }
.footer__contact a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-direction: column; gap: .4rem; text-align: right; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .nav__links { display: none; }
    .services, .gallery { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .tile--wide { grid-row: span 1; }
    .team__card { grid-template-columns: 1fr; }
    .team__photo img { min-height: 320px; }
    .cta { padding: 3rem 1.5rem; border-radius: 24px; }
    .section { padding: 4.5rem 1.5rem; }
}
