/* =========================================================
   Papaneri & Sons Concrete, bespoke premium build
   Hand-written CSS. Near-monochrome concrete + one red accent.
   ========================================================= */

:root {
  /* palette */
  --ink: #0E0F11;          /* deepest graphite */
  --charcoal: #15171A;     /* dark section bg */
  --charcoal-2: #1D2025;   /* raised dark surface */
  --paper: #F6F5F2;        /* warm off-white */
  --paper-2: #EFEDE8;      /* slightly deeper paper */
  --grey: #6B6F76;         /* mid grey text */
  --grey-light: #A8ADB3;   /* light grey */
  --line: #E2DFD8;         /* hairline on light */
  --line-dark: #2A2E34;    /* hairline on dark */
  --accent: #C8312B;       /* refined brand red */
  --accent-hi: #D8423C;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ff-display: "Sora", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --t: 240ms var(--ease);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1,h2,h3 { font-family: var(--ff-display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--ff-display);
  font-size: .75rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem; display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }
.eyebrow--light { color: var(--grey-light); }
.eyebrow--light::before { background: var(--accent); }

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--dark { background: var(--charcoal); color: var(--paper); }
.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.5rem); }
.section__lede { margin-top: 1.25rem; color: var(--grey); font-size: 1.0625rem; max-width: 62ch; }
.section__lede--light { color: var(--grey-light); }

/* star glyph (pure CSS) */
.star {
  display: inline-block; width: 1em; height: 1em; background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77 5.82 21l1.18-6.88-5-4.87 7.1-1.01z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77 5.82 21l1.18-6.88-5-4.87 7.1-1.01z'/%3E%3C/svg%3E") center/contain no-repeat;
  vertical-align: -.12em;
}
.star--half { -webkit-mask-size: cover; position: relative; }
.star--half::after {
  content: ""; position: absolute; inset: 0 0 0 50%; background: var(--charcoal);
}
.stars { display: inline-flex; gap: .15rem; font-size: 1.1rem; }
.stars .star--half { background: var(--accent); }
.stars .star--half::after { background: var(--charcoal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-display); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: .95rem 1.6rem; border-radius: 2px; border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn--sm { padding: .65rem 1.1rem; font-size: .85rem; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-hi); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--block { width: 100%; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t), padding var(--t);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto; padding: 1.1rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
  transition: padding var(--t);
}
.nav__brand img { height: 46px; width: auto; transition: filter var(--t); }
/* logo over hero: white-glow so it reads on photo; over solid it's fine as-is */
.nav[data-state="top"] .nav__brand img { filter: drop-shadow(0 2px 10px rgba(0,0,0,.55)); }

.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a {
  font-family: var(--ff-display); font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  color: #fff; opacity: .92; position: relative; padding: .35rem 0; transition: opacity var(--t);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent);
  transition: width var(--t);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone {
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: #fff;
  display: inline-flex; align-items: baseline; gap: .4rem; white-space: nowrap;
}
.nav__phone-label { color: var(--accent); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }

/* scrolled state */
.nav[data-state="scrolled"] {
  background: rgba(14,15,17,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 18px 40px -28px rgba(0,0,0,.8);
}
.nav[data-state="scrolled"] .nav__inner { padding-block: .7rem; }
.nav[data-state="scrolled"] .nav__brand img { height: 40px; filter: none; }

/* hamburger */
.nav__toggle { display: none; width: 44px; height: 44px; position: relative; background: none; border: 0; margin-left: .25rem; }
.nav__toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform var(--t), opacity var(--t), top var(--t);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 2.5rem;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu__links a {
  font-family: var(--ff-display); font-weight: 700; font-size: 2rem; color: #fff; letter-spacing: -.02em;
}
.mobile-menu__links a:hover { color: var(--accent); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: .85rem; margin-top: auto; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end; color: #fff;
  padding: 0 var(--gutter) clamp(3.5rem, 8vh, 6rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,17,.45) 0%, rgba(14,15,17,.12) 30%, rgba(14,15,17,.55) 72%, rgba(14,15,17,.92) 100%),
    linear-gradient(90deg, rgba(14,15,17,.62) 0%, rgba(14,15,17,.18) 55%, rgba(14,15,17,0) 80%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; width: 100%; margin-inline: auto; }
.hero__title {
  font-size: clamp(2.6rem, 1rem + 8vw, 6rem);
  line-height: .98; letter-spacing: -.03em; max-width: 16ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hero__sub {
  margin-top: 1.5rem; max-width: 56ch; font-size: clamp(1.0625rem, 1rem + .4vw, 1.3rem);
  color: rgba(255,255,255,.9); line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.25rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2.5rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .9rem; color: rgba(255,255,255,.92);
}
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust li + li { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,.25); }
.hero__trust .star { width: .95em; height: .95em; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 70%{opacity:1;transform:translateY(12px)} 100%{opacity:0;transform:translateY(16px)} }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { background: var(--ink); color: var(--paper); padding-block: clamp(2rem, 4vw, 3rem); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.trust__item {
  display: flex; flex-direction: column; gap: .3rem; padding: .5rem clamp(1rem, 3vw, 2.25rem);
}
.trust__item + .trust__item { border-left: 1px solid var(--line-dark); }
.trust__k { font-family: var(--ff-display); font-weight: 700; font-size: 1.0625rem; display: inline-flex; align-items: center; gap: .4rem; }
.trust__k .star { width: .9em; height: .9em; }
.trust__v { color: var(--grey-light); font-size: .85rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem);
}
.svc {
  position: relative; grid-column: span 4; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 3px;
  background: var(--charcoal); color: #fff; isolation: isolate;
}
.svc:nth-child(1), .svc:nth-child(6) { grid-column: span 6; aspect-ratio: 16 / 11; }
.svc__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 600ms var(--ease), filter 600ms var(--ease);
  filter: grayscale(18%) contrast(1.02);
}
.svc::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,15,17,0) 30%, rgba(14,15,17,.55) 68%, rgba(14,15,17,.92) 100%);
  transition: background var(--t);
}
.svc:hover .svc__img { transform: scale(1.06); filter: grayscale(0%) contrast(1.05); }
.svc:hover::after { background: linear-gradient(180deg, rgba(14,15,17,.15) 20%, rgba(200,49,43,.18) 60%, rgba(14,15,17,.94) 100%); }
.svc__body { position: absolute; inset: auto 0 0 0; padding: clamp(1.25rem, 2.5vw, 2rem); }
.svc__num { font-family: var(--ff-display); font-weight: 700; font-size: .8rem; color: var(--accent); letter-spacing: .1em; }
.svc__name { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.7rem); margin-top: .35rem; }
.svc__desc {
  color: rgba(255,255,255,.82); font-size: .95rem; margin-top: .6rem; max-width: 42ch;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 360ms var(--ease), opacity 360ms var(--ease), margin-top 360ms var(--ease);
}
.svc:hover .svc__desc, .svc:focus-within .svc__desc { max-height: 8rem; opacity: 1; }

/* =========================================================
   FEATURED WORK GALLERY
   ========================================================= */
.gallery {
  margin-top: clamp(2rem, 4vw, 3.5rem); padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: clamp(.75rem, 1.4vw, 1.1rem);
  max-width: 1500px; margin-inline: auto;
}
.gallery__item {
  position: relative; overflow: hidden; border: 0; padding: 0; border-radius: 3px; background: var(--charcoal-2);
}
.gallery__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease), filter 600ms var(--ease); filter: grayscale(12%); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(14,15,17,0); transition: background var(--t); }
.gallery__item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery__item:hover::after { background: rgba(14,15,17,.18); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* =========================================================
   FAMILY STORY
   ========================================================= */
.family { background: var(--paper-2); }
.family__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.family__media { position: relative; }
.family__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 4px; filter: grayscale(8%); }
.family__media::before {
  content: ""; position: absolute; left: -14px; top: -14px; width: 64px; height: 64px;
  border-left: 3px solid var(--accent); border-top: 3px solid var(--accent);
}
.family__text p { color: var(--grey); margin-top: 1.1rem; }
.family__text .section__title { color: var(--ink); }
.family__promise { margin-top: 2rem; padding-left: 1.5rem; border-left: 3px solid var(--accent); }
.family__promise-label { font-family: var(--ff-display); font-weight: 700; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-top: 0; }
.family__promise-text { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; color: var(--ink); line-height: 1.35; margin-top: .5rem !important; }

/* =========================================================
   PROCESS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2.25rem); counter-reset: s; }
.step { padding-top: 1.75rem; border-top: 2px solid var(--line); position: relative; }
.step__n { font-family: var(--ff-display); font-weight: 800; font-size: 2.5rem; color: var(--paper-2); -webkit-text-stroke: 1.5px var(--grey-light); display: block; line-height: 1; }
.step:hover { border-top-color: var(--accent); }
.step__t { font-size: 1.2rem; margin-top: 1rem; }
.step__d { color: var(--grey); font-size: .95rem; margin-top: .55rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__rating { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.reviews__num { font-family: var(--ff-display); font-weight: 800; font-size: 3rem; line-height: 1; letter-spacing: -.03em; }
.reviews__count { color: var(--grey-light); font-family: var(--ff-display); font-weight: 600; font-size: .9rem; }

.reviews__viewport { overflow: hidden; }
.reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, calc((100% - 4rem) / 3)); gap: 2rem; transition: transform 500ms var(--ease); }
.review { background: var(--charcoal-2); border: 1px solid var(--line-dark); border-radius: 4px; padding: 2rem; display: flex; flex-direction: column; }
.review__quote { font-family: var(--ff-display); font-weight: 400; font-size: 1.0625rem; line-height: 1.55; color: var(--paper); position: relative; }
.review__quote::before { content: "\201C"; font-family: var(--ff-display); font-weight: 800; color: var(--accent); font-size: 2.5rem; line-height: 0; position: absolute; left: -.1em; top: .35em; opacity: .5; }
.review__by { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .15rem; }
.review__name { font-family: var(--ff-display); font-weight: 700; }
.review__loc { color: var(--grey-light); font-size: .85rem; }

.reviews__controls { display: flex; gap: .75rem; margin-top: 2rem; }
.reviews__btn { width: 48px; height: 48px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--paper); font-size: 1.1rem; transition: background var(--t), border-color var(--t), color var(--t); }
.reviews__btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.areas__grid li {
  font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.1rem, 1rem + .7vw, 1.5rem);
  padding: 1.4rem .25rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  position: relative; transition: color var(--t), padding-left var(--t); color: var(--ink);
}
.areas__grid li::before { content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 2px; background: var(--accent); transition: width var(--t); transform: translateY(-50%); }
.areas__grid li:hover { padding-left: 1.5rem; color: var(--accent); }
.areas__grid li:hover::before { width: 1rem; }
.areas__grid li:nth-child(4n) { border-right: 0; }
.areas__note { margin-top: 2rem; color: var(--grey); }
.areas__note a { color: var(--accent); font-weight: 600; }
.areas__note a:hover { text-decoration: underline; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact__details { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.contact__details li { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: baseline; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-dark); }
.contact__details li:last-child { border-bottom: 0; }
.contact__label { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.contact__details a, .contact__details span { color: var(--paper); }
.contact__details a:hover { color: var(--accent-hi); }

.contact__form { background: var(--paper); color: var(--ink); border-radius: 5px; padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: 0 40px 80px -50px rgba(0,0,0,.7); }
.contact__form-head { font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .8rem; letter-spacing: .04em; margin-bottom: .45rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: inherit; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 3px;
  background: #fff; color: var(--ink); transition: border-color var(--t), box-shadow var(--t); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,49,43,.14); }
.contact__privacy { margin-top: 1rem; font-size: .82rem; color: var(--grey); text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer__brand img { height: 52px; width: auto; }
.footer__tag { color: var(--grey-light); font-size: .9rem; margin-top: 1.25rem; max-width: 38ch; }
.footer__nav { display: flex; flex-direction: column; gap: .85rem; }
.footer__nav a { font-family: var(--ff-display); font-weight: 600; font-size: .95rem; color: var(--paper); opacity: .85; transition: opacity var(--t), color var(--t); }
.footer__nav a:hover { opacity: 1; color: var(--accent); }
.footer__contact { display: flex; flex-direction: column; gap: .85rem; font-size: .95rem; color: var(--grey-light); }
.footer__contact a:hover { color: var(--accent-hi); }
.footer__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; padding: 1.75rem var(--gutter); max-width: var(--maxw); margin-inline: auto; width: 100%; font-size: .82rem; color: var(--grey); }
.footer__credit { color: var(--grey-light); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
[hidden] { display: none !important; }
.lightbox { position: fixed; inset: 0; z-index: 150; background: rgba(9,10,12,.94); display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; transition: opacity var(--t); }
.lightbox[data-open="true"] { opacity: 1; }
.lightbox__figure { max-width: 1100px; max-height: 86vh; margin: 0; text-align: center; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 3px; }
.lightbox__figure figcaption { color: var(--grey-light); font-family: var(--ff-display); font-weight: 600; font-size: .9rem; margin-top: 1rem; letter-spacing: .02em; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.5rem; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 1.8rem; line-height: 1; border: 1px solid rgba(255,255,255,.2); }
.lightbox__close:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; font-size: 1.3rem; border: 1px solid rgba(255,255,255,.18); }
.lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__nav--prev { left: clamp(.5rem, 2vw, 2rem); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 2rem); }

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .svc { grid-column: span 6 !important; aspect-ratio: 4/3 !important; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .family__grid { grid-template-columns: 1fr; }
  .family__media { order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews__track { grid-auto-columns: minmax(0, calc((100% - 2rem) / 2)); }
}

@media (max-width: 760px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: block; margin-left: auto; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0; }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(3) { border-top: 1px solid var(--line-dark); padding-top: 1.25rem; }
  .trust__item:nth-child(4) { border-top: 1px solid var(--line-dark); padding-top: 1.25rem; }
  .svc { grid-column: span 12 !important; aspect-ratio: 16/11 !important; }
  .svc__desc { max-height: 8rem; opacity: 1; margin-top: .6rem; } /* show on mobile, no hover */
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__grid li:nth-child(4n) { border-right: 1px solid var(--line); }
  .areas__grid li:nth-child(2n) { border-right: 0; }
  .reviews__track { grid-auto-columns: 100%; }
  .contact__details li { grid-template-columns: 1fr; gap: .25rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { align-items: flex-end; }
  .hero__trust li + li { padding-left: 0; border-left: 0; }
}

@media (max-width: 420px) {
  .hero__cta .btn { flex: 1 1 100%; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll span { animation: none; }
  .svc__img, .gallery__item img { transition: none; }
}
