:root {
  --bg: #f3f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: rgba(7, 27, 44, 0.74);
  --text: #152536;
  --muted: #5d7286;
  --line: rgba(21, 37, 54, 0.12);
  --navy: #0a2237;
  --ocean: #0d5f73;
  --teal: #1f8a8e;
  --seafoam: #8ed3db;
  --sand: #d9af63;
  --sand-deep: #c28b2f;
  --success: #5aa957;
  --shadow-soft: 0 18px 48px rgba(9, 28, 45, 0.12);
  --shadow-strong: 0 28px 64px rgba(9, 28, 45, 0.2);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#devis-form {
  scroll-margin-top: 8rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(142, 211, 219, 0.36), transparent 32%),
    radial-gradient(circle at bottom right, rgba(217, 175, 99, 0.18), transparent 26%),
    linear-gradient(180deg, #f9fbfd 0%, var(--bg) 100%);
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal);
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: 4rem;
}

.page-title {
  color: #ffffff;
}

.hero-title {
  color: #ffffff;
}

.lead,
.section-copy,
.card p,
.timeline-card p,
.project-card p,
.contact-card p,
.footer-copy,
.footer-links a {
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 25, 40, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #ffffff;
  position: relative;
  z-index: 3;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.brand-mark {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6abd45, var(--success));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.button-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--success), #6abd45);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(90, 169, 87, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.button-light {
  background: rgba(8, 25, 40, 0.9);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-light:hover {
  background: linear-gradient(135deg, var(--success), #6abd45);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(90, 169, 87, 0.28);
  transform: translateY(-4px) scale(1.02);
}

.page-shell {
  position: relative;
}

/* .hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.88) 0%, rgba(8, 25, 40, 0.6) 38%, rgba(8, 25, 40, 0.18) 74%),
    url("../images/hero-home.jpg") center/cover no-repeat;
  position: relative;
  padding-top: 10rem;
} */
 .hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.88) 0%, rgba(8, 25, 40, 0.6) 38%, rgba(8, 25, 40, 0.18) 74%),
    url("../images/forage2.jpg") center/cover no-repeat;
  position: relative;
  padding-top: 10rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(142, 211, 219, 0.14), transparent 26%),
    radial-gradient(circle at 85% 70%, rgba(217, 175, 99, 0.18), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding-bottom: 7rem;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy .lead,
.page-hero .lead,
.page-hero-apropos .lead,
.page-hero-services .lead,
.page-hero-realisations .lead,
.page-hero-processus .lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  text-shadow: 0 2px 12px rgba(8, 25, 40, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.hero-card h2 {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  padding: 1.6rem 1rem;
  background: rgba(7, 27, 44, 0.5);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.35rem;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.78);
}

.about-band {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.about-showcase {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.95)),
    linear-gradient(135deg, rgba(13, 95, 115, 0.1), rgba(142, 211, 219, 0.1));
}

.about-image {
  min-height: 310px;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.08), rgba(8, 25, 40, 0.04)),
    url("../images/forage5.png") center/cover no-repeat;
}

.about-copy {
  padding: 3rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.about-showcase-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
}

.about-copy .section-copy {
  margin: 0;
  max-width: 520px;
}

.about-service-strip {
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(13, 95, 115, 0.98), rgba(31, 138, 142, 0.95)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 45%);
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-service-card {
  min-height: 100%;
  padding: 1.25rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 24px rgba(8, 25, 40, 0.12);
  text-align: center;
}

.about-service-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin: 0 auto 0.85rem;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(13, 95, 115, 0.1);
  color: var(--ocean);
  font-size: 1.45rem;
}

.about-service-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--navy);
}

.about-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.service-strip {
  background:
    linear-gradient(135deg, rgba(13, 95, 115, 0.98), rgba(31, 138, 142, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.service-strip-head {
  max-width: 860px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.service-strip-head .eyebrow,
.service-strip-head .section-title,
.service-strip-head .lead {
  color: #ffffff;
}

.service-strip-head .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.project-card,
.timeline-card,
.contact-card,
.service-panel,
.detail-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
}

.service-strip .card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.82);
}

.card,
.service-panel,
.detail-panel,
.contact-card {
  padding: 1.55rem;
}

.card-icon,
.timeline-step {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(31, 138, 142, 0.12);
  color: var(--ocean);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), var(--teal));
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 48px rgba(8, 25, 40, 0.2);
  border-color: rgba(31, 138, 142, 0.28);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .card-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 95, 115, 0.14), rgba(217, 175, 99, 0.24));
  box-shadow: 0 12px 24px rgba(13, 95, 115, 0.14);
  animation: serviceIconFloat 3.8s ease-in-out infinite;
}

.service-card .card-icon i {
  font-size: 1.5rem;
}

.service-card:hover .card-icon {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, rgba(13, 95, 115, 0.22), rgba(217, 175, 99, 0.32));
}

.card-index {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 34, 55, 0.46);
}

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

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

.card h3,
.project-card h3,
.service-panel h3,
.detail-panel h3,
.contact-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.portfolio-section {
  background:
    radial-gradient(circle at top left, rgba(142, 211, 219, 0.25), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(229, 241, 247, 0.9));
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  overflow: hidden;
  position: relative;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.2 / 0.9;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.project-card:hover img,
.project-card img:focus-visible {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.project-trigger:focus-visible {
  outline: 3px solid rgba(106, 189, 69, 0.95);
  outline-offset: -6px;
}

.project-card-copy {
  padding: 1rem 1rem 1.2rem;
}

.project-card p {
  margin: 0;
  font-size: 0.95rem;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 29, 0.78);
  backdrop-filter: blur(8px);
}

.project-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 920px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s ease;
}

.project-lightbox.is-open .project-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.project-lightbox-image {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  display: block;
  background: #0a2237;
}

.project-lightbox-copy {
  padding: 1.5rem 1.5rem 1.8rem;
  background: #ffffff;
}

.project-lightbox-copy h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
}

.project-lightbox-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.project-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 25, 40, 0.82);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 25, 40, 0.82);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-lightbox-prev {
  left: 1rem;
}

.project-lightbox-next {
  right: 1rem;
}

.project-lightbox-nav:hover {
  background: rgba(90, 169, 87, 0.96);
  transform: translateY(-50%) scale(1.05);
}

.project-lightbox-close:hover {
  background: rgba(90, 169, 87, 0.96);
  transform: rotate(90deg);
}

.process-strip {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.process-inline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-inline article {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}

.process-inline strong {
  font-size: 0.95rem;
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 44, 0.92), rgba(13, 95, 115, 0.84)),
    url("../images/contact-hero.jpg") center/cover no-repeat;
  color: #ffffff;
}

.cta-box {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.2rem;
}

.page-hero {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.86), rgba(8, 25, 40, 0.48)),
    url("../images/apros.webp") center/cover no-repeat;
}

.page-hero-apropos {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.86), rgba(8, 25, 40, 0.48)),
    url("../images/forage1.png") center/cover no-repeat;
}

.page-hero-services {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.86), rgba(8, 25, 40, 0.48)),
    url("../images/forage.png") center/cover no-repeat;
}

.page-hero-processus {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.86), rgba(8, 25, 40, 0.48)),
    url("../images/hero-home.jpg") center/cover no-repeat;
}

.page-hero-realisations {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(8, 25, 40, 0.86), rgba(8, 25, 40, 0.48)),
    url("../images/forage3_cropped.jpg") center/cover no-repeat;
}


.page-hero .container {
  max-width: 840px;
}

.contact-hero {
  padding-bottom: 4rem;
}

.contact-hero-grid {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.contact-hero-copy {
  max-width: 700px;
}

.contact-hero-actions {
  margin-top: 2.2rem;
}

.contact-hero-card {
  padding: 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-strong);
  color: #ffffff;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  margin: 1rem 0 1.1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.contact-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-highlight-list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-highlight-list strong {
  font-size: 0.98rem;
}

.contact-highlight-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.split-section,
.contact-layout,
.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-section {
  position: relative;
  margin-top: -2rem;
  z-index: 2;
}

.contact-info-stack {
  display: grid;
  gap: 1.25rem;
}

.contact-card-primary,
.contact-form-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 252, 0.94));
}

.contact-form-panel {
  position: relative;
  border-top: 4px solid var(--success);
  box-shadow: 0 24px 54px rgba(9, 28, 45, 0.14);
}

.contact-card-primary h3 {
  font-size: 1.35rem;
}

.contact-action-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.4rem 0 1.2rem;
}

.contact-action-link {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(8, 25, 40, 0.04);
  border: 1px solid rgba(21, 37, 54, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-action-link:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 138, 142, 0.3);
  box-shadow: 0 16px 26px rgba(9, 28, 45, 0.08);
}

.contact-action-label,
.contact-mini-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-action-link strong {
  color: var(--navy);
  font-size: 1rem;
}

.contact-detail-list {
  margin-top: 1.2rem;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-mini-card {
  padding: 1.2rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 37, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-mini-card h3 {
  margin: 0.45rem 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-panel-head {
  margin-bottom: 1.4rem;
}

.form-panel-title {
  margin: 0 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--navy);
}

.form-panel-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.detail-panel ul,
.service-panel ul,
.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.detail-panel li,
.service-panel li,
.contact-list li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.contact-list-icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.65rem;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: rgba(20, 110, 74, 0.12);
  color: var(--success);
  box-shadow: inset 0 0 0 1px rgba(20, 110, 74, 0.12);
}

.contact-item-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-body {
  display: grid;
  gap: 0.15rem;
}

.contact-item-body strong {
  color: var(--navy);
}

.contact-link,
.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover,
.footer-contact a:hover {
  color: var(--success);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
}

.media-cover {
  min-height: 100%;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b9aa7;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(31, 138, 142, 0.52);
  box-shadow: 0 0 0 4px rgba(31, 138, 142, 0.12);
  background: #ffffff;
}

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

.contact-form .button-primary {
  width: 100%;
  margin-top: 0.25rem;
}

.form-helper {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(142, 211, 219, 0.18), transparent 18%),
    linear-gradient(180deg, #0a2237 0%, #081a2a 100%);
  color: #ffffff;
  padding: 3.5rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-title {
  margin: 0 0 0.9rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.footer-copy,
.footer-links a,
.footer-contact {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.7rem;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-panel,
  .footer-grid,
  .project-grid,
  .grid-4,
  .grid-3,
  .split-section,
  .contact-layout,
  .service-layout,
  .process-inline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    justify-self: stretch;
    width: auto;
  }

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

  .about-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section-title,
  .page-title,
  .hero-title {
    font-size: 3rem;
  }

  .site-header.scrolled {
    background: rgba(8, 25, 40, 0.94);
  }

  .service-strip-head {
    margin-bottom: 2rem;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(8, 25, 40, 0.96);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav a::after {
    bottom: -0.25rem;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-panel,
  .grid-4,
  .grid-3,
  .grid-2,
  .project-grid,
  .process-inline,
  .split-section,
  .contact-layout,
  .service-layout,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-action-group,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-bottom: 3rem;
  }

  .hero-card {
    order: -1;
  }

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

  .about-copy,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .about-service-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 560px) {
  .section-title,
  .page-title,
  .hero-title {
    font-size: 2.4rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .service-card .card-icon {
    width: 3.7rem;
    height: 3.7rem;
  }

  .project-lightbox {
    padding: 1rem;
  }

  .project-lightbox-dialog {
    border-radius: 22px;
  }

  .project-lightbox-copy {
    padding: 1.2rem 1rem 1.4rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .brand-tagline {
    display: none;
  }

  .about-copy,
  .card,
  .service-panel,
  .detail-panel,
  .timeline-card,
  .contact-card {
    padding: 1.25rem;
  }
}
