:root {
    --white: #ffffff;
    --ink: #1f1f1f;
    --soft-ink: #4f4f4f;
    --muted: #939393;
    --line: #e6e1da;
    --teal: #42bfad;
    --teal-dark: #1a5c68;
    --gold: #fecf1f;
    --cream: #f8f6f2;
    --shadow: 0 18px 42px rgba(31, 31, 31, 0.11);
    --serif: "Playfair Display", Georgia, "Times New Roman", serif;
    --sans: Montserrat, "Open Sans", Arial, sans-serif;
    --body: "Open Sans", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--muted);
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

button,
input,
select {
    font: inherit;
}

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

figure {
    margin: 0;
}

.site-container {
    margin: 0 auto;
    max-width: 1080px;
    width: 80%;
}

.site-header {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
}

.header-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    min-height: 66px;
}

.logo-link {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
}

.logo-link img {
    height: 48px;
    object-fit: contain;
    width: 174px;
}

.site-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 21px;
    justify-content: flex-end;
    min-width: 0;
}

.site-nav a {
    color: rgba(0, 0, 0, 0.72);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav a:hover,
.teal-link,
.section-kicker,
.section-title span {
    color: var(--teal);
}

.cart-button {
    align-items: center;
    background: var(--teal);
    border: 0;
    border-radius: 0;
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 40px;
    padding: 9px 13px;
    text-transform: uppercase;
}

.cart-button strong {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    min-width: 24px;
    padding: 1px 7px;
}

.hero-section {
    align-items: center;
    background: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("home-hero.jpg") center / cover;
    color: var(--white);
    display: flex;
    min-height: 620px;
    padding: 78px 5%;
}

.page-hero {
    align-items: center;
    background: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("home-hero.jpg") center / cover;
    color: var(--white);
    display: flex;
    min-height: 420px;
    padding: 68px 5%;
}

.page-hero h1 {
    color: var(--white);
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.store-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("gallery-1.jpg");
}

.connected-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("social-1.jpg");
}

.location-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("location-front.jpg");
}

.about-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("shopping-sign.jpg");
}

.press-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("press-tv.jpg");
}

.dealer-page-hero {
    background-image: linear-gradient(rgba(31, 31, 31, 0.85), rgba(31, 31, 31, 0.85)), url("dealer-sign.jpg");
}

.hero-content {
    margin: 0 auto;
    max-width: 1080px;
    text-align: center;
    width: 80%;
}

.hero-content h1,
.intro-copy h2,
.section-title h2,
.split-section h2,
.location-grid h2,
.sustainability-grid h2,
.dealer-grid h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: 72px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
}

.outline-button,
.solid-button,
.teal-link,
.store-card button,
.cart-summary button {
    border-radius: 0;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 13px 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.outline-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.solid-button,
.store-card button,
.cart-summary button {
    background: var(--teal);
    border: 2px solid var(--teal);
    color: var(--white);
}

.outline-button:hover,
.solid-button:hover,
.store-card button:hover,
.cart-summary button:hover,
.cart-button:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
}

.white-section,
.store-section,
.press-section,
.dealer-section {
    background: var(--white);
    padding: 78px 0;
}

.intro-grid,
.split-section,
.dealer-grid {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.intro-copy h2,
.section-title h2,
.split-section h2,
.location-grid h2,
.sustainability-grid h2,
.dealer-grid h2 {
    font-size: 48px;
}

.intro-copy p,
.section-title p,
.split-section p,
.location-grid p,
.dealer-grid p,
.sustainability-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 18px 0 0;
}

.teal-link {
    border: 2px solid var(--teal);
    color: var(--teal);
    display: inline-block;
    margin-top: 25px;
}

.teal-link:hover {
    background: var(--teal);
    color: var(--white);
}

.intro-photo img,
.framed-photo img,
.dealer-grid img {
    box-shadow: var(--shadow);
    height: auto;
    width: 100%;
}

.teal-gallery {
    background: var(--teal-dark);
    padding: 62px 0;
}

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

.gallery-grid figure {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.gallery-grid img {
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
    width: 100%;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.store-section {
    background: var(--cream);
}

.section-title {
    margin-bottom: 30px;
    max-width: 760px;
}

.section-title.centered,
.compact-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title span,
.section-kicker {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.store-controls {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px);
    margin: 0 0 20px;
}

.store-controls label {
    color: var(--soft-ink);
    display: grid;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    gap: 7px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.store-controls input,
.store-controls select {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    min-height: 46px;
    padding: 10px 12px;
}

.store-status {
    color: var(--soft-ink);
    margin: 0 0 18px;
}

.store-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.store-card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(31, 31, 31, 0.08);
    display: grid;
    gap: 13px;
    min-height: 260px;
    padding: 16px;
}

.store-card-media {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(rgba(26, 92, 104, 0.84), rgba(26, 92, 104, 0.84)), url("gallery-2.jpg") center / cover;
    color: var(--white);
    display: flex;
    font-family: var(--serif);
    font-size: 38px;
    justify-content: center;
}

.store-card h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

.store-card-meta {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 8px 0 0;
}

.store-card-footer {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 700;
}

.store-card button,
.cart-summary button {
    cursor: pointer;
    font-size: 12px;
    min-height: 42px;
    padding: 10px 13px;
}

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

.reviews-grid article,
.press-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px;
}

.reviews-grid img {
    height: 30px;
    object-fit: contain;
    width: 92px;
}

.reviews-grid h3,
.press-grid h3,
.visit-card h3 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    margin: 14px 0 0;
}

.reviews-grid p,
.press-grid p,
.visit-card p {
    color: var(--muted);
    margin: 10px 0 0;
}

.sustainability-section,
.location-section {
    background: var(--teal-dark);
    color: var(--white);
    padding: 78px 0;
}

.sustainability-grid {
    align-items: center;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
}

.sustainability-grid h2,
.sustainability-grid p,
.location-grid h2,
.location-grid p,
.location-grid .section-kicker {
    color: var(--white);
}

.sustainability-grid ul {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    color: var(--white);
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.9;
    list-style: none;
    margin: 0;
    padding: 28px 32px;
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.event-list span {
    border: 1px solid var(--line);
    color: var(--soft-ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    text-transform: uppercase;
}

.photo-stack {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.photo-stack img {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.photo-stack img:first-child {
    grid-row: span 2;
}

.location-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: 1.1fr 0.8fr;
}

.location-grid figure {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.location-grid img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.visit-card {
    background: var(--white);
    color: var(--ink);
    padding: 28px;
}

.visit-card h3 {
    margin-top: 0;
}

.press-section {
    background: var(--cream);
}

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

.press-grid article {
    padding: 0 0 22px;
}

.press-grid img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.press-grid h3,
.press-grid p {
    padding-left: 22px;
    padding-right: 22px;
}

.dealer-section {
    background: var(--white);
}

.checkout-section {
    background: var(--cream);
    padding: 78px 0;
}

.checkout-grid {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 700px) minmax(300px, 360px);
    justify-content: center;
}

.checkout-form,
.order-summary {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(31, 31, 31, 0.08);
    padding: 28px;
}

.checkout-form {
    display: grid;
    gap: 24px;
}

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

.checkout-steps span {
    border-bottom: 3px solid var(--line);
    color: var(--muted);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.checkout-steps span.is-active {
    border-color: var(--teal);
    color: var(--ink);
}

.checkout-steps span.is-complete {
    border-color: var(--gold);
    color: var(--soft-ink);
}

.checkout-step-panel {
    display: grid;
    gap: 18px;
    min-height: 295px;
}

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

.checkout-fields label,
.choice-row label {
    color: var(--soft-ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.checkout-fields label {
    display: grid;
    gap: 7px;
}

.checkout-fields input {
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    min-height: 46px;
    padding: 10px 12px;
}

.checkout-fields .span-2 {
    grid-column: 1 / -1;
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.choice-row label {
    align-items: center;
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    gap: 8px;
    min-height: 46px;
    padding: 10px 14px;
}

.checkout-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
}

.checkout-actions .solid-button {
    cursor: pointer;
}

.checkout-actions .teal-link {
    background: var(--white);
    cursor: pointer;
    margin-top: 0;
}

.checkout-status {
    margin: 0;
    min-height: 1.5em;
}

.checkout-status.success {
    color: #1f7a57;
}

.checkout-status.error {
    color: #a33a26;
}

.summary-item {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 4px;
    padding: 13px 0;
}

.review-items {
    border: 1px solid var(--line);
    margin-top: 0;
    padding: 0 14px;
}

.review-block {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
}

.review-block h2 {
    color: var(--ink);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.review-block p {
    color: var(--soft-ink);
    margin: 0;
    white-space: pre-line;
}

.confirmation-layout {
    display: grid;
    justify-content: center;
}

.confirmation-panel {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(31, 31, 31, 0.08);
    max-width: 720px;
    padding: 36px;
    width: 100%;
}

.confirmation-panel h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 8px 0 12px;
    overflow-wrap: anywhere;
}

.confirmation-panel p {
    color: var(--soft-ink);
    font-size: 17px;
    margin: 0;
}

.confirmation-lines {
    margin-top: 28px;
}

.confirmation-action {
    display: inline-block;
    margin-top: 28px;
}

.continue-shopping-link {
    display: inline-block;
    margin-top: 20px;
}

.summary-item strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.summary-item span {
    color: var(--muted);
    font-size: 13px;
}

.summary-lines {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.summary-lines div {
    align-items: center;
    color: var(--soft-ink);
    display: flex;
    justify-content: space-between;
}

.summary-lines strong {
    color: var(--ink);
}

.summary-total {
    border-top: 1px solid var(--line);
    font-size: 18px;
    padding-top: 12px;
}

.hidden {
    display: none !important;
}

.dealer-grid {
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
}

.dark-outline {
    border-color: var(--teal);
    color: var(--teal);
    display: inline-block;
    margin-top: 22px;
}

.cart-backdrop {
    background: rgba(20, 28, 34, 0.32);
    inset: 0;
    position: fixed;
    z-index: 30;
}

.cart-panel {
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 390px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 150ms ease;
    width: calc(100vw - 28px);
    z-index: 40;
}

.cart-panel.is-open {
    transform: translateX(0);
}

.cart-panel-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 18px;
}

.cart-panel-header h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.cart-panel-header button,
.cart-item button {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    cursor: pointer;
    min-height: 38px;
    min-width: 38px;
}

.cart-items {
    flex: 1;
    overflow: auto;
    padding: 10px 18px;
}

.cart-item {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr auto;
    padding: 12px 0;
}

.cart-item strong,
.cart-item span {
    display: block;
}

.cart-item strong {
    color: var(--ink);
}

.cart-item span {
    color: var(--muted);
    font-size: 13px;
}

.cart-summary {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    padding: 18px;
}

.cart-summary div {
    align-items: center;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
}

.checkout-message {
    color: #1f7a57;
    margin: 0;
    min-height: 1.4em;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.76);
    padding: 30px 0;
}

.footer-grid {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.site-footer strong {
    color: var(--white);
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
}

.site-footer p {
    margin: 4px 0;
}

@media (max-width: 1040px) {
    .site-container,
    .hero-content {
        width: 88%;
    }

    .header-inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px 20px;
        padding: 10px 0;
    }

    .site-nav {
        flex-basis: 100%;
        justify-content: flex-start;
        order: 3;
        overflow-x: auto;
        padding-bottom: 3px;
    }
}

@media (max-width: 760px) {
    .site-container,
    .hero-content {
        width: calc(100% - 32px);
    }

    .logo-link img {
        height: 42px;
        width: 152px;
    }

    .hero-section {
        min-height: 500px;
        padding: 58px 0;
    }

    .page-hero {
        min-height: 340px;
        padding: 48px 0;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 46px;
    }

    .white-section,
    .store-section,
    .press-section,
    .dealer-section,
    .checkout-section,
    .sustainability-section,
    .location-section {
        padding: 52px 0;
    }

    .intro-grid,
    .split-section,
    .dealer-grid,
    .checkout-grid,
    .sustainability-grid,
    .location-grid,
    .store-controls,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-copy h2,
    .section-title h2,
    .split-section h2,
    .location-grid h2,
    .sustainability-grid h2,
    .dealer-grid h2 {
        font-size: 36px;
    }

    .gallery-grid,
    .reviews-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .photo-stack {
        grid-template-columns: 1fr;
    }

    .photo-stack img:first-child {
        grid-row: auto;
    }

    .store-card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .checkout-fields {
        grid-template-columns: 1fr;
    }

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

    .checkout-step-panel {
        min-height: 0;
    }
}

.store-card-media { position: relative; overflow: hidden; }
.store-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.store-card-media.is-empty .store-card-initials,
.store-card-media:not(:has(.store-card-photo)) .store-card-initials { display: flex; }
