@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --ink: #151A21;
    --brass: #B08D57;
    --brass-dark: #7A5E37;
    --blue: #5B8FBF;
    --paper: #F5F2EC;
    --slate: #5B6472;
    --bs-body-font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--ink);
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--ink);
}

p {
    color: var(--slate);
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.rule {
    height: 1px;
    background-image: repeating-linear-gradient(90deg, var(--brass) 0 10px, transparent 10px 16px);
}

/* header / navbar */
header.site {
    background: var(--ink);
}

.logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: .01em;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

nav.primary .nav-link {
    color: #B7BCC6;
    font-weight: 500;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 0;
}

nav.primary .nav-link.active {
    color: #fff;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 3px;
}

/* hero (blueprint grid, used on every page) */
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(91, 143, 191, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 143, 191, .16) 1px, transparent 1px);
    background-size: 32px 32px;
}

.hero-inner {
    position: relative;
    padding: 60px 0;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    color: var(--brass);
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.eyebrow.dark {
    color: var(--brass-dark);
}

.hero h1 {
    font-size: 2.6rem;
    line-height: 1.05;
    color: #fff;
}

.hero p.lead {
    color: #D8DCE3;
    font-size: 1rem;
    max-width: 44ch;
}

.hero-inner.center p.lead {
    margin-left: auto;
    margin-right: auto;
}

.btn-brass {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 2px;
    border: 1px solid var(--brass);
    color: var(--brass);
    background: transparent;
}

.btn-brass:hover {
    color: var(--brass-dark);
    border-color: var(--brass-dark);
}

.btn-brass.solid {
    background: var(--brass);
    color: var(--ink);
}

.btn-brass.solid:hover {
    background: var(--brass-dark);
    color: #fff;
}

/* eiffel tower overlay on hero */
.tower-wrap {
    position: relative;
    min-height: 360px;
}

.tower-wrap img {
    position: absolute;
    max-height: 560px;
    width: auto;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 24px rgba(91, 143, 191, .2));
}

.reg {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--blue);
    opacity: .85;
}

.reg::before,
.reg::after {
    content: "";
    position: absolute;
    background: var(--blue);
}

.reg::before {
    left: 50%;
    top: -6px;
    width: 1px;
    height: 30px;
    transform: translateX(-50%);
}

.reg::after {
    top: 50%;
    left: -6px;
    height: 1px;
    width: 30px;
    transform: translateY(-50%);
}

.dimlabel {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: var(--blue);
    letter-spacing: .04em;
}

/* ferris wheel bleed overlay (how-it-works page) */
.bleed-wrap {
    position: relative;
    overflow: hidden;
}

.ferris-bleed {
    position: absolute;
    top: 60px;
    right: -2px;
    width: 45%;
    max-width: 800px;
    height: 80%;
    opacity: .9;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ferris-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

@media (max-width: 991.98px) {
    .ferris-bleed {
        display: none;
    }
}

section {
    padding: 56px 0;
}

h2 {
    font-size: 1.6rem;
}

.card-brass {
    background: var(--paper);
    border: 1px solid var(--brass);
    padding: 20px;
    height: 100%;
}

.card-brass .num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--brass-dark);
    font-weight: 600;
    font-size: .7rem;
    display: block;
    margin-bottom: 8px;
}

.card-brass h3 {
    font-size: 1rem;
}

.card-brass p {
    font-size: .85rem;
    margin: 0;
}

.trust {
    background: #EDE7D9;
    border: 1px solid var(--brass);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: .88rem;
}

.trust strong {
    font-family: 'Fraunces', serif;
}

.repair {
    background: var(--ink);
    color: #fff;
    padding: 30px;
}

.repair h2 {
    color: #fff;
}

.repair p {
    color: #D8DCE3;
}

.repair .charge {
    border-top: 1px solid #33394A;
    margin-top: 16px;
    padding-top: 16px;
    font-size: .82rem;
    color: #9AA6C4;
}

.repair .charge strong {
    color: var(--brass);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

table.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-top: 12px;
}

table.price-table th {
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate);
    padding: 0 0 8px;
    border-bottom: 1px solid var(--brass);
}

table.price-table td {
    padding: 12px 0;
    border-bottom: 1px solid #DDD6C4;
}

table.price-table td:first-child {
    font-family: 'Fraunces', serif;
    font-weight: 600;
}

table.price-table td:last-child {
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
    color: var(--ink);
}

.media-frame {
    aspect-ratio: 4 / 3;
    border: 1px dashed #B7BCC6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8F97A8;
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    width: 100%;
    object-fit: cover;
}

/* gallery filmstrip */
.filmstrip-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.filmstrip {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--brass) transparent;
}

.filmstrip::-webkit-scrollbar {
    height: 6px;
}

.filmstrip::-webkit-scrollbar-thumb {
    background: var(--brass);
    border-radius: 4px;
}

.filmstrip-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
}

.filmstrip-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--brass);
    background: var(--paper);
    color: var(--brass-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.filmstrip-arrow:hover {
    background: var(--brass);
    color: var(--ink);
}

.filmstrip-arrow-left {
    margin-right: 14px;
}

.filmstrip-arrow-right {
    margin-left: 14px;
}

@media (max-width: 767.98px) {
    .filmstrip-card {
        width: 220px;
    }

    .filmstrip-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

.formcard {
    background: #fff;
    border: 1px solid #DDD6C4;
    padding: 32px;
}

.formcard label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--ink);
}

.formcard .form-control,
.formcard .form-select {
    border: 1px solid #C9C2AE;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    background: var(--paper);
    padding: 11px 13px;
}

.formcard .form-control:focus,
.formcard .form-select:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 .2rem rgba(176, 141, 87, .2);
    background: var(--paper);
}

.form-note {
    font-size: .82rem;
    color: var(--slate);
    margin-top: 10px;
}

footer.site {
    background: var(--ink);
    color: #9AA6C4;
    padding: 30px 0;
    font-size: .85rem;
}

footer.site a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tower-wrap {
        min-height: 280px;
    }

    .tower-wrap img {
        max-height: 320px;
    }
}
