:root {
  --cream: #f4efe6;
  --cream-alt: #efe8dc;
  --ink: #1a1714;
  --muted: #6b655c;
  --red: #c8102e;
  --red-hover: #a50d26;
  --steel: #31434a;
  --clay: #8a5137;
  --border: #d9d2c5;
  --white: #fffaf2;
  --shadow-soft: 0 24px 60px rgb(26 23 20 / 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgb(49 67 74 / 0.08), transparent 28rem),
    linear-gradient(180deg, var(--cream), #f7f4ee 44%, var(--cream));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.42s ease both;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 250 242 / 0.9);
  border-bottom: 1px solid rgb(217 210 197 / 0.78);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav.is-scrolled {
  background: rgb(255 250 242 / 0.96);
  box-shadow: 0 12px 34px rgb(26 23 20 / 0.09);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav__logo {
  width: 132px;
  height: auto;
  display: block;
}

.nav__mark,
.footer__brand span {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav__suffix,
.footer__brand p,
.footer__bottom,
.project__copy p,
.section__center p,
.about p,
.contact-item p,
.section-kicker {
  color: var(--muted);
}

.nav__logo + .nav__mark,
.nav__logo + .nav__mark + .nav__suffix {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav__links a,
.footer a {
  transition: color 0.15s ease;
}

.nav__links a:hover,
.nav__links a.is-active,
.footer a:hover {
  color: var(--red);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgb(26 23 20 / 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.nav__toggle span {
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgb(26 23 20 / 0.08);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgb(26 23 20 / 0.14);
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-hover);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: rgb(26 23 20 / 0.9);
}

.btn--outline-light {
  border: 1px solid rgb(255 255 255 / 0.42);
  color: #fff;
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 0.08);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgb(0 0 0 / 0.1), rgb(0 0 0 / 0.1)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(0 0 0 / 0.68);
}

.hero__inner {
  padding: 96px 24px 132px;
  text-align: center;
  color: #fff;
}

.hero__script,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-weight: 900;
  line-height: 1.02;
}

h1 {
  font-size: clamp(56px, 8vw, 92px);
  color: var(--red);
}

h2 {
  font-size: clamp(34px, 5vw, 50px);
}

.hero__body {
  max-width: 650px;
  margin: 28px auto 0;
  color: rgb(255 255 255 / 0.88);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.intro-cards {
  position: relative;
  z-index: 3;
  margin-top: -80px;
}

.intro-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: 0 24px 48px rgb(26 23 20 / 0.12);
}

.intro-cards article {
  min-height: 246px;
  padding: 40px 42px;
  text-align: center;
  border-right: 1px solid rgb(217 210 197 / 0.55);
}

.intro-cards article:last-child {
  border-right: 0;
}

.feature-icon,
.service-icon,
.contact-item span {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.intro-cards h2 {
  margin-top: 22px;
  font-size: 21px;
}

.intro-cards p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-cards a {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.section,
.contact {
  scroll-margin-top: 88px;
}

.section {
  padding: 108px 0;
}

.about__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}

.about p {
  max-width: 560px;
  margin: 24px 0 30px;
  font-size: 16px;
  line-height: 1.8;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(-8px, -4px, 0);
  }

  to {
    transform: scale(1.08) translate3d(10px, 6px, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

.reveal :where(.stat-card, .service-card, .project-card, .faq-list details, .why-media, .why-content) {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details, .why-media, .why-content) {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details):nth-child(2) {
  transition-delay: 0.06s;
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details):nth-child(3) {
  transition-delay: 0.12s;
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details):nth-child(4) {
  transition-delay: 0.18s;
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details):nth-child(5) {
  transition-delay: 0.24s;
}

.reveal.is-visible :where(.stat-card, .service-card, .project-card, .faq-list details):nth-child(6) {
  transition-delay: 0.3s;
}

.reveal.is-visible .why-content {
  transition-delay: 0.1s;
}

.about__media {
  position: relative;
}

.about__media::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -38px;
  z-index: -1;
  width: 52%;
  height: 78%;
  opacity: 0.35;
  background-image: radial-gradient(var(--muted) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}

.photo {
  min-height: 260px;
  background-position: center;
  background-size: cover;
  background-color: var(--cream-alt);
}

.photo,
.project-card__image,
.project .photo {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.photo--about {
  min-height: 475px;
  background-image:
    linear-gradient(rgb(255 250 242 / 0.08), rgb(255 250 242 / 0.08)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80");
}

.play-card {
  position: absolute;
  left: -46px;
  top: 42%;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: 0 18px 40px rgb(26 23 20 / 0.16);
}

.play-card span {
  width: 58px;
  height: 58px;
  border: 2px solid var(--red);
  border-radius: 999px;
  position: relative;
}

.play-card span::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 22px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--red);
}

.play-card p {
  margin: -16px 0 0;
  color: var(--ink);
}

.service-area {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.service-area::before {
  content: "ANJ";
  position: absolute;
  right: -20px;
  bottom: -46px;
  color: rgb(255 250 242 / 0.04);
  font-size: clamp(130px, 24vw, 330px);
  font-weight: 900;
  line-height: 0.8;
}

.service-area .section-kicker,
.service-area h2 {
  color: #fff;
}

.service-area p {
  color: rgb(255 250 242 / 0.74);
  line-height: 1.75;
}

.service-area__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.service-area__list {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area__list span {
  border: 1px solid rgb(255 250 242 / 0.24);
  border-radius: 999px;
  background: rgb(255 250 242 / 0.08);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
}

.service-area__card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgb(255 250 242 / 0.14);
  background: rgb(255 250 242 / 0.06);
  box-shadow: 18px 18px 0 rgb(200 16 46 / 0.34);
}

.service-area__map {
  min-height: 250px;
  border: 1px solid rgb(255 250 242 / 0.2);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 250 242 / 0.08), transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 31px, rgb(255 250 242 / 0.10) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgb(255 250 242 / 0.08) 31px 32px),
    rgb(255 250 242 / 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-area__map svg {
  width: 100%;
  height: auto;
  display: block;
}

.ga-state {
  fill: rgb(255 250 242 / 0.10);
  stroke: rgb(255 250 242 / 0.40);
  stroke-width: 1.5;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgb(255 250 242 / 0.10));
}

.city-dot {
  fill: var(--red);
  filter: drop-shadow(0 0 4px rgb(200 16 46 / 0.55));
}

.city-label {
  fill: #fff;
  font-size: 11px;
  font-weight: 900;
  font-family: system-ui, -apple-system, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-area__label {
  margin: 4px 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-area__card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.section__center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section__center p:not(.section-kicker) {
  margin: 18px auto 0;
  line-height: 1.7;
}

.filters {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter,
.scope-options button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(26 23 20 / 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 8px 16px;
  font-size: 14px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.filter.is-active span {
  color: rgb(255 255 255 / 0.66);
}

.project-grid {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-grid--featured {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.project {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 0 rgb(26 23 20 / 0.08);
}

.project a {
  display: block;
  height: 100%;
}

.project.is-hidden {
  display: none;
}

.project .photo {
  min-height: 240px;
}

.project__copy {
  padding: 24px 28px 28px;
}

.project h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 24px;
}

.project p {
  margin-bottom: 0;
  line-height: 1.65;
}

.project__copy span,
.service-grid article a {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgb(26 23 20 / 0.12);
}

.project:hover .photo,
.project-card:hover .project-card__image {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.photo--residential {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80");
}

.photo--commercial {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80");
}

.photo--restoration {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.photo--chimney {
  background-image: url("https://images.unsplash.com/photo-1592928302636-c83cf1e1a28b?auto=format&fit=crop&w=900&q=80");
}

.photo--block {
  background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=80");
}

.photo--patio {
  background-image: url("https://images.unsplash.com/photo-1604014237800-1c9102c219da?auto=format&fit=crop&w=900&q=80");
}

.photo--apartment-savannah {
  background-image: url("../assets/img/apartment-savanah.jpg");
}

.photo--chimney-winder {
  background-image: url("../assets/img/chimney-winder.jpg");
}

.gallery-photo--home {
  background-image: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--wall {
  background-image: url("https://images.unsplash.com/photo-1599423300746-b62533397364?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--walkway {
  background-image: url("https://images.unsplash.com/photo-1598902108854-10e335adac99?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--storefront {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--office {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--industrial {
  background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.gallery-photo--site {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80");
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.process-strip {
  padding: 44px 0;
  background: var(--ink);
  color: #fff;
}

.process-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgb(255 250 242 / 0.16);
  border: 1px solid rgb(255 250 242 / 0.16);
}

.process-strip article {
  min-height: 210px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgb(200 16 46 / 0.24), transparent 42%),
    var(--ink);
}

.process-strip span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.process-strip h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 28px;
}

.process-strip p {
  margin: 0;
  color: rgb(255 250 242 / 0.72);
  line-height: 1.65;
}

.services {
  background:
    linear-gradient(rgb(244 239 230 / 0.9), rgb(244 239 230 / 0.9)),
    repeating-linear-gradient(0deg, transparent 0, transparent 8px, rgb(217 210 197 / 0.34) 9px),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgb(217 210 197 / 0.25) 9px);
}

.service-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-grid article {
  min-height: 292px;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid rgb(217 210 197 / 0.72);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgb(26 23 20 / 0.1);
}

.service-icon {
  width: 78px;
  height: 78px;
  background: rgb(200 16 46 / 0.08);
  color: var(--red);
}

.service-grid h3 {
  margin: 30px 0 14px;
  font-size: 22px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgb(255 250 242 / 0.88), rgb(255 250 242 / 0.88)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgb(200 16 46 / 0.12) 23px 24px),
    var(--cream-alt);
  color: var(--ink);
  text-align: left;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-band::before {
  top: 34px;
  right: 7%;
  width: 180px;
  height: 180px;
  border: 18px solid rgb(200 16 46 / 0.12);
  transform: rotate(8deg);
}

.cta-band::after {
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--red);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  grid-column: 1;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 46px);
}

.cta-band p {
  grid-column: 1;
  margin: 22px 0 34px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.cta-band div div {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 28px 30px;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 12px 12px 0 rgb(200 16 46 / 0.18);
}

.cta-band div div span {
  color: rgb(255 250 242 / 0.58);
}

.contact {
  padding: 104px 0;
  background: var(--cream);
}

.page-hero {
  padding: 104px 0;
  background:
    linear-gradient(rgb(26 23 20 / 0.74), rgb(26 23 20 / 0.74)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
}

.page-hero--projects {
  background:
    linear-gradient(rgb(26 23 20 / 0.74), rgb(26 23 20 / 0.74)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero--services {
  background:
    linear-gradient(rgb(26 23 20 / 0.74), rgb(26 23 20 / 0.74)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero--residential {
  background:
    linear-gradient(rgb(26 23 20 / 0.7), rgb(26 23 20 / 0.7)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero--commercial {
  background:
    linear-gradient(rgb(26 23 20 / 0.7), rgb(26 23 20 / 0.7)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: end;
}

.page-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgb(255 250 242 / 0.84);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero__card {
  padding: 30px;
  background: var(--red);
  box-shadow: 14px 14px 0 rgb(255 250 242 / 0.14);
}

.page-hero__card span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero__card strong {
  display: block;
  margin-top: 8px;
  font-size: 70px;
  line-height: 0.95;
}

.page-hero__card p {
  margin-bottom: 0;
}

.company-detail__grid,
.capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.company-detail p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.values-section {
  background: var(--cream-alt);
}

.values-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.values-grid article {
  min-height: 250px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
}

.values-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.values-grid h3 {
  margin: 40px 0 14px;
  font-size: 24px;
}

.values-grid p,
.capabilities li {
  color: var(--muted);
  line-height: 1.7;
}

.capabilities ul {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.capabilities li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--border);
}

.capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

.project-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-path {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 0 rgb(26 23 20 / 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-path:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgb(26 23 20 / 0.12);
}

.project-path .photo {
  min-height: 340px;
}

.project-path > div:last-child {
  padding: 32px;
}

.project-path h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.project-path p:not(.section-kicker) {
  margin: 18px 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.project-path span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-grid article {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
}

.service-detail-grid h2 {
  margin-top: 26px;
  font-size: 30px;
}

.service-detail-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
}

.gallery-grid .photo {
  min-height: 280px;
}

.gallery-grid figcaption {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.contact__grid {
  align-items: start;
}

.contact h2 {
  margin-bottom: 34px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
}

.contact-form span,
.contact-form legend {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form b {
  color: var(--red);
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgb(26 23 20 / 0.2);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgb(200 16 46 / 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form fieldset {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.scope-options {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scope-options button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-status {
  margin: 0;
  color: rgb(26 23 20 / 0.8);
  font-size: 14px;
}

.form-status.error {
  color: var(--red);
}

.contact-card {
  padding-top: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-item span {
  width: 50px;
  height: 50px;
  font-size: 15px;
}

.contact-item p {
  margin: 0;
  line-height: 1.65;
}

.map-card {
  min-height: 210px;
  margin-top: 28px;
  display: flex;
  align-items: end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgb(200 16 46 / 0.22), transparent 38%),
    linear-gradient(45deg, rgb(26 23 20 / 0.08) 25%, transparent 25% 50%, rgb(26 23 20 / 0.08) 50% 75%, transparent 75%),
    var(--cream-alt);
  background-size: auto, 44px 44px, auto;
  border: 1px solid var(--border);
}

.map-card span {
  display: inline-block;
  background: var(--white);
  padding: 8px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--cream-alt);
}

.footer .container {
  padding-top: 40px;
  padding-bottom: 28px;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer__brand p,
.footer__bottom p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  font-weight: 700;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: var(--cream-alt);
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgb(26 23 20 / 0.14);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--red);
  color: #fff;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero--home {
  min-height: 760px;
  place-items: stretch;
  background: #14110f;
}

.hero--home::before {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.84), rgb(0 0 0 / 0.34)),
    url("../assets/img/apartment-savanah.jpg") center / cover;
}

.hero--home .hero__shade {
  background:
    linear-gradient(0deg, rgb(0 0 0 / 0.28), transparent 44%),
    radial-gradient(circle at 82% 24%, rgb(200 16 46 / 0.24), transparent 32%);
}

.hero__grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 112px;
  color: #fff;
}

.hero__copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__copy h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(48px, 7vw, 86px);
}

.hero__copy .hero__body {
  max-width: 690px;
  margin-left: 0;
  color: rgb(255 255 255 / 0.88);
}

.hero__copy .hero__actions {
  justify-content: flex-start;
}

.hero__trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.82);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.hero__panel {
  align-self: end;
  padding: 32px;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(26 23 20 / 0.72);
  box-shadow: 14px 14px 0 rgb(200 16 46 / 0.72);
}

.hero__panel span {
  display: block;
  color: rgb(255 255 255 / 0.66);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__panel strong {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-size: 42px;
  line-height: 1;
}

.hero__panel p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.76);
  line-height: 1.7;
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -58px;
}

.quote-path {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding-bottom: 34px;
}

.quote-path__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgb(255 250 242 / 0.16);
  box-shadow: var(--shadow-soft);
}

.quote-path__grid article {
  min-height: 180px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgb(200 16 46 / 0.08), transparent 38%),
    var(--white);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease, background-color 0.18s ease;
}

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

.quote-path__grid article:nth-child(2) {
  transition-delay: 0.06s;
}

.quote-path__grid article:nth-child(3) {
  transition-delay: 0.12s;
}

.quote-path__grid article:hover {
  background-color: #fff;
}

.quote-path__grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.quote-path__grid h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.quote-path__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: 0 24px 48px rgb(26 23 20 / 0.14);
}

.stat-card {
  min-height: 142px;
  padding: 30px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  color: var(--red);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
}

.section-heading > p:not(.section-kicker),
.section-heading--split > p,
.about-preview p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading > p:not(.section-kicker) {
  margin: 20px auto 0;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  text-align: left;
}

.services-preview {
  background: var(--cream);
}

.service-preview-layout {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.service-preview-panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  background: var(--ink);
  color: #fff;
  box-shadow: 14px 14px 0 rgb(200 16 46 / 0.22);
}

.service-preview-panel .photo {
  min-height: 320px;
}

.service-preview-panel > div:last-child {
  padding: 28px;
}

.service-preview-panel span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-preview-panel p {
  margin: 14px 0 0;
  color: rgb(255 250 242 / 0.74);
  line-height: 1.7;
}

.service-preview-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.service-card:hover {
  background: rgb(255 250 242 / 0.72);
  padding-left: 18px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.projects-preview {
  background: #fff;
}

.project-preview-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  display: block;
  min-width: 0;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 0 rgb(26 23 20 / 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgb(26 23 20 / 0.13);
}

.project-card__image {
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.project-card span {
  display: block;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.why-section {
  background: var(--ink);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.why-media {
  position: relative;
  border: 1px solid rgb(255 250 242 / 0.16);
  background: rgb(255 250 242 / 0.06);
  box-shadow: 14px 14px 0 rgb(200 16 46 / 0.42);
}

.why-media .photo {
  min-height: 520px;
}

.why-media span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-block;
  background: rgb(26 23 20 / 0.86);
  color: rgb(255 250 242 / 0.72);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-content .section-kicker,
.why-content h2 {
  color: #fff;
}

.why-content > p {
  margin: 24px 0 0;
  color: rgb(255 250 242 / 0.72);
  line-height: 1.75;
}

.why-proof-list {
  margin: 34px 0;
  border-top: 1px solid rgb(255 250 242 / 0.16);
}

.why-proof-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgb(255 250 242 / 0.16);
}

.why-proof-list strong {
  color: #fff;
  font-size: 17px;
}

.why-proof-list span {
  color: rgb(255 250 242 / 0.72);
  line-height: 1.7;
}

.about-preview {
  background: var(--cream-alt);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.about-preview__media {
  position: relative;
}

.about-preview__media::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  width: 62%;
  height: 70%;
  background: var(--red);
}

.about-preview p {
  margin: 24px 0 30px;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 920px;
  margin: 48px auto 0;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 0 24px;
}

.footer--expanded {
  background: #14110f;
  color: #fff;
}

.footer-grid {
  padding-top: 42px;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(120px, 0.65fr) minmax(190px, 0.9fr) minmax(250px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer__logo {
  display: inline-block;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
}

.footer__logo span {
  color: #fff;
  font-size: 20px;
}

.footer__brand-block p,
.footer-contact p {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.55;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact__icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer--expanded .footer__bottom {
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgb(255 255 255 / 0.62);
  border-top-color: rgb(255 255 255 / 0.12);
}

.footer--expanded .footer__bottom p {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .nav__links,
  .nav__actions,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--cream);
    padding: 12px 24px;
  }

  .nav__links.is-open a {
    padding: 13px 0;
  }

  .hero {
    min-height: 660px;
  }

  .intro-cards {
    margin-top: 0;
  }

  .intro-cards__grid,
  .hero__grid,
  .quote-path__grid,
  .stats-grid,
  .about__grid,
  .contact__grid,
  .page-hero__grid,
  .company-detail__grid,
  .capabilities__grid,
  .about-preview__grid,
  .why-grid,
  .section-heading--split,
  .project-preview-grid,
  .service-preview-layout,
  .footer-grid,
  .project-paths__grid,
  .service-detail-grid,
  .service-area__grid,
  .project-grid,
  .gallery-grid,
  .service-grid,
  .values-grid,
  .process-strip__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 36px;
    align-items: end;
  }

  .hero__panel {
    max-width: 420px;
    align-self: start;
  }

  .stats-band {
    margin-top: 0;
  }

  .quote-path {
    margin-top: 0;
    padding-top: 0;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .service-preview-panel {
    grid-template-rows: auto auto;
  }

  .intro-cards article {
    border-right: 0;
    border-bottom: 1px solid rgb(217 210 197 / 0.55);
  }

  .intro-cards article:last-child {
    border-bottom: 0;
  }

  .about__grid,
  .contact__grid {
    gap: 48px;
  }

  .play-card {
    left: 24px;
  }

  .service-area__card {
    grid-template-columns: 1fr;
    box-shadow: 10px 10px 0 rgb(200 16 46 / 0.28);
  }

  .service-area__map {
    min-height: 190px;
  }
}

@media (max-width: 680px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav__inner {
    min-height: 68px;
    padding: 0 20px;
  }

  .nav__mark {
    font-size: 26px;
  }

  .nav__logo {
    width: 116px;
  }

  .nav__suffix {
    font-size: 14px;
  }

  .hero {
    min-height: 610px;
  }

  .hero--home {
    min-height: 690px;
  }

  .hero__grid {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .hero__inner {
    padding-top: 74px;
    padding-bottom: 88px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 68px);
  }

  h2 {
    font-size: clamp(32px, 12vw, 42px);
  }

  .hero__body {
    font-size: 16px;
  }

  .hero__panel {
    padding: 24px;
    box-shadow: 8px 8px 0 rgb(200 16 46 / 0.72);
  }

  .hero__panel strong {
    font-size: 34px;
  }

  .section,
  .contact {
    padding: 72px 0;
  }

  .intro-cards article {
    padding: 34px 24px;
  }

  .about__media::after,
  .play-card {
    display: none;
  }

  .photo--about {
    min-height: 340px;
  }

  .project .photo {
    min-height: 210px;
  }

  .project-card__image {
    min-height: 220px;
  }

  .service-card {
    padding: 24px 0;
  }

  .service-card:hover {
    padding-left: 0;
  }

  .quote-path__grid article {
    min-height: auto;
    padding: 24px;
  }

  .form-row,
  .footer__top,
  .footer__bottom,
  .footer__brand {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer--expanded .footer__bottom {
    align-items: flex-start;
    gap: 8px;
  }

  .footer--expanded .footer__bottom p {
    white-space: normal;
  }

  .cta-band {
    padding: 68px 0;
  }

  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band h2,
  .cta-band p,
  .cta-band div div {
    grid-column: 1;
    grid-row: auto;
  }

  .cta-band div div {
    gap: 18px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal :where(.stat-card, .service-card, .project-card, .faq-list details, .why-media, .why-content),
  .quote-path__grid article {
    opacity: 1;
    transform: none;
  }

  .hero::before {
    animation: none;
  }
}

/* ANJ custom homepage treatment */
:root {
  --page-bg: #f5f7fa;
  --card-bg: #ffffff;
  --blue: #c8102e;
  --blue-soft: #fff0f3;
  --anj-red-accent: #c8102e;
  --anj-red-hover: #a50d26;
  --soft-border: #e7ebf0;
  --soft-text: #728095;
  --soft-shadow: 0 18px 44px rgb(17 24 39 / 0.12);
}

body {
  background: var(--page-bg);
  color: #121826;
}

.nav {
  background: rgb(255 255 255 / 0.96);
  border-bottom-color: var(--soft-border);
  box-shadow: 0 1px 12px rgb(17 24 39 / 0.07);
}

.nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--red);
}

.nav.is-scrolled {
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 8px 26px rgb(17 24 39 / 0.1);
}

.nav__inner {
  min-height: 58px;
}

.nav__brand {
  gap: 10px;
}

.nav__brand::before {
  content: "";
  width: 12px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 7px rgb(200 16 46 / 0.08);
}

.nav__logo {
  display: none;
}

.nav__logo + .nav__mark,
.nav__logo + .nav__mark + .nav__suffix {
  display: inline;
}

.nav__mark {
  color: var(--red);
  font-size: 25px;
  line-height: 1;
}

.nav__suffix {
  color: #121826;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.nav__links {
  gap: 10px;
  color: #5d687a;
  font-size: 13px;
  font-weight: 800;
}

.nav__links a {
  border-radius: 14px;
  padding: 9px 14px;
}

.nav__links a:hover,
.nav__links a.is-active {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav__phone {
  color: #7b8798;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  min-height: 42px;
  border-radius: 999px;
  padding: 13px 24px;
  letter-spacing: 0;
  text-transform: none;
}

.btn--primary {
  background: var(--anj-red-accent);
}

.btn--primary:hover {
  background: var(--anj-red-hover);
}

.btn--dark {
  background: #121826;
}

.btn--outline-light {
  border: 2px solid rgb(255 255 255 / 0.62);
  background: rgb(255 255 255 / 0.12);
}

.btn--outline-blue {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.btn--outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.hero--home {
  min-height: 525px;
  background: #101318;
}

.hero--home::before {
  background:
    linear-gradient(90deg, rgb(4 6 9 / 0.78), rgb(4 6 9 / 0.58) 44%, rgb(4 6 9 / 0.48)),
    linear-gradient(180deg, rgb(4 6 9 / 0.26), rgb(4 6 9 / 0.18)),
    url("../assets/img/apartment-savanah.jpg") center 44% / cover;
}

.hero--home .hero__shade {
  background:
    linear-gradient(180deg, transparent 0%, rgb(4 6 9 / 0.18) 74%, rgb(4 6 9 / 0.46) 100%);
}

.hero__masonry-lines {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 152px;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 18%, rgb(200 16 46 / 0.62) 18% 18.5%, transparent 18.5% 52%, rgb(200 16 46 / 0.62) 52% 52.5%, transparent 52.5%),
    repeating-linear-gradient(0deg, transparent 0 29px, rgb(255 255 255 / 0.32) 29px 30px),
    repeating-linear-gradient(90deg, transparent 0 138px, rgb(255 255 255 / 0.28) 138px 140px);
}

.hero__grid--centered {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: inherit;
  padding-top: 76px;
  padding-bottom: 96px;
  text-align: center;
}

.hero__grid--centered .hero__copy {
  max-width: 790px;
  position: relative;
  padding: 0;
}

.hero__grid--centered .hero__copy::before {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 24px rgb(200 16 46 / 0.4);
}

.eyebrow {
  color: rgb(255 255 255 / 0.88);
  letter-spacing: 0.08em;
}

.hero__copy h1 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 76px);
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgb(0 0 0 / 0.56);
}

.hero__copy .hero__body {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgb(255 255 255 / 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.94);
  text-shadow: 0 2px 18px rgb(0 0 0 / 0.48);
}

.hero__trust,
.hero__copy .hero__actions {
  justify-content: center;
}

.hero__trust {
  margin-top: 22px;
}

.hero__trust span {
  border-color: rgb(255 255 255 / 0.24);
  background: rgb(255 255 255 / 0.13);
}

.stats-band {
  margin-top: -52px;
}

.stats-grid {
  max-width: 980px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 48px rgb(17 24 39 / 0.14);
  overflow: hidden;
  border-left: 7px solid var(--red);
}

.stat-card {
  min-height: 124px;
  padding: 26px 22px;
  text-align: center;
  border-right: 0;
}

.stat-card strong {
  color: var(--anj-red-accent);
  font-size: clamp(32px, 4vw, 44px);
}

.stat-card span {
  margin-top: 7px;
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--anj-red-accent);
  font-family: inherit;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #121826;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: 0;
}

.section-heading > p:not(.section-kicker),
.section-heading--split > p {
  color: var(--soft-text);
  font-size: 16px;
}

.projects-preview {
  background: var(--page-bg);
}

.project-preview-grid {
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgb(17 24 39 / 0.08);
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
}

.project-card::before,
.service-preview-list--cards .service-card::before,
.quote-path__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgb(255 255 255 / 0.5), transparent 34%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.project-card:hover::before,
.service-preview-list--cards .service-card:hover::before,
.quote-path__grid article:hover::before {
  opacity: 1;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-card__image {
  min-height: 255px;
  border-radius: 10px 10px 0 0;
}

.project-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 20px;
}

.project-card__copy strong {
  color: #121826;
  font-size: 15px;
}

.project-card__copy span {
  padding: 0;
  color: #263142;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.quote-path.section {
  margin-top: 0;
  padding: 78px 0;
  background: #eef1f5;
}

.quote-path.section .quote-path__grid {
  margin-top: 42px;
}

.quote-path__grid {
  box-shadow: none;
  gap: 24px;
  background: transparent;
}

.quote-path__grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 248px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgb(17 24 39 / 0.1);
  text-align: left;
  border-top: 4px solid var(--red);
}

.quote-path__grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  z-index: 0;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: rgb(200 16 46 / 0.08);
}

.quote-path__grid span {
  position: relative;
  z-index: 2;
  color: var(--anj-red-accent);
  font-size: 15px;
}

.quote-path__grid h2 {
  position: relative;
  z-index: 2;
  color: #121826;
  font-size: 25px;
}

.quote-path__grid p {
  position: relative;
  z-index: 2;
  color: var(--soft-text);
}

.quote-path__grid small {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--red);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.services-preview {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--page-bg) 0%, #fff 100%);
  padding-bottom: 120px;
}

.services-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(720px, calc(100% - 48px));
  height: 72px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 62px, rgb(200 16 46 / 0.18) 62px 64px),
    linear-gradient(90deg, transparent, rgb(200 16 46 / 0.08), transparent);
  transform: translateX(-50%);
  opacity: 0.7;
  pointer-events: none;
}

.service-preview-list--cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border: 0;
}

.service-preview-list--cards .service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  min-height: 210px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgb(17 24 39 / 0.1);
  padding: 32px 28px;
  text-align: center;
}

.service-preview-list--cards .service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--red);
  transform: scaleX(0.26);
  transition: transform 0.2s ease;
}

.service-preview-list--cards .service-card:hover {
  padding-left: 28px;
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgb(17 24 39 / 0.13);
}

.service-preview-list--cards .service-card:hover::after {
  transform: scaleX(1);
}

.service-emoji {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgb(200 16 46 / 0.1);
  color: var(--anj-red-accent);
  font-weight: 900;
}

.service-preview-list--cards h3 {
  margin-bottom: 8px;
  color: #121826;
  font-size: 20px;
}

.service-preview-list--cards p {
  color: var(--soft-text);
  line-height: 1.55;
}

.service-tags {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  border: 1px solid rgb(200 16 46 / 0.18);
  border-radius: 999px;
  background: rgb(200 16 46 / 0.05);
  color: #5a6474;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.service-preview-list--cards a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.home-cta {
  position: relative;
  overflow: hidden;
  margin-top: -42px;
  padding: 92px 0 82px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.88), #fff 38%),
    radial-gradient(circle at 50% 0%, rgb(200 16 46 / 0.12), transparent 34rem);
  text-align: center;
}

.home-cta .container {
  position: relative;
}

.home-cta .container::before,
.home-cta .container::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 82px;
  height: 82px;
  border: 12px solid rgb(200 16 46 / 0.08);
  border-radius: 18px;
  transform: translateY(-50%) rotate(12deg);
}

.home-cta .container::before {
  left: 0;
}

.home-cta .container::after {
  right: 0;
  transform: translateY(-50%) rotate(-12deg);
}

.home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1040px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(200 16 46 / 0.42), transparent);
  transform: translateX(-50%);
}

.home-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background:
    repeating-linear-gradient(90deg, transparent 0 120px, rgb(18 24 38 / 0.05) 120px 122px),
    repeating-linear-gradient(0deg, transparent 0 27px, rgb(18 24 38 / 0.04) 27px 28px);
  pointer-events: none;
}

.home-cta h2 {
  position: relative;
  z-index: 1;
  color: #121826;
  font-size: clamp(34px, 5vw, 48px);
}

.home-cta p {
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--soft-text);
  font-size: 17px;
}

.home-cta__actions {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}


.footer--expanded {
  background: #101720;
}

.footer__logo {
  color: var(--red);
}

.footer-contact__icon,
.footer a:hover {
  color: var(--red);
}

@media (max-width: 960px) {
  .nav__phone {
    display: none;
  }

  .hero--home {
    min-height: 650px;
  }

  .stats-grid,
  .project-preview-grid,
  .quote-path__grid,
  .service-preview-list--cards {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 24px;
  }
}

@media (max-width: 680px) {
  .nav__inner {
    min-height: 60px;
  }

  .nav__brand {
    gap: 8px;
  }

  .nav__brand::before {
    height: 30px;
  }

  .nav__mark {
    font-size: 23px;
  }

  .nav__suffix {
    font-size: 16px;
  }

  .hero__grid--centered {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero__copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero__copy .hero__body {
    font-size: 16px;
  }

  .home-cta .container::before,
  .home-cta .container::after {
    display: none;
  }

  .project-card__image {
    min-height: 220px;
  }

  .project-card__copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .section,
  .quote-path.section,
  .home-cta {
    padding: 64px 0;
  }

  .services-preview {
    padding-bottom: 92px;
  }

  .home-cta {
    margin-top: -28px;
  }
}

/* Homepage hero layout inspired by the provided reference */
.anj-theme .nav {
  background: #101419;
  border-bottom-color: rgb(255 255 255 / 0.06);
  box-shadow: none;
  backdrop-filter: none;
}

.anj-theme .nav::before,
.anj-theme .nav__brand::before {
  display: none;
}

.anj-theme .nav.is-scrolled {
  background: rgb(16 20 25 / 0.98);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.2);
}

.anj-theme .nav__inner {
  min-height: 66px;
  max-width: 1258px;
}

.anj-theme .nav__logo {
  display: block;
  width: 66px;
}

.anj-theme .nav__logo + .nav__mark,
.anj-theme .nav__logo + .nav__mark + .nav__suffix {
  display: none;
}

.anj-theme .nav__links {
  margin-right: auto;
  gap: 28px;
  color: rgb(255 255 255 / 0.82);
  font-size: 15px;
}

.anj-theme .nav__links a {
  border-radius: 0;
  padding: 0;
}

.anj-theme .nav__links a:hover,
.anj-theme .nav__links a.is-active {
  background: transparent;
  color: #fff;
}

.anj-theme .nav__actions {
  margin-left: auto;
}

.anj-theme .nav__phone {
  display: none;
}

.anj-theme .nav__cta {
  min-height: 36px;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
}

.anj-theme .hero--home {
  min-height: calc(100vh - 66px - 106px);
  background: #11161c;
}

.anj-theme .hero--home::before {
  background:
    linear-gradient(90deg, rgb(9 12 16 / 0.88) 0%, rgb(9 12 16 / 0.7) 32%, rgb(9 12 16 / 0.36) 70%),
    linear-gradient(180deg, rgb(9 12 16 / 0.15), rgb(9 12 16 / 0.5)),
    url("../assets/img/apartment-savanah.jpg") center 44% / cover;
  animation: none;
  transform: none;
}

.anj-theme .hero--home .hero__shade {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.18), transparent 34%, rgb(0 0 0 / 0.2)),
    radial-gradient(circle at 0% 42%, rgb(0 0 0 / 0.5), transparent 34rem);
}

.anj-theme .hero__masonry-lines {
  display: none;
}

.anj-theme .hero__grid--centered {
  place-items: center start;
  min-height: inherit;
  padding-top: 92px;
  padding-bottom: 96px;
  text-align: left;
}

.anj-theme .hero__grid--centered .hero__copy {
  max-width: 760px;
}

.anj-theme .hero__grid--centered .hero__copy::before {
  display: none;
}

.anj-theme .eyebrow {
  margin-bottom: 24px;
  color: rgb(255 255 255 / 0.58);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.anj-theme .hero__copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6vw, 82px);
  line-height: 0.95;
}

.anj-theme .hero__copy h1 span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 900;
}

.anj-theme .hero__copy .hero__body {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.anj-theme .hero__copy .hero__actions {
  justify-content: flex-start;
  margin-top: 36px;
  gap: 12px;
}

.anj-theme .hero__actions .btn {
  min-width: 190px;
  min-height: 50px;
  border-radius: 5px;
  gap: 10px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 900;
}

.anj-theme .hero__actions .btn--outline-light {
  border: 1px solid rgb(255 255 255 / 0.36);
  background: rgb(255 255 255 / 0.08);
}

.anj-theme .stats-band {
  margin-top: 0;
  background: #161b23;
}

.anj-theme .stats-band .container {
  max-width: none;
  padding: 0;
}

.anj-theme .stats-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  border-radius: 0;
  background: #161b23;
  box-shadow: none;
  overflow: visible;
}

.anj-theme .stat-card {
  min-height: 106px;
  display: grid;
  grid-template-columns: 48px auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid rgb(255 255 255 / 0.08);
  text-align: left;
}

.anj-theme .stat-card:last-child {
  border-right: 0;
}

.anj-theme .stat-card__icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(200 16 46 / 0.78);
  border-radius: 999px;
  color: var(--red);
}

.anj-theme .stat-card__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.anj-theme .stat-card strong {
  color: #fff;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 0.95;
}

.anj-theme .stat-card > span:not(.stat-card__icon) {
  margin-top: 5px;
  color: rgb(255 255 255 / 0.62);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .anj-theme .nav__links,
  .anj-theme .nav__actions,
  .anj-theme .nav__cta {
    display: none;
  }

  .anj-theme .nav__links.is-open {
    display: flex;
    background: #101419;
    border-color: rgb(255 255 255 / 0.1);
    padding: 14px 24px;
  }

  .anj-theme .nav__links.is-open a {
    padding: 13px 0;
  }

  .anj-theme .nav__toggle {
    border-color: rgb(255 255 255 / 0.22);
    color: #fff;
  }

  .anj-theme .hero--home {
    min-height: 620px;
  }

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

  .anj-theme .stat-card:nth-child(2) {
    border-right: 0;
  }

  .anj-theme .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
  }
}

@media (max-width: 680px) {
  .anj-theme .nav__inner {
    min-height: 64px;
  }

  .anj-theme .nav__logo {
    width: 58px;
  }

  .anj-theme .hero--home {
    min-height: 650px;
  }

  .anj-theme .hero__grid--centered {
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .anj-theme .eyebrow {
    letter-spacing: 0.18em;
    line-height: 1.5;
  }

  .anj-theme .hero__copy h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .anj-theme .hero__copy .hero__body {
    font-size: 16px;
  }

  .anj-theme .hero__copy .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .anj-theme .hero__actions .btn {
    width: 100%;
  }

  .anj-theme .stats-grid {
    grid-template-columns: 1fr;
  }

  .anj-theme .stat-card,
  .anj-theme .stat-card:nth-child(2) {
    border-right: 0;
  }

  .anj-theme .stat-card {
    justify-content: start;
    padding-left: 28px;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
  }

  .anj-theme .stat-card:last-child {
    border-bottom: 0;
  }
}

/* Screenshot-inspired ANJ homepage */
.anj-theme {
  --home-cream: #f4ecdf;
  --home-cream-2: #fbf6ee;
  --home-dark: #071016;
  --home-panel: #0b1720;
  --home-red: #c8102e;
  --home-line: #dacdbc;
  background: var(--home-cream);
  color: #15120f;
}

.anj-theme .container {
  max-width: 1320px;
  padding-left: 32px;
  padding-right: 32px;
}

.anj-theme .nav {
  position: sticky;
  background: #070d12;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.anj-theme .nav__inner {
  min-height: 62px;
  max-width: 1320px;
  padding-inline: 32px;
  gap: 34px;
}

.anj-theme .nav__logo {
  width: 96px;
}

.anj-theme .nav__links {
  gap: 34px;
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  font-weight: 800;
}

.anj-theme .nav__links a:hover,
.anj-theme .nav__links a.is-active {
  color: #fff;
}

.anj-theme .nav__cta {
  min-height: 42px;
  border-radius: 0;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 900;
}

.anj-theme .hero--home {
  min-height: calc(100vh - 62px);
}

.anj-theme .hero--home::before {
  background:
    linear-gradient(90deg, rgb(4 8 11 / 0.94) 0%, rgb(4 8 11 / 0.82) 37%, rgb(4 8 11 / 0.25) 68%),
    linear-gradient(180deg, rgb(4 8 11 / 0.16), rgb(4 8 11 / 0.28)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center 56% / cover;
}

.anj-theme .hero--home .hero__shade {
  background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 0.15) 100%);
}

.anj-theme .hero__grid--centered {
  min-height: calc(100vh - 62px);
  padding-top: 116px;
  padding-bottom: 110px;
}

.anj-theme .hero__grid--centered .hero__copy {
  max-width: 690px;
}

.anj-theme .eyebrow,
.anj-theme .section-kicker {
  color: var(--home-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.anj-theme .eyebrow::before,
.anj-theme .section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  background: currentColor;
}

.anj-theme .hero__copy h1 {
  max-width: 680px;
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.anj-theme .hero__copy h1 span,
.anj-theme .home-section-head h2 span,
.anj-theme .home-projects__intro h2 span {
  color: var(--home-red);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.anj-theme .hero__copy .hero__body {
  max-width: 620px;
  margin-top: 26px;
  color: rgb(255 255 255 / 0.78);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.anj-theme .hero__copy .hero__actions {
  margin-top: 32px;
}

.anj-theme .hero__actions .btn {
  min-width: 172px;
  min-height: 48px;
  border-radius: 0;
  padding: 14px 22px;
  font-size: 13px;
}

.anj-theme .hero__actions .btn--outline-light {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(0 0 0 / 0.18);
}

.home-metrics {
  position: relative;
  z-index: 4;
  margin-top: -72px;
  background: linear-gradient(180deg, transparent 0 50%, var(--home-cream) 50% 100%);
}

.home-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: #0b1720;
  box-shadow: 0 26px 60px rgb(7 16 22 / 0.26);
}

.home-metrics article {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  border-right: 1px solid rgb(255 255 255 / 0.1);
  background:
    linear-gradient(135deg, rgb(200 16 46 / 0.16), transparent 46%),
    #0b1720;
}

.home-metrics article:last-child {
  border-right: 0;
}

.home-metrics strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.9;
}

.home-metrics span {
  display: block;
  margin-top: 12px;
  color: rgb(255 255 255 / 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-services,
.home-difference {
  position: relative;
  z-index: 2;
  padding: 124px 0 92px;
  background:
    radial-gradient(circle at 7% 12%, rgb(200 16 46 / 0.05), transparent 16rem),
    var(--home-cream);
}

.home-section-head {
  margin-bottom: 40px;
}

.home-section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: 96px;
  align-items: start;
}

.home-section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.home-section-head--center .section-kicker::before {
  display: none;
}

.home-section-head h2,
.home-projects__intro h2 {
  margin-top: 8px;
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1;
}

.home-section-head > p,
.home-section-head--split > p {
  color: #5f574d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-service-grid article {
  min-height: 244px;
  padding: 30px 28px 26px;
  border: 1px solid var(--home-line);
  background: rgb(255 250 242 / 0.48);
  box-shadow: none;
}

.home-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--home-red);
}

.home-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-grid h3,
.difference-grid h3 {
  margin: 16px 0 0;
  color: #17120e;
  font-size: 18px;
  font-weight: 900;
}

.home-service-grid small {
  display: block;
  width: 20px;
  height: 2px;
  margin: 16px 0;
  background: var(--home-red);
}

.home-service-grid p,
.difference-grid p {
  margin: 0;
  color: #5e554c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.home-projects {
  padding: 82px 0 90px;
  background: var(--home-dark);
  color: #fff;
}

.home-projects__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.home-projects__intro {
  align-self: center;
  padding-right: 24px;
}

.home-projects__intro .section-kicker {
  color: var(--home-red);
}

.home-projects__intro h2 {
  color: #fff;
}

.home-projects__intro p {
  margin: 22px 0 30px;
  color: rgb(255 255 255 / 0.66);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.home-projects__intro a {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-project-card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  background: #0d1a24;
}

.home-project-card__image {
  min-height: 278px;
  background-position: center;
  background-size: cover;
}

.home-project-card__copy {
  padding: 18px 20px 22px;
}

.home-project-card__copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--home-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-project-card__copy strong {
  color: #fff;
  font-size: 16px;
}

.home-difference {
  padding-top: 70px;
  text-align: center;
}

.home-difference .home-section-head {
  margin-bottom: 38px;
}

.home-difference .home-section-head h2 {
  margin-top: 6px;
  font-size: clamp(36px, 4.2vw, 54px);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 40px;
}

.difference-grid article {
  min-width: 0;
}

.difference-grid .home-icon {
  width: 46px;
  height: 46px;
  margin-inline: auto;
}

.difference-grid h3 {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.15;
}

.difference-grid p {
  margin-top: 10px;
  font-size: 13px;
}

.anj-theme .footer--expanded {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .home-service-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-projects__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-projects__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .anj-theme .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .anj-theme .nav__inner {
    min-height: 56px;
    padding-inline: 22px;
  }

  .anj-theme .nav__logo {
    width: 76px;
  }

  .anj-theme .nav__links.is-open {
    background: #070d12;
  }

  .home-section-head--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .anj-theme .hero--home {
    min-height: calc(100vh - 56px);
  }

  .anj-theme .hero__grid--centered {
    min-height: calc(100vh - 56px);
    padding-top: 96px;
    padding-bottom: 92px;
  }

  .anj-theme .hero__copy h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .anj-theme .hero__copy .hero__body {
    font-size: 16px;
  }

  .home-services,
  .home-difference,
  .home-projects {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .home-metrics {
    margin-top: -58px;
  }

  .home-metrics__grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .home-metrics article {
    min-height: 120px;
    padding: 24px 22px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
  }

  .home-metrics article:nth-child(2) {
    border-right: 0;
  }

  .home-metrics article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .home-services {
    padding-top: 92px;
  }

  .home-section-head h2,
  .home-projects__intro h2 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .home-service-grid,
  .difference-grid,
  .home-projects__grid {
    grid-template-columns: 1fr;
  }

  .home-service-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .home-project-card__image {
    min-height: 260px;
  }
}

/* ============================================================
   Design polish overrides — applied last so they win by source order.
   Targets: nav wordmark visibility, body-text readability, project
   card sizing, service icon clarity, hero CTA hierarchy.
   ============================================================ */

/* Visually-hidden utility for screen-reader-only headings. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Brand wordmark — Georgia serif treatment on all pages.
   (The img.nav__logo tags were removed from HTML; the spans render directly.) */
.nav__brand {
  gap: 10px;
  align-items: baseline;
}

.nav__mark,
.nav__suffix {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.nav__mark {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.nav__suffix {
  font-size: 15px;
  font-weight: 600;
}

.anj-theme .nav__suffix {
  color: #fff;
  opacity: 0.94;
}

.anj-theme .home-service-grid p,
.anj-theme .difference-grid p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a342d;
}

.anj-theme .home-section-head > p,
.anj-theme .home-section-head--split > p {
  color: #3a342d;
}

.anj-theme .home-projects__intro p {
  color: rgb(255 255 255 / 0.82);
}

.anj-theme .home-icon {
  width: 54px;
  height: 54px;
}

.anj-theme .home-icon svg {
  stroke-width: 1.85;
}

.anj-theme .home-project-card {
  display: flex;
  flex-direction: column;
}

.anj-theme .home-project-card__image {
  flex: 1 1 auto;
  min-height: 240px;
}

.anj-theme .home-project-card__copy {
  padding: 20px 22px;
}

.anj-theme .hero__actions .btn--outline-light {
  border-color: rgb(255 255 255 / 0.22);
  background: transparent;
}

.anj-theme .hero__actions .btn--outline-light:hover {
  border-color: rgb(255 255 255 / 0.55);
  background: rgb(255 255 255 / 0.06);
}

/* ============================================================
   Theme extension to .page-hero (non-home pages).
   Applies the homepage's serif typography and italic-red emphasis
   to about/services/projects/faq/contact heroes.
   ============================================================ */

.anj-theme .page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.anj-theme .page-hero h1 span {
  color: var(--home-red);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.anj-theme .page-hero__card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -2px;
}

.anj-theme .page-hero p:not(.section-kicker) {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.84);
}

/* Section h2s on non-home pages (about/services/projects/faq/contact)
   that aren't inside .home-section-head / .home-projects__intro. */
.anj-theme .section h2,
.anj-theme .values-section h2,
.anj-theme .company-detail h2,
.anj-theme .capabilities h2,
.anj-theme .cta-band h2,
.anj-theme .contact h2,
.anj-theme .faq-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.anj-theme .section h2 span,
.anj-theme .values-section h2 span,
.anj-theme .company-detail h2 span,
.anj-theme .capabilities h2 span,
.anj-theme .cta-band h2 span,
.anj-theme .contact h2 span,
.anj-theme .faq-section h2 span {
  color: var(--home-red);
  font-style: italic;
}

/* ============================================================
   UX effects — micro-interactions, focus, hover, transitions.
   All motion respects prefers-reduced-motion via existing
   @media block in script.js + scoped rules below.
   ============================================================ */

/* Text selection in brand colors */
::selection {
  background: var(--anj-red-accent, #c8102e);
  color: #fff;
}

/* Keyboard focus ring — visible only for keyboard users */
:focus-visible {
  outline: 2px solid var(--anj-red-accent, #c8102e);
  outline-offset: 3px;
  border-radius: 2px;
}

.anj-theme :focus-visible {
  outline-color: var(--home-red);
}

.btn:focus-visible,
.nav__cta:focus-visible {
  outline-offset: 4px;
}

/* Smooth transitions on all interactive elements */
.anj-theme .btn,
.anj-theme .filter,
.anj-theme .nav__links a,
.anj-theme .nav__cta,
.anj-theme [data-scope],
.anj-theme .home-icon,
.anj-theme .home-project-card,
.anj-theme .home-project-card__image,
.anj-theme .home-service-grid article,
.anj-theme .difference-grid article,
.anj-theme .footer__brand-block a,
.anj-theme .footer-grid nav a,
.anj-theme .footer-contact a {
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.28s ease,
    opacity 0.22s ease;
}

/* Tactile button press */
.anj-theme .btn:active,
.anj-theme .filter:active,
.anj-theme [data-scope]:active,
.anj-theme .nav__cta:active {
  transform: scale(0.97);
}

/* Service cards (homepage) — lift on hover */
.anj-theme .home-service-grid article:hover {
  background: rgb(255 252 246);
  border-color: var(--home-red);
  box-shadow: 0 14px 32px rgb(7 16 22 / 0.08);
  transform: translateY(-3px);
}

.anj-theme .home-service-grid article:hover .home-icon {
  transform: scale(1.1);
}

/* Project cards — image zoom on hover */
.anj-theme .home-project-card {
  overflow: hidden;
}

.anj-theme .home-project-card:hover .home-project-card__image {
  transform: scale(1.06);
}

/* Why Choose Us — icon hover bump */
.anj-theme .difference-grid article:hover .home-icon {
  transform: scale(1.12) rotate(-3deg);
  color: var(--home-red);
}

/* Footer link hover */
.anj-theme .footer-grid nav a:hover,
.anj-theme .footer-contact a:hover {
  color: var(--home-red);
}

/* FAQ disclosure — hide native marker, add brand chevron */
.anj-theme .faq-list details {
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.anj-theme .faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 18px 48px 18px 0;
  transition: color 0.22s ease;
}

.anj-theme .faq-list summary::-webkit-details-marker {
  display: none;
}

.anj-theme .faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--home-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.32s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.anj-theme .faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.anj-theme .faq-list summary:hover {
  color: var(--home-red);
}

.anj-theme .faq-list details[open] p {
  animation: faqAnswerSlide 0.32s ease-out;
}

@keyframes faqAnswerSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Projects filter — smooth hide instead of display:none */
.anj-theme .project {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.anj-theme .project.is-hidden {
  display: block;
  opacity: 0;
  transform: scale(0.96);
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}

.anj-theme .gallery-grid--filterable {
  position: relative;
}

/* Form inputs — focused label color shift, input border lift */
.anj-theme .contact-form input,
.anj-theme .contact-form textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.anj-theme .contact-form input:focus,
.anj-theme .contact-form textarea:focus {
  outline: none;
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgb(200 16 46 / 0.15);
}

.anj-theme .contact-form label:focus-within span {
  color: var(--home-red);
  transition: color 0.22s ease;
}

/* Scope chip toggle feedback */
.anj-theme [data-scope].is-active {
  transform: scale(1.02);
}

/* Submit button loading state — JS adds .is-loading */
.anj-theme .btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.anj-theme .btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  vertical-align: middle;
  border: 2px solid rgb(255 255 255 / 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Hero entrance — stagger fade for homepage hero copy */
.anj-theme .hero__grid--centered .hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.anj-theme .hero__grid--centered .hero__copy > *:nth-child(1) { animation-delay: 0.05s; }
.anj-theme .hero__grid--centered .hero__copy > *:nth-child(2) { animation-delay: 0.18s; }
.anj-theme .hero__grid--centered .hero__copy > *:nth-child(3) { animation-delay: 0.32s; }
.anj-theme .hero__grid--centered .hero__copy > *:nth-child(4) { animation-delay: 0.46s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Number counter — JS sets data-count and animates value;
   no CSS needed beyond ensuring stable layout. The strong
   element keeps its width so the count-up doesn't reflow. */
.anj-theme [data-count] {
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  display: inline-block;
}

/* Respect reduced motion — disable transforms/animations  */
@media (prefers-reduced-motion: reduce) {
  .anj-theme .hero__grid--centered .hero__copy > *,
  .anj-theme .faq-list details[open] p {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .anj-theme .home-service-grid article:hover,
  .anj-theme .home-project-card:hover .home-project-card__image,
  .anj-theme .difference-grid article:hover .home-icon {
    transform: none;
  }

  .anj-theme .btn.is-loading::after {
    animation: none;
  }
}

/* ============================================================
   UX effects — extension to non-home pages.
   Mirrors the homepage hover/entrance behaviors onto the
   equivalent elements on about/services/projects/faq/contact.
   ============================================================ */

/* Universal transitions for non-home interactive surfaces */
.anj-theme .service-detail-grid article,
.anj-theme .service-detail-grid article .service-icon,
.anj-theme .project,
.anj-theme .project .photo,
.anj-theme .values-grid article,
.anj-theme .values-grid article span,
.anj-theme .capabilities ul li,
.anj-theme .contact-card .contact-item,
.anj-theme .page-hero__card {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.65, 0.3, 1),
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.28s ease,
    padding 0.22s ease;
}

/* Services page (services.html) — service-detail-grid card hover lift */
.anj-theme .service-detail-grid article {
  cursor: default;
}

.anj-theme .service-detail-grid article:hover {
  background: rgb(255 252 246);
  border-color: var(--home-red);
  box-shadow: 0 14px 32px rgb(7 16 22 / 0.08);
  transform: translateY(-3px);
}

.anj-theme .service-detail-grid article:hover .service-icon {
  transform: scale(1.12);
  color: var(--home-red);
}

/* Projects page (projects.html) — gallery tile image zoom */
.anj-theme .project {
  overflow: hidden;
  position: relative;
}

.anj-theme .project .photo {
  transition: transform 0.55s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.anj-theme .project:hover .photo {
  transform: scale(1.06);
}

.anj-theme .project figcaption {
  transition: color 0.22s ease;
}

.anj-theme .project:hover figcaption {
  color: var(--home-red);
}

/* About page — values cards (01/02/03) hover */
.anj-theme .values-grid article:hover {
  transform: translateY(-3px);
}

.anj-theme .values-grid article:hover span {
  color: var(--home-red);
  transform: scale(1.08);
}

/* About page — capabilities list items shift right on hover */
.anj-theme .capabilities ul li {
  position: relative;
  padding-left: 4px;
}

.anj-theme .capabilities ul li:hover {
  padding-left: 12px;
  color: var(--home-red);
}

/* Contact page — contact-card items hover lift */
.anj-theme .contact-card .contact-item:hover {
  transform: translateX(4px);
}

.anj-theme .contact-card .contact-item:hover span {
  background: var(--home-red);
  color: #fff;
  transition: background 0.22s ease, color 0.22s ease;
}

/* Page-hero card (red stat box) — subtle scale on hover */
.anj-theme .page-hero__card {
  cursor: default;
}

.anj-theme .page-hero__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 18px 18px 0 rgb(255 250 242 / 0.18);
}

/* Page-hero entrance stagger — matches the homepage hero pattern */
.anj-theme .page-hero .section-kicker,
.anj-theme .page-hero h1,
.anj-theme .page-hero p:not(.section-kicker),
.anj-theme .page-hero__card {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}

.anj-theme .page-hero .section-kicker { animation-delay: 0.05s; }
.anj-theme .page-hero h1 { animation-delay: 0.18s; }
.anj-theme .page-hero p:not(.section-kicker) { animation-delay: 0.32s; }
.anj-theme .page-hero__card { animation-delay: 0.46s; }

/* Reduced-motion fallback for everything added in this extension */
@media (prefers-reduced-motion: reduce) {
  .anj-theme .page-hero .section-kicker,
  .anj-theme .page-hero h1,
  .anj-theme .page-hero p:not(.section-kicker),
  .anj-theme .page-hero__card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .anj-theme .service-detail-grid article:hover,
  .anj-theme .project:hover .photo,
  .anj-theme .values-grid article:hover,
  .anj-theme .values-grid article:hover span,
  .anj-theme .capabilities ul li:hover,
  .anj-theme .contact-card .contact-item:hover,
  .anj-theme .page-hero__card:hover {
    transform: none;
  }
}

/* ============================================================
   Concrete & Steel palette — cool industrial direction.
   Replaces the warm cream + near-black scheme with stone gray
   surfaces and a slate-black nav. Red accent (#c8102e) preserved.
   Appended last so it wins by source order.
   ============================================================ */
.anj-theme {
  --home-cream: #ebebe6;
  --home-cream-2: #f3f3ee;
  --home-dark: #16181d;
  --home-panel: #1c1e23;
  --home-line: #d2d2cc;
  background: var(--home-cream);
  color: #20242b;
}

.anj-theme .nav,
.anj-theme .nav.is-scrolled {
  background: #16181d;
  border-bottom-color: rgb(255 255 255 / 0.06);
}

.anj-theme .nav.is-scrolled {
  background: rgb(22 24 29 / 0.98);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.22);
}

.anj-theme .nav__links.is-open {
  background: #1c1e23;
  border-color: rgb(255 255 255 / 0.08);
}

@media (max-width: 760px) {
  .anj-theme .nav__links.is-open {
    background: #16181d;
  }
}

.anj-theme .hero--home::before {
  background:
    linear-gradient(90deg, rgb(22 24 29 / 0.94) 0%, rgb(22 24 29 / 0.82) 37%, rgb(22 24 29 / 0.25) 68%),
    linear-gradient(180deg, rgb(22 24 29 / 0.16), rgb(22 24 29 / 0.28)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85") center 56% / cover;
}

.anj-theme .home-metrics__grid {
  background: #1c1e23;
  border-color: rgb(255 255 255 / 0.1);
  box-shadow: 0 26px 60px rgb(16 18 22 / 0.28);
}

.anj-theme .home-metrics article {
  background:
    linear-gradient(135deg, rgb(200 16 46 / 0.16), transparent 46%),
    #1c1e23;
}

.anj-theme .home-service-grid p,
.anj-theme .difference-grid p,
.anj-theme .home-section-head > p,
.anj-theme .home-section-head--split > p {
  color: #3a3d44;
}

/* =========================================================================
   Editorial landing page (index.html) — "home-v2"
   Scoped under body.home-v2 so the rest of the multi-page site is untouched.
   Type: Archivo (display/body) + Fraunces italic (accents) + IBM Plex Mono.
   ========================================================================= */
body.home-v2 {
  --cream: #f1ebe1;
  --cream-2: #e7e0d2;
  --ink: #1c1a15;
  --muted: #968f7e;
  --red: #b23a2e;
  --line: #d6cdbc;
  background: var(--cream);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

.photo--fireplace-winder {
  background-image: url("../assets/img/fireplace-winder.jpg");
}

.home-v2 .ed-wrap {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* --- shared editorial primitives --- */
.home-v2 .ed-meta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.home-v2 .ed-meta--num {
  text-align: right;
  white-space: nowrap;
}

.home-v2 .ed-meta--center {
  text-align: center;
}

.home-v2 .ed-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.home-v2 .ed-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.4rem 0;
}

.home-v2 .ed-rule--dashed {
  border-top: 1px dashed var(--line);
}

.home-v2 .ed-display {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--ink);
  margin: 0;
}

.home-v2 .ed-display em {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--red);
}

.home-v2 .ed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.home-v2 .ed-link span {
  transition: transform 0.2s ease;
}

.home-v2 .ed-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.home-v2 .ed-link:hover span {
  transform: translateX(4px);
}

.home-v2 .ed-link--center {
  display: flex;
  width: max-content;
  margin: 3.2rem auto 0;
}

.home-v2 .ed-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--cream-2);
  width: 100%;
  height: 100%;
}

/* --- N 01 / hero --- */
.home-v2 .ed-hero {
  padding-top: 8.5rem;
  padding-bottom: 5rem;
}

.home-v2 .ed-hero__meta {
  margin-bottom: clamp(2rem, 6vw, 4.5rem);
}

.home-v2 .ed-hero__title {
  font-size: clamp(3.6rem, 13.5vw, 11.5rem);
}

.home-v2 .ed-hero__foot {
  align-items: flex-end;
}

.home-v2 .ed-lead {
  max-width: 30ch;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.5;
  margin: 0;
  color: #46423a;
}

.home-v2 .ed-linkset {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-v2 .ed-hero__photo {
  width: min(1180px, 100% - 3rem);
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream-2);
}

.home-v2 .ed-hero__photo .ed-photo {
  aspect-ratio: 16 / 8.5;
  transform-origin: 50% 42%;
}

/* Scroll-driven hero zoom (JS adds .is-zoom; falls back to a static band
   without JS or when prefers-reduced-motion is set). --p is the 0..1
   progress set by script.js. */
.home-v2 .ed-hero__zoom.is-zoom {
  height: 200vh;
}

.home-v2 .ed-hero__zoom.is-zoom .ed-hero__photo {
  --p: 0;
  --band-w: min(1180px, 100vw - 3rem);
  --band-h: calc(min(1180px, 100vw - 3rem) * 0.53125);
  --full-h: calc(100vh - var(--nav-h, 66px));
  position: sticky;
  top: var(--nav-h, 66px);
  width: calc(var(--band-w) + (100vw - var(--band-w)) * var(--p));
  height: calc(var(--band-h) + (var(--full-h) - var(--band-h)) * var(--p));
}

.home-v2 .ed-hero__zoom.is-zoom .ed-hero__photo .ed-photo {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  transform: scale(calc(1 + 0.22 * var(--p)));
  will-change: transform;
}

/* --- N 02 / services: minimal scannable index --- */
.home-v2 .ed-services {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.home-v2 .ed-services__head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-v2 .ed-services__heading {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.home-v2 .ed-svc-list {
  list-style: none;
  margin: clamp(1.8rem, 4vw, 3rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.home-v2 .ed-svc > a {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.05rem, 2.3vw, 1.6rem) 1rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.home-v2 .ed-svc > a:hover {
  background: var(--cream-2);
}

.home-v2 .ed-svc__no {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.home-v2 .ed-svc__name {
  font-size: clamp(1.25rem, 2.6vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.home-v2 .ed-svc__desc {
  text-align: right;
  font-size: 0.95rem;
  color: var(--muted);
}

.home-v2 .ed-svc__arrow {
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-v2 .ed-svc > a:hover .ed-svc__name {
  color: var(--red);
}

.home-v2 .ed-svc > a:hover .ed-svc__arrow {
  color: var(--red);
  transform: translateX(5px);
}

.home-v2 .ed-services__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 640px) {
  .home-v2 .ed-svc > a {
    grid-template-columns: auto 1fr auto;
    column-gap: 1rem;
    row-gap: 0.25rem;
    padding-inline: 0.4rem;
  }
  .home-v2 .ed-svc__no {
    grid-column: 1;
    grid-row: 1;
  }
  .home-v2 .ed-svc__name {
    grid-column: 2;
    grid-row: 1;
  }
  .home-v2 .ed-svc__desc {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    font-size: 0.88rem;
  }
  .home-v2 .ed-svc__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }
}

/* --- N 03 / selected work --- */
.home-v2 .ed-work {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.home-v2 .ed-work__head {
  align-items: baseline;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.home-v2 .ed-work__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.home-v2 .ed-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.home-v2 .ed-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1rem;
}

.home-v2 .ed-card__foot strong {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.home-v2 .ed-card--a .ed-photo {
  aspect-ratio: 4 / 3.4;
}

.home-v2 .ed-card--b {
  margin-top: clamp(3rem, 8vw, 7rem);
}

.home-v2 .ed-card--b .ed-photo {
  aspect-ratio: 4 / 5.2;
}

/* --- quote --- */
.home-v2 .ed-quote {
  padding: clamp(4rem, 11vw, 9.5rem) 0;
  text-align: center;
}

.home-v2 .ed-quote__text {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.6vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 17ch;
  margin: 0 auto 1.8rem;
  color: var(--ink);
}

.home-v2 .ed-quote__text em {
  color: var(--red);
  font-style: italic;
}

.home-v2 .ed-quote__mark {
  color: var(--red);
  margin-right: 0.04em;
}

/* --- N 04 / contact --- */
.home-v2 .ed-contact {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 8rem);
  text-align: center;
}

.home-v2 .ed-contact__title {
  font-size: clamp(2.8rem, 9vw, 7rem);
  margin-top: 1.4rem;
}

.home-v2 .ed-contact__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  text-align: left;
}

.home-v2 .ed-contact__details {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 0;
  flex-wrap: wrap;
}

.home-v2 .ed-contact__details dt {
  margin-bottom: 0.45rem;
}

.home-v2 .ed-contact__details dd {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 500;
}

.home-v2 .ed-contact__details a {
  color: var(--ink);
  text-decoration: none;
}

.home-v2 .ed-contact__details a:hover {
  color: var(--red);
}

.home-v2 .ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 1.15rem 2.1rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-v2 .ed-cta:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* --- footer --- */
.ed-foot {
  background: var(--ink, #1c1a15);
  padding: 1.6rem 0;
}

.ed-foot .ed-foot__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ed-foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1ebe1;
  text-decoration: none;
}

.ed-foot__brand i {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: #b23a2e;
}

.ed-foot__tag,
.ed-foot__copy {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b8473;
  margin: 0;
}

/* --- responsive --- */
@media (max-width: 720px) {
  .home-v2 .ed-hero {
    padding-top: 7rem;
  }
  .home-v2 .ed-hero__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }
  .home-v2 .ed-work__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-v2 .ed-card--b {
    margin-top: 0;
  }
  .home-v2 .ed-card--a .ed-photo,
  .home-v2 .ed-card--b .ed-photo {
    aspect-ratio: 4 / 3.6;
  }
  .home-v2 .ed-contact__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ed-foot .ed-foot__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}
