@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --navy-50: #f0f3f7;
  --navy-100: #d9e0eb;
  --navy-700: #273d5d;
  --navy-800: #1a293e;
  --navy-900: #0d141f;
  --navy-950: #070a10;
  --steel-50: #f4f5f7;
  --steel-100: #e3e5e8;
  --steel-200: #c8ccd4;
  --steel-300: #aeb4bf;
  --steel-400: #939baa;
  --steel-500: #646b85;
  --steel-600: #51566a;
  --amber-50: #fff8e6;
  --amber-400: #ffc247;
  --amber-500: #ffaf00;
  --amber-600: #cc8c00;
  --white: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 8px 24px rgba(13, 20, 31, 0.06);
  --shadow-md: 0 16px 38px rgba(13, 20, 31, 0.12);
  --shadow-lg: 0 24px 70px rgba(13, 20, 31, 0.2);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.maintenance-body {
  background: #08090b;
}

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

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

button {
  cursor: pointer;
}

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

main {
  overflow: hidden;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  font-weight: 750;
  line-height: 1.25;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.bg-white {
  background: var(--white);
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--steel-50);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.center,
.center-block {
  margin-inline: auto;
  text-align: center;
}

.section-heading.row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.section h2,
.center-block h2 {
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 48px);
}

.section-heading p,
.lead,
.center-block p {
  margin-top: 14px;
  color: var(--steel-600);
  font-size: 18px;
}

.copy-stack {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  color: var(--steel-600);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 14px rgba(13, 20, 31, 0.08);
  backdrop-filter: blur(14px);
}

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

.site-header .container {
  width: 100%;
  max-width: none;
  padding-inline: 16px;
}

@media (min-width: 640px) {
  .site-header .container {
    max-width: 640px;
    padding-inline: 24px;
  }
}

@media (min-width: 768px) {
  .site-header .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .site-header .container {
    max-width: 1024px;
    padding-inline: 32px;
  }
}

@media (min-width: 1280px) {
  .site-header .container {
    max-width: 1280px;
    padding-inline: 48px;
  }
}

@media (min-width: 1536px) {
  .site-header .container {
    max-width: 1440px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  padding: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.brand-main {
  color: var(--navy-800);
}

.brand-accent {
  color: var(--amber-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.mobile-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--steel-600);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--navy-900);
  background: var(--steel-50);
}

.site-nav a.active,
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--navy-900);
  background: var(--navy-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .nav-actions {
    gap: 16px;
  }
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy-900);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 750;
}

.language-trigger:hover,
.language-switcher.open .language-trigger {
  background: var(--navy-50);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  display: none;
  min-width: 170px;
  border: 1px solid var(--steel-100);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  padding: 8px;
  box-shadow: var(--shadow-md);
}

.language-switcher.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu a,
.mobile-language a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 650;
}

.language-menu a span {
  color: var(--steel-500);
  font-size: 12px;
  font-weight: 800;
}

.language-menu a.active,
.mobile-language a.active {
  background: var(--navy-50);
  color: var(--navy-900);
}

.language-menu a:not(.active):hover,
.mobile-language a:not(.active):hover {
  background: var(--steel-50);
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.quote-button:hover {
  background: var(--navy-800);
}

.menu-button {
  display: none;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy-900);
  padding: 8px 10px;
  font-weight: 750;
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  height: 90vh;
  min-height: 620px;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.9), rgba(13, 20, 31, 0.7), rgba(7, 10, 16, 0.5)),
    linear-gradient(0deg, rgba(7, 10, 16, 0.6), transparent 55%, rgba(7, 10, 16, 0.3)),
    url("https://images.unsplash.com/photo-1486718448742-163732cd1544?q=80&w=2560&auto=format&fit=crop") center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 104px 0 56px;
}

.hero-content h1 {
  max-width: 768px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-content p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--steel-200);
  font-size: clamp(18px, 1.6vw, 20px);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  color: var(--steel-400) !important;
}

.trust-line span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber-500);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 6px;
  background: var(--amber-500);
  color: var(--navy-950);
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--amber-400);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.dark {
  background: var(--navy-900);
  color: var(--white);
}

.button.dark:hover {
  background: var(--navy-800);
}

.button.outline {
  border: 1px solid var(--steel-200);
  background: var(--white);
  color: var(--navy-900);
}

.button.outline:hover {
  background: var(--steel-50);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover {
  color: var(--amber-600);
}

.stats-strip,
.project-stats {
  padding: 56px 0;
  border-bottom: 1px solid var(--steel-100);
  background: var(--white);
}

.project-stats {
  padding: 48px 0;
}

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

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

.metric {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.metric-value {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.metric-label {
  margin-top: 2px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 750;
}

.metric-description {
  margin-top: 4px;
  color: var(--steel-500);
  font-size: 14px;
  line-height: 1.5;
}

.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-700);
  font-weight: 800;
}

.icon-box.small {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.icon-box.amber {
  background: var(--amber-50);
  color: var(--amber-600);
}

.icon-box.inverse {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.media-card,
.project-card,
.feature-card,
.article-card,
.gallery-card {
  overflow: hidden;
  border: 1px solid var(--steel-100);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.media-card:hover,
.project-card:hover,
.feature-card:hover,
.article-card:hover {
  box-shadow: var(--shadow-md);
}

.media-card-image,
.project-image,
.article-image,
.gallery-media {
  position: relative;
  overflow: hidden;
  background: var(--steel-100);
}

.media-card-image {
  height: 192px;
}

.project-image {
  height: 208px;
}

.article-image {
  display: block;
  height: 192px;
}

.media-card-image::after,
.project-image::after,
.article-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 16, 0.56), transparent 60%);
  pointer-events: none;
}

.media-card img,
.project-card img,
.article-card img,
.gallery-card img,
.image-frame img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover img,
.project-card:hover img,
.article-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}

.media-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-700);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.media-card-body,
.project-body,
.article-body {
  padding: 20px;
}

.media-card h3,
.project-card h3,
.article-card h3,
.feature-card h3 {
  color: var(--navy-900);
  font-size: 18px;
}

.media-card p,
.project-card p,
.article-card p,
.feature-card p {
  margin-top: 8px;
  color: var(--steel-500);
  font-size: 14px;
  line-height: 1.55;
}

.media-card .text-link {
  margin-top: 14px;
}

.project-image span,
.featured-label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display: inline-flex;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.benefit-media,
.image-frame {
  position: relative;
}

.video-frame,
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--steel-100);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(7, 10, 16, 0.32), transparent 60%);
}

.floating-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;
  display: block;
  min-width: 164px;
  border: 1px solid var(--steel-100);
  border-radius: 12px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
}

.floating-badge p {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.floating-badge span {
  color: var(--steel-500);
  font-size: 14px;
}

.benefit-list {
  display: grid;
  gap: 20px;
}

.benefit-item,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-item h3,
.contact-item strong {
  color: var(--navy-900);
  font-size: 16px;
}

.benefit-item p,
.contact-item p,
.contact-item small {
  margin-top: 4px;
  color: var(--steel-500);
  font-size: 14px;
}

.page-hero {
  --hero-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2560&auto=format&fit=crop");
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 136px 0 96px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover;
  opacity: 0.24;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 31, 0.6), rgba(13, 20, 31, 0.82), var(--navy-900));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.projects-hero {
  --hero-image: url("https://images.unsplash.com/photo-1545558014-8692077e9b5c?q=80&w=2560&auto=format&fit=crop");
}

.contact-hero {
  --hero-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1600&auto=format&fit=crop");
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 64px);
}

.page-hero p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--steel-200);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card {
  padding: 32px;
}

.feature-card.compact {
  padding: 24px;
}

.feature-card.tint {
  background: var(--steel-50);
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.feature-card .button {
  margin-top: 24px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--steel-200);
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.timeline-year {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.timeline-card {
  border-radius: 12px;
  background: var(--white);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.timeline-card p {
  color: var(--steel-500);
  font-size: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.spec-card {
  border: 1px solid var(--steel-100);
  border-radius: 12px;
  background: var(--white);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.spec-card p {
  color: var(--navy-900);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.spec-card span {
  display: block;
  margin-top: 4px;
  color: var(--steel-500);
  font-size: 14px;
  font-weight: 650;
}

.spec-table {
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--steel-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.spec-table h3 {
  background: var(--navy-900);
  color: var(--white);
  padding: 16px 24px;
  font-size: 18px;
}

.spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  border-top: 1px solid var(--steel-100);
  background: var(--white);
}

.spec-table span {
  color: var(--steel-500);
  font-size: 14px;
  font-weight: 650;
}

.spec-table strong {
  color: var(--navy-900);
  font-size: 14px;
}

.step-card > span {
  display: block;
  margin-top: 16px;
  color: var(--amber-600);
  font-size: 14px;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--steel-50);
  color: var(--steel-600);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 650;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--navy-900);
  color: var(--white);
}

.featured-project {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 56px;
  border: 1px solid var(--steel-100);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.featured-image {
  position: relative;
  min-height: 360px;
  background: var(--steel-100);
}

.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 16, 0.4), transparent);
  pointer-events: none;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.category-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--amber-50);
  color: var(--amber-600);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 750;
}

.featured-copy h2 {
  margin-top: 12px;
  color: var(--navy-900);
  font-size: clamp(28px, 3vw, 38px);
}

.featured-copy p {
  margin-top: 14px;
  color: var(--steel-600);
}

.featured-copy .button {
  width: fit-content;
  margin-top: 24px;
}

.location {
  color: var(--steel-500) !important;
  font-size: 14px;
}

.map-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 38px 38px;
}

.map-section .container {
  position: relative;
  z-index: 1;
}

.map-section h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
}

.map-section p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--steel-300);
}

.pin-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.pin-row span {
  color: var(--white);
  font-weight: 700;
}

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

.gallery-card {
  border-radius: 12px;
}

.gallery-media {
  aspect-ratio: 4 / 3;
}

.gallery-media img,
.gallery-media video,
.video-feature video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.gallery-caption {
  padding: 16px;
}

.gallery-caption h3 {
  font-size: 15px;
}

.gallery-caption p {
  margin-top: 4px;
  color: var(--steel-500);
  font-size: 13px;
}

.content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 40px;
}

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--steel-500);
  font-size: 13px;
}

.meta-row.small {
  gap: 8px;
  font-size: 12px;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 28px;
}

.sidebar-card {
  border: 1px solid var(--steel-100);
  border-radius: 16px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  color: var(--navy-900);
  font-size: 18px;
}

.category-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--steel-600);
  font-size: 14px;
}

.category-list strong,
.topic-list span {
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-700);
  padding: 2px 8px;
  font-size: 12px;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.dark-card {
  background: var(--navy-900);
  color: var(--white);
}

.dark-card h3 {
  margin-top: 12px;
  color: var(--white);
}

.dark-card p {
  margin-top: 8px;
  color: var(--steel-300);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 650;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--steel-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 1px var(--navy-700);
}

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

input[type="checkbox"],
input[type="file"] {
  width: auto;
}

.file-drop {
  border: 1px dashed var(--steel-200);
  border-radius: 8px;
  background: var(--steel-50);
  padding: 14px 16px;
  color: var(--steel-600);
}

.file-drop span {
  color: var(--steel-400);
  font-size: 12px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--steel-600);
  font-weight: 500;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.quick-contact {
  margin-top: 40px;
  border: 1px solid var(--steel-100);
  border-radius: 16px;
  background: var(--steel-50);
  padding: 24px;
}

.quick-contact h3 {
  color: var(--navy-900);
}

.quick-contact a {
  display: flex;
  margin-top: 12px;
  border-radius: 8px;
  background: var(--white);
  padding: 11px 14px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.office-grid {
  margin-top: 32px;
}

.faq-controls {
  padding: 44px 0 0;
  background: var(--white);
}

.faq-controls input {
  border-radius: 12px;
  padding: 13px 16px;
}

.faq-controls .filter-row {
  margin-top: 16px;
  margin-bottom: 0;
}

.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--steel-100);
}

.faq-list.full {
  max-width: none;
}

.faq-item {
  border-bottom: 1px solid var(--steel-100);
  padding: 20px 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--navy-900);
  text-align: left;
  font-weight: 700;
}

.faq-item em {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-700);
  padding: 2px 8px;
  font-size: 12px;
  font-style: normal;
}

.faq-toggle {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--steel-50);
  color: var(--steel-500);
}

.faq-item p {
  display: none;
  padding: 12px 48px 0 0;
  color: var(--steel-600);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.open p {
  display: block;
}

.detail-copy h2 {
  margin-top: 16px;
}

.detail-copy p,
.prose-card p {
  margin-top: 18px;
  color: var(--steel-600);
}

.detail-copy .button {
  margin-top: 28px;
}

.article-detail {
  display: grid;
  gap: 36px;
  max-width: 960px;
}

.prose-card {
  border: 1px solid var(--steel-100);
  border-radius: 16px;
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.prose-card .text-link {
  margin-top: 24px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
}

.cta-banner p {
  margin: 18px auto 0;
  color: var(--steel-300);
  font-size: 18px;
}

.cta-banner .button {
  margin-top: 32px;
}

.site-footer {
  background: var(--navy-950);
  color: var(--steel-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1.1fr;
  gap: 36px;
  padding-block: 72px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.footer-logo span {
  color: var(--amber-500);
}

.footer-brand p,
.footer-copy {
  color: var(--steel-400);
  font-size: 14px;
}

.footer-brand small,
.footer-list small {
  display: block;
  color: var(--steel-500);
  font-size: 12px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--steel-400);
  font-size: 12px;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}

.footer-list,
.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-list strong,
.footer-list a,
.footer-list span {
  color: var(--steel-300);
  font-size: 14px;
  font-weight: 500;
}

.footer-icon {
  color: var(--amber-500) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.footer-links a {
  color: var(--steel-400);
  font-size: 14px;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form.stacked {
  display: grid;
}

.newsletter-form input {
  border-color: var(--navy-800);
  background: var(--navy-900);
  color: var(--white);
}

.newsletter-form button {
  border: 0;
  border-radius: 6px;
  background: var(--amber-500);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 750;
}

.footer-bottom {
  border-top: 1px solid var(--navy-900);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--steel-500);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 36%),
    #08090b;
}

.maintenance-card {
  width: min(700px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.maintenance-line {
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ff6b00, #2f7df6);
}

.maintenance-content {
  padding: 42px clamp(24px, 6vw, 58px);
  text-align: center;
}

.maintenance-logo {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  animation: swing 2.8s ease-in-out infinite;
  transform-origin: 50% 0;
}

.maintenance-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.maintenance-card h1 {
  font-size: clamp(36px, 6vw, 52px);
  text-transform: uppercase;
}

.maintenance-card h1 span {
  color: var(--amber-500);
}

.maintenance-card p {
  color: #c6cfda;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d8e0ea;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #16a34a;
}

.maintenance-contact {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.maintenance-contact a,
.maintenance-contact strong {
  color: #fff;
  font-weight: 800;
}

@keyframes swing {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.admin-layout {
  background: #f5f7fb;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--navy-950);
  color: #fff;
  padding: 24px;
}

.admin-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #d7dfeb;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-main {
  padding: 32px;
}

.admin-card {
  border: 1px solid var(--steel-100);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid #e5eaf1;
  text-align: left;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-actions form {
  margin: 0;
}

.link-button {
  width: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.notice {
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  background: #ecfdf5;
  color: #065f46;
}

.notice.error {
  background: #fef2f2;
  color: #991b1b;
}

@media (max-width: 1080px) {
  .site-nav,
  .language-switcher {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 80px 16px auto;
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--steel-100);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    padding: 14px;
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-quote {
    margin-top: 8px;
  }

  .mobile-language {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
  }

  .stats-grid,
  .cards-4,
  .spec-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .content-sidebar,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 68px;
  }

  .quote-button:not(.mobile-quote) {
    display: none;
  }

  .home-hero {
    height: auto;
    max-height: none;
    min-height: 760px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading.row,
  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid,
  .stats-grid.compact,
  .cards-2,
  .cards-3,
  .cards-4,
  .split,
  .featured-project,
  .gallery-grid,
  .article-grid,
  .form-row,
  .footer-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }

  .page-hero {
    min-height: 330px;
    padding: 112px 0 72px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .featured-copy,
  .prose-card {
    padding: 24px;
  }
}
