@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
    --navy: #07192f;
    --navy-deep: #04101e;
    --blue: #2f83ca;
    --blue-light: #8ec8f0;
    --steel: #9aaaba;
    --white: #fff;
    --line: rgba(255, 255, 255, .15);
}

*, *::before, *::after { box-sizing: border-box; }

html { min-width: 320px; }

body {
    margin: 0;
    color: var(--white);
    background: var(--navy-deep);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 15px;
    color: var(--navy);
    background: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--navy);
}

.page-shell::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 50% 0 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.holding-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 50%;
    height: 168px;
    padding: 18px clamp(36px, 5vw, 90px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.holding-brand { flex: 0 0 auto; }
.holding-brand img {
    width: 132px;
    height: 132px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.location {
    margin: 0;
    color: #bec9d4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.location span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 8px 1px 0;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(47, 131, 202, .18);
}

.holding-main {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.message-panel {
    position: relative;
    z-index: 3;
    min-height: 100svh;
    padding: 205px clamp(36px, 5vw, 90px) 35px;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 88% 46%, rgba(47,131,202,.17), transparent 38%),
        linear-gradient(145deg, #09203d, var(--navy) 62%);
}

.message-inner {
    width: min(650px, 100%);
    margin: auto 0;
    padding: 24px 0 30px;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 14px 4px 0;
    background: var(--blue);
}

h1 {
    margin: 0 0 30px;
    font-family: Manrope, Arial, sans-serif;
    font-size: clamp(50px, 5.2vw, 84px);
    font-weight: 600;
    line-height: .99;
    letter-spacing: -.06em;
}

h1 em {
    color: var(--blue-light);
    font-family: Georgia, serif;
    font-weight: 400;
}

.intro {
    max-width: 600px;
    margin: 0;
    color: #c0ccd8;
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.7;
}

.contact-list {
    margin-top: clamp(38px, 5vh, 66px);
    border-top: 1px solid var(--line);
}

.contact-list a {
    position: relative;
    min-height: 74px;
    padding: 18px 50px 18px 0;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease, padding-left .2s ease, background .2s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
    padding-left: 12px;
    color: var(--blue-light);
    background: rgba(255,255,255,.035);
}

.contact-label {
    color: #8fa2b5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-list strong {
    overflow-wrap: anywhere;
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
    letter-spacing: .01em;
}

.arrow {
    position: absolute;
    right: 4px;
    font-size: 20px;
}

.holding-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: #71859a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.holding-footer p { margin: 0; }

.product-panel {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #081a30;
}

.product-image {
    position: absolute;
    inset: 0;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,25,47,.5), transparent 30%),
        linear-gradient(180deg, rgba(4,16,30,.2), transparent 30%, transparent 64%, rgba(4,16,30,.72));
}

.stock-status {
    position: absolute;
    top: 38px;
    right: 42px;
    padding: 10px 14px;
    color: #eff8ff;
    background: rgba(5,20,38,.68);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.stock-status span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #63b6ec;
}

.product-tags {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tags span {
    padding: 8px 12px;
    color: #dceaf5;
    background: rgba(5,20,38,.58);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.image-caption {
    position: absolute;
    left: 42px;
    top: 42px;
    margin: 0;
    color: #bfd0de;
    font-size: 12px;
    letter-spacing: .05em;
}

.image-caption b { color: #fff; }

@media (max-width: 1000px) {
    .holding-header { width: 56%; padding-inline: 32px; }
    .holding-main { grid-template-columns: 56% 44%; }
    .message-panel { padding-inline: 32px; }
    .location, .image-caption { display: none; }
    .stock-status { right: 24px; }
    .product-tags { left: 24px; right: 24px; }
    .contact-list a { grid-template-columns: 82px minmax(0, 1fr); }
}

@media (max-width: 760px) {
    .page-shell { overflow: visible; }
    .page-shell::before { inset: 0; }
    .holding-header {
        width: 100%;
        height: 142px;
        padding: 12px 24px;
        background: var(--navy);
    }
    .holding-brand img { width: 118px; height: 118px; }
    .holding-main { display: flex; flex-direction: column; }
    .message-panel {
        min-height: auto;
        padding: 170px 24px 32px;
    }
    .message-inner { margin: 0; padding-top: 20px; }
    h1 { font-size: clamp(48px, 14vw, 68px); }
    .contact-list a {
        min-height: 82px;
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .holding-footer { margin-top: 34px; flex-direction: column; gap: 5px; }
    .product-panel { min-height: max(590px, 70svh); }
    .product-image img { object-position: center 56%; }
    .stock-status { top: 24px; }
    .product-tags { bottom: 24px; }
}

@media (max-width: 430px) {
    .message-panel { padding-inline: 20px; }
    .intro { font-size: 15px; }
    .contact-list strong { font-size: 15px; }
    .product-panel { min-height: max(540px, 65svh); }
    .product-tags { left: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: .01ms !important; }
}
