:root { color-scheme: light; --ink: #183b3a; --muted: #36534e; --oxide: #a73522; --sun: #f6c945; --blue: #4da6b8; --pink: #ed8d76; }
* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; margin: 0; }
body { min-height: 100vh; background: #f8efd9; color: var(--ink); font-family: 'Trebuchet MS', sans-serif; -webkit-font-smoothing: antialiased; }
main { position: relative; isolation: isolate; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 6vw, 6.5rem); }
.sun { position: absolute; z-index: -1; top: 10vh; right: 8vw; width: clamp(13rem, 32vw, 29rem); aspect-ratio: 1; border-radius: 50%; background: var(--sun); opacity: .8; }
.street-line { position: absolute; z-index: -1; right: -6vw; bottom: 15vh; width: 56vw; height: 9rem; border-top: 1.5rem solid var(--blue); border-bottom: 1.5rem solid var(--pink); transform: rotate(-12deg); opacity: .6; }
nav { display: flex; align-items: center; justify-content: space-between; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
.wordmark { display: inline-flex; align-items: center; gap: .65rem; font-size: 1rem; font-weight: 700; letter-spacing: .02em; text-transform: none; }
.mark { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--oxide); color: var(--oxide); font-family: Georgia, serif; font-size: 1.1rem; }
.dot, em { color: var(--oxide); }
.status { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); }
.status span { width: .4rem; height: .4rem; border-radius: 50%; background: var(--oxide); box-shadow: 0 0 0 .25rem rgba(217,108,66,.12); }
.hero { width: min(100%, 48rem); margin: auto 0; padding: clamp(4rem, 12vh, 9rem) 0; animation: arrive 700ms cubic-bezier(.22,1,.36,1) both; }
.sign { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; padding: .45rem .7rem; border: 2px solid var(--ink); background: var(--sun); color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .16em; transform: rotate(-2deg); box-shadow: .35rem .35rem 0 var(--ink); }
.sign b { padding-left: .7rem; border-left: 1px solid rgba(24,59,58,.65); font-family: Georgia, serif; font-size: 1.4rem; line-height: 1; }
.sign small { font-size: .6rem; letter-spacing: .08em; }
h1 { max-width: 11ch; margin: 0; font-family: Georgia, serif; font-size: clamp(3.4rem, 9vw, 8.5rem); font-weight: 500; line-height: .88; letter-spacing: -.03em; }
.lede { max-width: 31rem; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.65; }
.rule { display: flex; gap: .35rem; margin-top: 2.5rem; }
.rule span { display: block; width: 2.5rem; height: .18rem; background: var(--oxide); }
.rule span:nth-child(2) { width: .75rem; opacity: .55; } .rule span:nth-child(3) { width: .25rem; opacity: .3; }
.note { margin-top: 1.1rem; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
@keyframes arrive { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) { .status { max-width: 7rem; text-align: right; line-height: 1.4; } .hero { padding: 5rem 0; } h1 { font-size: clamp(3.5rem, 17vw, 6rem); } .street-line { right: -35vw; width: 110vw; } }
@media (prefers-reduced-motion: reduce) { .hero { animation: none; } }
