/* =========================================================
   MALKOV — Interior Design Studio
   Style: Editorial Atelier · warm neutrals + bronze accent
   Fonts: Cormorant Garamond (display) / Jost (UI & body)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces */
  --cream:        #F6F2EC;
  --paper:        #FBF9F5;
  --sand:         #ECE4D8;
  --ink:          #211E1B;
  --charcoal:     #2B2723;

  /* Text */
  --text:         #211E1B;
  --text-soft:    #5F564D;
  --text-muted:   #857A6E;
  --on-dark:      #F3EEE6;
  --on-dark-soft: #B9AE9F;

  /* Accent */
  --camel:        #C19A6B;
  --bronze:       #A6784E;
  --bronze-text:  #8A6240;
  --on-accent:    #211E1B;

  /* Lines */
  --border:       #E3DACE;
  --border-dark:  #3C372F;
  --border-strong:#D2C6B5;

  /* Feedback */
  --error:        #B4462F;
  --success:      #4B7B4E;

  /* Radius */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* Shadow (warm, restrained) */
  --sh-sm: 0 1px 2px rgba(45, 35, 22, .06);
  --sh-md: 0 14px 40px -18px rgba(45, 35, 22, .28);
  --sh-lg: 0 34px 80px -30px rgba(45, 35, 22, .40);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --dur: .3s;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --nav-h: 78px;

  /* Z-scale */
  --z-header: 100;
  --z-menu: 200;
  --z-scrim: 150;
  --z-cta: 90;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.ic { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7;
      stroke-linecap: round; stroke-linejoin: round; flex: none; }

.hide-mobile { display: none; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 300;
  background: var(--ink); color: var(--on-dark);
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */
.overline {
  font-size: .72rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--bronze-text);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem;
}
.overline::before {
  content: ""; width: 32px; height: 1px; background: var(--camel); flex: none;
}
.overline--light { color: var(--camel); }
.overline--light::before { background: var(--camel); }

.section__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--text);
}
.section--dark .section__title,
.section__head--light .section__title { color: var(--on-dark); }

.ital { font-style: italic; font-weight: 400; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6; color: var(--text-soft);
  font-weight: 400;
}

p + p { margin-top: 1rem; }
.about__text p, .section__intro { color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--on-dark);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .85rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  touch-action: manipulation; white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }

.btn--accent { --btn-bg: var(--camel); --btn-fg: var(--on-accent); }
.btn--accent:hover { --btn-bg: var(--bronze); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--on-dark);
  border: 1px solid rgba(243, 238, 230, .45);
}
.btn--ghost-light:hover { --btn-bg: rgba(243, 238, 230, .12); box-shadow: none; }

.btn--lg { min-height: 54px; padding: 1rem 2rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bronze-text); padding: .3rem 0;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-arrow .ic { width: 1.15em; height: 1.15em; }
.link-arrow:hover { gap: .95rem; color: var(--ink); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* transparent over hero */
.header[data-at-top="true"] { color: var(--on-dark); }
.header[data-at-top="true"] .nav__link { color: rgba(243, 238, 230, .85); }
.header[data-at-top="true"] .nav__link:hover { color: var(--on-dark); }
.header[data-at-top="true"] .header__phone { color: rgba(243, 238, 230, .9); }
.header[data-at-top="true"] .burger span { background: var(--on-dark); }

/* solid on scroll */
.header[data-at-top="false"] {
  background: rgba(246, 242, 236, .88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -24px rgba(45, 35, 22, .5);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.75rem;
  line-height: 1; letter-spacing: .02em; position: relative;
}
.brand__sup { font-size: .58em; vertical-align: super; color: var(--camel); }
.brand__name {
  font-weight: 500; letter-spacing: .34em; font-size: .82rem; text-transform: uppercase;
  padding-left: .5rem; border-left: 1px solid currentColor; line-height: 1;
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative; font-size: .84rem; font-weight: 400; letter-spacing: .04em;
  color: var(--text-soft); padding: .4rem 0; transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--camel); transition: width var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.header[data-at-top="true"] .nav__link.is-active { color: var(--on-dark); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1.1rem; }
.header__phone {
  display: none; align-items: center; gap: .5rem;
  font-size: .86rem; font-weight: 500; letter-spacing: .02em;
  color: var(--text); transition: color var(--dur) var(--ease);
}
.header__phone .ic { width: 1.05em; height: 1.05em; color: var(--camel); }
.header__cta { display: none; }

/* Burger */
.burger {
  width: 46px; height: 46px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; border-radius: var(--r-sm);
  margin-right: -8px;
}
.burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity .2s var(--ease), background var(--dur) var(--ease);
}
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .burger span { background: var(--ink) !important; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--cream);
  padding: 0 var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .3s var(--ease), visibility .45s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }

.mobile-menu__bar {
  height: var(--nav-h); flex: none;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu__close {
  width: 46px; height: 46px; margin-right: -8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease);
  touch-action: manipulation;
}
.mobile-menu__close:hover { background: var(--sand); }
.mobile-menu__close .ic { width: 26px; height: 26px; stroke-width: 1.6; }

.mobile-menu__nav { display: flex; flex-direction: column; padding-top: 1rem; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500;
  padding: .75rem 0; border-bottom: 1px solid var(--border); color: var(--ink);
  opacity: 0; transform: translateY(12px);
}
body.menu-open .mobile-menu__link { animation: menuIn .5s var(--ease-out) forwards; }
body.menu-open .mobile-menu__link:nth-child(1) { animation-delay: .06s; }
body.menu-open .mobile-menu__link:nth-child(2) { animation-delay: .12s; }
body.menu-open .mobile-menu__link:nth-child(3) { animation-delay: .18s; }
body.menu-open .mobile-menu__link:nth-child(4) { animation-delay: .24s; }
body.menu-open .mobile-menu__link:nth-child(5) { animation-delay: .30s; }
body.menu-open .mobile-menu__link:nth-child(6) { animation-delay: .36s; }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu__idx {
  font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; color: var(--camel);
}
.mobile-menu__footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu__phone {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--ink);
}
.mobile-menu__socials { display: flex; gap: 1.5rem; padding-top: .5rem; }
.mobile-menu__socials a {
  font-size: .82rem; letter-spacing: .06em; color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.mobile-menu__socials a:hover { color: var(--bronze-text); }

.scrim {
  position: fixed; inset: 0; z-index: var(--z-scrim);
  background: rgba(33, 30, 27, .5); opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
body.menu-open .scrim { opacity: 1; visibility: visible; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 0.1vw, 8.5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: var(--on-dark); }

.section__head {
  display: grid; gap: 1.4rem; margin-bottom: clamp(1rem, 2vw, 1.6rem);
}
.section__intro {
  font-size: 1.05rem; line-height: 1.7; max-width: 46ch;
}
.section__intro--light { color: var(--on-dark-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: calc(var(--nav-h) + 2rem) clamp(3rem, 7vw, 6rem);
  color: var(--on-dark); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, #6f5f4c 0%, #43382c 45%, #29211a 100%);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20, 16, 12, .94) 0%, rgba(20, 16, 12, .55) 42%, rgba(20, 16, 12, .34) 68%, rgba(20, 16, 12, .58) 100%),
    linear-gradient(to right, rgba(20, 16, 12, .64) 0%, rgba(20, 16, 12, .32) 40%, rgba(20, 16, 12, 0) 72%);
}
.hero__content { position: relative; z-index: 1; max-width: 60rem; }
.hero__title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2.9rem, 8.4vw, 6.4rem); line-height: .98; letter-spacing: -.015em;
  margin-bottom: 1.5rem; text-shadow: 0 2px 34px rgba(0, 0, 0, .45);
}
.hero__title .ital { color: #E7C79B; text-shadow: 0 1px 2px rgba(20, 14, 8, .55), 0 2px 26px rgba(0, 0, 0, .5); }
.hero .overline { text-shadow: 0 1px 12px rgba(0, 0, 0, .55); }
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.6;
  color: rgba(243, 238, 230, .92); max-width: 40ch; margin-bottom: 2.2rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__signature {
  display: flex; align-items: center; gap: 1rem;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(243, 238, 230, .78);
}
.hero__sig-line { width: 46px; height: 1px; background: var(--camel); }

.hero__scroll {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: clamp(1.25rem, 3vw, 2rem); z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: .45rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(243, 238, 230, .72); text-align: center;
}
.hero__scroll .ic { width: 1.3em; height: 1.3em; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: var(--on-dark); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.stats__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem;
}
.stat { display: flex; flex-direction: column; gap: .3rem; position: relative; padding-left: 1.25rem; }
.stat::before {
  content: ""; position: absolute; left: 0; top: .35rem; bottom: .35rem; width: 2px;
  background: linear-gradient(var(--camel), transparent);
}
.stat__num {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.8rem); line-height: 1; color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: .84rem; letter-spacing: .02em; color: var(--on-dark-soft); line-height: 1.4; }

/* ---------- About ---------- */
.about__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__img-wrap {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); max-width: 480px;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); }
.about__img-wrap .img-fallback { border-radius: var(--r-lg); }
.about__badge {
  position: absolute; right: 18px; bottom: -22px; z-index: 3;
  background: var(--paper); border: 1px solid var(--border);
  padding: 1rem 1.4rem; border-radius: var(--r-md); box-shadow: var(--sh-md);
  display: flex; flex-direction: column; text-align: center;
}
.about__badge-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.9rem;
  line-height: 1; color: var(--bronze-text);
}
.about__badge-text { font-size: .72rem; letter-spacing: .04em; color: var(--text-muted); margin-top: .25rem; }

.about__author { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.about__signature {
  display: block; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 500; font-size: 1.9rem; color: var(--ink); line-height: 1.1;
}
.about__role { font-size: .86rem; color: var(--text-muted); }

/* ---------- Services ---------- */
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.service {
  background: var(--paper); padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: .8rem;
  transition: background var(--dur) var(--ease);
}
.section--sand .service { background: #F5EEE3; }
.service:hover { background: var(--paper); }
.section--sand .service:hover { background: #FBF7EF; }
.service__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.service__idx {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--camel);
  font-variant-numeric: tabular-nums;
}
.service__icon { width: 30px; height: 30px; color: var(--bronze-text); fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.55rem; line-height: 1.15; color: var(--ink); }
.service__text { font-size: .96rem; line-height: 1.6; color: var(--text-soft); }
.service--cta { background: var(--ink) !important; color: var(--on-dark); justify-content: center; }
.service--cta .service__title { color: var(--on-dark); }
.service--cta .service__text { color: var(--on-dark-soft); }
.service--cta .link-arrow { color: var(--camel); margin-top: .5rem; }
.service--cta .link-arrow:hover { color: var(--on-dark); }

/* ---------- Process ---------- */
.process__list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  counter-reset: step; border-top: 1px solid var(--border);
}
.process__step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  padding: clamp(1.6rem, 3vw, 2.2rem) 0; border-bottom: 1px solid var(--border);
  transition: padding-left var(--dur) var(--ease);
}
.process__step:hover { padding-left: .6rem; }
.process__num {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--camel); line-height: 1; font-variant-numeric: tabular-nums; min-width: 2.2ch;
}
.process__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-bottom: .35rem; }
.process__body p { color: var(--text-soft); font-size: .98rem; max-width: 60ch; }

/* ---------- Portfolio ---------- */
.section__head--light .section__intro { color: var(--on-dark-soft); }
.filters {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .3rem;
}
.filter {
  min-height: 44px; padding: .55rem 1.3rem; border-radius: var(--r-pill);
  border: 1px solid var(--border-dark); color: var(--on-dark-soft);
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filter:hover { border-color: var(--camel); color: var(--on-dark); }
.filter.is-active { background: var(--camel); border-color: var(--camel); color: var(--on-accent); }

.gallery {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
.gallery__empty {
  grid-column: 1 / -1; text-align: center;
  color: var(--on-dark-soft); padding: 3.5rem 1rem; font-size: 1.05rem;
}
.card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--charcoal);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  cursor: pointer;
}
.card.is-hidden { display: none; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card--tall .card__media { aspect-ratio: 4 / 5; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease); will-change: transform;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(16, 12, 8, .42) 0%, rgba(16, 12, 8, .12) 42%, transparent 66%);
}
.card:hover img { transform: scale(1.06); }
.card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 3rem clamp(1.2rem, 2.5vw, 1.8rem) clamp(1.3rem, 2.5vw, 1.8rem);
  display: flex; flex-direction: column; gap: .35rem;
  /* Solid backing so the text stays readable over bright photos */
  background: linear-gradient(to top,
    rgba(11, 8, 5, .96) 0%, rgba(11, 8, 5, .9) 42%, rgba(11, 8, 5, .55) 78%, transparent 100%);
}
.card__cat {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--camel); font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}
.card__title {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.55rem; line-height: 1.1;
  color: var(--on-dark); text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}
.card__link {
  display: inline-flex; align-items: center; gap: .4rem; padding: 0;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-soft);
  margin-top: .3rem; opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.card__link .ic { width: 1.1em; height: 1.1em; }
.card:hover .card__link, .card:focus-within .card__link { opacity: 1; transform: translateY(0); }
.card:hover .card__link { gap: .7rem; }
/* On touch devices there is no hover — always show the affordance */
@media (hover: none) {
  .card__link { opacity: 1; transform: none; }
}

.portfolio__foot { margin-top: 2.8rem; text-align: center; }

/* ---------- Quote band ---------- */
.quote-band { background: var(--cream); position: relative; }
.quote-band__inner { max-width: 62rem; margin-inline: auto; text-align: center; position: relative; }
.quote-band__mark {
  font-family: 'Cormorant Garamond', serif; font-size: 8rem; line-height: .6; color: var(--camel);
  opacity: .5; display: block; height: 3rem;
}
.quote-band__text {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.9rem); line-height: 1.3; color: var(--ink); letter-spacing: -.01em;
}
.quote-band__author { margin-top: 1.6rem; font-size: .84rem; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-text); }

/* ---------- Clients ---------- */
.clients__grid { display: grid; gap: 2.5rem; align-items: center; }
.testimonial {
  position: relative; background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--sh-sm);
}
.testimonial__mark {
  font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: .5; color: var(--camel);
  opacity: .45; position: absolute; top: 1.6rem; right: 1.8rem;
}
.testimonial__text { font-size: 1.12rem; line-height: 1.7; color: var(--text); position: relative; }
.testimonial__author { display: flex; flex-direction: column; margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--border); }
.testimonial__name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.testimonial__role { font-size: .84rem; color: var(--text-muted); }

.logos__title { display: block; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.6rem; }
.logos__list { display: flex; flex-wrap: wrap; gap: .7rem; }
.logos__list li {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .72rem 1.4rem; line-height: 1;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-pill);
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.25rem; color: var(--text-soft);
  letter-spacing: .01em;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.logos__list li:hover { color: var(--ink); border-color: var(--camel); transform: translateY(-2px); box-shadow: var(--sh-sm); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.faq__intro .section__intro { margin-top: 1.2rem; max-width: 48ch; }
.faq__list { border-top: 1px solid var(--border-strong); }
.faq__item { border-bottom: 1px solid var(--border-strong); }
.faq__item summary {
  position: relative; display: flex; align-items: center;
  min-height: 72px; padding: 1.2rem 3rem 1.2rem 0;
  list-style: none; cursor: pointer; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.25;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%;
  transform: translateY(-50%); color: var(--bronze-text);
  font-family: 'Jost', sans-serif; font-size: 1.5rem; font-weight: 300;
  transition: transform var(--dur) var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 3rem 1.5rem 0; color: var(--text-soft); max-width: 68ch; }

/* ---------- Contacts ---------- */
.contacts__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contacts__lead { color: var(--on-dark-soft); font-size: 1.05rem; margin-top: 1.4rem; max-width: 42ch; }
.contacts__list { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contacts__item { display: flex; gap: 1rem; align-items: flex-start; }
.contacts__item .ic { width: 1.4rem; height: 1.4rem; color: var(--camel); margin-top: .2rem; }
.contacts__label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: .2rem; }
.contacts__value { font-size: 1.05rem; color: var(--on-dark); line-height: 1.4; }
a.contacts__value:hover { color: var(--camel); }
.contacts__socials { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.contacts__socials a { font-size: 1rem; color: var(--on-dark); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.contacts__socials a:hover { color: var(--camel); border-color: var(--camel); }

/* Form */
.contacts__form-wrap { background: var(--paper); border-radius: var(--r-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--sh-lg); color: var(--text); }
.form { position: relative; }
.form__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.2rem; }
.field__label { display: block; font-size: .8rem; font-weight: 500; letter-spacing: .04em; color: var(--text-soft); margin-bottom: .5rem; }
.field__optional { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field__input {
  width: 100%; min-height: 50px; padding: .8rem 1rem;
  background: var(--cream); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  font: inherit; font-size: 1rem; color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field__input::placeholder { color: #A79B8B; }
.field__input:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 3px rgba(193, 154, 107, .2); background: var(--paper); }
.field__textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.field.is-invalid .field__input { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180, 70, 47, .14); }
.field__error { display: none; font-size: .8rem; color: var(--error); margin-top: .4rem; }
.field.is-invalid .field__error { display: block; }
.form__error { font-size: .9rem; color: var(--error); margin-top: .7rem; text-align: center; }
.form__error[hidden] { display: none; }
.consent { display: flex; align-items: flex-start; gap: .65rem; font-size: .86rem; color: var(--text-soft); line-height: 1.4; cursor: pointer; margin-bottom: .3rem; }
.consent input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--bronze); flex: none; cursor: pointer; }
.consent.is-invalid ~ [data-error-for="consent"] { display: block; }
[data-error-for="consent"] { display: none; font-size: .8rem; color: var(--error); margin: 0 0 .6rem; }
.form__submit { margin-top: 1rem; position: relative; }
.form__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(33, 30, 27, .3); border-top-color: var(--ink);
  display: none; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form.is-loading .form__submit-label { opacity: .5; }
.form.is-loading .form__spinner { display: inline-block; }
.form.is-loading .form__submit { pointer-events: none; }
.form__note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .9rem; line-height: 1.4; }
.form__success {
  position: absolute; inset: 0; background: var(--paper); border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: .6rem; padding: 2rem; animation: fadeIn .4s var(--ease-out);
}
/* The [hidden] attribute must win over the display:flex above (equal specificity otherwise) */
.form__success[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.form__success-ic { width: 56px; height: 56px; color: var(--success); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; border: 2px solid var(--success); border-radius: 50%; padding: .7rem; }
.form__success-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); }
.form__success-text { font-size: .96rem; color: var(--text-soft); max-width: 32ch; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: var(--on-dark-soft); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
.brand--footer { color: var(--on-dark); }
.brand--footer .brand__sup { color: var(--camel); }
.footer__tagline { margin-top: 1rem; font-size: .92rem; line-height: 1.6; color: var(--on-dark-soft); }
.footer__nav, .footer__contacts { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav-title { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--camel); margin-bottom: .5rem; }
.footer__nav a, .footer__contacts a, .footer__contacts span { font-size: .95rem; color: var(--on-dark-soft); transition: color var(--dur) var(--ease); }
.footer__nav a:hover, .footer__contacts a:hover { color: var(--on-dark); }
.footer__socials { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .4rem; }
.footer__socials a { border-bottom: 1px solid transparent; }
.footer__socials a:hover { border-color: var(--camel); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 1rem; padding-block: 1.6rem;
  border-top: 1px solid var(--border-dark); font-size: .82rem; color: var(--on-dark-soft);
}
.footer__top { display: inline-flex; align-items: center; gap: .4rem; transition: color var(--dur) var(--ease); }
.footer__top .ic { width: 1.1em; height: 1.1em; }
.footer__top:hover { color: var(--on-dark); }

/* ---------- Indexable project pages ---------- */
.project-body { padding-bottom: 0 !important; }
.project-header__back {
  display: inline-flex; align-items: center; gap: .55rem; min-height: 44px;
  color: var(--text-soft); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.project-header__back:hover { color: var(--ink); gap: .8rem; }
.project-header__back .ic { width: 1.15rem; height: 1.15rem; }
.project-detail { padding-top: var(--nav-h); }
.breadcrumbs { padding-top: clamp(1.5rem, 4vw, 3rem); }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; }
.breadcrumbs li {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--text-muted); font-size: .78rem;
}
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--border-strong); }
.breadcrumbs a { transition: color var(--dur) var(--ease); }
.breadcrumbs a:hover { color: var(--bronze-text); }
.project-detail__head {
  display: grid; gap: 1.5rem; align-items: end;
  padding-block: clamp(2.5rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
}
.project-detail__head .overline { margin-bottom: 1rem; }
.project-detail__title {
  max-width: 14ch; color: var(--ink); font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(3rem, 9vw, 7rem); line-height: .92;
  letter-spacing: -.035em;
}
.project-detail__lead { max-width: 58ch; color: var(--text-soft); font-size: clamp(1rem, 1.8vw, 1.2rem); }
.project-detail__meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-bottom: clamp(2rem, 5vw, 4rem); overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--border);
}
.project-detail__meta div { padding: 1rem clamp(1rem, 2vw, 1.5rem); background: var(--paper); }
.project-detail__meta dt {
  color: var(--text-muted); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase;
}
.project-detail__meta dd {
  margin-top: .2rem; color: var(--ink); font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.15;
}
.project-detail__gallery { display: grid; gap: clamp(.8rem, 2vw, 1.5rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.project-detail__image {
  position: relative; overflow: hidden; min-height: 260px;
  border-radius: var(--r-lg); background: linear-gradient(135deg, #E8DECF, #D3C3AC);
}
.project-detail__image img { width: 100%; height: 100%; min-height: inherit; aspect-ratio: 4 / 3; object-fit: cover; }
.project-detail__image--hero img { aspect-ratio: 16 / 10; }
.project-detail__cta { background: var(--ink); color: var(--on-dark); }
.project-detail__cta-inner {
  display: grid; gap: 2rem; align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.project-detail__cta .section__title { color: var(--on-dark); }
.project-detail__cta p:not(.overline) { margin-top: 1rem; max-width: 58ch; color: var(--on-dark-soft); }
.project-detail__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.project-footer { padding-top: 0; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-cta);
  display: flex; gap: .6rem; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(246, 242, 236, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__call {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; padding: 0 1.2rem; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong); color: var(--ink);
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; flex: none;
}
.mobile-cta__call .ic { width: 1.1em; height: 1.1em; color: var(--bronze-text); }
.mobile-cta__lead {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; border-radius: var(--r-pill); background: var(--camel); color: var(--on-accent);
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
/* Reserve space so the footer never hides behind the fixed mobile CTA bar */
@media (max-width: 1023px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}

/* ---------- Image fallbacks ---------- */
.img-fallback { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #E8DECF 0%, #D3C3AC 100%); }
.img-fallback--dark { background: linear-gradient(135deg, #4a3f32 0%, #2b231b 100%); }
.about__img-wrap img, .card__media img { position: relative; z-index: 1; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Project modal (просмотр проекта) ---------- */
.pm {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0px, 3vw, 2.5rem);
}
.pm[hidden] { display: none; }
.pm__backdrop {
  position: absolute; inset: 0; background: rgba(18, 14, 10, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.pm.is-open .pm__backdrop { opacity: 1; }
.pm__dialog {
  position: relative; z-index: 1;
  width: min(1080px, 100%); max-height: min(92vh, 900px);
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(.98); opacity: 0;
  transition: transform .35s var(--ease-out), opacity .3s var(--ease-out);
}
.pm.is-open .pm__dialog { transform: none; opacity: 1; }
.pm__close {
  position: absolute; top: 12px; right: 12px; z-index: 6;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(246, 242, 236, .92); color: var(--ink); box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.pm__close .ic { width: 22px; height: 22px; }
.pm__close:hover { background: #fff; transform: rotate(90deg); }

.pm__gallery { display: flex; flex-direction: column; background: var(--ink); min-height: 0; }
.pm__stage { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.pm__stage .img-fallback { z-index: 0; }
.pm__img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.pm__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(246, 242, 236, .88); color: var(--ink); box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease);
}
.pm__nav:hover { background: #fff; }
.pm__nav--prev { left: 12px; }
.pm__nav--next { right: 12px; }
.pm__nav .ic { width: 22px; height: 22px; }
.pm__counter {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  background: rgba(16, 12, 8, .62); color: var(--on-dark);
  font-size: .74rem; letter-spacing: .06em; padding: .3rem .7rem; border-radius: var(--r-pill);
  font-variant-numeric: tabular-nums;
}
.pm__thumbs { display: flex; gap: .5rem; padding: .7rem; overflow-x: auto; -webkit-overflow-scrolling: touch; background: var(--charcoal); }
.pm__thumb {
  flex: none; width: 70px; height: 52px; border-radius: 6px; overflow: hidden; padding: 0;
  opacity: .5; border: 2px solid transparent;
  transition: opacity var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pm__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pm__thumb:hover { opacity: .85; }
.pm__thumb.is-active { opacity: 1; border-color: var(--camel); }

.pm__info { padding: clamp(1.5rem, 3.2vw, 2.4rem); overflow-y: auto; display: flex; flex-direction: column; }
.pm__cat { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-text); margin-bottom: .7rem; }
.pm__title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.06; color: var(--ink); margin-bottom: 1rem; }
.pm__desc { color: var(--text-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 1.6rem; }
.pm__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.8rem; }
.pm__meta li { background: var(--paper); padding: .85rem 1rem; display: flex; flex-direction: column; gap: .15rem; }
.pm__meta .k { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.pm__meta .v { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.3rem; color: var(--ink); line-height: 1.1; }
.pm__cta { width: 100%; }

@media (min-width: 860px) {
  .pm__dialog { flex-direction: row; }
  .pm__gallery { flex: 1 1 56%; min-width: 0; }
  .pm__stage { flex: 1; aspect-ratio: auto; min-height: 460px; }
  .pm__info { flex: 1 1 44%; max-width: 440px; }
  .pm__cta { margin-top: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 560px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hide-mobile { display: inline; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .section__head { grid-template-columns: 1.3fr 1fr; align-items: end; }
  .footer__inner { grid-template-columns: 2fr 1fr 1.4fr; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero__scroll { display: flex; }
  .faq__grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .project-detail__head { grid-template-columns: 1.15fr .85fr; }
  .project-detail__meta { grid-template-columns: repeat(4, 1fr); }
  .project-detail__gallery { grid-template-columns: repeat(2, 1fr); }
  .project-detail__image--hero { grid-column: 1 / -1; }
  .project-detail__cta-inner { grid-template-columns: 1.2fr auto; }
  .project-detail__actions { flex-direction: column; align-items: stretch; }
}

@media (min-width: 1024px) {
  :root { --nav-h: 88px; }
  .nav { display: block; }
  .header__phone { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-cta { display: none; }

  .about__grid { grid-template-columns: .85fr 1.15fr; }
  .about__img-wrap { max-width: none; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
  }
  .card--tall { grid-row: span 2; }
  .card--tall .card__media { aspect-ratio: auto; height: 100%; }
  .process__step { grid-template-columns: 3.5rem 1fr; gap: 2.5rem; }
  .clients__grid { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
  .contacts__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .quote-band { padding-block: clamp(5rem, 8vw, 7rem); }
}

@media (min-width: 1280px) {
  .contacts__grid { grid-template-columns: 1.1fr .9fr; }
}

/* Landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 560px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__img { animation: none; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .header, .mobile-cta, .hero__scroll, .mobile-menu, .scrim { display: none !important; }
}
