/* ═══════════════════════════════════════════════════════════
   Mollak Capital Properties — mollakcapital.ae
   Gallery-white, image-led. Copper taken from the mark itself.
   Motion is deliberately sparse: entrances only, nothing decorative.
   ═══════════════════════════════════════════════════════════ */

:root {
  --white:       #ffffff;
  --bone:        #f6f4ef;
  --ink:         #131313;
  --ink-2:       #3d3a36;
  --muted:       #736d66;
  --line:        #e4e0d8;
  --line-strong: #cfc9bf;
  --copper:      #a57351;   /* sampled from the mark — large accents only  */
  --copper-deep: #8a5c3d;   /* 5.7:1 on white — safe for small labels      */
  --night:       #151412;

  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --shell: 1320px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4.5rem, 8vw, 7.5rem);
  --head: 76px;

  /* One strong ease-out for everything that enters or responds. */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 1rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
figure { margin: 0; }
ol, dl { margin: 0; padding: 0; }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }
::selection { background: var(--copper); color: var(--white); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Type ────────────────────────────────────────────────── */

.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.6875rem; font-weight: 500; line-height: 1;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper-deep);
}
.eyebrow-num { color: var(--muted); font-weight: 400; }
.eyebrow-num::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 1.75rem; height: 1px; margin-left: 0.75rem; background: var(--line-strong);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }
.eyebrow-light .eyebrow-num { color: rgba(255, 255, 255, 0.55); }
.eyebrow-light .eyebrow-num::after { background: rgba(255, 255, 255, 0.35); }

.section-title {
  margin: 0;
  font-size: clamp(2.125rem, 4vw, 3.375rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.022em;   /* display sizes read loose at default tracking */
}
.section-title strong { font-weight: 500; }

.lede {
  margin: 0;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-2);
}

.num {
  font-size: 0.6875rem; font-weight: 500; line-height: 1;
  letter-spacing: 0.14em; color: var(--copper-deep);
}

.caption, figcaption {
  font-size: 0.625rem; font-weight: 400; line-height: 1.4;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.25rem; padding: 0 1.875rem;
  border: 1px solid transparent; border-radius: 0;
  font: 500 0.75rem/1 var(--sans);
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background-color 150ms var(--ease), color 150ms var(--ease),
              border-color 150ms var(--ease), transform 80ms ease-out;
}
.btn:active { transform: scale(0.98); }          /* feedback on press, not release */

.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: #2c2a27; }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: #ebe7df; }

.btn-outline-light { border-color: rgba(255, 255, 255, 0.6); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }

.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ── Masthead ────────────────────────────────────────────── */

.top {
  position: fixed; inset: 0 0 auto; z-index: 200;
  color: var(--white);
  background: transparent;
  box-shadow: 0 1px 0 transparent;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.top.stuck {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .top.stuck { background: rgba(255, 255, 255, 0.82); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
}
.top-inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%; max-width: var(--shell); margin-inline: auto;
  padding-inline: var(--gutter); min-height: var(--head);
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-mark { width: 44px; height: auto; }
.brand-text { display: block; line-height: 1; }
.brand-name { display: block; font-size: 1.125rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.brand-sub  { display: block; margin-top: 0.3rem; font-size: 0.5rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.7; }

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.25rem); margin-left: auto; }
.nav a {
  position: relative; padding-block: 0.4rem;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85; transition: opacity 150ms var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.here::after { transform: scaleX(1); }
.nav a.here { opacity: 1; }

.btn-top { height: 2.75rem; padding-inline: 1.375rem; font-size: 0.6875rem; border-color: currentColor; color: inherit; }
.btn-top:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.top.stuck .btn-top:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.menu {
  display: none; margin-left: auto; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid currentColor; color: inherit; cursor: pointer;
  transition: transform 80ms ease-out;
}
.menu:active { transform: scale(0.95); }
.menu span { display: block; width: 18px; }
.menu i { display: block; height: 1px; background: currentColor; transition: transform 200ms var(--ease); }
.menu i:first-child { margin-bottom: 5px; }
.menu[aria-expanded="true"] i:first-child { transform: translateY(3px) rotate(45deg); }
.menu[aria-expanded="true"] i:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ── Drawer ──────────────────────────────────────────────── */

.drawer {
  position: fixed; inset: var(--head) 0 0; z-index: 190;
  display: none; background: var(--white); opacity: 0;
  transition: opacity 150ms var(--ease);           /* exit: snaps */
}
.drawer.mounted { display: block; }
.drawer.open { opacity: 1; transition-duration: 200ms; }   /* enter: a touch slower */
.drawer-inner { display: flex; flex-direction: column; padding: 1rem var(--gutter) 3rem; }
.drawer-inner > a:not(.drawer-cta) {
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.625rem; font-weight: 300; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 150ms var(--ease), transform 150ms var(--ease);
}
.drawer.open .drawer-inner > a:not(.drawer-cta) { opacity: 1; transform: none; transition-duration: 240ms; }
.drawer.open .drawer-inner > a:nth-child(2) { transition-delay: 30ms; }
.drawer.open .drawer-inner > a:nth-child(3) { transition-delay: 60ms; }
/* Out-specifies `.drawer-inner > a` above. */
.drawer-inner a.drawer-cta { margin-top: 1.75rem; }
.drawer-foot { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 2rem; font-size: 0.9375rem; color: var(--muted); }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100svh;
  padding-top: var(--head);
  color: var(--white);
  background: var(--night);
  overflow: hidden;
  scroll-margin-top: 0;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }

/* Three shades in one layer: top for the masthead, left for the headline,
   bottom for the lede and buttons. */
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(10, 8, 6, 0.42), transparent 22%),
    linear-gradient(to right, rgba(10, 8, 6, 0.5) 0%, rgba(10, 8, 6, 0.3) 40%, transparent 64%),
    linear-gradient(to top, rgba(10, 8, 6, 0.62) 0%, rgba(10, 8, 6, 0.18) 42%, transparent 66%);
}
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(3rem, 8vh, 6rem); }
.hero-inner .eyebrow { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }

.hero-title {
  margin: 0;
  /* Line breaks are explicit in the markup. Sized so the widest line stays
     inside the composite's blurred left panel from 1280px up. */
  font-size: clamp(2.5rem, min(4.6vw, 9vh), 4.25rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero-title strong { font-weight: 500; }

.hero-lede {
  margin: clamp(1.25rem, 2.5vw, 2rem) 0 0;
  max-width: 44ch;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }

.hero-caption {
  /* Clears the WhatsApp button, which owns the bottom-right corner. */
  position: absolute; right: calc(var(--gutter) + 5rem); bottom: 1.5rem; z-index: 1;
  margin: 0;
  font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Sections ────────────────────────────────────────────── */

.section { padding-block: var(--section-y); scroll-margin-top: var(--head); }

/* ── About ───────────────────────────────────────────────── */

.about-head { display: grid; gap: clamp(2rem, 4vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .about-head { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start; }
}
.about-copy > p { margin: 0 0 1.25rem; max-width: 52ch; }
.about-copy > p:not(.lede) { color: var(--muted); line-height: 1.75; }

.plates {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}
@media (min-width: 760px) { .plates { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); } }
.plate img { width: 100%; height: clamp(240px, 38vw, 540px); object-fit: cover; background: var(--bone); }
.plate figcaption { margin-top: 0.75rem; }

.principles {
  list-style: none;
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principles li { padding: 1.75rem 0 1.5rem; border-bottom: 1px solid var(--line); }
@media (min-width: 760px) {
  .principles li { padding: 2rem 2rem 0 0; border-bottom: 0; }
  .principles li + li { padding-left: 2rem; border-left: 1px solid var(--line); }
}
.principles .num { display: block; margin-bottom: 1.1rem; font-style: italic; font-weight: 400; font-size: 0.8125rem; }
.principles h3 { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 500; letter-spacing: -0.005em; }
.principles p { margin: 0; max-width: 34ch; color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }

/* ── Services ────────────────────────────────────────────── */

.services { background: var(--bone); }

.services-head { display: grid; gap: clamp(1.25rem, 3vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .services-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: end; }
  .services-head .lede { max-width: 40ch; padding-bottom: 0.35rem; }
}

.services-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  margin-top: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .services-figure { position: sticky; top: calc(var(--head) + 2rem); }
}
/* `height: auto` is load-bearing: the img's height attribute is a presentational
   hint that would otherwise beat aspect-ratio and render it 1243px tall. */
.services-figure img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; background: var(--line); }
@media (max-width: 899px) { .services-figure img { aspect-ratio: 4 / 3; } }
.services-figure figcaption { margin-top: 0.75rem; }

.svc-list { list-style: none; border-top: 1px solid var(--line-strong); }
.svc {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.4rem 1rem;
  padding: clamp(1.5rem, 2.4vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}
/* Pinned to column 2, or the paragraph auto-places into the numeral gutter. */
.svc h3, .svc p { grid-column: 2; }
.svc .num { padding-top: 0.55rem; }
.svc h3 { margin: 0; font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.svc p { margin: 0; max-width: 56ch; color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────── */

.contact { position: relative; color: var(--white); background: var(--night); overflow: hidden; }
.contact-media { position: absolute; inset: 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(12, 10, 8, 0.84) 0%, rgba(12, 10, 8, 0.62) 50%, rgba(12, 10, 8, 0.42) 100%);
}
.contact-grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 32rem); } }

.contact-aside .lede { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); max-width: 40ch; color: rgba(255, 255, 255, 0.82); }

.details { margin-top: clamp(2rem, 4vw, 3rem); max-width: 30rem; }
.details > div {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 1.25rem;
  padding: 0.9rem 0; border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.details > div:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.details dt { flex: 0 0 5.5rem; font-size: 0.625rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.details dd { margin: 0; }
.details a { font-size: 1.0625rem; font-weight: 400; border-bottom: 1px solid transparent; transition: border-color 150ms var(--ease), color 150ms var(--ease); }
.details a:hover { color: #e6c3a8; border-bottom-color: currentColor; }
.contact-caption { margin: 2rem 0 0; font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

.card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white); color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}

.field { margin-bottom: 1.2rem; }
.field label {
  display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.5rem;
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.field .req { color: var(--copper-deep); }
.field .optional { letter-spacing: 0.08em; text-transform: none; opacity: 0.75; }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--white); border: 1px solid var(--line-strong); border-radius: 0;
  color: var(--ink); font: 400 0.9375rem/1.5 var(--sans);
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.field textarea { resize: vertical; min-height: 6.25rem; }
.field input::placeholder, .field textarea::placeholder { color: #a39c93; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }

.phone-input { display: flex; }
.phone-prefix {
  display: flex; align-items: center; padding-inline: 0.9rem;
  background: var(--bone); border: 1px solid var(--line-strong); border-right: 0;
  font-size: 0.9375rem; color: var(--muted);
}
.field.bad input, .field.bad textarea { border-color: #b4402a; }
.error { margin: 0.45rem 0 0; font-size: 0.75rem; color: #a13a26; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit { width: 100%; margin-top: 0.4rem; }
.btn-submit[disabled] { opacity: 0.6; cursor: progress; }
.form-note { margin: 0.85rem 0 0; font-size: 0.75rem; line-height: 1.6; color: var(--muted); }
.form-status { margin: 0.5rem 0 0; min-height: 1.2em; font-size: 0.8125rem; color: #a13a26; }

.card-done {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--white); text-align: center;
}
.done-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--copper); border-radius: 50%; color: var(--copper-deep); }
.done-mark svg { width: 20px; height: 20px; }
.card-done h3 { margin: 0; font-size: 1.375rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.card-done p { margin: 0; max-width: 34ch; color: var(--muted); font-size: 0.9375rem; line-height: 1.7; }
.card-done a { color: var(--copper-deep); border-bottom: 1px solid currentColor; }

/* ── Footer ──────────────────────────────────────────────── */

.foot { background: var(--night); color: var(--white); padding-top: clamp(3rem, 6vw, 4.5rem); }
.foot-inner { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.foot-inner .brand { margin-right: auto; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.foot-nav a, .foot-contact a { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.7); transition: color 150ms var(--ease); }
.foot-nav a { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.foot-nav a:hover, .foot-contact a:hover { color: var(--white); }
.foot-contact { display: flex; flex-direction: column; gap: 0.3rem; }
.foot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem;
  padding-block: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.foot-base p { margin: 0; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }

/* ── WhatsApp ────────────────────────────────────────────── */

.wa {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 180;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #08331c;
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.45);
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease);
}
.wa svg { width: 30px; height: 30px; }
.wa:hover { transform: scale(1.05); box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.5); }
.wa:active { transform: scale(0.96); }

/* ── Entrances ───────────────────────────────────────────── */
/* Page-load is CSS-only so the fold never depends on JS. Scroll reveals are
   gated on JS confirming it can bring them back, with a failsafe in the script. */

.load { animation: rise 500ms var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms + 80ms); }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.hero-media img { animation: settle 1200ms var(--ease) both; }
@keyframes settle {
  from { transform: scale(1.05); }
  to   { transform: none; }
}

.js-reveal .reveal { opacity: 0; transform: translateY(12px); }
.js-reveal .reveal.in {
  opacity: 1; transform: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  transition-delay: calc(var(--d, 0) * 60ms);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 880px) {
  .nav, .top-cta { display: none; }
  .menu { display: inline-flex; }
}

@media (max-width: 760px) {
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 62% 50%; }
  .hero-shade {
    background:
      linear-gradient(to bottom, rgba(10, 8, 6, 0.45), transparent 26%),
      linear-gradient(to top, rgba(10, 8, 6, 0.82) 0%, rgba(10, 8, 6, 0.46) 45%, transparent 80%);
  }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-caption { position: static; padding: 0 var(--gutter) 1.25rem; }
  .plate img { height: clamp(220px, 60vw, 320px); }
}

@media (max-width: 560px) {
  .brand-mark { width: 38px; }
  .brand-name { font-size: 1rem; }
  .svc { grid-template-columns: 1fr; }
  .svc h3, .svc p { grid-column: 1; }
  .svc .num { padding-top: 0; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-inner .brand { margin-right: 0; }
  .details dt { flex-basis: 100%; }
}

/* ── Preferences ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load { animation: fade 200ms ease-out both; animation-delay: 0ms; }
  @keyframes fade { from { opacity: 0; } to { opacity: 1; } }
  .hero-media img { animation: none; }
  .js-reveal .reveal { transform: none; }
  .js-reveal .reveal.in { transition: opacity 200ms ease-out; transition-delay: 0ms; }
  .drawer-inner > a:not(.drawer-cta) { transform: none; }
  .btn, .menu, .wa { transition-property: background-color, color, border-color, box-shadow; }
  .btn:active, .menu:active, .wa:hover, .wa:active { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .top.stuck { background: var(--white); -webkit-backdrop-filter: none; backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #4d4740; --line: #b9b2a6; --line-strong: #8f877b; }
  .hero-shade, .contact::before { filter: brightness(0.6); }
}

@media (hover: none), (pointer: coarse) {
  /* Hover states are meaningless on touch; keep the press feedback only. */
  .btn:hover, .wa:hover { transform: none; }
}
