:root {
    --ink: #15110e;
    --muted: #6c675d;
    --line: #d8d0bf;
    --paper: #eee6d6;
    --panel: #ffffff;
    --graphite: #1f2220;
    --asphalt: #0b0c0b;
    --concrete: #77736a;
    --moss: #465642;
    --leather: #7b5132;
    --tabaco: #9b6b3d;
    --blue: #0d5970;
    --gold: #c9a35e;
    --burnt-orange: #d45f24;
    --brand-bar: #d45f24;
    --brand-bar-dark: #15110e;
    --brand-cream: #eee6d6;
    --danger: #9c3b35;
    --success: #2f7048;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

input,
select,
textarea,
button {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    padding: 8px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid rgba(217, 221, 215, .72);
    background: rgba(246, 245, 240, .92);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: var(--graphite);
    border: 2px solid var(--gold);
}

.brand-logo {
    display: grid;
    width: 82px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
}

.brand strong,
.brand small {
    display: block;
}

.brand small,
.main-nav a,
.eyebrow,
small {
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: 14px;
}

.menu-trigger {
    display: none;
    min-height: 38px;
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: .16em;
}

.main-nav a:hover {
    color: var(--blue);
}

.hero {
    position: relative;
    min-height: calc(100svh - 72px);
    overflow: hidden;
    display: grid;
    align-items: end;
    padding: clamp(24px, 5vw, 70px);
    color: #fff;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(12, 14, 13, .82), rgba(12, 14, 13, .30) 58%, rgba(12, 14, 13, .10));
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-bottom: clamp(26px, 8vh, 90px);
}

.hero h1,
.page-hero h1,
.login-card h1,
.admin-title h1 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero h1 {
    max-width: 750px;
    font-size: clamp(42px, 7vw, 88px);
}

.hero p {
    max-width: 620px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.5;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
}

.button.primary {
    color: #fff;
    background: var(--blue);
}

.button.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
}

.hero-actions,
.cta-band {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.band,
.form-shell,
.login-shell,
.admin-shell,
.cta-band {
    padding: clamp(34px, 6vw, 82px) clamp(18px, 4vw, 56px);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(240px, 420px) 1fr;
    gap: clamp(28px, 5vw, 72px);
}

h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

p {
    line-height: 1.62;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-list article {
    padding: 0 0 16px;
    border-bottom: 1px solid var(--line);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list span {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
}

.section-heading {
    display: grid;
    gap: 6px;
    max-width: 860px;
    margin-bottom: 26px;
}

.cards {
    display: grid;
    gap: 18px;
}

.cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.pricing-card,
.admin-panel,
.login-card {
    border: 1px solid var(--line);
    background: var(--panel);
}

.card,
.pricing-card {
    min-height: 230px;
    padding: 22px;
}

.card p {
    color: var(--muted);
}

.pill {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: var(--moss);
}

.muted {
    background: #eceee7;
}

.route-table {
    display: grid;
    gap: 12px;
}

.route-table article {
    display: grid;
    grid-template-columns: minmax(180px, .6fr) minmax(120px, .25fr) 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.route-table p {
    margin: 0;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.price-row strong {
    color: var(--blue);
    font-size: 24px;
}

.price-row small {
    text-decoration: line-through;
}

.cta-band {
    justify-content: space-between;
    color: #fff;
    background: var(--graphite);
}

.cta-band h2 {
    max-width: 720px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 4vw, 56px);
    color: #fff;
    background: #111413;
}

.site-footer span {
    display: block;
    color: #b7bdb7;
}

.page-hero.compact {
    padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px) 24px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 72px);
}

.page-hero p {
    max-width: 700px;
    color: var(--muted);
}

.form-shell,
.login-shell {
    max-width: 1080px;
    margin: 0 auto;
}

.panel-form,
.login-card {
    display: grid;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
    border: 1px solid var(--line);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #c8cec8;
    background: #fff;
}

textarea {
    resize: vertical;
}

.notice {
    padding: 14px 16px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 800;
}

.notice.success {
    background: var(--success);
}

.notice.error {
    background: var(--danger);
}

.login-shell {
    display: grid;
    min-height: 68vh;
    place-items: center;
}

.login-card {
    width: min(100%, 440px);
}

.login-card h1 {
    font-size: 40px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.admin-nav {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 8px;
    padding: 18px;
    color: #fff;
    background: var(--graphite);
}

.admin-nav strong {
    margin-bottom: 12px;
}

.admin-nav a {
    padding: 10px 12px;
    color: #d7ddd8;
}

.admin-nav a.active,
.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .10);
}

.admin-content {
    display: grid;
    gap: 20px;
}

.admin-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.admin-title h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.metric-grid article {
    padding: 20px;
    color: #fff;
    background: var(--moss);
}

.metric-grid span,
.metric-grid strong {
    display: block;
}

.metric-grid strong {
    margin-top: 10px;
    font-size: 38px;
}

.admin-panel {
    padding: 22px;
}

.admin-panel h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.data-table {
    display: grid;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 1.1fr .9fr .8fr .5fr;
    gap: 16px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.reservations .table-head,
.reservations .table-row {
    grid-template-columns: 1fr .65fr .8fr 1.2fr .55fr;
}

.table-head {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.table-row small {
    display: block;
    margin-top: 3px;
}

mark {
    padding: 5px 8px;
    color: #fff;
    background: var(--blue);
}

.inline-form select {
    min-height: 38px;
}

.admin-routes article {
    grid-template-columns: minmax(180px, .45fr) minmax(110px, .20fr) 1fr;
}

.admin-routes small {
    grid-column: 3;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.checklist label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
}

.checklist input {
    width: 18px;
    min-height: 18px;
}

.quiz-list {
    display: grid;
    gap: 12px;
    padding-left: 22px;
}

.quiz-list li span {
    display: block;
    color: var(--muted);
}

.legal-line {
    padding: 16px;
    background: #f0f2eb;
    border-left: 4px solid var(--gold);
}

@media (max-width: 900px) {
    .site-header,
    .site-footer,
    .admin-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .intro-grid,
    .cards.three,
    .pricing-grid,
    .field-grid,
    .admin-shell,
    .metric-grid,
    .checklist {
        grid-template-columns: 1fr;
    }

    .route-table article,
    .table-head,
    .table-row,
    .reservations .table-head,
    .reservations .table-row {
        grid-template-columns: 1fr;
    }

    .admin-nav {
        position: static;
    }

    .hero {
        min-height: 760px;
    }
}

@media print {
    .site-header,
    .site-footer,
    .admin-nav,
    .admin-title .button {
        display: none;
    }

    .admin-shell {
        display: block;
        padding: 0;
    }

    body {
        background: #fff;
    }
}

/* Visual route inspired by the referenced editorial/corporate site, adapted for BMR. */
.am-inspired {
    background: var(--asphalt);
}

.am-inspired .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    color: var(--brand-bar-dark);
    height: 72px;
    min-height: 72px;
    padding: 0 clamp(22px, 4vw, 64px);
    border-bottom: 0;
    background: rgba(238, 230, 214, .30);
    backdrop-filter: blur(18px) saturate(1.12);
    box-shadow: none;
}

.am-inspired .site-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    bottom: 0;
    left: -18px;
    z-index: -1;
    background: url("../img/barba-bar.svg") center / cover no-repeat;
    opacity: .44;
}

.am-inspired .site-header > * {
    position: relative;
    z-index: 1;
}

.am-inspired .brand,
.am-inspired .main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.am-inspired .brand-mark {
    color: #0c0c0c;
    background: var(--gold);
    border-color: #fff;
}

.am-inspired .brand-logo {
    width: clamp(170px, 14vw, 220px);
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    filter: none;
    margin-top: 0;
}

.am-inspired .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: none;
    transform: none;
}

.am-inspired .brand small,
.am-inspired .main-nav a {
    color: rgba(21, 17, 14, .82);
}

.am-inspired .main-nav a:hover {
    color: #000;
}

.am-inspired .menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--brand-bar-dark);
}

.am-inspired .menu-trigger::before {
    content: none;
}

.am-inspired .menu-square {
    display: block;
    width: 34px;
    height: 34px;
    background: var(--burnt-orange);
    border-radius: 4px;
}

.am-inspired .menu-lines {
    order: -1;
    display: grid;
    width: 38px;
    gap: 7px;
}

.am-inspired .menu-lines i {
    display: block;
    height: 2px;
    background: var(--brand-bar-dark);
    transition: transform .24s ease, width .24s ease;
}

.am-inspired .menu-trigger:hover .menu-lines i:nth-child(1),
.am-inspired .menu-trigger:focus-visible .menu-lines i:nth-child(1) {
    transform: translateX(-8px);
}

.am-inspired .menu-trigger:hover .menu-lines i:nth-child(2),
.am-inspired .menu-trigger:focus-visible .menu-lines i:nth-child(2) {
    transform: translateX(5px);
}

.am-inspired .menu-trigger:hover .menu-lines i:nth-child(3),
.am-inspired .menu-trigger:focus-visible .menu-lines i:nth-child(3) {
    transform: translateX(12px);
}

.am-inspired .main-nav a {
    display: none;
}

.am-inspired .main-nav a:last-child {
    display: inline-flex;
    color: var(--brand-bar-dark);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.am-inspired .site-footer {
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #090909;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: clamp(28px, 6vw, 86px);
    background:
        radial-gradient(circle at 82% 20%, rgba(212, 95, 36, .18), transparent 26%),
        linear-gradient(135deg, rgba(11, 12, 11, .96), rgba(31, 34, 32, .94));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s ease, transform .28s ease;
}

.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-overlay nav {
    display: grid;
    gap: 14px;
    width: min(720px, 100%);
}

.menu-overlay a {
    color: #fff;
    font-size: clamp(34px, 7vw, 82px);
    font-weight: 950;
    line-height: .96;
    text-transform: uppercase;
}

.menu-overlay a:hover {
    color: var(--gold);
}

.am-hero {
    position: relative;
    --hero-pan-y: 0%;
    min-height: 100svh;
    color: #fff;
    overflow: hidden;
    background: var(--asphalt);
}

.am-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.am-hero-media img,
.am-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 33%;
    filter: saturate(.88) contrast(1.18) brightness(.78);
    opacity: .92;
    transform: translate3d(0, 0, 0);
}

.am-hero-media video {
    pointer-events: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.am-hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 78% 18%, rgba(13, 89, 112, .26), transparent 28%),
        linear-gradient(90deg, rgba(11, 12, 11, .86), rgba(21, 17, 14, .48) 48%, rgba(11, 12, 11, .22)),
        linear-gradient(180deg, rgba(201, 163, 94, .16), transparent 42%),
        repeating-linear-gradient(0deg, rgba(238, 230, 214, .026) 0 1px, transparent 1px 5px);
}

.hero-end-copy,
.hero-end-brand {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 110px clamp(22px, 6vw, 92px) 72px;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .75s ease, transform .75s ease;
}

.hero-sound-toggle {
    position: absolute;
    right: clamp(18px, 4vw, 54px);
    bottom: clamp(18px, 4vw, 48px);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    min-width: 58px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 0;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .65));
}

.hero-sound-toggle::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 48px;
    background: currentColor;
    border-radius: 999px;
    transform: rotate(-43deg);
    opacity: 1;
}

.hero-sound-toggle.is-on::after {
    opacity: 0;
}

.hero-sound-toggle .sound-icon {
    position: relative;
    display: block;
    width: 48px;
    height: 38px;
}

.hero-sound-toggle .sound-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 27px;
    height: 30px;
    background: currentColor;
    clip-path: polygon(0 30%, 28% 30%, 74% 0, 74% 100%, 28% 70%, 0 70%);
}

.hero-sound-toggle .sound-icon::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 4px;
    width: 15px;
    height: 30px;
    border: 5px solid currentColor;
    border-left: 0;
    border-radius: 0 38px 38px 0;
    box-shadow: 10px 0 0 -5px currentColor;
}

.hero-sound-toggle:hover {
    color: var(--gold);
    background: transparent;
}

.hero-caption {
    position: absolute;
    left: 50%;
    bottom: clamp(80px, 10vh, 132px);
    z-index: 5;
    display: grid;
    gap: 8px;
    width: min(980px, calc(100% - 36px));
    padding: 0 18px;
    color: #fff;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 16px);
    transition: opacity .36s ease, transform .36s ease;
}

.hero-caption.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.hero-caption .caption-line {
    display: none;
}

.hero-caption.show-first .caption-line-one,
.hero-caption.show-second .caption-line-two {
    display: block;
    font-size: clamp(22px, 3vw, 46px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .76);
}

.hero-end-copy.is-visible,
.hero-end-brand.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-end-copy {
    background: transparent;
}

.hero-end-brand {
    background:
        radial-gradient(circle at 50% 32%, rgba(13, 89, 112, .18), transparent 32%),
        linear-gradient(180deg, rgba(11, 12, 11, .86), rgba(21, 17, 14, .92));
}

.hero-end-copy p {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5.6vw, 86px);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 20px 48px rgba(0, 0, 0, .62);
}

.hero-end-brand strong,
.hero-end-brand span {
    display: block;
}

.hero-end-brand strong {
    color: var(--gold);
    font-size: clamp(38px, 6.4vw, 96px);
    font-weight: 950;
    line-height: .95;
    letter-spacing: .08em;
}

.hero-end-brand span {
    max-width: 720px;
    margin: 20px auto 0;
    color: #fff;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.25;
}

.am-video-tag {
    position: absolute;
    right: clamp(22px, 5vw, 70px);
    bottom: clamp(28px, 6vw, 88px);
    z-index: 2;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 50%;
    font-weight: 900;
    letter-spacing: .12em;
}

.am-hero-copy,
.hero-statement {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: 100svh;
    max-width: 1050px;
    padding: 118px clamp(20px, 6vw, 92px) 88px;
}

.hero-statement {
    max-width: 1240px;
}

.hero-statement span {
    width: fit-content;
    margin-bottom: 28px;
    padding: 8px 12px;
    color: #080808;
    background: var(--gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .18em;
}

.am-kicker,
.am-section-title span,
.method-copy span,
.am-contact span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.am-hero h1,
.hero-statement h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(44px, 7.2vw, 112px);
    line-height: .93;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-statement h1 {
    max-width: 1120px;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .55);
}

.hero-statement em {
    color: var(--gold);
    font-style: normal;
}

.am-hero p {
    max-width: 680px;
    margin: 28px 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.8vw, 22px);
}

.am-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.am-arrow-link::before {
    content: "►";
    color: var(--gold);
    font-size: 13px;
}

.am-arrow-link.dark {
    color: #111;
}

.am-arrow-link.dark::before {
    color: #111;
}

.scroll-cue {
    position: absolute;
    left: clamp(20px, 6vw, 92px);
    bottom: 24px;
    z-index: 3;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-cue::before {
    content: "↓";
    display: inline-block;
    margin-right: 10px;
    color: var(--gold);
}

.am-section {
    padding: clamp(72px, 9vw, 136px) clamp(20px, 6vw, 92px);
}

.am-section-title {
    display: grid;
    gap: 12px;
    max-width: 940px;
    margin-bottom: clamp(32px, 5vw, 68px);
}

.am-section-title h2,
.method-copy h2,
.am-contact h2 {
    color: inherit;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.am-section-title p {
    max-width: 720px;
    margin: 0;
    color: #d3d3d3;
    font-size: 18px;
}

.am-section-title .dna-line {
    max-width: none;
    white-space: nowrap;
}

.am-style {
    color: var(--brand-bar-dark);
    background:
        linear-gradient(180deg, rgba(238, 230, 214, .94), rgba(221, 207, 184, .98)),
        var(--brand-cream);
}

.am-split {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) 1fr;
    gap: clamp(26px, 6vw, 86px);
    align-items: stretch;
}

.am-poster {
    display: grid;
    min-height: 420px;
    padding: 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 89, 112, .08), rgba(21, 17, 14, .24)),
        url("../img/barba-experience-card.jpeg?v=20260427") center / cover,
        url("../img/hero-road.svg") center / cover;
    filter: contrast(1.08) saturate(.92);
}

.am-copy {
    display: grid;
    align-content: center;
    gap: 26px;
}

.am-copy p {
    max-width: 660px;
    color: #343434;
    font-size: 21px;
}

.expertise-cloud {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.expertise-cloud a {
    display: grid;
    min-height: 58px;
    place-items: center;
    padding: 12px 14px;
    color: #fff;
    border: 1px solid var(--burnt-orange);
    background: var(--burnt-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-align: center;
}

.expertise-cloud a[href="#studio"] {
    color: #fff;
    border-color: var(--burnt-orange);
    background: var(--burnt-orange);
}

.expertise-cloud a:hover {
    color: #111;
    border-color: var(--gold);
    background: var(--gold);
}

.am-dna,
.am-method,
.am-routes {
    color: #fff;
    background:
        radial-gradient(circle at 8% 18%, rgba(123, 81, 50, .22), transparent 28%),
        linear-gradient(180deg, #121412, var(--asphalt));
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .16);
}

.dna-grid article {
    min-height: 390px;
    padding: clamp(22px, 3vw, 34px);
    background: linear-gradient(180deg, #242823, #1a1c1a);
}

.dna-grid article:nth-child(even) {
    background: linear-gradient(180deg, #31342f, #20231f);
}

.dna-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    margin-bottom: 44px;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 0;
    font-size: 22px;
    font-weight: 900;
}

.dna-grid h3 {
    color: var(--gold);
    font-size: 28px;
    text-transform: uppercase;
}

.dna-grid p {
    color: rgba(255, 255, 255, .76);
}

.am-method {
    display: grid;
    grid-template-columns: minmax(220px, .42fr) 1fr;
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
}

.method-mark {
    color: var(--gold);
    font-size: clamp(72px, 13vw, 180px);
    font-weight: 950;
    line-height: .86;
    text-align: center;
    white-space: pre-line;
}

.method-mark::after {
    content: "BY BARBA MOTO RIDES";
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    letter-spacing: .18em;
}

.method-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.method-pillars {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
}

.method-pillars article {
    min-height: 230px;
    padding-top: 24px;
    border-top: 2px solid var(--gold);
}

.method-pillars h3 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}

.method-pillars p {
    color: rgba(255, 255, 255, .72);
}

.am-fleet,
.am-numbers {
    color: var(--brand-bar-dark);
    background:
        linear-gradient(180deg, #f4efe4, #e7dac4);
}

.fleet-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(21, 17, 14, .82);
}

.fleet-list article {
    display: grid;
    grid-template-columns: 120px minmax(240px, .55fr) minmax(280px, .85fr);
    gap: 28px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid rgba(21, 17, 14, .82);
}

.fleet-list span {
    color: var(--burnt-orange);
    font-weight: 900;
}

.fleet-list h3 {
    font-size: clamp(26px, 4vw, 48px);
    text-transform: uppercase;
}

.fleet-list p {
    max-width: 620px;
    margin: 0;
    color: #4f4940;
}

.fleet-copy {
    display: grid;
    gap: 18px;
}

.fleet-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 230px;
    margin: 0;
    background:
        radial-gradient(circle at 50% 48%, rgba(13, 89, 112, .22), transparent 48%),
        linear-gradient(135deg, rgba(21, 17, 14, .94), rgba(31, 34, 32, .96));
    border: 1px solid rgba(21, 17, 14, .22);
}

.fleet-image img {
    width: min(100%, 620px);
    max-height: 310px;
    object-fit: contain;
    object-position: center;
    filter: contrast(1.05) saturate(.96);
}

.route-marquee {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
}

.route-marquee article {
    min-height: 300px;
    padding: 28px;
    display: grid;
    grid-template-rows: minmax(82px, auto) auto 1fr;
    align-content: start;
    border: 1px solid rgba(201, 163, 94, .28);
    background:
        linear-gradient(160deg, rgba(70, 86, 66, .72), rgba(21, 17, 14, .92)),
        var(--graphite);
}

.route-marquee article:nth-child(2) {
    background:
        linear-gradient(160deg, rgba(13, 89, 112, .74), rgba(21, 17, 14, .92)),
        var(--blue);
}

.route-marquee article:nth-child(3) {
    background:
        linear-gradient(160deg, rgba(212, 95, 36, .58), rgba(21, 17, 14, .92)),
        var(--burnt-orange);
}

.route-marquee strong,
.route-marquee em {
    display: block;
}

.route-marquee strong {
    min-height: 82px;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

.route-marquee em {
    margin: 10px 0 34px;
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
}

.route-marquee p {
    align-self: end;
    color: rgba(255, 255, 255, .74);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 42px;
}

.numbers-grid article {
    padding: 22px 0;
    border-top: 2px solid #111;
}

.numbers-grid strong,
.numbers-grid span {
    display: block;
}

.numbers-grid strong {
    color: var(--gold);
    font-size: clamp(58px, 9vw, 122px);
    line-height: .9;
}

.numbers-grid span {
    max-width: 260px;
    color: #3a3a3a;
    font-weight: 900;
    text-transform: uppercase;
}

.price-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #111;
}

.price-band article {
    padding: clamp(22px, 4vw, 36px);
    background: #f4f3ef;
}

.price-band h3 {
    color: #111;
    font-size: 38px;
    text-transform: uppercase;
}

.price-band article div {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid #c9c9c0;
}

.price-band strong {
    color: var(--gold);
    font-size: 26px;
}

.price-band small {
    color: #777;
    text-decoration: line-through;
}

.am-contact {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding-top: clamp(42px, 6vw, 72px);
    padding-bottom: clamp(42px, 6vw, 72px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 89, 112, .82), rgba(70, 86, 66, .92)),
        var(--moss);
}

.am-contact h2 {
    max-width: 900px;
    line-height: 1.08;
}

.am-contact > div {
    display: grid;
    gap: clamp(18px, 2vw, 28px);
}

.am-contact span,
.am-contact .am-arrow-link.dark,
.am-contact .am-arrow-link.dark::before {
    color: #fff;
}

.am-footer-map {
    display: grid;
    grid-template-columns: .8fr repeat(3, 1fr);
    gap: clamp(20px, 4vw, 46px);
    padding: clamp(30px, 4.5vw, 54px) clamp(20px, 6vw, 92px);
    color: var(--brand-bar-dark);
    background: url("../img/barba-bar.svg") center / cover no-repeat;
    border-top: 0;
}

.footer-logo img {
    width: min(150px, 100%);
    height: auto;
}

.am-footer-map h3 {
    color: var(--brand-bar-dark);
    font-size: 18px;
    text-transform: uppercase;
}

.am-footer-map ul {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.am-footer-map li,
.am-footer-map p {
    margin: 0;
    color: rgba(21, 17, 14, .80);
    line-height: 1.42;
}

.am-footer-map .am-arrow-link,
.am-footer-map .am-arrow-link::before {
    color: var(--brand-bar-dark);
}

.am-inspired .site-footer {
    display: none;
}

@media (max-width: 980px) {
    .am-hero-media img,
    .am-hero-media video {
        object-position: center center;
    }

    .am-inspired .site-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        min-height: 64px;
        padding: 0 14px;
    }

    .am-inspired .brand {
        flex: 0 0 auto;
        height: 100%;
    }

    .am-inspired .brand-logo {
        width: 112px;
        height: 40px;
    }

    .am-inspired .main-nav {
        flex: 0 0 auto;
        width: auto;
        height: 100%;
        gap: 12px;
        padding: 0;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        white-space: nowrap;
    }

    .am-inspired .menu-trigger {
        min-height: 40px;
        gap: 8px;
        letter-spacing: .14em;
    }

    .am-inspired .menu-lines {
        width: 28px;
        gap: 6px;
    }

    .am-inspired .menu-square {
        display: none;
    }

    .am-inspired .menu-label,
    .am-inspired .main-nav a:last-child {
        font-size: 12px;
        letter-spacing: .14em;
    }

    .am-split,
    .am-method,
    .method-pillars,
    .dna-grid,
    .fleet-list article,
    .route-marquee,
    .numbers-grid,
    .price-band {
        grid-template-columns: 1fr;
    }

    .am-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .expertise-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .am-section-title .dna-line {
        white-space: normal;
    }

    .am-footer-map {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .am-hero h1 {
        font-size: clamp(42px, 13vw, 70px);
    }

    .am-video-tag {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 460px) {
    .am-inspired .site-header {
        height: 58px;
        min-height: 58px;
        padding: 0 12px;
    }

    .am-inspired .brand-logo {
        width: 98px;
        height: 34px;
    }

    .am-inspired .main-nav {
        gap: 8px;
    }

    .am-inspired .menu-lines {
        width: 24px;
        gap: 5px;
    }

    .am-inspired .menu-label,
    .am-inspired .main-nav a:last-child {
        font-size: 11px;
        letter-spacing: .12em;
    }

    .expertise-cloud {
        grid-template-columns: 1fr;
    }
}
