/* ============================================================
   Welchez Contractors
   Design tokens
   ============================================================ */
:root {
  --ink:        #1C1C1E;
  --ink-2:      #2A2A2D;
  --ink-3:      #4A4A4F;
  --muted:      #6E6A64;
  --paper:      #FAF8F5;
  --paper-2:    #F1EDE7;
  --line:       #E2DCD3;
  --copper:     #C2703D;   /* accent for icons, fills, large text */
  --copper-2:   #A55A2C;   /* hover / link text */
  --copper-ink: #8A4A21;   /* small text on light backgrounds — clears 4.5:1 */
  --copper-soft:  #F6EAE1;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shell:  1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(28,28,30,.05), 0 4px 12px rgba(28,28,30,.05);
  --shadow-md: 0 2px 4px rgba(28,28,30,.05), 0 12px 32px rgba(28,28,30,.09);
  --shadow-lg: 0 8px 24px rgba(28,28,30,.10), 0 32px 64px rgba(28,28,30,.14);

  --header-h: 76px;
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

/* The hidden attribute must always win.
   A rule like `.lightbox { display: grid }` has the same specificity as the
   browser's own `[hidden] { display: none }` and comes later in the cascade,
   so it silently wins - leaving a transparent, full-viewport overlay sitting
   over the page and swallowing every click. */
[hidden] { display: none !important; }

html {
  /* No scroll-behavior here on purpose. Anchor scrolling is handled in
     main.js, and a CSS scroll-behavior would silently apply to every
     window.scrollTo the script makes - including the fallback whose whole
     job is to bypass smooth scrolling when it fails to start. */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* 'clip' rather than 'hidden': overflow-x:hidden turns body into a scroll
     container, which breaks in-page anchor scrolling (notably in Safari).
     'clip' contains overflow without creating a scroll container. */
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }

a { color: var(--copper-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1.1em; }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper-ink);
  margin: 0 0 .9em;
}

/* On dark sections the lighter copper is the readable one */
.section-dark .eyebrow,
.hero .eyebrow { color: var(--copper); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 6px 20px rgba(194,112,61,.32);
}
.btn-primary:hover { background: var(--copper-2); box-shadow: 0 10px 28px rgba(194,112,61,.40); }

.btn-ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.20); border-color: #fff; }

.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              height .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: color .3s var(--ease);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 10px;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.brand-text { display: grid; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .78;
}

.nav { display: flex; align-items: center; gap: 30px; }

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  position: relative;
  transition: color .2s var(--ease), opacity .2s var(--ease);
  opacity: .9;
}
.nav a:hover { opacity: 1; }

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover { background: var(--copper); border-color: var(--copper); color: #fff; }

/* Scrolled state — solid, readable, and now WCAG-compliant contrast */
.site-header.is-stuck {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  height: 66px;
}
.site-header.is-stuck .brand,
.site-header.is-stuck .nav a { color: var(--ink); }
.site-header.is-stuck .nav-cta { border-color: var(--ink); }
.site-header.is-stuck .nav-cta:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.site-header.is-stuck .nav-toggle span { background: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(18,18,20,.80) 0%, rgba(18,18,20,.52) 48%, rgba(18,18,20,.14) 100%),
    linear-gradient(to bottom, rgba(18,18,20,.52) 0%, rgba(18,18,20,0) 32%, rgba(18,18,20,.42) 100%);
}

.hero-inner {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 100px;
  color: #fff;
  max-width: 900px;
}

.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 em {
  font-style: italic;
  color: var(--copper);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 46ch;
  color: rgba(255,255,255,.90);
  margin-bottom: 2.2em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.trust-item svg {
  width: 22px; height: 22px;
  flex: none;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-alt  { background: var(--paper-2); }
.section-dark { background: var(--ink); color: rgba(255,255,255,.85); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lede { color: rgba(255,255,255,.72); }

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.section-lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   Service cards
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #D9CFC2;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 0; }

.card-icon {
  width: 34px; height: 34px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Before & After
   ============================================================ */
.ba-list { display: grid; gap: clamp(48px, 6vw, 80px); }

.ba {
  margin: 0;
  max-width: 980px;
  margin-inline: auto;
}

.ba-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-2);
}
.ba-frame img { width: 100%; height: auto; }

/* Hairline down the seam of the paired photo */
.ba-frame::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(255,255,255,.55);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-tag {
  position: absolute;
  bottom: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ba-tag-before { left: 16px;  background: rgba(28,28,30,.72); }
.ba-tag-after  { right: 16px; background: rgba(194,112,61,.90); }

.ba figcaption {
  margin-top: 26px;
  max-width: 62ch;
}
.ba figcaption h3 { margin-bottom: .35em; }
.ba figcaption p { margin-bottom: 0; color: rgba(255,255,255,.72); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.tile {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.tile-tall { grid-row: span 2; }
.tile-wide { grid-column: span 2; }

.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,22,.72) 0%, rgba(20,20,22,.12) 42%, transparent 70%);
  opacity: .85;
  transition: opacity .35s var(--ease);
}
.tile:hover { box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: 1; }

.tile-label {
  position: absolute;
  left: 20px; bottom: 18px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p { color: var(--ink-3); }

.about-points {
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
  display: grid;
  gap: 14px;
}
.about-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-3);
  font-size: .98rem;
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--copper);
  border-bottom: 2.5px solid var(--copper);
  transform: rotate(-45deg);
}
.about-points strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}
.contact-list svg {
  width: 20px; height: 20px;
  flex: none;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-list a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  /* Phone and email are the two things a visitor on a phone actually taps,
     so keep them at the 44px minimum target rather than bare 28px text. */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.contact-list a:hover { border-bottom-color: var(--copper); }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
}

.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.optional { font-weight: 400; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(194,112,61,.15);
}

.field.has-error input,
.field.has-error textarea { border-color: #C0392B; }

.field-error {
  margin: 6px 0 0;
  font-size: .82rem;
  color: #C0392B;
  min-height: 0;
}

/* Honeypot — off-screen but still focusable-free for bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 16px 0 0;
  font-size: .93rem;
  text-align: center;
  min-height: 1.4em;
}
.form-status.is-ok    { color: #1E7A46; }
.form-status.is-error { color: #C0392B; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-tag { margin: 2px 0 0; font-size: .85rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: #fff; }

.footer-legal {
  padding-top: 24px;
  text-align: center;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}
.footer-legal p { margin: 0; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: rgba(16,16,18,.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.lightbox.is-open { opacity: 1; }

/* Second line of defence: even if the overlay is somehow displayed while
   closed, it must not intercept clicks meant for the page beneath it. */
.lightbox:not(.is-open) { pointer-events: none; }
.lightbox.is-open { pointer-events: auto; }

.lb-figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 0;
}
.lb-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lb-figure figcaption {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  text-align: center;
}

.lb-nav, .lb-close {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lb-nav:hover, .lb-close:hover { background: rgba(255,255,255,.22); }

.lb-nav {
  width: 52px; height: 52px;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 5px;
}
.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  padding-bottom: 3px;
}

body.no-scroll { overflow: hidden; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .38s var(--ease), visibility .38s;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav a {
    color: #fff !important;
    font-size: 1.5rem;
    font-family: var(--font-display);
    padding: 6px 12px;          /* keeps every link at or above the 44px tap target */
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    border-color: rgba(255,255,255,.5) !important;
    margin-top: 10px;
  }
  /* Toggle sits above the open panel */
  .nav-toggle { position: relative; z-index: 110; }
  .site-header.is-stuck .nav-toggle[aria-expanded="true"] span { background: #fff; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { min-height: 88svh; }
  .hero-inner { padding-bottom: 80px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-scroll { display: none; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .tile-tall, .tile-wide { grid-row: auto; grid-column: auto; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 18px; }

  .ba-tag { bottom: 10px; padding: 5px 11px; font-size: .62rem; }
  .ba-tag-before { left: 10px; }
  .ba-tag-after  { right: 10px; }

  .lightbox { grid-template-columns: 1fr; padding: 16px; }
  .lb-nav {
    position: absolute;
    bottom: 24px;
    width: 46px; height: 46px;
  }
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }
}

@media (max-width: 420px) {
  .brand-sub { display: none; }
  .shell { padding-inline: 18px; }
}

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

@media print {
  .site-header, .hero-scroll, .lightbox, .contact-form, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}
