:root {
    --ink: #0e0e0e;
    --ink-soft: #1a1a1c;
    --ink-line: #2c2c2f;
    --pink: #e0408c;
    --pink-deep: #a92d6c;
    --pink-bright: #ef5fa3;
    --steel: #54545a;
    --steel-light: #8a8a90;
    --paper: #f1ece3;
    --paper-dim: #e4ddd1;
    --paper-ink: #171516;
    --white: #fdfcfa;

    --display: 'Anton', sans-serif;
    --body: 'Archivo', sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    --radius: 4px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--white);
    font-family: var(--body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--pink-bright);
    outline-offset: 2px;
}

.wrap {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pink-bright);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--pink-bright);
    display: inline-block;
}

h1,
h2,
h3 {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: .01em;
    font-weight: 400;
    line-height: 1.04;
}

.lede {
    font-size: 17px;
    color: var(--steel-light);
    max-width: 46ch;
}

section.on-paper .lede {
    color: #5b5550;
}

/* ============ RIVET / CORRUGATED TEXTURE MOTIFS ============ */
.corrugate {
    background-image: repeating-linear-gradient(180deg,
            rgba(255, 255, 255, .05) 0px,
            rgba(255, 255, 255, .05) 2px,
            rgba(0, 0, 0, .12) 2px,
            rgba(0, 0, 0, .12) 4px);
}

.rivets {
    position: relative;
}

.rivets::before,
.rivets::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #cfcfd2, #6c6c70 70%);
    top: 10px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
}

.rivets::before {
    left: 10px;
}

.rivets::after {
    right: 10px;
}

.rivets .rivet-bl,
.rivets .rivet-br {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #cfcfd2, #6c6c70 70%);
    bottom: 10px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .25);
}

.rivet-bl {
    left: 10px;
}

.rivet-br {
    right: 10px;
}

/* ============ NAV ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .35s ease, padding .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(14, 14, 14, .92);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    border-bottom: 1px solid var(--ink-line);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: .04em;
}

.brand .mark {
    width: 30px;
    height: 30px;
    border: 2px solid var(--steel-light);
    border-radius: 3px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.brand .mark span {
    display: block;
}

.brand .mark .a {
    background: repeating-linear-gradient(90deg, var(--pink) 0 3px, transparent 3px 6px);
}

.brand .mark .b {
    background: repeating-linear-gradient(0deg, var(--steel-light) 0 2px, transparent 2px 5px);
}

.brand b {
    color: var(--pink-bright);
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--steel-light);
    transition: color .2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    background: var(--pink);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
    background: var(--pink-bright);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 80% 60% at 75% 15%, rgba(224, 64, 140, .16), transparent 60%),
        var(--ink);
    padding-top: 90px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: clamp(48px, 7.4vw, 98px);
    margin: 18px 0 22px;
}

.hero h1 .line {
    display: block;
}

.hero h1 .accent {
    color: var(--pink);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    font-family: var(--mono);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 14px 22px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--pink-bright);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1.5px solid var(--ink-line);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: var(--pink-bright);
    color: var(--pink-bright);
    transform: translateY(-2px);
}

.hero-panel {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    padding: 26px 24px;
    position: relative;
}

.hero-panel .rivet-bl,
.hero-panel .rivet-br {
    display: block;
}

.hero-panel h3 {
    font-size: 15px;
    color: var(--pink-bright);
    margin-bottom: 16px;
    letter-spacing: .04em;
}

.hero-stat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--ink-line);
    font-family: var(--mono);
}

.hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-stat .label {
    font-size: 12.5px;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-stat .val {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

/* ============ TICKER ============ */
.ticker {
    background: var(--pink);
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    position: relative;
    z-index: 3;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 32s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 11px 28px;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, .18);
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
}

/* ============ SECTION GENERIC ============ */
section {
    padding: 108px 0;
    position: relative;
}

.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(32px, 4.6vw, 54px);
    margin-top: 14px;
}

.on-paper {
    background: var(--paper);
    color: var(--paper-ink);
}

.on-paper .eyebrow {
    color: var(--pink-deep);
}

.on-paper .eyebrow::before {
    background: var(--pink-deep);
}

/* ============ SERVICES ============ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ink-line);
    border: 1px solid var(--ink-line);
}

.feature {
    background: var(--ink);
    padding: 32px 28px;
    position: relative;
}

.feature .tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--pink-bright);
    letter-spacing: .08em;
}

.feature h3 {
    font-family: var(--body);
    text-transform: none;
    font-size: 19px;
    font-weight: 700;
    margin: 10px 0 8px;
    letter-spacing: 0;
}

.feature p {
    font-size: 14.5px;
    color: var(--steel-light);
    line-height: 1.55;
}

.feature .bolt {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #d8d8da, #6c6c70 75%);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .3);
}

/* ============ PRICING ============ */
.pricing-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.price-group h3 {
    font-size: 15px;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--pink-deep);
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--paper-ink);
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-card {
    background: var(--white);
    border: 1px solid #d9d0c2;
    border-radius: var(--radius);
    padding: 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: repeating-linear-gradient(180deg, var(--steel) 0 4px, var(--steel-light) 4px 8px);
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .25);
}

.price-size {
    padding-left: 14px;
}

.price-size .num {
    font-family: var(--display);
    font-size: 34px;
    display: block;
    line-height: 1;
}

.price-size .unit {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.price-tag {
    text-align: right;
    font-family: var(--mono);
}

.price-tag .ttc {
    font-size: 21px;
    font-weight: 600;
    color: var(--pink-deep);
    display: block;
}

.price-tag .ht {
    font-size: 12px;
    color: var(--steel);
}

.price-note {
    margin-top: 22px;
    font-size: 13px;
    color: #6b6259;
    font-family: var(--mono);
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
    align-items: start;
}

.gallery-grid figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--ink-line);
    position: relative;
}

.gallery-grid figure.tall {
    grid-row: span 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
    transition: transform .6s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.045);
}

figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 14px 16px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.gallery-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gallery-quote {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    padding: 26px 24px;
}

.gallery-quote p {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--white);
}

.gallery-quote p span {
    color: var(--pink-bright);
}

/* ============ LOCATION / CONTACT ============ */
.location-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.ship-label {
    background: var(--white);
    color: var(--paper-ink);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--ink-line);
}

.ship-label .top {
    background: var(--pink);
    color: var(--white);
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    padding: 9px 18px;
    display: flex;
    justify-content: space-between;
}

.ship-label .body {
    padding: 26px 22px;
}

.ship-label .body h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.ship-row {
    display: flex;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px dashed #d9d0c2;
    font-family: var(--mono);
    font-size: 13.5px;
}

.ship-row:first-of-type {
    border-top: none;
}

.ship-row .k {
    color: #8a8178;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .05em;
    min-width: 84px;
    padding-top: 2px;
}

.ship-row .v {
    font-weight: 600;
    color: var(--paper-ink);
}

.ship-row a.v:hover {
    color: var(--pink-deep);
}

.contact-actions {
    display: flex;
    gap: 12px;
    padding: 18px 22px 24px;
    flex-wrap: wrap;
}

.contact-actions .btn-ghost {
    border-color: #d9d0c2;
    color: var(--paper-ink);
}

.contact-actions .btn-ghost:hover {
    border-color: var(--pink-deep);
    color: var(--pink-deep);
}

.social-row {
    display: flex;
    gap: 10px;
    padding: 0 22px 22px;
}

.social-badge {
    font-family: var(--mono);
    font-size: 12px;
    border: 1px solid var(--ink-line);
    border-radius: 3px;
    padding: 8px 13px;
    color: var(--white);
    background: var(--ink-soft);
}

.audience-panel {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius);
    padding: 30px;
    color: var(--white);
}

.audience-panel h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--white);
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.audience-item {
    display: flex;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ink-line);
}

.audience-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.audience-item .num {
    font-family: var(--display);
    font-size: 26px;
    color: var(--pink-bright);
    min-width: 42px;
}

.audience-item h4 {
    font-family: var(--body);
    text-transform: none;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.audience-item p {
    font-size: 14px;
    color: var(--steel-light);
}

/* ============ FOOTER ============ */
footer {
    background: var(--ink);
    border-top: 1px solid var(--ink-line);
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-inner .brand {
    font-size: 16px;
}

footer p {
    font-size: 12.5px;
    color: var(--steel-light);
    font-family: var(--mono);
}

/* ============ RESPONSIVE ============ */
@media (max-width:980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        order: -1;
        max-width: 380px;
    }

    .nav-links {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .pricing-groups {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid figure.tall {
        grid-row: auto;
    }

    .gallery-grid figure {
        height: 300px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .wrap {
        padding: 0 18px;
    }

    section {
        padding: 72px 0;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ship-row {
        flex-direction: column;
        gap: 2px;
    }
}