/* ==========================================================================
   ZUNI CONSTRUCTION — landing page styles
   Palette:  Black & white branding — Iron #131417 · Graphite #1D1F23
             Concrete #F2F1EE · Steel #9A9DA1
             Amber #F2C200 is reserved for buttons/CTAs only
   Type:     Anton (display) · Barlow (body) · Barlow Condensed (labels)
   Signature: 45° diagonal cuts echoing the angles in the ZUNI logomark
   ========================================================================== */

:root {
  --iron: #131417;
  --graphite: #1d1f23;
  --concrete: #f2f1ee;
  --white: #ffffff;
  --steel: #9a9da1;
  --steel-dark: #55585d;
  --amber: #f2c200; /* buttons & CTAs only */
  --amber-dark: #d4aa00;
  --line: rgba(19, 20, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;

  --nav-h: 76px;
  --cut: 28px; /* size of the 45° corner cuts */
  --radius: 4px;
  --container: 1180px;
  --shadow-lg: 0 24px 48px -16px rgba(19, 20, 23, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--iron);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--iron);
  flex-shrink: 0;
}

.eyebrow--light {
  color: var(--steel);
}

.eyebrow--light::before {
  background: var(--white);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--iron);
  max-width: 640px;
}

.section__title--light {
  color: var(--white);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}

.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.eyebrow--center {
  justify-content: center;
}

.section__lead {
  max-width: 380px;
  color: var(--steel-dark);
  font-size: 17px;
  padding-bottom: 6px;
}

.section {
  padding: 104px 0;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--amber {
  background: var(--amber);
  color: var(--iron);
}

.btn--amber:hover {
  background: var(--amber-dark);
}

.btn--ghost {
  border-color: var(--line-light);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--iron);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--graphite);
}

.btn--outline-dark {
  border-color: var(--iron);
  color: var(--iron);
}

.btn--outline-dark:hover {
  background: var(--iron);
  color: var(--white);
}

.btn--lg {
  padding: 17px 32px;
  font-size: 18px;
}

.btn--block {
  width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--concrete);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 8px 24px -12px rgba(19, 20, 23, 0.25);
}

.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo-img {
  height: 40px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar__link {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iron);
  position: relative;
  padding: 6px 0;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--iron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  transform: scaleX(1);
}

.navbar__cta-mobile {
  display: none;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.navbar__burger span {
  width: 26px;
  height: 3px;
  background: var(--iron);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--concrete);
  padding: calc(var(--nav-h) + 22px) 22px 22px;
}

.hero__frame {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: stretch;
  max-width: 1760px;
  margin-inline: auto;
}

/* --- slide pagination rail (01 / 02) --- */
.hero__rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero__rail-num {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--steel);
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.hero__rail-num::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--iron);
  transition: width 0.25s ease;
}

.hero__rail-num:hover {
  color: var(--iron);
}

.hero__rail-num.is-active {
  color: var(--iron);
}

.hero__rail-num.is-active::after {
  width: 30px;
}

/* --- framed image panel --- */
.hero__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--iron);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__bg.is-active {
  opacity: 1;
  animation: hero-zoom 8s ease-out forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* dark overlay so the headline and form stay readable over any photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 14, 16, 0.88) 0%,
    rgba(13, 14, 16, 0.64) 55%,
    rgba(13, 14, 16, 0.42) 100%
  );
}

.hero__inner {
  position: relative;
  width: min(1180px, 100% - 96px);
  margin-inline: auto;
  min-height: 680px;
  padding: 88px 0 90px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 72px;
  align-items: end; /* text column shares a baseline with the form card */
}

/* --- rotating text slides (form card stays put) --- */
.hero__slides {
  display: grid;
}

.hero__slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0.2s;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400; /* Anton is single-weight; stops browser faux-bold on <h1> */
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
}

.hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

@supports not (-webkit-text-stroke: 2px white) {
  .hero__title-outline {
    color: var(--white);
  }
}

.hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


.stars {
  color: var(--iron);
  font-size: 15px;
  letter-spacing: 4px;
}

/* --- Hero lead form card --- */
.hero__form-card {
  position: relative;
  background: var(--white);
  color: var(--iron);
  padding: 40px 34px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
}

.hero__form-tab {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--iron);
  color: var(--white);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 18px;
}

.hero__form-title {
  font-family: var(--font-display);
  font-size: 27px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 14px 0 6px;
}

.hero__form-sub {
  color: var(--steel-dark);
  font-size: 15.5px;
  margin-bottom: 22px;
}

/* ---------- Forms (shared) ---------- */
.lead-form .field {
  margin-bottom: 16px;
}

.lead-form label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--steel-dark);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--iron);
  background: var(--concrete);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--iron);
  background: var(--white);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: #d64545;
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
}

.lead-form__note {
  font-size: 13.5px;
  color: var(--steel-dark);
  text-align: center;
  margin-top: 12px;
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  min-height: 1em;
}

.form-status.is-ok {
  color: #1d7d4f;
}

.form-status.is-err {
  color: #d64545;
}

/* honeypot — invisible to humans */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================================================
   ABOUT (soft-grey, photo + frosted quote bar)
   ========================================================================== */
.about {
  background: var(--concrete);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.about__content .section__title {
  margin: 4px 0 22px;
}

.about__text {
  color: var(--steel-dark);
  max-width: 480px;
  margin-bottom: 30px;
}

.about__photo {
  aspect-ratio: 16 / 11;
  width: 100%;
  border-radius: 10px;
}

/* frosted testimonial bar overlapping the photo's lower edge */
.about__quotebar {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin-top: -112px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 18px 40px -24px rgba(19, 20, 23, 0.28);
}

.about__quotes {
  display: grid;
  flex: 1;
}

.about-quote {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.about-quote.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.about-quote .stars {
  font-size: 12.5px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.about-quote blockquote {
  font-size: 18.5px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-quote figcaption {
  font-size: 14.5px;
  color: var(--steel-dark);
}

.about-quote figcaption strong {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iron);
}

.about__quotes-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.about__qbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--iron);
  background: transparent;
  color: var(--iron);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.about__qbtn svg {
  width: 18px;
  height: 18px;
}

.about__qbtn:hover {
  background: var(--iron);
  color: var(--white);
}

/* ==========================================================================
   SERVICES (simple 4-up row with dashed dividers)
   ========================================================================== */
.services {
  background: var(--white);
}

.services__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  padding: 40px 30px 44px;
  border-left: 1px dashed rgba(19, 20, 23, 0.22);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.service-item:first-child {
  border-left: 0;
}

.service-item:hover {
  background: var(--concrete);
}

.service-item__icon {
  color: var(--iron);
  margin-bottom: 24px;
}

.service-item__icon svg {
  width: 44px;
  height: 44px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--steel-dark);
  font-size: 15.5px;
}

.services__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 54px;
}

.services__quote-link {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.services__quote-link svg {
  width: 19px;
  height: 19px;
}

.services__quote-link:hover {
  border-color: var(--iron);
}

.services__note {
  text-align: center;
  margin-top: 24px;
  color: var(--steel-dark);
  font-size: 15px;
}

/* ==========================================================================
   BEFORE / AFTER (drag-to-reveal comparison)
   ========================================================================== */
.ba {
  background: var(--concrete);
}

.ba .section__head--center {
  margin-bottom: 48px;
}

.ba__frame {
  width: min(1760px, 100% - 44px);
  margin-inline: auto;
}

.ba__viewer {
  position: relative;
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  overflow: hidden;
  background: var(--graphite);
}

.ba__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* the "before" layer sits on top, clipped to the handle position */
.ba__img--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba__label {
  position: absolute;
  top: 18px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(19, 20, 23, 0.72);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ba__label--before {
  left: 18px;
}

.ba__label--after {
  right: 18px;
}

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--iron);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px -6px rgba(19, 20, 23, 0.45);
}

.ba__grip svg {
  width: 22px;
  height: 22px;
}

.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.ba__caption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-dark);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--white);
  color: var(--iron);
  padding: 72px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

/* thin hazard edge on top of the band */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--iron) 0 16px,
    transparent 16px 32px
  );
  opacity: 0.9;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
}

.cta-band__sub {
  font-size: 18px;
  font-weight: 500;
  margin-top: 6px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   WORK (vertical job reel + photo gallery with lightbox)
   ========================================================================== */
.work {
  background: var(--concrete);
}

.work__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: stretch;
}

/* video fills the full row height (matches the gallery) via object-fit cover */
.work__video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--graphite);
  min-height: 420px;
}

.work__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.work__thumb {
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--graphite);
}

.work__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.work__thumb:hover img {
  transform: scale(1.07);
  opacity: 0.92;
}

/* ==========================================================================
   REVIEWS (sticky intro left, long testimonials right)
   ========================================================================== */
.reviews {
  background: var(--white);
}

.reviews__inner {
  display: grid;
  grid-template-columns: minmax(240px, 30%) 1fr;
  gap: 72px;
  align-items: start;
}

.reviews__intro {
  position: sticky;
  top: calc(var(--nav-h) + 36px);
}

.reviews__logo {
  width: 190px;
  height: auto;
  margin-bottom: 28px;
}

.reviews__intro .section__title {
  margin: 4px 0 16px;
}

.reviews__blurb {
  color: var(--steel-dark);
  font-size: 16px;
  margin-bottom: 18px;
}

.reviews__score {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__score .stars {
  font-size: 14px;
}

.review {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.review:first-child {
  border-top: 0;
  padding-top: 0;
}

.review__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--concrete);
  color: var(--iron);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.review__head strong {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review__meta {
  font-size: 14.5px;
  color: var(--steel-dark);
}

.review .stars {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.review blockquote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--steel-dark);
  max-width: 640px;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 12, 0.92);
}

.lightbox__stage {
  position: relative;
  max-width: min(1100px, 90vw);
  max-height: 84vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 8px;
  display: block;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.lightbox__btn {
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  color: var(--iron);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.lightbox__btn svg {
  width: 22px;
  height: 22px;
}

.lightbox__btn:hover {
  transform: scale(1.07);
  background: var(--amber);
}

.lightbox__close {
  top: 22px;
  right: 22px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.07);
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.lightbox__counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--white);
}

body.no-scroll {
  overflow: hidden;
}

/* ---------- Photo placeholder (swap for real <img> tags) ---------- */
.photo-slot {
  background: var(--graphite);
  background-image: repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.05) 0 2px,
      transparent 2px 26px
    );
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius);
}

.photo-slot__label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

.photo-slot__label small {
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: none;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--iron);
  color: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.contact__lead {
  color: rgba(255, 255, 255, 0.75);
  margin: 18px 0 30px;
  max-width: 440px;
}

.contact__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact__list li:first-child {
  border-top: 1px solid var(--line-light);
}

.contact__label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}

.contact__list a {
  font-size: 21px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.contact__list a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact__list p {
  color: rgba(255, 255, 255, 0.82);
}

.contact__form {
  background: var(--white);
  color: var(--iron);
  padding: 40px 36px;
  border-radius: var(--radius);
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    0 100%
  );
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 56px;
  padding: 72px 0 56px;
}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 15.5px;
  max-width: 380px;
}

.footer__license {
  margin-top: 12px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13.5px;
  color: var(--steel);
}

.footer__heading {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 16px;
  transition: color 0.15s ease;
  width: fit-content;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__areas p {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer__bar {
  border-top: 1px solid var(--line-light);
  padding: 20px 0;
}

.footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
}

.footer__top {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer__top:hover {
  color: var(--white);
}

/* ==========================================================================
   STICKY CALL / EMAIL WIDGET
   ========================================================================== */
.sticky-cta {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 90;
}

.sticky-cta__btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--iron);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgba(19, 20, 23, 0.45);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.sticky-cta__btn svg {
  width: 25px;
  height: 25px;
}

.sticky-cta__btn:hover {
  transform: scale(1.08);
  background: var(--amber-dark);
}

.sticky-cta__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--iron);
  color: var(--white);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sticky-cta__btn:hover .sticky-cta__label,
.sticky-cta__btn:focus-visible .sticky-cta__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* subtle pulse on the call button to draw the eye */
.sticky-cta__btn:first-child::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  animation: cta-pulse 2.4s ease-out infinite;
}

@keyframes cta-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__inner {
    gap: 48px;
  }

  .work__layout {
    grid-template-columns: 320px 1fr;
  }

  .work__gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews__inner {
    gap: 48px;
  }

  .services__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item:nth-child(odd) {
    border-left: 0;
  }

  .service-item:nth-child(n + 3) {
    border-top: 1px dashed rgba(19, 20, 23, 0.22);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: calc(var(--nav-h) + 14px) 14px 14px;
  }

  /* rail drops below the framed image as a horizontal row */
  .hero__frame {
    grid-template-columns: 1fr;
  }

  .hero__rail {
    order: 2;
    flex-direction: row;
    justify-content: flex-start;
    gap: 26px;
    padding: 14px 6px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 64px);
    min-height: 0;
    padding: 56px 0 60px;
  }

  .hero__form-card {
    max-width: 560px;
  }

  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__quotebar {
    width: 100%;
    margin-top: -72px;
  }

  .ba__viewer {
    aspect-ratio: 4 / 3;
  }

  .work__layout {
    grid-template-columns: 1fr;
  }

  .work__video-wrap {
    aspect-ratio: 9 / 16;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
    min-height: 0;
  }

  .reviews__inner {
    grid-template-columns: 1fr;
  }

  .reviews__intro {
    position: static;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  /* --- mobile nav --- */
  .navbar__burger {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--concrete);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 32px -20px rgba(19, 20, 23, 0.3);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }

  .navbar__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__link {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__cta-mobile {
    display: inline-flex;
    margin-top: 18px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .work__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }

  .lightbox__btn {
    width: 44px;
    height: 44px;
  }

  .services__row {
    grid-template-columns: 1fr;
  }

  .service-item {
    border-left: 0;
    padding: 30px 18px;
  }

  .service-item:nth-child(n + 2) {
    border-top: 1px dashed rgba(19, 20, 23, 0.22);
  }

  .about__quotebar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    margin-top: -48px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero {
    padding: calc(var(--nav-h) + 10px) 10px 10px;
  }

  .hero__inner {
    width: calc(100% - 44px);
  }

  .hero__form-card,
  .contact__form {
    padding: 36px 24px 26px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 44px;
  }

  .cta-band__actions,
  .cta-band__actions .btn {
    width: 100%;
  }

  /* sticky widget hugs the bottom corner on phones */
  .sticky-cta {
    top: auto;
    bottom: 22px;
    right: 16px;
    transform: none;
    gap: 12px;
  }

  .sticky-cta__btn {
    width: 54px;
    height: 54px;
  }

  .sticky-cta__label {
    display: none;
  }
}
