:root {
    --cream: #F2F0E9;
    --orange: #FF4400;
    --navy: #0A1128;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--navy);
    font-family: var(--font-sans);
}

/* Typography */
h1, h2, h3 { margin: 0; letter-spacing: -0.05em; }
a { color: inherit; text-decoration: none; }

/* Navigation */
.sticky-nav {
    position: sticky; top: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem; mix-blend-mode: exclusion; z-index: 100;
    color: #fff; /* Exclusion makes this readable on light/dark */
}
.brand { font-weight: 900; letter-spacing: 2px; }
.menu { display: flex; list-style: none; gap: 2rem; margin: 0; padding: 0; }
.menu a:hover { text-decoration: line-through; }

/* Hero */
.hero {
    height: 90vh; display: flex; flex-direction: column; justify-content: center;
    padding: 2rem; position: relative;
}
.headline { font-size: 15vw; line-height: 0.85; font-weight: 800; }
.outline { -webkit-text-stroke: 2px var(--orange); color: transparent; }
.hero-footer { margin-top: 3rem; display: flex; gap: 1rem; }

/* Buttons */
.pill-btn {
    padding: 1rem 3rem; border: 2px solid var(--navy); border-radius: 50px;
    font-weight: bold; transition: 0.3s;
}
.pill-btn.fill { background: var(--navy); color: var(--cream); }
.pill-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--cream); }
.pill-btn.white { border-color: #fff; color: #fff; }
.pill-btn.white:hover { background: #fff; color: var(--navy); }

/* Layouts */
.panel { padding: 6rem 2rem; border-top: 1px solid var(--navy); }
.panel.dark { background: var(--navy); color: var(--cream); }
.panel.color-bg { background: var(--orange); color: var(--cream); }

.split { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
.large-text { font-size: clamp(2rem, 4vw, 4rem); font-weight: 300; line-height: 1.2; }
.highlight { font-style: italic; color: var(--orange); font-weight: bold; }

/* Masonry Grid */
.masonry {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px; background: var(--navy); border-top: 1px solid var(--navy);
}
.brick {
    background: var(--cream); aspect-ratio: 1; display: flex; align-items: flex-end;
    padding: 1rem; font-size: 2rem; font-weight: bold; transition: 0.4s;
}
.brick.tall { grid-row: span 2; aspect-ratio: 1/2; }
.brick.wide { grid-column: span 2; aspect-ratio: 2/1; }
.brick:hover { background: var(--orange); color: var(--cream); }

/* Services */
.service-item { border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1rem 0; }
.service-item:last-child { border-bottom: none; }

/* Pricing */
.pricing-grid { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.plan { flex: 1; border: 1px solid var(--navy); padding: 2rem; }
.price { font-size: 3rem; font-weight: bold; margin: 1rem 0 0 0; }

/* Form */
.minimal-form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; margin: 2rem auto; }
.minimal-form input {
    background: transparent; border: none; border-bottom: 2px solid #fff;
    padding: 1rem 0; color: #fff; font-size: 1.5rem;
}
.minimal-form input:focus { outline: none; border-color: var(--orange); }

/* FAQ */
details { padding: 2rem 0; border-bottom: 1px solid var(--navy); }
summary { font-size: 1.5rem; font-weight: bold; cursor: pointer; list-style: none; }

/* Footer */
.footer-grid { padding: 2rem; display: flex; justify-content: space-between; font-weight: bold; text-transform: uppercase; }

@media (max-width: 768px) {
    .split, .pricing-grid { display: block; }
    .brick.tall, .brick.wide { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
}