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

:root {
    --ink: #172655;
    --blue: #194fd4;
    --blue-dark: #13265f;
    --cyan: #58d8ee;
    --yellow: #f9d82c;
    --paper: #f5fbfc;
    --line: #d7e2eb;
    --muted: #617086;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', Arial, sans-serif;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.top-strip {
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--blue-dark);
    color: #d8f5fb;
    font: 500 10px/1 'DM Mono', monospace;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(245, 251, 252, .93);
    border-bottom: 1px solid rgba(215, 226, 235, .85);
    backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.brand strong { font: 700 16px/1 'Space Grotesk', sans-serif; letter-spacing: -.04em; }
.brand small { margin-left: 3px; color: var(--blue); font: 500 10px/1 'DM Mono', monospace; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 33px; font-size: 13px; font-weight: 700; }
.site-nav a:not(.nav-button) { transition: color .2s ease; }
.site-nav a:not(.nav-button):hover { color: var(--blue); }
.nav-button, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nav-button { padding: 12px 17px; background: var(--blue); color: white; box-shadow: 0 8px 16px rgba(25, 79, 212, .18); }
.nav-button:hover, .button-primary:hover { transform: translateY(-2px); background: #0e3db1; box-shadow: 0 12px 22px rgba(25, 79, 212, .22); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font-weight: 800; cursor: pointer; }

.section { padding: 100px 0; }
.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 14%, rgba(88, 216, 238, .17) 0 15%, transparent 15.2%),
        radial-gradient(circle at 84% 20%, transparent 0 22%, rgba(88, 216, 238, .12) 22.2% 23%, transparent 23.2%),
        radial-gradient(circle at 8% 92%, rgba(249, 216, 44, .11) 0 8%, transparent 8.2%),
        var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; min-height: 550px; }
.hero-copy { padding-bottom: 15px; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--blue);
    font: 500 11px/1 'DM Mono', monospace;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: #16bed3; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
h1 {
    max-width: 610px;
    margin: 29px 0 27px;
    color: var(--ink);
    font-size: clamp(54px, 7vw, 84px);
    line-height: .98;
    letter-spacing: -.075em;
}
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lede { margin-bottom: 34px; color: #5e6d7d; font-size: 16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 51px; padding: 0 21px; border: 1px solid transparent; }
.button-primary { background: var(--blue); color: white; box-shadow: 0 8px 16px rgba(25, 79, 212, .18); }
.button-quiet { border-color: #ccd8e2; background: rgba(255, 255, 255, .65); color: var(--ink); }
.button-quiet:hover { border-color: var(--cyan); background: #ecfbfd; transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 23px; margin-top: 39px; color: #677688; font-size: 12px; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: ''; width: 12px; height: 12px; border: 1.5px solid #13b6cd; border-radius: 3px; }

.pump-board {
    position: relative;
    padding: 34px 28px 26px;
    overflow: visible;
    border-radius: 27px;
    background: linear-gradient(145deg, #2d407e, #253362);
    color: white;
    box-shadow: 0 25px 45px rgba(28, 43, 88, .2);
}
.pump-board::before {
    content: 'YOUR LOCAL STOP';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--blue-dark);
    font: 700 9px/1.25 'DM Mono', monospace;
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 5px 0 rgba(255,255,255,.75);
}
.board-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 20px; }
.board-label, .card-label, .fuel-card > span, .large-fuel-card .card-top span:first-child {
    color: #b6c6ef;
    font: 500 10px/1 'DM Mono', monospace;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.open-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: var(--cyan); color: var(--blue-dark); font: 500 10px/1 'DM Mono', monospace; }
.open-pill b, .footer-status b { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.pump-board h2 { margin: 23px 0 21px; color: white; font-size: 29px; letter-spacing: -.045em; }
.fuel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fuel-card { padding: 18px 15px 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.09); }
.fuel-card strong { display: block; margin-top: 13px; color: white; font: 700 25px/1 'Space Grotesk', sans-serif; letter-spacing: -.05em; }
.empty-copy { grid-column: 1 / -1; color: #d9e6ff; font-size: 13px; }
.board-foot { display: flex; justify-content: space-between; gap: 12px; margin: 25px 0 0; color: #cfddfa; font-size: 11px; }
.board-foot a { color: var(--cyan); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.marquee { display: flex; justify-content: space-around; gap: 24px; overflow: hidden; padding: 13px 20px; background: var(--blue); color: #defaff; font: 500 10px/1 'DM Mono', monospace; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.marquee b { color: var(--yellow); }

.content-section { background: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 37px; }
.section-heading h2, .visit-section h2, .contact-section h2 { max-width: 610px; margin: 16px 0 0; font-size: clamp(38px, 5vw, 59px); line-height: 1; letter-spacing: -.065em; }
.section-heading > p { max-width: 310px; margin-bottom: 4px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.large-fuel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.large-fuel-card { position: relative; min-height: 185px; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #f8fcfd; }
.large-fuel-card.featured-fuel { border-color: var(--blue); background: #eaf6fd; }
.large-fuel-card .card-top { display: flex; justify-content: space-between; }
.pump-mark { color: #1abace; font-size: 24px; line-height: 10px; }
.large-fuel-card > strong { display: block; margin-top: 34px; color: var(--ink); font: 700 34px/1 'Space Grotesk', sans-serif; letter-spacing: -.06em; }
.large-fuel-card > small { display: block; margin-top: 17px; color: var(--muted); font: 11px/1.2 'DM Mono', monospace; }
.empty-state { grid-column: 1 / -1; padding: 38px; border: 1px dashed #b9cbd8; border-radius: 17px; color: var(--muted); text-align: center; }

.mart-section { background: #f5fbfc; }
.mart-heading { margin-bottom: 29px; }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.search-box { display: flex; align-items: center; gap: 10px; width: min(350px, 100%); padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--blue); }
.search-box span { font-size: 24px; line-height: 1; }
.search-box input { width: 100%; min-height: 48px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.category-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.category-list a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.66); color: var(--muted); font-size: 11px; font-weight: 800; transition: .2s ease; }
.category-list a:hover, .category-list a.active { border-color: var(--blue); background: var(--blue); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(28, 57, 91, .11); }
.product-image { height: 145px; display: grid; place-items: center; background: #e5f7f9; color: var(--blue); }
.product-image span { display: grid; place-items: center; width: 64px; height: 64px; border: 2px solid currentColor; border-radius: 18px; font: 700 27px/1 'Space Grotesk', sans-serif; }
.product-image.snacks { background: #fff8da; color: #a56f00; }
.product-image.everyday-grocery { background: #ecf6ea; color: #47813c; }
.product-image.auto-care { background: #e9ecfb; color: #4758a1; }
.product-meta { padding: 17px 16px 19px; }
.product-meta > small { color: var(--muted); font: 500 10px/1.3 'DM Mono', monospace; text-transform: uppercase; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 10px; margin-top: 10px; }
.product-title-row h3 { max-width: 170px; margin: 0; color: var(--ink); font-size: 17px; line-height: 1.05; letter-spacing: -.045em; }
.product-title-row strong { color: var(--blue); font: 700 14px/1 'DM Mono', monospace; white-space: nowrap; }
.product-meta p { margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.visit-section { background: var(--blue-dark); color: white; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 95px; }
.visit-section .eyebrow { color: var(--cyan); }
.visit-section h2 { color: white; }
.body-copy { max-width: 450px; margin: 25px 0 29px; color: #bfcae8; font-size: 15px; line-height: 1.75; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.visit-section .button-quiet { border-color: #6273a6; background: transparent; color: white; }
.visit-section .button-quiet:hover { border-color: var(--cyan); background: rgba(255,255,255,.08); }
.visit-card { display: grid; gap: 30px; padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.08); }
.card-label { display: block; margin-bottom: 13px; color: var(--cyan); }
address, .visit-card p { margin: 0; color: white; font-size: 14px; font-style: normal; line-height: 1.8; }
.hours-list { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; color: #d0d9f4; font-size: 12px; }
.hours-list li { display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 5px; }
.hours-list strong { color: white; font-weight: 700; }

.contact-section { background: #edf8fa; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 100px; }
.contact-section h2 { color: var(--ink); }
.contact-detail { display: block; width: fit-content; margin-top: 11px; color: var(--blue); font: 700 14px 'DM Mono', monospace; text-decoration: underline; text-underline-offset: 5px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 28px; border: 1px solid #d2e1e8; border-radius: 20px; background: white; box-shadow: 0 14px 30px rgba(40, 76, 104, .08); }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 800; }
.contact-form label span { color: var(--muted); font-size: 10px; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d5e0e8; border-radius: 10px; outline: 0; background: #fbfdfe; color: var(--ink); font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .search-box:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(25, 79, 212, .12); }
.contact-form label:nth-of-type(3), .contact-form label:nth-of-type(4), .contact-form button { grid-column: 1 / -1; }
.contact-form button { width: fit-content; border: 0; cursor: pointer; }
.flash-wrap, .setup-notice { padding-top: 22px; }
.flash, .setup-notice { padding: 14px 18px; border-radius: 10px; font-size: 13px; }
.flash-success { border: 1px solid #b7e3c0; background: #effbf1; color: #206631; }
.flash-error, .setup-notice { border: 1px solid #efd1a8; background: #fff7e9; color: #805016; }

.site-footer { padding: 25px 0; background: #102054; color: #d2ddfc; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.site-footer .brand { color: white; }
.site-footer .brand img { width: 43px; height: 43px; }
.site-footer p { margin: 0; color: #c7d4f5; font-size: 12px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font: 500 10px 'DM Mono', monospace; text-transform: uppercase; }

@media (max-width: 900px) {
    .hero-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
    .hero { padding-top: 70px; }
    .hero-grid { min-height: auto; }
    .large-fuel-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { gap: 38px; }
}

@media (max-width: 650px) {
    .container { width: min(100% - 32px, 520px); }
    .top-strip { padding: 0 10px; font-size: 8px; letter-spacing: .1em; }
    .nav-wrap { min-height: 76px; }
    .brand span { display: none; }
    .brand img { width: 56px; height: 56px; }
    .menu-toggle { display: block; font-size: 12px; }
    .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 16px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 20px rgba(24, 54, 90, .08); }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 13px 4px; }
    .site-nav .nav-button { padding: 13px; text-align: center; }
    .section { padding: 68px 0; }
    h1 { margin-top: 25px; font-size: clamp(48px, 14vw, 67px); }
    .hero-lede { font-size: 14px; }
    .hero-actions, .hero-actions .button { width: 100%; }
    .trust-row { gap: 12px 17px; font-size: 10px; }
    .pump-board { padding: 30px 18px 22px; border-radius: 22px; }
    .pump-board h2 { font-size: 28px; }
    .fuel-card strong { font-size: 20px; }
    .board-foot { align-items: start; flex-direction: column; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 22px; }
    .large-fuel-grid, .product-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
    .large-fuel-card { min-height: 160px; padding: 16px; }
    .large-fuel-card > strong { margin-top: 28px; font-size: 25px; }
    .catalog-tools { display: block; }
    .search-box { width: 100%; }
    .category-list { justify-content: flex-start; margin-top: 14px; }
    .product-image { height: 110px; }
    .product-meta { padding: 13px 11px 15px; }
    .product-title-row { display: block; }
    .product-title-row h3 { font-size: 15px; }
    .product-title-row strong { display: block; margin-top: 8px; font-size: 12px; }
    .product-meta p { display: none; }
    .visit-grid { gap: 35px; }
    .visit-card { padding: 22px 18px; }
    .hours-list li { font-size: 10px; }
    .contact-form { grid-template-columns: 1fr; padding: 19px; }
    .contact-form label:nth-of-type(3), .contact-form label:nth-of-type(4), .contact-form button { grid-column: auto; }
    .contact-form button { width: 100%; }
    .footer-wrap { align-items: flex-start; flex-direction: column; gap: 15px; }
}