/* ============================================================
   Division Construction Inc. - Design System & Styles
   Architectural-editorial restyle
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Palette */
  --color-bg-dark:       #141413;
  --color-bg-section:    #f6f3ed;
  --color-bg-alt:        #1a1a18;
  --color-surface:       #ffffff;
  --color-text:          #1c1b19;
  --color-text-light:    #57544e;
  --color-text-inverse:  #f5f2ed;
  --color-gold:          #5a9e3d;   /* primary accent (green) */
  --color-gold-hover:    #6cb04e;
  --color-gold-deep:     #3f7a28;
  --color-teal:          #2a9d8f;
  --color-teal-hover:    #35b5a5;
  --color-border:        #e3ded4;
  --color-hairline:      rgba(28,27,25,0.12);
  --color-hairline-light:rgba(255,255,255,0.10);
  --color-overlay:       rgba(0, 0, 0, 0.55);
  --color-overlay-heavy: rgba(0, 0, 0, 0.65);

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Sizing */
  --max-width:    1240px;
  --section-pad:  128px 24px;
  --section-pad-mobile: 72px 20px;
  --radius:       10px;
  --radius-sm:    4px;

  /* Depth */
  --shadow-sm:  0 2px 8px rgba(20,20,19,0.06);
  --shadow-md:  0 18px 40px -18px rgba(20,20,19,0.28);
  --shadow-lg:  0 40px 80px -32px rgba(20,20,19,0.40);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
}

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

html {
  /* Site-wide text scale. Every font-size in this stylesheet is in rem, and
     nothing else is, so this is the single knob for overall text size:
     100% = browser default (16px), 110% = 10% larger everywhere. */
  font-size: 110%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-surface);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: var(--color-gold);
  color: #fff;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Editorial section header (eyebrow + headline + intro, left-aligned) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
}

.eyebrow--light { color: #8fd36f; }
.eyebrow--center { justify-content: center; }

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.06vw, 3.7rem);
  color: var(--color-text);
  text-align: left;
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 0;
}

.section-headline--light {
  color: var(--color-text-inverse);
}

.section-intro {
  text-align: left;
  max-width: 60ch;
  margin: 22px 0 64px;
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.section-intro--light {
  color: rgba(255,255,255,0.72);
}

/* Mid-page conversion prompt, sits at the end of a section */
.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--duration) var(--ease),
              background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(90,158,61,0.7);
}

.btn--gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(90,158,61,0.65);
}

.btn--outline {
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-gold);
  color: #fff;
  transform: translateY(-3px);
}

.btn--teal {
  background: var(--color-teal);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(42,157,143,0.7);
}

.btn--teal:hover {
  background: var(--color-teal-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(42,157,143,0.6);
}

/* On phones the longest labels ("Tell Us About Your Project") no longer fit on
   one line at the larger root size, and nowrap pushed them off-screen. Let them
   wrap inside the column instead of overflowing it. */
@media (max-width: 768px) {
  .btn {
    padding: 16px 26px;
    white-space: normal;
    max-width: 100%;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(20, 20, 19, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-inverse);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav__brand span {
  color: var(--color-gold);
}

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

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--duration) var(--ease);
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 11px 24px !important;
  font-size: 0.74rem !important;
  transition: transform var(--duration) var(--ease),
              background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease) !important;
}

.nav__cta::after { display: none; }

.nav__links a.nav__cta:hover { color: #fff; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  /* At the larger root size the wide tracking pushes the brand onto a second
     line at 375px. Tighten tracking (not size) so it stays on one line. */
  .nav__brand {
    letter-spacing: 0.12em;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 20, 19, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.45s var(--ease);
    padding: 24px;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    font-size: 1rem;
  }

  .nav__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   SECTION 01 - HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* WebP (231KB) for browsers that support it, JPEG (412KB) for those that
     don't. Anything that can't parse image-set() just uses the line above. */
  background-image: url('../images/hero.jpg');
  background-image: image-set(
    url('../images/hero.webp') type('image/webp'),
    url('../images/hero.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroZoom 7s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.62) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 120px 24px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 26px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.28vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  max-width: 24ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero__subheadline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 52ch;
}

.hero__license {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 2;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero__scroll span {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-gold);
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%   { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 768px) {
  .hero__content { text-align: left; padding: 110px 24px 100px; }
  .hero__license {
    bottom: 70px;
    right: auto;
    left: 24px;
  }
  .hero__scroll { display: none; }
}

/* ============================================================
   SECTION 02 - TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-bg-dark);
  padding: 0;
  border-bottom: 1px solid var(--color-hairline-light);
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
}

.trust-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 24px;
  border-right: 1px solid var(--color-hairline-light);
}

.trust-strip__item:last-child { border-right: none; }

.trust-strip__item svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

.trust-strip__item span[data-count] {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-right: 2px;
}

@media (max-width: 768px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip__item {
    font-size: 0.68rem;
    padding: 22px 14px;
    gap: 8px;
  }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item:nth-child(1),
  .trust-strip__item:nth-child(2) {
    border-bottom: 1px solid var(--color-hairline-light);
  }
}

/* ---------- Review rating cards ---------- */
.reviews-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 24px 32px;
  border-top: 1px solid var(--color-hairline-light);
}

.review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  min-width: 230px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.55);
  text-decoration: none;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.6);
}

.review-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__logo svg,
.review-card__logo img {
  width: 34px;
  height: 34px;
  display: block;
}

.review-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card__score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text);
}

.review-card__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* Partial-fill star rating */
.stars {
  --pct: 100%;
  position: relative;
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}
.stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: rgba(28,27,25,0.18);
  letter-spacing: 1px;
}
.stars::after {
  content: "\2605\2605\2605\2605\2605";
  color: #FBBC04;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--pct);
  overflow: hidden;
}

@media (max-width: 768px) {
  .reviews-bar {
    gap: 12px;
    padding: 22px 16px 26px;
  }
  .review-card {
    min-width: 0;
    flex: 1 1 160px;
    padding: 12px 16px;
    gap: 10px;
  }
  .review-card__score { font-size: 1.3rem; }
}

/* ============================================================
   SECTION 02B - THE PAIN
   ============================================================ */
.pain {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  position: relative;
  border-top: 1px solid var(--color-hairline-light);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,0.05), transparent 60%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.pain__headline {
  max-width: 24ch;
}

.pain__intro {
  margin: 24px 0 56px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
}

.pain__list {
  display: grid;
  gap: 0;
  max-width: 880px;
  border-top: 1px solid var(--color-hairline-light);
}

.pain__item {
  padding: 34px 0 34px 30px;
  border-bottom: 1px solid var(--color-hairline-light);
  border-left: 2px solid transparent;
  transition: border-color var(--duration) var(--ease), padding-left var(--duration) var(--ease);
}

.pain__item:hover {
  border-left-color: var(--color-gold);
  padding-left: 38px;
}

.pain__scenario {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.64vw, 1.8rem);
  line-height: 1.3;
  color: var(--color-text-inverse);
  letter-spacing: -0.01em;
}

.pain__twist {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  max-width: 62ch;
}

.pain__reassure {
  margin: 60px 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.55;
  color: var(--color-text-inverse);
  font-weight: 500;
  max-width: 40ch;
}

.pain__kicker {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
  line-height: 1.25;
  color: rgba(255,255,255,0.85);
  max-width: 26ch;
}

.pain__kicker span {
  color: var(--color-gold);
  font-style: italic;
}

@media (max-width: 768px) {
  .pain__intro { margin-bottom: 36px; font-size: 1.05rem; }
  .pain__item { padding: 26px 0 26px 18px; }
  .pain__item:hover { padding-left: 22px; }
  .pain__twist { margin-top: 10px; }
}

/* ============================================================
   SECTION 03 - WHAT WE BUILD
   ============================================================ */
.what-we-build {
  padding: var(--section-pad);
  background: var(--color-bg-section);
}

.what-we-build__copy {
  max-width: 64ch;
  margin: 24px 0 64px;
}

.what-we-build__copy p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.what-we-build__copy p + p {
  margin-top: 18px;
}

.what-we-build__copy .what-we-build__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.86vw, 2.15rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

/* Placeholder block while client photos are pending */
.service-card__img--placeholder {
  background:
    radial-gradient(80% 90% at 50% 10%, rgba(90,158,61,0.14), transparent 60%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--color-bg-dark);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.service-card__body {
  padding: 36px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  margin-bottom: 14px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.service-card__text {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .what-we-build {
    padding: var(--section-pad-mobile);
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-card__img {
    height: 240px;
  }
  .service-card__body { padding: 28px; }
}

/* ============================================================
   SECTION 04 - THE PROCESS
   ============================================================ */
.process {
  padding: var(--section-pad);
  background: var(--color-surface);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 780px;
  margin: 0 auto 64px;
  position: relative;
}

.process__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 28px;
  text-align: left;
  position: relative;
  padding: 0 0 40px 0;
}

.process__step:last-child {
  padding-bottom: 0;
}

/* Vertical connector line */
.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 64px;
  left: 31px;
  width: 2px;
  height: calc(100% - 64px);
  background: linear-gradient(180deg, var(--color-gold), rgba(90,158,61,0.2));
}

.process__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

.process__step-text {
  padding-top: 14px;
}

.process__number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-gold);
}

.process__label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.process__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
  max-width: 56ch;
}

.process__reassurance {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg-section);
  padding: 40px 48px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-gold);
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.85;
}

.process__reassurance p { max-width: 80ch; }

@media (max-width: 1024px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process__step {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 22px;
    text-align: left;
    padding: 0 0 36px 0;
  }
  .process__step:not(:last-child)::after {
    top: 64px;
    left: 31px;
    width: 2px;
    height: calc(100% - 64px);
    right: auto;
    background: linear-gradient(180deg, var(--color-gold), rgba(90,158,61,0.15));
  }
  .process__icon {
    grid-row: span 2;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .process {
    padding: var(--section-pad-mobile);
  }
  .process__reassurance {
    padding: 28px;
  }
}

/* ============================================================
   SECTION 05 - WHY DIVISION
   ============================================================ */
.why-division {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
}

.why-division .section-headline { color: var(--color-text-inverse); }

.why-division__content {
  max-width: 760px;
}

.why-division__text {
  font-size: 1.2rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  font-weight: 300;
}

.why-division__text:first-child {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 400;
}

.why-division__text:last-child {
  margin-bottom: 0;
}

.why-division__pillars-intro {
  margin: 6px 0 34px;
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.why-division__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}

.why-division__pillar {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
}

.why-division__pillar-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-division__pillar-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.why-division__pillar-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.18rem;
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 768px) {
  .why-division__pillar {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .why-division__pillar-num {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .why-division__pillar-title { font-size: 1.22rem; }
  .why-division__pillar-text { font-size: 1.05rem; }
  .why-division__pillars-intro { font-size: 1.1rem; }
}

.why-division__team {
  list-style: none;
  margin: 4px 0 32px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.why-division__team li {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  padding-left: 22px;
  border-left: 2px solid rgba(90,158,61,0.55);
}

.why-division__name {
  font-family: var(--font-heading);
  font-weight: 400;
  color: #fff;
  font-size: 1.32rem;
}

.why-division__placeholder {
  font-style: italic;
  color: var(--color-gold-hover);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .why-division__team li { font-size: 1.02rem; }
  .why-division__name { font-size: 1.18rem; }
}

@media (max-width: 768px) {
  .why-division {
    padding: var(--section-pad-mobile);
  }
  .why-division__text {
    font-size: 1.05rem;
  }
  .why-division__text:first-child { font-size: 1.18rem; }
}

/* ============================================================
   SECTION 06 - PROOF / OUR WORK
   ============================================================ */
.proof {
  padding: var(--section-pad);
  background: var(--color-bg-section);
}

.proof .section-headline {
  color: var(--color-text);
}

.proof .section-intro {
  color: var(--color-text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(155px, 18vw, 245px);
  grid-auto-flow: dense;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto 96px;
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  height: 100%;
}

/* Mosaic placement - two large feature tiles with the rest tiled around them */
.gallery-grid__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-grid__item:nth-child(2) { grid-column: 3;     grid-row: 1; }
.gallery-grid__item:nth-child(3) { grid-column: 4;     grid-row: 1; }
.gallery-grid__item:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 4; }
.gallery-grid__item:nth-child(5) { grid-column: 1;     grid-row: 3; }
.gallery-grid__item:nth-child(6) { grid-column: 2;     grid-row: 3; }
.gallery-grid__item:nth-child(7) { grid-column: 1 / 3; grid-row: 4; }
.gallery-grid__item:nth-child(8) { grid-column: 3 / 5; grid-row: 4; }

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.28) 100%);
  opacity: 0.5;
  transition: opacity 0.35s var(--ease);
}

.gallery-grid__item:hover img {
  transform: scale(1.07);
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

/* ---------- Full Portfolio (expandable cloud gallery) ---------- */
.portfolio-expand {
  text-align: center;
  margin: -48px auto 96px;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: transparent;
  margin-bottom: 26px;
}

.portfolio-tabs button {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.portfolio-tabs button:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.portfolio-tabs button.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.portfolio-gallery {
  max-width: var(--max-width);
  margin: -48px auto 96px;
}

.portfolio-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portfolio-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--color-border);
}

.portfolio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-gallery__item:hover img {
  transform: scale(1.07);
}

.portfolio-gallery__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-light);
  padding: 20px 0;
}

.portfolio-gallery__more {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .portfolio-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Testimonials */
.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.3vw, 2.4rem);
  color: var(--color-text);
  text-align: left;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

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

.testimonials__callout {
  margin-top: 56px;
  background: var(--color-bg-dark);
  border-radius: var(--radius);
  padding: 56px 56px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(120% 90% at 50% -20%, rgba(90,158,61,0.16), transparent 60%);
}

.testimonials__callout-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.08vw, 2.2rem);
  color: var(--color-text-inverse);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.testimonials__callout-text {
  max-width: 64ch;
  margin: 0 auto 26px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.testimonials__callout-kicker {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.42vw, 1.65rem);
  line-height: 1.35;
  color: var(--color-gold);
  font-style: italic;
  margin: 0 auto 36px;
  max-width: 42ch;
}

@media (max-width: 768px) {
  .testimonials__callout {
    padding: 40px 24px 44px;
  }
}

/* ---------- Google Reviews ---------- */
.reviews-block {
  margin-top: 72px;
}

.reviews-block__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.reviews-block__glogo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.reviews-block__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-block__score {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text);
}

.reviews-block__head .stars {
  font-size: 1.2rem;
}

.reviews-block__count {
  margin-top: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 600;
}

.reviews-block__grid {
  column-width: 330px;
  column-gap: 22px;
}

.review-tile {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  margin: 0 0 22px;
  box-shadow: var(--shadow-sm);
}

.review-tile.is-hidden {
  display: none;
}

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

.review-tile__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1;
}

.review-tile__meta {
  flex: 1;
  min-width: 0;
}

.review-tile__name {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-tile__date {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.review-tile__glogo-wrap {
  flex-shrink: 0;
  display: flex;
}

.review-tile__glogo {
  width: 20px;
  height: 20px;
}

.review-tile__stars {
  color: #FBBC04;
  letter-spacing: 2px;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 12px;
}

.review-tile__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-light);
}

.reviews-block__more {
  text-align: center;
  margin-top: 28px;
}

.reviews-more-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.reviews-more-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(90,158,61,0.06);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.18;
}

.testimonial-card__video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  background: #000;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  object-fit: contain;
}

.testimonial-card__text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card__author {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__author::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-gold);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(150px, 38vw, 240px);
    gap: 8px;
  }
  /* Reset desktop placement, rebuild a 2-column mosaic */
  .gallery-grid__item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery-grid__item:nth-child(1),
  .gallery-grid__item:nth-child(4) { grid-column: 1 / 3; grid-row: span 2; }
  .gallery-grid__item:nth-child(7),
  .gallery-grid__item:nth-child(8) { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(180px, 60vw, 280px);
  }
  .gallery-grid__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .proof {
    padding: var(--section-pad-mobile);
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  cursor: zoom-out;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: transform 0.3s var(--ease);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.lightbox__close:hover {
  transform: scale(1.1);
  background: var(--color-gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.1);
  background: var(--color-gold);
}

.lightbox__nav--prev { left: 26px; }
.lightbox__nav--next { right: 26px; }

@media (max-width: 768px) {
  .lightbox__nav {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

/* ============================================================
   SECTION 07 - ADU CATALOGUE
   ============================================================ */
.adu-catalogue {
  padding: var(--section-pad);
  background: var(--color-surface);
}

.adu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto 56px;
}

.adu-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.adu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.adu-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.adu-card:hover .adu-card__img { transform: scale(1.04); }

.adu-card__body {
  padding: 26px;
}

.adu-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 14px;
}

.adu-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.adu-card__spec {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  color: var(--color-text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.adu-catalogue__cta {
  text-align: center;
}

@media (max-width: 1024px) {
  .adu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .adu-catalogue {
    padding: var(--section-pad-mobile);
  }
  .adu-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTION 08 - FINANCING
   ============================================================ */
.financing {
  padding: var(--section-pad);
  background: var(--color-bg-section);
}

.financing__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.financing__header {
  text-align: center;
  margin-bottom: 52px;
}

.financing__header .section-headline {
  max-width: none;
  text-align: center;
  margin: 0 auto;
}

.financing__content {
  max-width: 760px;
  margin: 0 auto;
}

.financing__text {
  color: var(--color-text-light);
  font-size: 1.35rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.financing__text:last-of-type { margin-bottom: 36px; }

.financing__text--emphasis {
  color: var(--color-text);
  font-weight: 500;
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
}

@media (max-width: 900px) {
  .financing__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .financing {
    padding: var(--section-pad-mobile);
  }
}

/* ============================================================
   SECTION 09 - FAQ
   ============================================================ */
.faq {
  padding: var(--section-pad);
  background: var(--color-surface);
}

.faq__layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq__list {
  margin: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--duration) var(--ease);
}

.faq__question:hover {
  color: var(--color-gold);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq__icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__item.open .faq__question {
  color: var(--color-gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__answer-inner {
  padding: 0 0 26px 0;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 64ch;
}

.faq__item.open .faq__answer {
  max-height: 400px;
}

@media (max-width: 900px) {
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: var(--section-pad-mobile);
  }
}

/* ============================================================
   SECTION 10 - FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/P2064904-HDR.jpg');
  background-size: cover;
  background-position: center;
}

.final-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.74));
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.final-cta__copy {
  margin-bottom: 40px;
}

.final-cta__copy p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.final-cta__copy p:last-child {
  margin-bottom: 0;
}

.final-cta__copy .final-cta__emphasis {
  color: #fff;
  font-weight: 400;
  font-size: 1.25rem;
  margin-top: 10px;
}

.final-cta__subline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.7;
}

.final-cta__contact {
  margin-top: 40px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta__contact a {
  color: rgba(255,255,255,0.8);
  transition: color var(--duration) var(--ease);
}

.final-cta__contact a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .final-cta {
    padding: 88px 16px;
  }
  .final-cta .btn {
    width: 100%;
  }
}

/* ============================================================
   SECTION 11 - FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  padding: 36px 24px;
  border-top: 1px solid var(--color-hairline-light);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__license {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__contact {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__contact a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__contact span {
  color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer__contact {
    flex-direction: column;
    gap: 8px;
  }
  .footer__contact span {
    display: none;
  }
}
