
:root {
    --black: #090909;
    --red: #90120d;
    --beige: #e3cbb7;
    --caramel: #c89770;
    --off: #f1f1f1;
    --white: #faf8f5;
    --serif: "Noto Serif Display", Georgia, serif;
    --sans: "Urbanist", Arial, sans-serif;
    --shadow: 0 24px 70px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #171717;
    color: var(--black);
    font-family: var(--sans);
}
body::selection { background: var(--red); color: #fff; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell {
    width: min(100%, 520px);
    margin: 0 auto;
    background: var(--off);
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0,0,0,.35);
}
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--off); color: var(--black); }
.section-off { background: #f7f4f0; color: var(--black); }
.section-beige { background: var(--beige); color: var(--black); }
.section-red { background: var(--red); color: var(--white); }

.topbar {
    position: fixed;
    z-index: 50;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 28px), 492px);
    padding: 11px 12px 11px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(9,9,9,.72);
    color: #fff;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
}
.brand { font-family: var(--serif); font-size: 19px; }
.brand span { font-style: italic; }
.topbar-cta {
    background: var(--red);
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 46px 27px 62px;
    isolation: isolate;
}
.hero-media, .hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-media img { height: 100%; object-fit: cover; filter: grayscale(100%); opacity: .72; }
.hero-overlay {
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.9) 83%);
}
.hero-content { position: relative; z-index: 2; }
.eyebrow, .kicker {
    margin: 0 0 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 440px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 13vw, 76px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: -.045em;
}
.hero-copy {
    max-width: 370px;
    margin: 24px 0 25px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
}
.button {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 15px 18px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-red { background: var(--red); color: #fff; }
.button-dark { background: var(--black); color: #fff; }
.scroll-note {
    position: absolute;
    right: 23px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .7;
}
.scroll-note span { width: 26px; height: 1px; background: var(--red); }

.marquee-section {
    overflow: hidden;
    background: var(--red);
    color: #fff;
    padding: 13px 0;
}
.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: var(--serif);
    font-size: 25px;
    animation: marquee 18s linear infinite;
}
.marquee-track i { font-family: var(--sans); font-size: 12px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

section { padding: 70px 27px; }
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 55px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(0,0,0,.55);
}
.section-label.light { color: rgba(255,255,255,.65); }
.section-label span { display: block; width: 28px; height: 2px; background: var(--red); }

.manifesto-copy { max-width: 450px; }
.manifesto h2, .section-heading h2, .instagram h2, .choice h2, .location h2, .final-cta h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}
.manifesto h2 { font-size: clamp(42px, 11vw, 61px); }
.manifesto h2 em, .section-heading h2 em, .choice h2 em, .instagram h2 em, .location h2 em, .final-cta h2 em { font-style: italic; }
.manifesto-copy > p:last-child {
    margin: 27px 0 0;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0,0,0,.66);
}

.compass-intro {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 42px;
}
.compass-symbol, .final-symbol {
    position: relative;
    font-family: var(--serif);
    font-size: 90px;
    line-height: .7;
}
.compass-symbol span, .final-symbol span {
    position: absolute;
    top: -2px;
    right: 3px;
    color: var(--red);
    font-family: var(--sans);
    font-size: 15px;
}
.compass h2 { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: .92; margin: 0; }
.compass h2 em { font-style: italic; }
.steps { display: grid; gap: 10px; }
.step-card {
    position: relative;
    padding: 22px;
    min-height: 150px;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .35s ease, background .35s ease;
}
.step-card:hover { transform: translateX(10px); background: rgba(255,255,255,.48); }
.step-number { font-size: 9px; font-weight: 700; color: var(--red); letter-spacing: .12em; }
.step-card h3 { margin: 24px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.step-card p { margin: 0; max-width: 330px; font-size: 12px; line-height: 1.55; opacity: .7; }

.about { padding-bottom: 84px; }
.about-grid { display: grid; gap: 30px; }
.about-image { aspect-ratio: .82; overflow: hidden; }
.about-image img { height: 100%; object-fit: cover; }
.about-copy h2 { margin: 0; font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: .96; letter-spacing: -.04em; }
.about-copy h2 em { font-style: italic; }
.about-copy > p:not(.kicker) { margin: 24px 0 0; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.7); }
.text-link { display: inline-block; margin-top: 29px; padding-bottom: 7px; border-bottom: 1px solid var(--red); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { margin-left: 13px; }

.section-heading { margin-bottom: 40px; }
.section-heading h2 { font-size: 52px; }
.service-stack { display: grid; gap: 16px; }
.service-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: var(--black);
    color: #fff;
    border-radius: 2px;
    box-shadow: var(--shadow);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.service-card:nth-child(even) { transform: translateX(18px); }
.service-card:nth-child(even):hover { transform: translateX(7px) translateY(-5px); }
.service-card:hover { transform: translateY(-5px); }
.service-image, .service-image img { position: absolute; inset: 0; height: 100%; }
.service-image img { object-fit: cover; filter: grayscale(100%); opacity: .58; }
.service-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.9));
}
.service-content { position: absolute; z-index: 2; inset: auto 22px 21px; }
.service-number { font-size: 9px; color: var(--beige); }
.service-content h3 { margin: 13px 0 7px; font-family: var(--serif); font-size: 35px; font-weight: 400; }
.service-content p { max-width: 360px; margin: 0; font-size: 12px; line-height: 1.55; color: rgba(255,255,255,.75); }
.service-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 24px; }
.service-footer strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.service-footer small { display: block; font-size: 8px; opacity: .6; }
.service-footer a { padding: 8px 0; font-size: 8px; font-weight: 700; letter-spacing: .12em; }

.choice { padding-bottom: 80px; }
.choice h2 { font-size: 56px; }
.choice-list { margin-top: 43px; border-top: 1px solid rgba(255,255,255,.3); }
.choice-list a {
    display: grid;
    grid-template-columns: 32px 1fr 20px;
    gap: 12px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    font-size: 13px;
    transition: padding .25s ease;
}
.choice-list a:hover { padding-left: 8px; }
.choice-list span { font-size: 8px; opacity: .65; }
.choice-list b { font-weight: 400; }

.modality-list { border-top: 1px solid rgba(0,0,0,.16); }
.modality-row {
    display: grid;
    grid-template-columns: 36px 1fr 25px;
    align-items: center;
    gap: 10px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,.16);
    transition: color .25s ease, padding .25s ease;
}
.modality-row:hover { color: var(--red); padding-left: 8px; }
.modality-row span { font-size: 8px; opacity: .55; }
.modality-row strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.modality-row i { font-style: normal; }

.quote-break {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.giant-quote { font-family: var(--serif); font-size: 140px; line-height: .5; color: var(--red); }
.quote-break p { margin: 50px 0 0; max-width: 390px; font-family: var(--serif); font-size: 37px; line-height: 1.05; }
.quote-break em { color: var(--beige); }

.testimonial-track { display: flex; gap: 13px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 7px; scrollbar-width: none; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial {
    flex: 0 0 88%;
    min-height: 280px;
    padding: 25px;
    background: rgba(255,255,255,.25);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial > span { font-family: var(--serif); font-size: 70px; line-height: .4; color: var(--red); }
.testimonial blockquote { margin: 20px 0; font-family: var(--serif); font-size: 27px; line-height: 1.08; }
.testimonial small { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.gallery { padding-bottom: 90px; }
.gallery-heading h2 { margin: 0; font-family: var(--serif); font-size: 70px; font-weight: 400; line-height: .8; }
.gallery-heading h2::first-letter { color: var(--red); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 48px; }
.gallery-item { overflow: hidden; background: #222; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.g1 { grid-row: span 2; min-height: 520px; }
.g2, .g3, .g4 { min-height: 250px; }

.instagram-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; }
.instagram h2 { font-size: 48px; }
.instagram-handle { white-space: nowrap; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 36px; }
.ig-grid a { overflow: hidden; aspect-ratio: 1; }
.ig-grid img { height: 100%; object-fit: cover; filter: saturate(.7); transition: transform .5s ease; }
.ig-grid a:hover img { transform: scale(1.06); }

.faq-list { border-top: 1px solid rgba(0,0,0,.16); }
details { border-bottom: 1px solid rgba(0,0,0,.16); }
summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 0;
    font-size: 13px;
    font-weight: 600;
}
summary::-webkit-details-marker { display: none; }
summary span { font-size: 18px; font-weight: 400; transition: transform .25s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 400px; margin: -2px 30px 22px 0; font-size: 12px; line-height: 1.65; opacity: .65; }

.location { position: relative; overflow: hidden; min-height: 490px; }
.location h2 { font-size: 66px; }
.location-copy > p:not(.kicker) { max-width: 350px; margin: 24px 0; font-size: 13px; line-height: 1.65; opacity: .7; }
.location-mark {
    position: absolute;
    right: -35px;
    bottom: -55px;
    font-family: var(--serif);
    font-size: 270px;
    line-height: .7;
    opacity: .13;
}
.location-mark span { color: var(--red); font-family: var(--sans); font-size: 40px; vertical-align: top; }

.final-cta {
    min-height: 670px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.final-symbol { font-size: 120px; margin-bottom: 40px; }
.final-cta .kicker { color: var(--beige); }
.final-cta h2 { font-size: 50px; }
.final-cta .button { margin-top: 32px; }
.social-links { display: flex; gap: 18px; margin-top: 65px; }
.social-links a { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; opacity: .65; }

.footer {
    padding: 28px 27px;
    display: grid;
    gap: 6px;
    background: #050505;
    color: #fff;
}
.footer strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.footer span { font-size: 10px; opacity: .55; }
.footer small { margin-top: 16px; font-size: 8px; opacity: .4; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 521px) {
    .site-shell { min-height: 100vh; }
}

@media (max-width: 380px) {
    section { padding-left: 21px; padding-right: 21px; }
    .topbar { width: calc(100% - 20px); }
    .hero h1 { font-size: 46px; }
    .service-card:nth-child(even) { transform: none; }
    .instagram-head { display: block; }
    .instagram-handle { display: inline-block; margin-top: 18px; }
}
