:root {
    --orange: #e8630a;
    --orange-light: #f2894a;
    --orange-dark: #c24e06;
    --cream: #f5f1e8;
    --taupe: #c9a98c;
    --ink: #0d0d0d;
    --ink-soft: #161616;

    --bg: #f5f1e8;
    --bg-sunken: #ece5d6;
    --surface: #ffffff;
    --text: #1a1712;
    --text-muted: rgba(26, 23, 18, 0.62);
    --line: rgba(13, 13, 13, 0.12);
    --font-display: 'Anton', 'Noto Sans Armenian', 'Archivo Black', Impact, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body), serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-display), serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.02;
    margin: 0;
    text-transform: uppercase;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

/* Shared button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body), serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    transition: background 0.18s ease, transform 0.18s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--orange-light);
}

.btn:active {
    background: var(--orange-dark);
    transform: translateY(1px);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn--outline:hover {
    background: var(--bg-sunken);
    color: var(--text);
}

.btn--outline:active {
    background: var(--bg-sunken);
    color: var(--text);
}

[class*="-balloon"][class*="__layout"],
[class*="-balloon"]:not([class*="__"]) {
    border-radius: 14px !important;
}

[class*="-balloon__content"] {
    padding: 0 !important;
    color: var(--text);
    border-radius: 14px;
    overflow: hidden;
}

[class*="-balloon__layout"] {
    border-radius: 14px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25) !important;
}

[class*="-balloon__tail"] > * {
    background: var(--surface) !important;
}

.map-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    background: var(--bg-sunken);
}

@media (orientation: landscape) {
    .map-section {
        height: 88vh;
    }
}

@media (min-width: 1024px) {
    .map-section {
        height: 90vh;
    }
}

#map {
    width: 100%;
    height: 100%;
    background: var(--bg-sunken);
}

.map-brand {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.5rem);
    left: clamp(0.75rem, 2vw, 1.5rem);
    z-index: 500;
    display: flex;
    flex-direction: column;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-left: 3px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.map-brand__mark {
    font-family: var(--font-display), serif;
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text);
}

.map-brand__sub {
    font-size: clamp(0.65rem, 1.6vw, 0.85rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-top: 0.25rem;
}

.lang-switch {
    position: fixed;
    top: clamp(0.75rem, 2vw, 1.5rem);
    right: clamp(0.75rem, 2vw, 1.5rem);
    z-index: 1200;
    display: flex;
    gap: 0.35rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.lang-switch__btn {
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body), serif;
    font-weight: 600;
    font-size: clamp(0.7rem, 1.6vw, 0.8rem);
    letter-spacing: 0.5px;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    transition: background 0.18s ease, color 0.18s ease;
}

.lang-switch__btn:hover {
    color: var(--text);
    background: var(--bg-sunken);
}

.lang-switch__btn.is-active {
    background: var(--orange);
    color: #fff;
}

.popup {
    position: relative;
    color: var(--text);
}

.popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: var(--bg-sunken);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background 0.18s ease, color 0.18s ease;
}

.popup__close:hover {
    background: var(--orange);
    color: #fff;
}

.popup__body {
    padding: 0.85rem 0.95rem 0.95rem;
}

.popup__name {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.35rem;
    padding-right: 1.9rem;
}

.popup__desc {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.popup__row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.3rem 0;
    font-size: 0.85rem;
    word-break: break-word;
}

.popup__row svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.popup__row a {
    color: var(--text);
    text-decoration: none;
}

.popup__row a:hover {
    color: var(--orange-dark);
}

.popup__hours {
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
}

.popup__hours-title {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.35rem;
}

.popup__hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
    padding: 0.12rem 0;
}

.popup__hours-row span:last-child {
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.popup__show-btn {
    margin-top: 0.85rem;
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
}

.gallery {
    position: relative;
    width: 100%;
    background: var(--bg-sunken);
}

.gallery__img {
    width: 100%;
    height: clamp(130px, 28vh, 180px);
    object-fit: cover;
}

.gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(13, 13, 13, 0.55);
    color: #fff;
    transition: background 0.18s ease;
}

.gallery__nav:hover {
    background: var(--orange);
    color: #fff;
}

.gallery__nav--prev {
    left: 8px;
}

.gallery__nav--next {
    right: 8px;
}

.gallery__dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.gallery__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    transition: background 0.18s ease, transform 0.18s ease;
}

.gallery__dot.is-active {
    background: var(--orange);
    transform: scale(1.25);
}

.stores {
    background: var(--bg);
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.stores__head {
    max-width: 720px;
    margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.stores__head h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--text);
}

.stores__head h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background: var(--orange);
    margin-top: 0.75rem;
}

.stores__head p {
    color: var(--text-muted);
    margin: 1rem 0 0;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.stores__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.store-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* PARKED alongside .gallery — no card currently renders a media block. */
.store-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.store-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1;
}

.store-card__name {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.store-card__desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0 0 0.85rem;
}

.store-card__row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.store-card__row svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.store-card__row a {
    text-decoration: none;
}

.store-card__row a:hover {
    color: var(--orange-dark);
}

.store-card__hours {
    margin: 0.85rem 0 1.1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.store-card__hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    padding: 0.15rem 0;
    color: var(--text-muted);
}

/* See .popup__hours-row — tabular figures keep the time column aligned. */
.store-card__hours-row span:last-child {
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.store-card__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.store-card__cta {
    font-size: 0.85rem;
    padding: 0.65rem 1.1rem;
}

.about {
    background: var(--surface);
    color: var(--text);
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about__eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-dark);
    margin: 0 0 1rem;
}

.about__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--text);
}

.about__copy {
    max-width: 640px;
    margin: 1.5rem auto 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: #4a4438;
}

.about__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 3.5rem);
    margin-top: clamp(2rem, 5vw, 3.5rem);
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__stat-value {
    font-family: var(--font-display), serif;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: var(--orange);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.about__stat-label {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b6355;
}

.footer {
    background: var(--bg-sunken);
    color: var(--text);
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 5vw, 4rem) 1.75rem;
    border-top: 1px solid var(--line);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__brand {
    display: flex;
    flex-direction: column;
}

.footer__mark {
    font-family: var(--font-display), serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.footer__sub {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
}

.footer__social {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--text);
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer__social:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer__legal {
    max-width: 1100px;
    margin: 1.75rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
