/* =====================================================================
   MORAN INDUSTRIES — style.css
   Palette + type derived from the company logo and the Squarespace mock-up:
   black field, brand-red accent, brushed-steel framing,
   condensed display caps (Oswald) + editorial serif (Spectral).
   ===================================================================== */

:root {
  /* --- Surfaces (near-black, layered) --- */
  --ink:        #0a0a0a;   /* page base */
  --ink-1:      #0e0f11;   /* alt section */
  --ink-2:      #15161a;   /* cards / panels */
  --panel:      #1b1d22;   /* raised panels */
  --line:       #2a2d34;   /* hairlines / borders */

  /* --- Accent: brand red (logo "INDUSTRIES") --- */
  --ember:        #b30000;
  --ember-bright: #e11d1d;
  --ember-soft:   rgba(225, 29, 29, 0.14);

  /* --- Brushed steel (logo frame) --- */
  --steel-hi:  #dde1e6;
  --steel-mid: #969ba2;
  --steel-lo:  #5a5f65;
  --steel-grad: linear-gradient(180deg, var(--steel-hi) 0%, var(--steel-mid) 42%, var(--steel-lo) 58%, #b6bcc2 100%);

  /* --- Text --- */
  --bone:    #f4f2ee;   /* headings / strongest text */
  --text:    #e6e5e1;   /* body */
  --muted:   #9c9c95;   /* secondary */
  --muted-2: #6f6f68;   /* faint */

  /* --- Type --- */
  --display: "Oswald", system-ui, sans-serif;
  --serif:   "Spectral", Georgia, serif;

  /* --- Layout --- */
  --wrap: 1120px;
  --nav-h: 68px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; margin: 0; color: var(--bone); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--ember-bright); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ember); color: #fff; padding: 10px 16px; border-radius: var(--radius);
  font-family: var(--display); letter-spacing: 0.04em; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.muted { color: var(--muted); }

/* --------------------------- Wrappers --------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 9vw, 104px) 0; scroll-margin-top: var(--nav-h); position: relative; }
.section.work    { background: var(--ink-1); }
.section.reviews { background: var(--ink-1); }
.section.area    { background: var(--ink-1); }

/* Eyebrows / kickers — small-caps serif, echoing the mock-up's body voice */
.eyebrow, .kicker {
  font-family: var(--serif);
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--ember-bright);
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}
.kicker { position: relative; padding-left: 46px; }
.kicker::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 34px; height: 3px; background: var(--steel-grad); border-radius: 2px;
}

.section__title {
  font-size: clamp(2rem, 5.4vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
}
.section__lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.12rem;
  margin: 0 0 2.4rem;
}

/* ---------------------------- Buttons ---------------------------- */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.95rem; line-height: 1;
  padding: 0.85em 1.35em; border-radius: var(--radius); border: 1.5px solid transparent;
  background: var(--bg); color: #fff; transition: transform 0.18s var(--ease),
              background 0.18s, box-shadow 0.18s, border-color 0.18s;
  min-height: 44px;
}
.btn .ico { width: 1.05em; height: 1.05em; fill: currentColor; }
.btn--lg { font-size: 1.05rem; padding: 1.05em 1.7em; }
.btn--ember { --bg: var(--ember); box-shadow: 0 8px 22px -10px rgba(179,0,0,0.75); }
.btn--ember:hover { --bg: var(--ember-bright); transform: translateY(-2px); }
.btn--ghost { border-color: var(--steel-mid); color: var(--bone); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--steel-hi); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* =============================== NAV =============================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 18px;
  height: var(--nav-h); display: flex; align-items: center; gap: 16px;
}
.nav__brand { flex: 0 0 auto; display: flex; align-items: center; }
.nav__brand img { width: auto; height: 38px; }
.nav__links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav__links a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.92rem; font-weight: 500; color: var(--text);
  padding: 8px 12px; border-radius: var(--radius); position: relative;
  transition: color 0.15s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--ember-bright); transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a.is-active { color: var(--bone); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.btn--call { background: var(--ember); padding: 0.6em 1.05em; font-size: 0.9rem; box-shadow: 0 6px 16px -8px rgba(179,0,0,0.85); }
.btn--call:hover { background: var(--ember-bright); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav__toggle span {
  display: block; height: 2px; width: 24px; margin: 0 auto;
  background: var(--bone); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================== HERO =============================== */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(48px, 8vw, 90px) 0 clamp(64px, 9vw, 110px); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero::after {  /* dark cinematic wash over the hero image */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(179,0,0,0.22), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.72), rgba(10,10,10,0.92) 70%, var(--ink));
}
.hero__inner {
  max-width: 880px; margin: 0 auto; padding: 0 22px; text-align: center;
}
.hero__plate {
  display: inline-block; padding: 18px 26px; margin-bottom: 1.6rem;
  background: #000;
  border-radius: 8px;
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.hero__plate::before {  /* brushed-steel frame echoing the logo */
  content: ""; position: absolute; inset: 0; border-radius: 8px; padding: 1.5px;
  background: var(--steel-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero__logo { width: min(440px, 78vw); height: auto; }

.hero__title {
  font-size: clamp(1.95rem, 6.6vw, 4rem);
  text-transform: uppercase; letter-spacing: 0.005em; margin-bottom: 1rem;
  overflow-wrap: break-word;
}
.hero__title-accent { color: var(--bone); font-weight: 400; }
.hero__title-accent { display: inline-block; }
.hero__lead {
  color: var(--text); font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  max-width: 56ch; margin: 0 auto 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 2.4rem; }

.hero__proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; max-width: 680px; margin: 0 auto;
}
.hero__proof li {
  background: var(--ink-2); padding: 16px 14px; text-align: center;
}
.hero__proof strong {
  display: block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--bone); font-size: 1rem; font-weight: 600;
}
.hero__proof span { font-size: 0.86rem; color: var(--muted); line-height: 1.35; display: block; margin-top: 3px; }

.hero__scroll { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--steel-mid); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; opacity: 0.7; }
.hero__scroll span { width: 4px; height: 8px; background: var(--ember-bright); border-radius: 3px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.2; } }

/* ===================== BEFORE / AFTER SLIDER ===================== */
.ba {
  position: relative; margin: 0 0 26px; border-radius: 6px; overflow: hidden;
  aspect-ratio: 16 / 10; max-width: 920px; user-select: none; touch-action: pan-y;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9);
}
.ba__after, .ba__before { position: absolute; inset: 0; }
.ba__after  { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__after img, .ba__before img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute; top: 12px; z-index: 4;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.8rem; font-weight: 600; color: #fff; padding: 5px 12px; border-radius: 3px;
}
.ba__tag--before { left: 12px; background: rgba(10,10,10,0.82); border: 1px solid var(--line); }
.ba__tag--after  { right: 12px; background: var(--ember); }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 5;
  width: 44px; transform: translateX(-50%); background: transparent; border: none;
  display: grid; place-items: center;
}
.ba__handle::before {  /* the divider line */
  content: ""; position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--steel-grad);
}
.ba__handle svg {
  position: relative; width: 40px; height: 40px; padding: 9px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--steel-hi);
  fill: none; stroke: var(--bone); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  box-shadow: 0 4px 14px rgba(0,0,0,0.6);
}
.ba__handle:hover svg { border-color: var(--ember-bright); }
.ba__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.07em;
  font-weight: 500; font-size: 0.95rem; color: var(--bone); padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85));
}

/* Photo placeholders (swap each for an <img>) */
.ph-photo {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #202227, #14151a);
  display: grid; place-items: center; color: var(--muted-2);
  position: relative;
}
.ph-photo::after {
  content: "Photo"; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.72rem; color: var(--muted-2);
  position: absolute; bottom: 10px; left: 0; right: 0; text-align: center;
}
.ph-photo--before { background: linear-gradient(135deg, #2a2620, #181613); }
.ph-photo--after  { background: linear-gradient(135deg, #1c2a1d, #142016); }
.ph-photo--before::after, .ph-photo--after::after { content: ""; }
.ph-photo--portrait { aspect-ratio: 3/4; border-radius: 6px; border: 1px solid var(--line); }
/* Hero background is full-bleed: never show the "Photo" placeholder label there */
.hero .hero__bg.ph-photo::after { content: ""; }
.about__photo {
  display: block; width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: center;
  border-radius: 6px; border: 1px solid var(--line);
}

/* Gallery + lightbox */
.gallery__label {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin: 34px 0 14px; font-size: 0.95rem;
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__item {
  aspect-ratio: 1; width: 100%; border: 1px solid var(--line); border-radius: 5px;
  overflow: hidden; padding: 0; transition: transform 0.2s var(--ease), border-color 0.2s;
}
.gallery__item span {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.78rem; color: var(--muted); position: relative; z-index: 1;
}
.gallery__item:hover { transform: translateY(-3px); border-color: var(--ember); }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: rgba(5,5,5,0.92); padding: 24px; opacity: 0; transition: opacity 0.2s;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__fig { margin: 0; max-width: 760px; width: 100%; }
.lightbox__img { aspect-ratio: 4/3; border-radius: 6px; border: 1px solid var(--line); }
.lightbox__cap {
  text-align: center; margin-top: 14px; color: var(--text); font-style: italic; font-size: 1.05rem;
}
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 50%;
  color: var(--bone); font-size: 1.8rem; line-height: 1; display: grid; place-items: center;
}
.lightbox__close:hover { border-color: var(--ember); }

/* ============================ SERVICES ============================ */
.cards {
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}
.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 22px; transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--steel-grad); transition: width 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: #3a3d44; background: #191b20; }
.card:hover::before { width: 100%; }
.card__ico {
  display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 16px;
  border-radius: 8px; background: var(--ember-soft); border: 1px solid rgba(225,29,29,0.30);
}
.card__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--ember-bright); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: 1.32rem; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 1rem; margin: 0; line-height: 1.6; }
.services__note { margin-top: 26px; color: var(--muted); }
.services__note a { color: var(--ember-bright); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; }

/* ========================= TESTIMONIALS ========================= */
.reviews__notice {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.82rem; color: var(--muted);
  background: var(--ink-2); border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 8px 14px; margin: 0 0 2rem;
}
.quotes { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.quote {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px;
  position: relative;
}
.quote__stars { color: var(--ember-bright); letter-spacing: 0.18em; font-size: 1.1rem; margin-bottom: 0.8rem; }
.quote blockquote { margin: 0 0 1rem; font-size: 1.12rem; line-height: 1.6; color: var(--text); font-style: italic; }
.quote figcaption { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.88rem; color: var(--muted); }
.reviews__cta { text-align: center; margin-top: 36px; }

/* ============================ ABOUT ============================ */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__badge {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.82rem; font-weight: 600; color: #fff; background: var(--ember);
  padding: 7px 14px; border-radius: 3px;
}
.about__body p { color: var(--text); margin: 0 0 1.1rem; max-width: 56ch; }
.verse {
  margin: 1.6rem 0; padding-left: 20px; border-left: 3px solid; border-image: var(--steel-grad) 1;
  font-style: italic; color: var(--bone); font-size: 1.15rem; line-height: 1.55;
}
.verse cite { display: block; margin-top: 0.6rem; font-style: normal; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; color: var(--ember-bright); }
.about__body .btn { margin-top: 0.6rem; }

/* ============================ VALUES ============================ */
.values__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.values__grid li {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; padding: 24px 22px;
  border-top: 3px solid var(--ember);
}
.values__grid h3 { font-size: 1.18rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.values__grid p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.manifesto {
  margin: 2.6rem auto 0; max-width: 70ch; text-align: center;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.45rem); line-height: 1.6;
  color: var(--bone); font-style: italic;
}

/* ========================= SERVICE AREA ========================= */
.area__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.area__pin { width: 52px; height: 52px; margin: 0 auto 14px; fill: none; stroke: var(--ember-bright); stroke-width: 1.5; }
.area__inner .section__lead { margin-left: auto; margin-right: auto; }
.link-ember { color: var(--ember-bright); border-bottom: 1px solid currentColor; }

/* ============================ FOOTER ============================ */
.footer { background: #060606; border-top: 1px solid var(--line); padding-top: clamp(48px, 7vw, 76px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand img { width: 240px; max-width: 70%; height: auto; margin-bottom: 14px; }
.footer__tag { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; color: var(--bone); margin: 0 0 0.6rem; }
.footer__verse { color: var(--muted); font-style: italic; font-size: 0.95rem; max-width: 36ch; }
.footer__col h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bone); margin-bottom: 0.9rem; }
.footer__col p { margin: 0 0 0.5rem; font-size: 0.98rem; }
.footer__col a:hover { color: var(--ember-bright); }
.footer__call { font-family: var(--display); font-size: 1.35rem; font-weight: 600; color: var(--bone) !important; letter-spacing: 0.02em; }
.footer__call:hover { color: var(--ember-bright) !important; }
.footer__phone a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--bone); letter-spacing: 0.02em; }
.footer__phone a:hover { color: var(--ember-bright); }
.footer__actions { font-size: 0.95rem; margin-bottom: 0.9rem !important; }
.footer__actions a { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.86rem; font-weight: 600; color: var(--ember-bright); }
.footer__dot { color: var(--muted-2); margin: 0 0.4em; }
.footer__email { font-size: 0.92rem; }
.social { display: flex; gap: 12px; }
.social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; background: var(--ink-2); transition: 0.2s;
}
.social svg { width: 20px; height: 20px; fill: var(--text); }
.social a:hover { border-color: var(--ember); transform: translateY(-2px); }
.social a:hover svg { fill: var(--ember-bright); }
.footer__bar {
  border-top: 1px solid var(--line); padding: 20px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; max-width: var(--wrap); margin: 0 auto; padding-left: 22px; padding-right: 22px;
}
.footer__bar p { margin: 0; color: var(--muted-2); font-size: 0.88rem; }
.footer__top { color: var(--muted); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }
.footer__top:hover { color: var(--ember-bright); }

/* ====================== SCROLL REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: rgba(10,10,10,0.98); border-bottom: 1px solid var(--line);
    padding: 8px 12px 16px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.2s; max-height: calc(100vh - var(--nav-h)); overflow: auto;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__links a.is-active { color: var(--ember-bright); }
  .nav__toggle { display: flex; }
  .nav__links { margin-left: 0; }
}

@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 360px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .hero__proof { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .ba { aspect-ratio: 4/3; }
}

/* Active state for the persistent call button area on small screens — keep it reachable */
@media (max-width: 380px) {
  .btn--call__label { display: none; }   /* icon-only call on the tiniest screens to save room */
  .btn--call { padding: 0.6em 0.8em; }
}

/* ====================== REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
