/* =========================================================================
   Creative Renovations — interiors remodeling & repairs, Dallas–Fort Worth
   Mousa, GC · (214) 579-2149. Plain CSS, no build step. Tokens live on :root.

   Direction taken from the shop card: graphite ink on bone-white paper,
   near-monochrome, with a single sawdust-brass accent in small doses.
   Bold condensed grotesk display (Oswald) over a clean UI sans (Inter).
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Color — graphite primary, bone/paper neutrals, sawdust-brass accent */
  --color-bg: #f4f1e9;            /* bone paper, straight off the card */
  --color-surface: #fffefa;
  --color-surface-alt: #e9e5da;   /* alt sections */
  --color-text: #22242a;          /* graphite body copy */
  --color-muted: #5f636a;
  --color-border: #ddd8cb;

  --color-primary: #2f3338;       /* saw-blade graphite */
  --color-primary-dark: #1e2125;
  --color-primary-soft: #e6e6e3;  /* pale graphite tint */

  --color-accent: #a97b3c;        /* sawdust brass — CTAs only */
  --color-accent-dark: #8a6229;
  --color-accent-text: #8a6229;   /* accent that still passes on bone */
  --color-accent-light: #cba063;  /* accent on graphite bands */
  --color-accent-soft: #f1e7d5;

  --color-dark: #1e2125;          /* footer / dark bands */

  /* Typography */
  --font-display: "Oswald", "Haettenschweiler", "Arial Narrow", Impact,
    sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Other */
  --radius: 4px;                  /* restrained, workmanlike corners */
  --radius-sm: 3px;
  --shadow-sm: 0 1px 2px rgba(30, 33, 37, 0.05),
    0 2px 6px rgba(30, 33, 37, 0.06);
  --shadow-md: 0 6px 20px rgba(30, 33, 37, 0.1),
    0 2px 6px rgba(30, 33, 37, 0.06);
  --shadow-lg: 0 24px 60px rgba(30, 33, 37, 0.22);
  --container: 1180px;
  --transition: 180ms ease;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  font-weight: 500;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.6rem, 6.6vw, 4.75rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}
h4 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 var(--space-4);
}

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

/* ---- Layout helpers --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section {
  padding: var(--space-9) 0;
}
.section--tight {
  padding: var(--space-7) 0;
}
.section--alt {
  background: var(--color-surface-alt);
}
.section--dark {
  background: var(--color-primary);
  color: #fff;
}
.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-7);
  text-align: center;
}
.section-head p {
  color: var(--color-muted);
  font-size: 1.15rem;
  margin: 0;
}
.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-text);
  margin-bottom: var(--space-4);
}
.section--dark .eyebrow {
  color: var(--color-accent-light);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  z-index: 200;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
/* Primary = forest green (workhorse) */
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-dark);
}
/* Accent = muted gold, reserved for the top phone/estimate CTA (small doses) */
.btn--accent {
  background: var(--color-accent);
  color: #1c150a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
}
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.0625rem;
}
.btn__ico {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---- Header / nav ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
.brand:hover {
  text-decoration: none;
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.98rem;
  padding: var(--space-2) 0;
  position: relative;
}
.nav__links a:hover {
  color: var(--color-text);
  text-decoration: none;
}
.nav__links a[aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-accent);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-text);
  white-space: nowrap;
}
.nav__phone:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.nav__phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- Hero (full-bleed, image + bottom scrim) -------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/bathroom_after1.jpg");
  background-size: cover;
  background-position: center 62%;
}
/* Dark gradient scrim, weighted to the bottom for text legibility */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(20, 22, 25, 0.62) 0%,
      rgba(20, 22, 25, 0.5) 35%,
      rgba(20, 22, 25, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(20, 22, 25, 0.72) 0%, rgba(20, 22, 25, 0.1) 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 10vh, 6rem);
}
.hero h1 {
  color: #fff;
  margin-bottom: var(--space-5);
}
.hero p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40ch;
  margin-bottom: var(--space-6);
}
.hero .eyebrow {
  color: var(--color-accent-light);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}
.hero__callout {
  margin-top: var(--space-5);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/texture.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: var(--space-3);
  max-width: 18ch;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0;
}

/* ---- Trust bar -------------------------------------------------------- */
.trustbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5) 0;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.95rem;
  font-weight: 500;
}
.trustbar__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent-light);
  flex: none;
}
.trustbar__item strong {
  color: #fff;
  font-weight: 700;
}

/* ---- Cards / grids ---------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-5);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition),
    border-color var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #d9d2c4;
}
.card h3 {
  margin-bottom: var(--space-2);
}
.card p {
  color: var(--color-muted);
  margin: 0;
}
.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.card__icon svg {
  width: 28px;
  height: 28px;
}

/* Service list inside cards */
.card ul {
  margin: var(--space-4) 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--color-muted);
}
.card ul li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ---- Service tracks (residential / commercial) ----------------------- */
.track {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.track:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.track__media {
  aspect-ratio: 16 / 10;
  background: var(--color-surface-alt);
  overflow: hidden;
}
.track__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.track:hover .track__media img {
  transform: scale(1.04);
}
.track__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.track__body h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
}
.track__body p {
  color: var(--color-muted);
}
.track__body ul {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  color: var(--color-muted);
}
.track__body ul li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
}
.track__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.track__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ---- Feature / split rows -------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.checklist {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}

/* ---- Process timeline ------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
.process__step {
  position: relative;
  padding-top: var(--space-6);
}
.process__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.process__step h3 {
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
}
.process__step p {
  color: var(--color-muted);
  margin: 0;
}
.section--dark .process__step p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Featured projects (editorial grid) ------------------------------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-4);
}
.feature-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.feature-grid .gallery-item:nth-child(4) {
  grid-column: span 2;
}

/* ---- Stats ------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.section--dark .stat__num {
  color: var(--color-accent-light);
}
.stat__label {
  color: var(--color-muted);
  font-weight: 500;
  margin-top: var(--space-2);
}
.section--dark .stat__label {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Testimonials ----------------------------------------------------- */
.quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--color-text);
  font-weight: 400;
}
.quote__stars {
  color: var(--color-accent-text);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
}
.quote__author {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-top: var(--space-4);
}
.quote__author span {
  display: block;
  font-weight: 400;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ---- Local / DFW trust ------------------------------------------------ */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}
.area-list li {
  padding: 0.45rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.section--dark .area-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Gallery ---------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-7);
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface-alt);
  aspect-ratio: 4 / 3;
}
.feature-grid .gallery-item {
  aspect-ratio: auto;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(transparent, rgba(30, 33, 37, 0.9));
  color: #fff;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.gallery-item__label span {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-top: 4px;
}
.gallery-item.is-hidden {
  display: none;
}

/* ---- Photo frames ------------------------------------------------------ */
/* Real job photos arrive in whatever shape the phone shot them — panoramas,
   portraits, 4:3. A fixed-ratio frame keeps split layouts balanced instead of
   letting one tall shot stretch a whole section. */
.photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.photo--wide {
  aspect-ratio: 16 / 9;
}
.photo--portrait {
  aspect-ratio: 4 / 5;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Portrait room shots put the subject below centre — bias the crop downward. */
.photo--portrait img {
  object-position: center 62%;
}

/* ---- Before / after pairs -------------------------------------------- */
/* The strongest proof this trade has: the same room, shot twice. Each pair is
   one filterable unit; the two shots inside it open in the lightbox. */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.ba {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ba:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ba--wide {
  grid-column: 1 / -1;
}
.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-border);
}
.ba__shot {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-alt);
  cursor: pointer;
}
.ba--wide .ba__shot {
  aspect-ratio: 16 / 9;
}
.ba__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.ba__shot:hover img {
  transform: scale(1.04);
}
.ba__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 1;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba__tag--before {
  background: rgba(20, 22, 25, 0.85);
  color: #fff;
}
.ba__tag--after {
  background: var(--color-accent);
  color: #1a1206;
}
.ba__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}
.ba__body h3 {
  margin-bottom: var(--space-2);
}
.ba__body p {
  color: var(--color-muted);
  margin: 0;
}
.ba__meta {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: var(--space-2);
}
.ba.is-hidden {
  display: none;
}

/* ---- Service list (card-style, from the shop card's bullet list) ------ */
.svc-list {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.svc-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-muted);
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--color-accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: rgba(20, 22, 25, 0.92);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__caption {
  color: #fff;
  text-align: center;
  margin-top: var(--space-4);
  font-weight: 500;
}
.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ---- CTA band --------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/texture.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: var(--space-4);
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto var(--space-6);
}
.cta-band .hero__actions {
  justify-content: center;
}
.cta-band__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.cta-band__phone:hover {
  color: var(--color-accent-light);
  text-decoration: none;
}

/* ---- Contact ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.contact-method {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-method:last-child {
  border-bottom: none;
}
.contact-method__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method__icon svg {
  width: 22px;
  height: 22px;
}
.contact-method h3 {
  margin: 0 0 2px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 600;
}
.contact-method a,
.contact-method p {
  margin: 0;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-method a:hover {
  color: var(--color-primary);
}

/* Mailto quick-form */
.field {
  margin-bottom: var(--space-4);
}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--color-text);
  background: var(--color-surface);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: var(--space-3);
}

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-8) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}
.site-footer a:hover {
  color: #fff;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: var(--space-2);
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: var(--space-4);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 32ch;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Sticky mobile call bar ------------------------------------------ */
.call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: var(--space-3) var(--space-4);
  padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -6px 20px rgba(30, 33, 37, 0.25);
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #1c150a;
  font-weight: 700;
  font-size: 1.0625rem;
}
.call-bar a:hover {
  text-decoration: none;
}
.call-bar svg {
  width: 20px;
  height: 20px;
}

/* ---- Utilities -------------------------------------------------------- */
.text-center {
  text-align: center;
}
.mt-6 {
  margin-top: var(--space-6);
}
.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--color-muted);
}

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  .grid--4,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .ba--wide .ba__shot {
    aspect-ratio: 4 / 3;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .feature-grid .gallery-item:nth-child(1),
  .feature-grid .gallery-item:nth-child(4) {
    grid-column: span 2;
  }
  .feature-grid .gallery-item:nth-child(1) {
    grid-row: span 1;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trustbar__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .nav__links,
  .nav__phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Keep a compact Call button in the header on mobile */
  .nav__cta .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  /* Mobile menu open state */
  .site-header.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: var(--space-3) var(--space-5);
  }
  .site-header.is-open .nav__links li {
    width: 100%;
  }
  .site-header.is-open .nav__links a {
    display: block;
    padding: var(--space-3) 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .site-header.is-open .nav__links li:last-child a {
    border-bottom: none;
  }
  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .grid--3,
  .grid--4,
  .stats,
  .process,
  .gallery-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-auto-rows: 220px;
  }
  .feature-grid .gallery-item:nth-child(1),
  .feature-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
  .hero__actions .btn,
  .cta-band .btn {
    flex: 1 1 auto;
  }
  .section {
    padding: var(--space-8) 0;
  }
  /* Reveal sticky tap-to-call bar; pad body so it never covers the footer */
  .call-bar {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
