/* ============================================
   BAZIS — Page-specific styles
   (communities, about, contact)
   ============================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--bg);
    padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem);
    border-bottom: 1px solid var(--line);
}
.page-hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 22ch;
}
.page-hero__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.page-hero__sub {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.5;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.page-hero__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 0.5rem;
}
.chip {
    padding: 0.7rem 1.3rem;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    transition: all .3s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* nav active */
.nav__links a.is-active { color: var(--bronze); }

/* ===== PROJECTS SECTION ===== */
.proj-section {
    background: var(--bg);
    padding: clamp(4rem, 10vh, 7rem) 0;
}
.proj-section--alt { background: var(--bg-warm); }

.proj-section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 2rem;
}
.proj-section__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.proj-section__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.proj-section__count {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== PROJECT BLOCK ===== */
.projects { display: flex; flex-direction: column; gap: 5rem; }
.project {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    transition: opacity .35s, transform .35s;
}
.project--reverse { grid-template-columns: 1fr 1.4fr; }
.project--reverse .project__media { order: 2; }

.project__media {
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.project__art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.project__art::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 60px);
}
.project__art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(176,141,87,0.22), transparent 60%);
}
.project__art span {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1;
    color: rgba(245, 241, 234, 0.92);
    z-index: 2;
    padding: 1rem;
    letter-spacing: -0.01em;
}
.project__art em {
    color: var(--bronze);
    font-style: italic;
    font-variation-settings: "opsz" 144;
}

.project__art--01 { background: linear-gradient(160deg, #2a3a30 0%, #1a2520 70%, #0c1410 100%); }
.project__art--02 { background: linear-gradient(160deg, #3a2a25 0%, #251914 70%, #160e0a 100%); }
.project__art--03 { background: linear-gradient(160deg, #2d2e3a 0%, #1c1d28 70%, #0e0f17 100%); }
.project__art--04 { background: linear-gradient(160deg, #3a3324 0%, #261f15 70%, #15110a 100%); }
.project__art--05 { background: linear-gradient(160deg, #2a3438 0%, #1a2227 70%, #0d1216 100%); }
.project__art--06 { background: linear-gradient(160deg, #392a3a 0%, #261a28 70%, #160e17 100%); }

.project__body { padding: 1rem 0; }
.project__num {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 1.2rem;
}
.project__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.project__loc {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.project__desc {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 460px;
}

.project__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}
.project__meta div { display: flex; flex-direction: column; gap: 0.3rem; }
.project__meta dt {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.project__meta dd {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1rem;
    color: var(--ink);
}

/* ===== ARCHIVE GRID ===== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.arch {
    transition: transform .5s var(--ease);
}
.arch:hover { transform: translateY(-4px); }
.arch__art {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    position: relative;
}
.arch__art::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 50px);
    opacity: 0.6;
}
.arch__art span {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.05;
    color: rgba(245, 241, 234, 0.92);
    z-index: 2;
    position: relative;
}
.arch__art em { color: var(--bronze); font-style: italic; font-variation-settings: "opsz" 144; }

.arch__art--a { background: linear-gradient(160deg, #1f2a35 0%, #0c1219 100%); }
.arch__art--b { background: linear-gradient(160deg, #2a2520 0%, #15110d 100%); }
.arch__art--c { background: linear-gradient(160deg, #2d2333 0%, #170f1c 100%); }
.arch__art--d { background: linear-gradient(160deg, #1f3030 0%, #0c1717 100%); }
.arch__art--e { background: linear-gradient(160deg, #312a1c 0%, #18130a 100%); }
.arch__art--f { background: linear-gradient(160deg, #1a2630 0%, #0a131a 100%); }
.arch__art--g { background: linear-gradient(160deg, #2a3025 0%, #131711 100%); }
.arch__art--h { background: linear-gradient(160deg, #2a201a 0%, #150e09 100%); }

.arch__body { padding: 0 0.2rem; }
.arch__body h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.arch__loc {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.arch__year {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--stone);
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: clamp(4rem, 12vh, 8rem) 0;
}
.about-section--dark {
    background: var(--ink);
    color: var(--bg);
}
.about-section--dark .about__title { color: var(--bg); }
.about-section--dark .about__lead { color: rgba(245, 241, 234, 0.78); }
.about-section--dark .eyebrow { color: rgba(245, 241, 234, 0.55); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
.about__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 2rem;
}
.about__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.about__lead {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}
.about__body p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 1rem;
    max-width: 60ch;
}
.about-section--dark .about__body p { color: rgba(245, 241, 234, 0.7); }

/* Timeline */
.timeline {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
}
.timeline__row {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: padding-left .4s var(--ease);
}
.timeline__row:hover { padding-left: 1rem; }
.timeline__year {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.6rem;
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
}
.timeline__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
}
.timeline__desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.about-section--dark .timeline { border-color: rgba(245, 241, 234, 0.18); }
.about-section--dark .timeline__row { border-color: rgba(245, 241, 234, 0.18); }
.about-section--dark .timeline__title { color: var(--bg); }
.about-section--dark .timeline__desc { color: rgba(245, 241, 234, 0.65); }

/* People */
.people {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.person__avatar {
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #2a2520 0%, #15110d 100%);
    border-radius: 4px;
    margin-bottom: 1rem;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.person__avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(176,141,87,0.2), transparent 60%);
}
.person__avatar span {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 4rem;
    color: rgba(245, 241, 234, 0.6);
    z-index: 1;
}
.person__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.person__role {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: clamp(4rem, 12vh, 8rem) 0;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: start;
}
.contact__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.contact__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.contact__lead {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 440px;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}
.contact-method {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact-method__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.contact-method__value {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--ink);
    transition: color .3s;
}
a.contact-method__value:hover { color: var(--bronze); }
.contact-method__sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--stone);
}

/* Form */
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1.6rem;
    background: var(--paper);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 4px;
}
.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form__field--full { grid-column: 1 / -1; }
.form__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--ink);
    transition: border-color .3s;
    outline: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--ink);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%236b6356' stroke-width='1.4' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    padding-right: 1.4rem;
    cursor: pointer;
}
.form__check {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.form__check input {
    margin-top: 0.2rem;
    accent-color: var(--bronze);
}
.form__submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Map */
.map {
    margin-top: 3rem;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, #1a1612 0%, #0d0907 100%),
        repeating-linear-gradient(45deg, #1a1612 0px, #1a1612 14px, #0d0907 14px, #0d0907 28px);
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 241, 234, 0.7);
    border: 1px solid var(--line);
}
.map::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 16px; height: 16px;
    background: var(--bronze);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 6px rgba(176, 141, 87, 0.25),
        0 0 0 18px rgba(176, 141, 87, 0.1);
    animation: pulse 2.4s ease-in-out infinite;
}
.map__pin {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--paper);
    color: var(--ink);
    padding: 0.85rem 1.2rem;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
}
.map__pin strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

/* ===== COMMUNITY DETAIL PAGE ===== */
.detail-hero {
    position: relative;
    min-height: 78vh;
    min-height: 78dvh;
    background: var(--dark);
    color: var(--bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(4rem, 10vh, 8rem) var(--gutter) clamp(2.5rem, 6vh, 5rem);
}
.detail-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1a1612, #0a0908 60%, #1f1611);
}
.detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: grayscale(8%) contrast(1.05);
}
.detail-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.detail-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
}
.detail-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.7);
    margin-bottom: 2.5rem;
    transition: color .3s, gap .3s;
}
.detail-hero__back:hover { color: var(--bronze); gap: 0.8rem; }

.detail-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.85);
    background: rgba(176, 141, 87, 0.15);
    border: 1px solid rgba(176, 141, 87, 0.35);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.detail-hero__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}
.detail-hero__title em {
    color: var(--bronze);
    font-variation-settings: "opsz" 144;
    padding-left: 0.2em;
}
.detail-hero__loc {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 241, 234, 0.75);
}

/* Intro */
.detail-intro {
    background: var(--bg);
    padding: clamp(5rem, 12vh, 9rem) 0;
}
.detail-intro__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
.detail-intro__lead {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.35;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}
.detail-intro__body p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 1rem;
    max-width: 60ch;
}

/* Specs strip */
.detail-specs {
    background: var(--bg-warm);
    padding: clamp(3rem, 8vh, 5rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.detail-specs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
}
.detail-specs__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.detail-specs__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.detail-specs__value {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.005em;
}

/* Detail CTA */
.detail-cta {
    background: var(--bg);
    padding: clamp(4rem, 10vh, 7rem) 0;
    text-align: center;
}
.detail-cta__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.detail-cta__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.detail-cta__sub {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--muted);
    margin: 0 auto 2.5rem;
    max-width: 420px;
}

/* Related */
.detail-related {
    background: var(--bg);
    padding: clamp(4rem, 10vh, 7rem) 0;
    border-top: 1px solid var(--line);
}
.detail-related__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--line);
}
.detail-related__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.detail-related__title em { color: var(--bronze); font-variation-settings: "opsz" 144; }
.detail-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

/* ===== RESPONSIVE PAGE ===== */
@media (max-width: 1024px) {
    .project,
    .project--reverse {
        grid-template-columns: 1fr;
    }
    .project--reverse .project__media { order: 1; }
    .archive-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .timeline__row { grid-template-columns: 90px 1fr; }
    .timeline__desc { grid-column: 1 / -1; padding-top: 0.4rem; }
    .people { grid-template-columns: repeat(2, 1fr); }
    .detail-intro__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .detail-specs__grid { grid-template-columns: repeat(2, 1fr); }
    .detail-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
    .archive-grid { grid-template-columns: 1fr; }
    .form { grid-template-columns: 1fr; gap: 1rem 1.4rem; padding: 1.6rem; }
    .people { grid-template-columns: 1fr; }
    .proj-section__head { flex-direction: column; align-items: start; gap: 1rem; }
    .project__meta { grid-template-columns: 1fr; }
    .detail-hero { min-height: 70vh; min-height: 70dvh; }
    .detail-hero__back { margin-bottom: 1.5rem; }
    .detail-specs__grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .detail-related__grid { grid-template-columns: 1fr; }
    .detail-related__head { flex-direction: column; align-items: start; gap: 0.8rem; }

    .map { aspect-ratio: 4 / 3; }
    .contact__methods { padding-top: 1.5rem; }
    .page-hero__filters { gap: 0.4rem; }
    .chip { padding: 0.6rem 1rem; font-size: 11px; }
}
@media (max-width: 420px) {
    .detail-specs__grid { grid-template-columns: 1fr; }
}
