:root {
  --bg: #eff1dd;
  --soft: #dfe5c8;
  --light: #f4f4ef;
  --white: #ffffff;
  --text: #2f3f2d;
  --muted: #5a6653;
  --primary: #253a27;
  --primary-2: #3a4e3c;
  --accent: #f0ad23;
  --border: rgba(37, 58, 39, 0.12);
  --shadow: 0 18px 40px rgba(30, 45, 31, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-soft {
  background: var(--soft);
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: linear-gradient(90deg, #17301f 0%, #1c3d24 50%, #28452c 100%);
}

.section-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
}

.section-title.left {
  text-align: left;
}

.section-subtitle {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.text-light {
  color: #fbfff4;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 241, 221, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37, 58, 39, 0.08);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(239, 241, 221, 0.88);
  box-shadow: 0 14px 28px rgba(24, 43, 24, 0.08);
  border-bottom-color: rgba(37, 58, 39, 0.14);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-top {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-top strong {
  color: var(--accent);
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 1.1px;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--primary);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  min-height: 720px;
  padding: 42px 0 42px;
  z-index: 2;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroKenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}

/* .hero-overlay {
  background:
    radial-gradient(circle at 18% 20%, rgba(250, 255, 230, 0.18) 0%, rgba(250, 255, 230, 0.06) 18%, rgba(250, 255, 230, 0) 36%),
    radial-gradient(circle at 28% 52%, rgba(185, 193, 149, 0.16) 0%, rgba(185, 193, 149, 0.06) 20%, rgba(185, 193, 149, 0) 40%),
    linear-gradient(90deg, rgba(29, 48, 31, 0.78) 0%, rgba(29, 48, 31, 0.48) 38%, rgba(29, 48, 31, 0.12) 100%);
} */

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: -15% auto auto -10%;
  width: 48vw;
  height: 48vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 173, 35, 0.16) 0%, rgba(240, 173, 35, 0.04) 38%, rgba(240, 173, 35, 0) 70%);
  filter: blur(6px);
  animation: glowFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 56px;
  align-items: center;
}

.hero-left-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 40px 42px 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(250, 255, 230, 0.08) 0%, rgba(185, 193, 149, 0.10) 100%);
  border: 1px solid rgba(250, 255, 230, 0.14);
  box-shadow: 0 14px 40px rgba(37, 58, 39, 0.12), inset 0 1px 0 rgba(250, 255, 230, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-left-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  animation: glassSweep 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-left-card h1 {
  margin: 0 0 5px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 0.98;
  color: #1b3b21;
}

.hero-left-card h1 span {
  color: var(--accent);
}

.hero-left-card p {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.75;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hero-checks li {
  position: relative;
  padding-left: 18px;
  color: #ffffff;
  font-weight: 500;
}

.hero-checks li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 40%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  transition: left 0.4s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn-light {
  background: #fbfff2;
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(15, 15, 15, 0.12);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary {
  width: 100%;
  background: #0f2240;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* =========================
   FLOATING FEATURE BAR
========================= */

.feature-overlap-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -78px;
  z-index: 20;
  pointer-events: none;
}

.feature-overlap-wrap .container {
  position: relative;
}

.feature-bar {
  position: relative;
  z-index: 21;
  pointer-events: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  overflow: visible;
  margin-top: 0;
  padding: 18px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(29, 56, 33, 0.86) 0%, rgba(41, 72, 47, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 54px rgba(17, 29, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.feature-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(250, 255, 230, 0.18);
}

.feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  padding: 12px 10px;
  gap: 10px;
  text-align: center;
  color: #fbfff4;
  border-radius: 18px;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.feature-item:hover::after {
  opacity: 1;
}

.feature-item h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.feature-icon {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
  transition:
    transform 0.4s ease,
    text-shadow 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.12) translateY(-2px);
  text-shadow: 0 10px 18px rgba(255, 255, 255, 0.18);
}

/* =========================
   GLOBAL SECTION SPACING
========================= */

.projects,
.about,
.services,
.mission,
.stats,
.lead,
.faq {
  padding: 72px 0;
}

/* =========================
   PROJECTS FULL WIDTH
========================= */

.projects {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  overflow: visible;
}

.projects > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.projects .section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
  padding-left: 24px;
  padding-right: 24px;
}

.project-carousel-wrap {
  position: relative;
  width: 100vw;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  box-sizing: border-box;
}

.project-carousel {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 29vw, 430px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 14px 2px 24px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 6px;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.project-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.project-carousel.is-dragging * {
  cursor: grabbing;
}

.project-card {
  position: relative;
  min-height: 440px;
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(37, 58, 39, 0.08);
  box-shadow: 0 16px 34px rgba(17, 29, 18, 0.10);
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
  will-change: transform;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 26px 44px rgba(17, 29, 18, 0.18);
  border-color: rgba(240, 173, 35, 0.34);
}

.project-card__media {
  position: absolute;
  inset: 0;
}

.project-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(11, 18, 11, 0.72) 100%);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
}

.project-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.project-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project-card__overlay h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.14;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease;
}

.project-card__overlay p {
  margin: 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.04);
}

.project-card:hover .project-card__overlay,
.project-card:hover .project-card__overlay h3,
.project-card:hover .project-card__overlay p {
  transform: translateY(0) scale(1.02);
}

.carousel-btn {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: none;
  border-radius: 50%;
  background: rgba(37, 58, 39, 0.82);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(17, 29, 18, 0.18);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    background 0.28s ease;
  z-index: 5;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.05);
  background: rgba(37, 58, 39, 0.94);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.about-circle:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.about-circle.main {
  width: 310px;
  height: 310px;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
}

.about-circle.main:hover {
  transform: translateX(-50%) translateY(-6px);
}

.about-circle.main img,
.about-circle.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-circle.small {
  width: 150px;
  height: 150px;
  bottom: 12px;
  left: 72px;
}

.about-circle.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #6a7a3e 0%, #2e4a21 100%);
  border: 6px solid #f1f2df;
}

.about-circle.badge-1 {
  width: 115px;
  height: 115px;
  bottom: 84px;
  left: 22px;
  font-size: 15px;
}

.about-circle.badge-2 {
  width: 120px;
  height: 120px;
  right: 24px;
  top: 136px;
  font-size: 16px;
}

.about-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.02;
}

.about-copy h2 span {
  color: var(--accent);
}

.about-copy p {
  margin: 0 0 16px;
  line-height: 1.82;
  color: var(--muted);
}

/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 28px 22px 24px;
  display: grid;
  grid-template-rows: 75px 85px 1fr;
  justify-items: center;
  align-items: start;
  text-align: center;
  box-shadow: 0 10px 20px rgba(12, 12, 12, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
  display: grid;
  place-items: center;
  text-align: center;
}

.service-card p {
  margin: 0;
  max-width: 300px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 20px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 14px;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    padding: 12px;
    margin: 0;
    border-radius: 18px;
    flex-shrink: 0;
  }

  .service-card h3 {
    width: 100%;
    max-width: none !important;
    margin: 0;
    padding: 0 8px;
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .service-card p {
    width: 100%;
    max-width: none !important;
    margin: 0;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
/* =========================
   MISSION
========================= */

.mission-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.mission-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1.08;
}

.mission-points {
  display: grid;
  gap: 18px;
}

.mission-point {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(47, 63, 45, 0.16);
}

.mission-point h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.solutions-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solutions-heading {
  margin-top: 38px;
  margin-bottom: 22px;
  text-align: center;
}

.solutions-heading .eyebrow {
  margin-bottom: 10px;
}

.solutions-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.12;
  color: var(--text);
}

.solutions-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.solution-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.solution-card h3 {
  margin: 12px 0 10px;
  font-size: 18px;
}

.solution-card ul {
  margin: 0;
  padding-left: 18px;
  color: #2743c2;
  line-height: 1.8;
  font-size: 14px;
}

/* =========================
   STATS
========================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  justify-content: center;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(37, 58, 39, 0.1);
  border-radius: 4px;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.stat-card strong {
  font-size: 44px;
  line-height: 1;
}

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

/* =========================
   LEAD
========================= */

.lead-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.lead-copy h2 {
  margin: 0 0 0px;
  font-size: clamp(34px, 3.6vw, 50px);
}

.lead-copy p,
.lead-copy li {
  color: var(--muted);
  line-height: 1.8;
}

.lead-copy ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.lead-note {
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
}

.lead-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(37, 58, 39, 0.22);
  border-radius: 14px;
  padding: 24px 22px 20px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  justify-self: end;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.lead-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.lead-form h3 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 28px;
}

.lead-form p {
  margin: 0 0 16px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.lead-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid #c8cfbe;
  margin-bottom: 12px;
  outline: none;
}

.lead-form input:focus {
  border-color: #5e7252;
}

.lead-form small {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
}

/* =========================
   FAQ
========================= */

.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 38px;
  align-items: center;
}

.faq-illustration img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 26px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-illustration img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 29, 18, 0.12);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(37, 58, 39, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.accordion details:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(17, 29, 18, 0.10);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  position: relative;
}

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

.accordion summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: '–';
}

.accordion p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: linear-gradient(180deg, #14321c 0%, #183922 100%);
  color: #f8fff2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px 0 18px;
  align-items: stretch;
}

.footer-copy h2 {
  margin: 0 0 16px;
  font-size: 44px;
}

.footer-copy ul {
  margin: 0;
  padding-left: 18px;
  line-height: 2;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================
   FLOAT BUTTONS
========================= */

.hover-lift {
  transition:
    transform 0.28s ease-out,
    box-shadow 0.28s ease-out;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hover-lift:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.contact-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99999;
}

.contact-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  background-color: #f0f0f0;
}

.contact-item img {
  width: 28px;
  height: 28px;
}

#architech-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #253a27;
  color: #faffe6;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

#architech-scroll-top:hover {
  transform: translateY(-2px);
}

/* =========================
   REVEAL / LOAD ANIMATION
========================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="left"].is-visible {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal="right"].is-visible {
  transform: translateX(0);
}

[data-reveal="zoom"] {
  transform: scale(0.94);
}

[data-reveal="zoom"].is-visible {
  transform: scale(1);
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

.hero-banner,
.hero-left-card,
.feature-overlap-bar {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .hero-banner {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .hero-left-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

body.is-loaded .feature-overlap-bar {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes heroKenBurns {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(3%, 4%, 0);
  }
}

@keyframes glassSweep {
  0%,
  72%,
  100% {
    transform: translateX(-120%);
  }
  82% {
    transform: translateX(120%);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .feature-bar,
  .service-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .lead-grid,
  .mission-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .lead-form {
    justify-self: start;
  }

  .faq-illustration {
    order: -1;
  }

  .feature-overlap-wrap {
    bottom: -94px;
  }

  .projects {
    padding-top: 172px;
  }

  .project-carousel {
    grid-auto-columns: clamp(300px, 42vw, 390px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    overflow: hidden;
    padding-bottom: 42px;
  }

  .hero-left-card {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .feature-overlap-wrap,
  .feature-bar,
  .feature-overlap-bar,
  .feature-overlap-bar.is-visible {
    display: none !important;
  }

  .service-grid,
  .solutions-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .projects {
    padding-top: 72px;
  }

  .projects > .container {
    padding-left: 0;
    padding-right: 0;
  }

  .projects .section-title {
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-carousel-wrap {
    width: 100%;
    left: auto;
    transform: none;
    padding: 0 16px;
  }

  .project-carousel {
    grid-auto-columns: 86%;
    gap: 16px;
    padding-bottom: 12px;
  }

  .project-card {
    min-height: 360px;
    border-radius: 22px;
  }

  .project-card__overlay {
    padding: 20px 18px 18px;
  }

  .project-card__overlay h3 {
    font-size: 22px;
  }

  .project-card__overlay p {
    max-width: 100%;
    font-size: 13px;
  }

  .carousel-btn {
    display: none;
  }

  .about-visual {
    min-height: 380px;
  }

  .about-circle.main {
    width: 240px;
    height: 240px;
  }

  .about-circle.small {
    width: 115px;
    height: 115px;
    left: 22px;
    bottom: 20px;
  }

  .about-circle.badge-1 {
    width: 94px;
    height: 94px;
    left: 8px;
    bottom: 98px;
    font-size: 12px;
  }

  .about-circle.badge-2 {
    width: 100px;
    height: 100px;
    right: 8px;
    top: 132px;
    font-size: 13px;
  }

  .faq-grid {
    gap: 24px;
  }

  .footer-copy h2 {
    font-size: 34px;
  }

  .contact-links {
    left: 14px;
    bottom: 14px;
    gap: 12px;
  }

  .contact-item,
  #architech-scroll-top {
    width: 46px;
    height: 46px;
  }

  .contact-item img {
    width: 24px;
    height: 24px;
  }

  #architech-scroll-top {
    right: 14px;
    bottom: 14px;
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}