/* ============================================================
   DECKED OUT 365 — Design System
   ============================================================ */

/* Design Notes:
   Fonts: Archivo (headings, bold), Archivo (body)
   Brand Red: #c0392b (deep red matching nav active state)
   Container: 1280px max-width
   Key spacing: sections use 100px vertical padding
   Aesthetic: luxury-contractor, bold, clean, airy
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --brand-red: #ce2c31;
  --brand-red-dark: #a61c20;
  --black: #0b0b0b;
  --charcoal: #171717;
  --gray-900: #1a1a1a;
  --gray-700: #333333;
  --gray-500: #666666;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --white: #ffffff;
  --container: 1280px;
  --section-pad: 100px;
  --header-h: 118px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================
HEADER / NAV
============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: var(--header-h);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  max-width: 1620px;
  padding-left: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: 104px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.nav-logo .logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nav-logo .logo-text span {
  color: var(--brand-red);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2vw, 40px);
  margin: 0 auto;
  flex: 1;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-red);
}

.nav-cta {
  flex-shrink: 0;
  margin-left: clamp(20px, 2.5vw, 44px);
}

.btn-pill {
  background: linear-gradient(180deg, #ff2d2d 0%, var(--brand-red) 100%);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(206, 44, 49, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-block;
}

.btn-pill:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(206, 44, 49, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

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

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

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  max-width: 820px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.15)),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero-kicker {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-size: clamp(44px, 5.4vw, 108px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.hero-bg-word {
  font-size: clamp(72px, 11vw, 150px);
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
  display: inline-block;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 2px;
  white-space: nowrap;
  min-height: 1em;
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
}

.hero-bg-word.is-exiting {
  opacity: 0;
  transform: translateX(-26px);
  filter: blur(3px);
}

.hero-bg-word.is-entering {
  opacity: 0;
  transform: translateX(26px);
  filter: blur(3px);
}

.hero-bottom {
  margin-top: 0;
}

.hero-small {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 14px;
}

.section-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-body {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
}

.map-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.project-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 34px;
  align-items: stretch;
}

.project-map-canvas {
  height: 520px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #101010 0%, #1b1b1b 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
}

.project-map-leaflet {
  height: 100%;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.project-map-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.project-map-leaflet .maplibregl-ctrl-bottom-right,
.project-map-leaflet .maplibregl-ctrl-bottom-left {
  bottom: 10px;
}

.project-map-leaflet .maplibregl-ctrl-attrib {
  background: rgba(11, 11, 11, 0.8);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.project-map-leaflet .maplibregl-ctrl-attrib a {
  color: var(--brand-red);
}

.project-map-leaflet .maplibregl-popup-content {
  background: #171717;
  color: var(--white);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.project-map-leaflet .maplibregl-popup-tip {
  border-top-color: #171717;
}

.project-map-popup {
  min-width: 180px;
}

.project-map-popup strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.project-map-popup span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.project-map-popup a {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-map-marker {
  position: relative;
  width: 26px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-map-marker-dot {
  position: absolute;
  top: 0;
  left: 2px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffd6d8 0 16%, #ff8084 17%, #f43b41 38%, #ce2c31 66%, #8f1116 100%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(206, 44, 49, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-map-marker-dot::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 8px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  filter: blur(0.2px);
}

.project-map-marker-dot::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 2px;
  height: 29px;
  background: linear-gradient(180deg, #7f7f7f 0%, #5b5b5b 38%, #2a2a2a 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.project-map-marker.is-active .project-map-marker-dot {
  transform: scale(1.12);
  box-shadow: 0 18px 34px rgba(206, 44, 49, 0.42);
}

.project-map-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.project-map-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.project-map-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-map-card h3 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.02;
  font-weight: 900;
  color: var(--black);
}

.project-map-card-location {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-red);
}

.project-map-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ============================================================
   PURPOSE BUILT SECTION
   ============================================================ */
.purpose-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.purpose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.purpose-images {
  position: relative;
  height: 560px;
}

@keyframes purposeTopFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  50% {
    transform: translateY(-10px);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.16);
  }
}

@keyframes purposeTopLabelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.purpose-images .img-top {
  position: absolute;
  top: 0;
  left: 80px;
  right: 0;
  height: 380px;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  animation: purposeTopFloat 6s ease-in-out infinite;
}

.purpose-images .img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 320px;
  object-fit: cover;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.purpose-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  white-space: nowrap;
}

.purpose-label-top {
  top: 22px;
  left: 106px;
  z-index: 5;
  background: rgba(206, 44, 49, 0.96);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  animation: purposeTopLabelFloat 6s ease-in-out infinite;
}

.purpose-label-bottom {
  bottom: 20px;
  left: 20px;
  z-index: 4;
}

.purpose-text {
  padding-left: 20px;
}

.purpose-text .section-h2 {
  margin-bottom: 24px;
}

/* ============================================================
   WHY CHOOSE US / FAQ
   ============================================================ */
.choose-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.choose-left .section-h2 {
  margin-bottom: 40px;
}

/* Accordion */
.accordion-item {
  border-top: 1px solid var(--gray-200);
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  gap: 16px;
  transition: color 0.2s;
}

.accordion-header:hover {
  color: var(--brand-red);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-700);
  transition: all 0.3s;
}

.accordion-item.open .accordion-icon {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.choose-right img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/* ============================================================
   VIDEO / STATS BAND
   ============================================================ */
.video-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-band-bg {
  position: absolute;
  inset: 0;
  background: url('../img/video-placeholder.jpg') center / cover no-repeat;
  z-index: 0;
}

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

.video-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1;
}

.video-band-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.video-left .v-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 520px;
}

.video-left .v-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
}

.video-right {
  text-align: center;
  flex-shrink: 0;
}

.video-right .stat-num {
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -4px;
}

.video-right .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: var(--section-pad) 0;
  background: #f5f5f5;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.team-header .section-h2 {
  font-size: clamp(32px, 4vw, 52px);
}

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

.team-card {
  background: transparent;
  position: relative;
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.team-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-card-socials {
  position: absolute;
  right: 0;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
}

.team-card-socials a {
  font-size: 14px;
  color: var(--black);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-socials a:hover {
  color: var(--brand-red);
}

.team-label {
  display: inline-block;
  margin-top: 0;
  position: relative;
  top: -20px;
}

.team-label-inner {
  display: inline-block;
}

.team-role {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px 4px;
  display: block;
}

.team-name {
  background: var(--charcoal);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: block;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.team-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  display: block;
  cursor: pointer;
  transition: background 0.2s;
}

.team-dots span.active {
  background: var(--black);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.process-header {
  margin-bottom: 20px;
}

.process-header .section-kicker {
  color: var(--gray-500);
}

.process-header .section-h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.process-track {
  position: relative;
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-200);
  z-index: 0;
}

.process-dots-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.process-dot {
  display: flex;
  justify-content: center;
}

.process-dot::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-200);
  display: block;
  margin-top: 9px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  position: relative;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  opacity: 0.85;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-bg-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -4px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.review-card {
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 260px 1fr;
}

.review-left {
  padding: 50px 40px;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.review-trust {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.review-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  background: var(--gray-200);
}

.review-quote-mark {
  font-size: 80px;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  font-family: Georgia, serif;
  letter-spacing: -2px;
}

.review-right {
  padding: 50px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 400;
}

.review-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.review-author span {
  color: var(--brand-red);
  font-weight: 700;
}

.review-nav {
  display: flex;
  gap: 0;
  margin-top: 20px;
  align-self: flex-end;
}

.review-btn {
  width: 54px;
  height: 54px;
  background: var(--brand-red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: background 0.2s;
}

.review-btn:hover {
  background: var(--brand-red-dark);
}

.review-btn:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================
REVIEW STARS
========================================= */

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

.review-stars {
  color: #f5a623;
  font-size: 16px;
  display: flex;
  gap: 4px;
  white-space: nowrap;
}

.review-score {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner .social-icons {
  margin-top: 0;
  justify-content: center;
}

.footer-credit {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bg-img {
  position: absolute;
  inset: 0;
  background: url('../img/footer-bg.jpg') center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.footer-upper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 320px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta {
  padding: 70px 60px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.footer-cta h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.footer-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-red {
  background: var(--brand-red);
  color: var(--white);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--brand-red);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-red:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(11, 11, 11, 0.18);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline-dark:hover {
  border-color: rgba(11, 11, 11, 0.4);
  background: rgba(11, 11, 11, 0.04);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline-white:hover {
  border-color: var(--white);
}

.footer-divider {
  background: rgba(255, 255, 255, 0.1);
}

.footer-info {
  padding: 70px 0 70px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-content: start;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-style: normal;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

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

.footer-col .phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
  display: block;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(206, 44, 49, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  background: rgba(206, 44, 49, 0.08);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}

.social-icon:hover {
  border-color: var(--brand-red);
  color: var(--white);
  background: var(--brand-red);
}

.footer-lower {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-lower-links {
  display: flex;
  gap: 36px;
}

.footer-lower-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-lower-links a:hover {
  color: var(--white);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copyright a {
  color: var(--brand-red);
  font-weight: 600;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-red-dark);
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: var(--charcoal);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.page-hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: var(--section-pad) 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--brand-red);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.service-card .learn-more:hover {
  opacity: 0.7;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: var(--section-pad) 0;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 30px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-red);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
}

.about-badge .num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.about-badge .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-stat-item {
  border-top: 3px solid var(--brand-red);
  padding-top: 16px;
}

.about-stat-item .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.about-stat-item .lbl {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: var(--section-pad) 0;
}

.contact-form-wrap {
  background: var(--white);
}

.contact-form-wrap h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-red);
}

.form-group textarea {
  height: 140px;
}

.form-honeypot,
.form-feedback[hidden],
.form-success[hidden] {
  display: none !important;
}

.form-feedback,
.form-success {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1.5px solid var(--gray-200);
  font-size: 14px;
  line-height: 1.6;
}

.form-feedback {
  background: #fff7f5;
  border-color: #f5c2bc;
  color: #8b2a23;
}

.form-success {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}

.form-feedback p,
.form-success p {
  margin: 0;
}

.form-submit {
  background: var(--brand-red);
  color: var(--white);
  padding: 16px 40px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.form-submit:hover {
  background: var(--brand-red-dark);
}

.form-submit[disabled],
.quote-form .btn-red[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px) minmax(0, 520px);
  gap: 32px;
  align-items: start;
  padding: var(--section-pad) 0;
}

.quote-form-wrap {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.quote-form .form-row {
  margin-bottom: 18px;
}

.quote-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--brand-red);
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-form .btn-red {
  border: none;
  cursor: pointer;
}

.estimator-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.estimator-highlight {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.estimator-highlight span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(206, 44, 49, 0.1);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.estimator-highlight p,
.estimator-disclaimer,
.estimator-step-note,
.estimate-result-note,
.estimate-summary {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.estimator-disclaimer {
  margin-top: 28px;
  max-width: 560px;
}

.estimator-form {
  grid-column: 1 / -1;
}

.estimator-columns {
  display: grid;
  grid-template-columns: minmax(0, 360px);
  gap: 24px;
  align-items: start;
}

.estimator-columns.is-unlocked {
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
}

.estimator-step {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.estimator-step[hidden] {
  display: none !important;
}

.quote-form-wrap .form-feedback {
  grid-column: 1 / -1;
  margin-top: 0;
}

.estimator-step-header h3 {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}

.estimator-next {
  justify-self: start;
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.estimator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.estimate-result {
  grid-column: 2;
  margin-top: 0;
  padding: 30px;
  background: linear-gradient(135deg, #111111 0%, #212121 100%);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.estimate-result[hidden] {
  display: none !important;
}

.estimate-result-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.estimate-range {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-top: 12px;
}

.estimate-summary {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.estimate-breakdown {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.estimate-breakdown-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.estimate-breakdown-item span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 8px;
}

.estimate-breakdown-item strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.estimate-result-note {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 22px;
}

.estimator-actions-result {
  margin-top: 22px;
}

/* ============================================================
   PLACEHOLDER IMAGES
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stack-grid-2,
.stack-grid-3,
.stack-grid-4 {
  width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1320px) {
  :root {
    --header-h: 104px;
  }

  .site-header .container {
    min-height: var(--header-h);
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-inner {
    gap: 20px;
  }

  .nav-logo img {
    height: 84px;
  }

  .nav-links {
    gap: clamp(14px, 1.5vw, 22px);
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 1.2px;
  }

  .nav-cta {
    margin-left: 16px;
  }

  .btn-pill {
    padding: 14px 22px;
    font-size: 14px;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quote-form-wrap {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .estimator-columns.is-unlocked {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }

  .estimate-result {
    grid-column: 1;
    margin-top: 24px;
  }
}

@media (max-width: 1024px) {

  .hero-headline {
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.02;
  }

  .hero-content {
    max-width: 720px;
  }

  .purpose-inner,
  .choose-inner,
  .about-grid,
  .contact-grid,
  .quote-inner,
  .project-map-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .project-map-canvas {
    height: 460px;
  }

  .quote-form-wrap {
    grid-column: auto;
  }

  .estimator-columns,
  .estimator-columns.is-unlocked {
    grid-template-columns: 1fr;
  }

  .purpose-images {
    height: 420px;
  }

  .purpose-images .img-top {
    height: 300px;
  }

  .purpose-images .img-bottom {
    height: 240px;
  }

  .purpose-label {
    padding: 8px 13px;
    font-size: 10px;
  }

  .purpose-label-top {
    left: 96px;
  }

  .choose-right {
    display: none;
  }

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

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

  .estimator-grid,
  .estimate-breakdown {
    grid-template-columns: 1fr;
  }

  .stack-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .stack-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .footer-upper {
    grid-template-columns: 1fr;
  }

  .footer-divider {
    display: none;
  }

  .footer-info {
    padding: 0 0 60px;
  }

  .footer-cta {
    padding: 60px 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 92px;
  }

  .site-header .container {
    min-height: var(--header-h);
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    gap: 12px;
  }

  .nav-logo img {
    height: 68px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .hero-headline {
    font-size: clamp(32px, 9.5vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.5px;
  }

  .hero-content {
    padding: 0 28px;
    max-width: 560px;
  }

  .hero-kicker {
    margin-bottom: 6px;
  }

  .hero-bg-word {
    margin-bottom: 6px;
  }

  .purpose-images .img-top {
    left: 56px;
  }

  .purpose-label-top {
    left: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 30px 40px 40px;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.mobile-open .nav-cta {
    display: block;
    position: fixed;
    top: calc(var(--header-h) + 230px);
    left: 40px;
  }

  .video-band-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .process-steps,
  .process-dots-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-map-canvas {
    height: 400px;
    padding: 16px;
  }

  .project-map-card-body {
    padding: 26px;
  }

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

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

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-left {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .footer-lower {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

  .footer-info {
    grid-template-columns: 1fr;
  }

  .quote-form-wrap,
  .estimator-columns {
    grid-template-columns: 1fr;
  }

  .stack-grid-2,
  .stack-grid-4 {
    grid-template-columns: 1fr !important;
  }

  .estimator-step,
  .estimate-result {
    padding: 24px;
  }

  .estimate-result {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purpose-images .img-top,
  .purpose-label-top {
    animation: none;
  }
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

/* =========================================
   PORTFOLIO SHOWCASE
========================================= */

.portfolio-section {
  padding: var(--section-pad) 0;
  background: #f8f8f8;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.08);
}

/* Overlay */

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .7),
      rgba(0, 0, 0, .1));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .35s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-overlay h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.portfolio-overlay p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: .8;
}

/* Grid hierarchy */

.portfolio-large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-medium {
  grid-row: span 2;
}

.portfolio-small {
  grid-row: span 1;
}

/* Mobile */

@media (max-width: 900px) {

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .portfolio-large,
  .portfolio-medium,
  .portfolio-small {
    grid-column: auto;
    grid-row: auto;
  }

}

/* =========================================
   FULL WIDTH SHOWCASE
========================================= */

.showcase-band {
  position: relative;
  height: 520px;
  overflow: hidden;
}

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

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.showcase-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.showcase-kicker {
  letter-spacing: 2px;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 12px;
}

.showcase-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 30px;
}

/* =========================================
FLOATING CALL BUTTON
========================================= */

.call-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: var(--brand-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  z-index: 999;
  transition: transform .2s ease;
}

.call-float:hover {
  transform: scale(1.08);
}

/* ============================================================
SECTION ELEVATION (Premium Visual Layering)
============================================================ */

.purpose-section,
.choose-section,
.portfolio-section,
.founder-section,
.process-section,
.reviews-section,
.service-area-section,
.quote-section {
  position: relative;
  z-index: 2;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}
