/* =====================================================================
   Novia Cielo — stylesheet
   Written with CSS logical properties, so the same rules serve the
   left-to-right (English, Spanish) and right-to-left (Persian) layouts.
   ===================================================================== */

:root {
    --gold: #d4af7d;
    --gold-dark: #b8935c;
    --navy: #153846;
    --navy-light: #1d4a5c;
    --mist: #d7dfe2;
    --paper: #f7f9fa;
    --white: #fff;
    --ink: #23323a;
    --ink-soft: #5c6b74;
    --line: #e3e9ec;

    --wrap: 1200px;
    --wrap-narrow: 760px;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(21, 56, 70, .10);
    --shadow-lg: 0 20px 50px rgba(21, 56, 70, .16);

    --step: clamp(3rem, 6vw, 5.5rem);

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-fa: "Vazirmatn", "IRANSans", "Segoe UI", Tahoma, system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

html[dir="rtl"] body { font-family: var(--font-fa); line-height: 1.9; }

img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .6em; font-weight: 700; color: var(--navy); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; margin: -1px;
    padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; inset-block-start: -60px; inset-inline-start: 1rem; z-index: 100;
    background: var(--navy); color: var(--white); padding: .75rem 1.25rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-decoration: none;
    transition: inset-block-start .2s;
}
.skip-link:focus { inset-block-start: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); }

/* --- top bar ------------------------------------------------------- */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: .82rem; }
.topbar__inner { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; align-items: center; justify-content: space-between; min-height: 42px; }
.topbar__contacts { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; }
.topbar__contacts a { text-decoration: none; }
.topbar__contacts a:hover { color: var(--gold); }
.topbar__label { color: rgba(255, 255, 255, .5); margin-inline-end: .35rem; }
.topbar__email { display: none; }

.langs { display: flex; gap: .25rem; }
.langs__item {
    padding: .2rem .6rem; border-radius: 999px; text-decoration: none;
    font-weight: 600; letter-spacing: .02em;
}
.langs__item:hover { color: var(--gold); }
.langs__item.is-current { background: var(--gold); color: var(--navy); }

/* --- header -------------------------------------------------------- */
.header {
    position: sticky; inset-block-start: 0; z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(1.4) blur(8px);
    border-block-end: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.header__logo { display: flex; align-items: center; text-decoration: none; font-weight: 800; color: var(--navy); }
.header__logo img { width: auto; height: 37px; }

.nav { margin-inline-start: auto; }
.nav__list { display: flex; gap: .25rem; }
.nav__link {
    display: block; padding: .55rem .9rem; border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; color: var(--navy);
}
.nav__link:hover { background: var(--paper); color: var(--gold-dark); }
.nav__link.is-active { color: var(--gold-dark); }
.nav__link.is-active::after {
    content: ""; display: block; height: 2px; margin-block-start: 4px;
    background: var(--gold); border-radius: 2px;
}

.nav-toggle {
    display: none; margin-inline-start: auto; width: 44px; height: 44px;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--white); cursor: pointer; padding: 0;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
    display: block; width: 20px; height: 2px; background: var(--navy);
    margin-inline: auto; border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; }
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: rotate(-45deg); }

/* --- hero ---------------------------------------------------------- */
.hero { position: relative; background: var(--navy); }
.hero__media { position: absolute; inset: 0; }
.hero__media picture, .hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(21, 56, 70, .82) 20%, rgba(21, 56, 70, .35) 75%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(4rem, 12vw, 9rem); }
.hero__title {
    margin: 0; max-width: 22ch; color: var(--white);
    font-size: clamp(1.9rem, 5vw, 3.4rem); line-height: 1.22;
}
.hero__line { display: block; }
.hero__line:first-child { color: var(--gold); }

/* --- generic section ------------------------------------------------ */
.section { padding-block: var(--step); }
.section--intro { background: var(--paper); }
.section__head { max-width: 58ch; margin-block-end: 2.5rem; }
.section__title { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.section__title--center { text-align: center; margin-inline: auto; }
.section__title--light { color: var(--white); }
.section__actions { margin-block-start: 1.75rem; margin-block-end: 0; }
.section__actions--center { text-align: center; }

.eyebrow {
    margin: 0 0 .5rem; font-weight: 700; letter-spacing: .04em;
    color: var(--gold-dark); font-size: .92rem;
}

.prose-block { max-width: 70ch; }
.prose { color: var(--ink-soft); }
.prose--center { margin-inline: auto; text-align: center; }
.prose h2, .prose h3 { color: var(--navy); margin-block-start: 1.6em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-inline-start: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-block-end: .4em; }
.prose a { color: var(--gold-dark); }
.prose img { border-radius: var(--radius); margin-block: 1.5rem; }
.prose strong { color: var(--navy); }
.prose blockquote {
    margin: 1.5rem 0; padding-inline-start: 1.25rem;
    border-inline-start: 4px solid var(--gold); color: var(--navy); font-style: italic;
}

/* --- buttons -------------------------------------------------------- */
.btn {
    display: inline-block; padding: .8rem 1.6rem; border-radius: 999px;
    background: var(--gold); color: var(--navy); font-weight: 700;
    text-decoration: none; border: 2px solid var(--gold);
    box-shadow: 0 10px 25px rgba(21, 56, 70, .15);
    transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn--light { background: var(--white); border-color: var(--white); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--mist); box-shadow: none; }
.btn--ghost:hover { border-color: var(--gold); background: var(--gold); }
.btn--block { display: block; text-align: center; }
.btn--submit { border: 0; cursor: pointer; font-size: 1rem; font-family: inherit; }

/* --- feature blocks -------------------------------------------------- */
.feature__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.25rem; margin-block-start: 1.5rem; }
.feature__list-item { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--navy); }
.feature__icon { width: 40px; height: 40px; object-fit: contain; flex: 0 0 auto; }
.feature__media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.feature__figure { margin: 0; }
.feature__figure img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.feature__figure:nth-child(even) { margin-block-start: 2rem; }

/* --- call to action -------------------------------------------------- */
.cta {
    background: var(--navy) center / cover no-repeat;
    background-blend-mode: multiply; color: var(--white);
    padding-block: var(--step); text-align: center;
}
.cta__inner { display: grid; gap: 1.75rem; justify-items: center; }
.cta__title { color: var(--white); font-size: clamp(1.4rem, 3.4vw, 2.4rem); max-width: 26ch; margin: 0; }
.cta__words { color: var(--gold); border-block-end: 3px solid var(--gold); padding-block-end: 2px; }
.cta__text { display: block; margin-block-start: .5rem; font-weight: 500; font-size: .85em; }

/* --- cards ----------------------------------------------------------- */
.card-grid {
    display: grid; gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__link { display: block; text-decoration: none; color: inherit; height: 100%; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.25rem; }
.card__title { font-size: 1.06rem; margin-block-end: .4rem; }
.card__excerpt { color: var(--ink-soft); font-size: .92rem; margin-block-end: .75rem; }
.card__meta { font-size: .8rem; color: var(--ink-soft); margin: 0; }
.card__dot { margin-inline: .4rem; }
.card__location { color: var(--ink-soft); font-size: .9rem; margin-block-end: .6rem; }
.card__specs { display: flex; flex-wrap: wrap; gap: .35rem 1rem; font-size: .85rem; color: var(--ink-soft); margin-block-end: .6rem; }
.card__specs strong { color: var(--navy); }
.card__price { margin: 0; font-weight: 800; color: var(--gold-dark); font-size: 1.1rem; }

.badge {
    position: absolute; inset-block-start: .75rem; inset-inline-start: .75rem;
    background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 700;
    padding: .25rem .7rem; border-radius: 999px;
}

/* --- values / steps --------------------------------------------------- */
.values { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); counter-reset: v; }
.values__item {
    background: var(--paper); border-radius: var(--radius); padding: 1.75rem;
    border-inline-start: 5px solid var(--gold);
}
.values__title { color: var(--gold-dark); font-size: 1.1rem; }
.values__text { margin: 0; color: var(--ink-soft); }

.process { background: var(--navy) center / cover no-repeat; background-blend-mode: multiply; color: rgba(255, 255, 255, .85); }
.process__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.steps { display: grid; gap: 1.5rem; }
.steps__item { display: flex; gap: 1rem; align-items: flex-start; }
.steps__number {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 800;
    background: var(--gold); color: var(--navy);
}
.steps__title { color: var(--white); font-size: 1.05rem; margin-block-end: .25rem; }
.steps__text { margin: 0; font-size: .95rem; }
.process__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* --- services --------------------------------------------------------- */
.section--service:nth-of-type(even) { background: var(--paper); }
.service { display: grid; gap: 2rem; }
.service__head { max-width: 62ch; }
.service__list { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.service__item {
    display: flex; align-items: center; gap: .75rem; font-weight: 600; color: var(--navy);
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: .9rem 1.1rem;
}
.service__icon { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }

/* --- partners / testimonials ------------------------------------------- */
.section--partners { background: var(--paper); text-align: center; }
.partners { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; justify-content: center; }
.partners__item img { max-height: 64px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.partners__item img:hover { filter: none; opacity: 1; }

.testimonials { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.testimonials__item { background: var(--paper); border-radius: var(--radius); padding: 1.75rem; }
.testimonials__quote { margin: 0; color: var(--navy); font-size: 1.02rem; }
.testimonials__quote::before { content: "“"; color: var(--gold); font-size: 3rem; line-height: 0; vertical-align: -.35em; margin-inline-end: .15em; }
.testimonials__author { margin-block-start: 1rem; color: var(--ink-soft); font-size: .88rem; font-weight: 600; }

.section--posts { background: var(--navy) center / cover no-repeat; background-blend-mode: multiply; }
.section--posts .section__title, .section--posts .eyebrow { color: var(--white); }
.section--posts .eyebrow { color: var(--gold); }
.section--posts .section__head { margin-inline: auto; text-align: center; }

/* --- page head / articles ----------------------------------------------- */
.page-head { background: var(--paper); padding-block: clamp(2.5rem, 6vw, 4.5rem); border-block-end: 1px solid var(--line); }
.page-head__title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-block-end: .3rem; }
.page-head__intro { color: var(--ink-soft); max-width: 62ch; margin: 0; }

.breadcrumbs { font-size: .85rem; margin-block-end: .75rem; }
.breadcrumbs a { color: var(--gold-dark); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }

.article__head { background: var(--paper); padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
.article__title { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.article__meta { color: var(--ink-soft); font-size: .88rem; margin: 0; }
.article__cover { margin: 0; background: linear-gradient(var(--paper) 50%, var(--white) 50%); }
.article__cover img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-height: 460px; object-fit: cover; }
.article__body { padding-block: 2.5rem; font-size: 1.05rem; }
.article__back { padding-block-end: var(--step); }
.section--related { background: var(--paper); }

/* --- property detail ------------------------------------------------------ */
.listing__subhead { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin: .5rem 0 0; }
.listing__subhead .badge { position: static; }
.listing__location { color: var(--ink-soft); }
.listing__cover { margin: 0; padding-block-start: 2rem; }
.listing__cover img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-height: 520px; object-fit: cover; }
.listing__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); padding-block: var(--step); }
.listing__main .section__title { font-size: 1.35rem; margin-block-start: 2rem; }
.listing__main .section__title:first-child { margin-block-start: 0; }

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); }
.gallery__item img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .2s; }
.gallery__item a:hover img { transform: scale(1.03); }

.fact-box { background: var(--paper); border-radius: var(--radius); padding: 1.75rem; position: sticky; inset-block-start: 92px; }
.fact-box__title { font-size: 1.15rem; }
.fact-box__subtitle { font-size: .95rem; margin-block: 1.5rem .75rem; }
.fact-box__list { margin: 0 0 1.5rem; }
.fact-box__list > div { display: flex; justify-content: space-between; gap: 1rem; padding-block: .5rem; border-block-end: 1px solid var(--line); }
.fact-box__list dt { color: var(--ink-soft); font-size: .9rem; }
.fact-box__list dd { margin: 0; font-weight: 700; color: var(--navy); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-block-end: 1.5rem; }
.tags__item { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; color: var(--navy); }

/* --- contact ---------------------------------------------------------------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.form__field { display: block; }
.form__label { display: block; font-weight: 600; color: var(--navy); margin-block-end: .35rem; font-size: .92rem; }
.form__label em { font-style: normal; font-weight: 400; color: var(--ink-soft); font-size: .85em; }
.form input, .form select, .form textarea {
    width: 100%; padding: .75rem .9rem; font: inherit; color: var(--ink);
    background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius-sm);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(212, 175, 125, .3); }
.form textarea { resize: vertical; }
.form__error { display: block; color: #b3261e; font-size: .85rem; margin-block-start: .3rem; }
.form__trap { position: absolute; inset-inline-start: -9999px; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-block-end: 1.5rem; }
.alert--success { background: #e7f6ec; color: #10653a; border: 1px solid #b7e2c6; }
.alert--error { background: #fdecea; color: #9c1c13; border: 1px solid #f5c2bd; }

.contact-details { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.contact-details__title { font-size: 1.05rem; color: var(--gold-dark); }
.contact-details__list { display: grid; gap: .5rem; }
.contact-details__list a { text-decoration: none; }
.contact-details__list a:hover { color: var(--gold-dark); }
.contact-details__label { display: block; font-size: .78rem; color: var(--ink-soft); }
.contact-details__address { font-style: normal; color: var(--ink-soft); margin-block-end: 1rem; }
.section--contact-details { background: var(--paper); }

/* --- pagination / misc -------------------------------------------------------- */
.pagination { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-block-start: 3rem; flex-wrap: wrap; }
.pagination__list { display: flex; gap: .35rem; }
.pagination__link {
    display: grid; place-items: center; min-width: 40px; height: 40px; padding-inline: .75rem;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    text-decoration: none; font-weight: 600; color: var(--navy);
}
.pagination__link:hover { border-color: var(--gold); }
.pagination__link.is-current { background: var(--gold); border-color: var(--gold); }

.empty { color: var(--ink-soft); text-align: center; padding-block: 3rem; }
.error-code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; color: var(--mist); line-height: 1; margin: 0; }
.section--error { text-align: center; }
.section--error .page-head__intro { margin-inline: auto; }

/* --- footer ---------------------------------------------------------------------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .78); padding-block-start: var(--step); }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); padding-block-end: 3rem; }
.footer__title { color: var(--white); font-size: 1rem; margin-block-end: 1rem; }
.footer__links { display: grid; gap: .5rem; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--gold); }
.footer__logo { margin-block-end: 1rem; }
.footer__tagline { font-size: .9rem; max-width: 42ch; }
.footer__address { font-style: normal; font-size: .88rem; margin-block-start: 1rem; color: rgba(255, 255, 255, .6); }
.footer__bar { border-block-start: 1px solid rgba(255, 255, 255, .12); padding-block: 1.25rem; font-size: .82rem; color: rgba(255, 255, 255, .55); }
.footer__bar p { margin: 0; }
.social { display: flex; gap: .75rem; flex-wrap: wrap; margin-block-start: 1.25rem; }
.social a {
    display: inline-block; padding: .35rem .9rem; border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px; text-decoration: none; font-size: .85rem;
}
.social a:hover { border-color: var(--gold); color: var(--gold); }

/* --- lightbox ------------------------------------------------------------------------ */
.lightbox {
    position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
    background: rgba(9, 22, 28, .92); padding: 2rem;
}
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox__close {
    position: absolute; inset-block-start: 1rem; inset-inline-end: 1rem;
    width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255, 255, 255, .15); color: var(--white); font-size: 1.5rem; line-height: 1;
}

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 620px) {
    .topbar__email { display: block; }
}

@media (min-width: 900px) {
    .feature__grid { grid-template-columns: 1fr 1fr; }
    .feature--image-start .feature__body { order: 2; }
    .process__inner { grid-template-columns: 1.15fr .85fr; }
    .listing__grid { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); }
    .service { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
}

@media (max-width: 899px) {
    .nav-toggle { display: block; }
    .nav {
        position: fixed; inset-block-start: 0; inset-inline-end: 0; z-index: 60;
        width: min(320px, 85vw); height: 100dvh; background: var(--white);
        padding: 5rem 1.5rem 2rem; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .25s ease;
        overflow-y: auto;
    }
    html[dir="rtl"] .nav { transform: translateX(-100%); }
    .nav.is-open { transform: none; }
    .nav__list { flex-direction: column; gap: .25rem; }
    .nav__link { padding: .85rem 1rem; font-size: 1.05rem; }
    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: ""; position: fixed; inset: 0; z-index: 55; background: rgba(9, 22, 28, .5);
    }
}

@media (max-width: 620px) {
    .feature__list { grid-template-columns: 1fr; }
    .feature__figure:nth-child(even) { margin-block-start: 0; }
    .topbar__contacts li:not(:first-child) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

@media print {
    .topbar, .header, .footer, .nav-toggle, .section__actions { display: none; }
    body { color: #000; }
}
