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

:root {
  --bg: #f4f6f8;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #102436;
  --muted: #516273;
  --line: rgba(16, 36, 54, 0.12);
  --blue: #0a4266;
  --blue-2: #0d5f90;
  --orange: #f47b20;
  --orange-2: #d45118;
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 48%, var(--orange) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(10, 66, 102, 0.12) 0%, rgba(244, 123, 32, 0.14) 100%);
  --shadow: 0 24px 60px rgba(10, 31, 53, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --content-width: min(1540px, calc(100% - 36px));
  --brand-solid: #165d96;
  --brand-solid-dark: #0f4d7f;
  --brand-accent-blue: #0E2A43;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 95, 144, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.2), transparent 24%),
    linear-gradient(180deg, #f8fafb 0%, #eef2f5 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.45;
  z-index: -1;
}

.page-shell::before {
  top: -120px;
  right: -120px;
  background: rgba(244, 123, 32, 0.16);
}

.page-shell::after {
  bottom: -140px;
  left: -120px;
  background: rgba(10, 66, 102, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 246, 248, 0.7);
  border-bottom: 1px solid rgba(16, 36, 54, 0.06);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(13, 95, 144, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(244, 123, 32, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fafb 0%, #eef2f5 100%);
}

.not-found-panel {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.not-found-brand {
  margin-bottom: 36px;
}

.not-found h1 {
  margin: 8px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 1;
}

.not-found p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.nav-bar {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  flex: none;
  object-fit: contain;
}

.brand-copy { min-width: 0; }

.brand-name {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

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

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(16, 36, 54, 0.06);
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-solid);
  color: #fff;
  box-shadow: 0 16px 30px rgba(22, 93, 150, 0.24);
}

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

.nav-cta.instagram {
  background: linear-gradient(135deg, #f77737 0%, #e1306c 45%, #833ab4 90%);
}

.nav-cta svg,
.icon-link svg,
.contact-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

main {
  width: var(--content-width);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-panel,
.hero-side,
.section-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel {
  padding: 40px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.78) 0%, rgba(5, 15, 28, 0.7) 36%, rgba(5, 15, 28, 0.42) 72%, rgba(5, 15, 28, 0.24) 100%),
    radial-gradient(circle at top right, rgba(244, 123, 32, 0.18), transparent 24%),
    url("hero-building.png") center/cover no-repeat;
  color: #f5f8fb;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -110px -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--gradient-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f8fb;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-head h1,
.section-head h2 {
  margin: 18px 0 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
  text-shadow: 0 10px 26px rgba(4, 12, 22, 0.28);
}

.gradient-text {
  color: var(--orange);
}

.lead {
  max-width: 60ch;
  color: rgba(245, 248, 251, 0.82);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--brand-solid);
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 93, 150, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-notes,
.stats-grid,
.services-grid,
.team-grid,
.contact-grid,
.categories-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.hero-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.note-card,
.metric-card,
.service-card,
.contact-card,
.category-card,
.timeline-card,
.principle-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 36, 54, 0.08);
}

.hero-panel .note-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-panel .note-card span {
  color: rgba(245, 248, 251, 0.78);
}

.note-card strong,
.metric-card strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Sora", sans-serif;
  margin-bottom: 8px;
}

.hero-side {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(10, 66, 102, 0.12), rgba(244, 123, 32, 0.18));
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(10, 66, 102, 0.08);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.78)),
    url("https://images.pexels.com/photos/6248959/pexels-photo-6248959.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=900&w=1260") center/cover no-repeat;
  opacity: 0.38;
  mix-blend-mode: normal;
  pointer-events: none;
}

.visual-card img {
  width: 240px;
  filter: drop-shadow(0 18px 30px rgba(10, 31, 53, 0.18));
}

.visual-brand,
.visual-stack {
  position: relative;
  z-index: 1;
}

.visual-brand {
  display: grid;
  gap: 18px;
}

.visual-brand-copy {
  display: grid;
  gap: 6px;
}

.visual-brand-name {
  font-family: "Sora", sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #102436;
}

.visual-brand-tag {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #31485a;
}

.visual-stack {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.visual-chip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 36, 54, 0.08);
}

.visual-chip span:first-child {
  font-size: 1.04rem;
  font-weight: 700;
  color: #203648;
}

.visual-chip span:last-child { color: var(--muted); }

.visual-chip-contact {
  align-items: flex-start;
}

.visual-contact-list {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.visual-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.visual-contact-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--orange));
  flex: none;
  box-shadow: 0 0 0 4px rgba(13, 95, 144, 0.08);
}

.visual-contact-email {
  color: var(--orange-2);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.visual-contact-email::before {
  display: none;
}

.section { margin-top: 26px; }
.section-card { padding: 34px; }

.section-head {
  max-width: 68ch;
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.8;
}

.section-head-focus p {
  max-width: none;
  margin: 0;
  text-align: justify;
}

.section-head.section-head-focus {
  max-width: none;
}

.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-card span { color: var(--muted); }

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.text-flow p,
.text-flow li {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.text-flow ul {
  margin: 0;
  padding-left: 20px;
}

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

.service-card h3,
.category-card h3,
.contact-card h3,
.timeline-card h3,
.principle-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-family: "Sora", sans-serif;
}

.service-card p,
.service-card li,
.contact-card p,
.category-card p,
.timeline-card p,
.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.category-card {
  padding: 0;
  overflow: hidden;
}

.category-thumb {
  display: block;
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-bottom: 1px solid rgba(16, 36, 54, 0.08);
}

.category-card-body {
  padding: 22px;
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 36, 54, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue);
}

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

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
}

.cta-band {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--brand-solid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 36px;
}

.footer-card {
  padding: 26px 28px;
  border-radius: var(--radius);
  background: #0e2435;
  color: #eaf1f5;
  box-shadow: var(--shadow);
}

.footer-grid {
  grid-template-columns: 1.45fr 1fr 1fr;
  align-items: center;
}

.footer-card .brand-tag,
.footer-card p,
.footer-card a {
  color: rgba(234, 241, 245, 0.74);
}

.footer-card .brand img {
  width: 96px;
  height: 96px;
}

.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 248, 0.92));
  box-shadow: 0 18px 34px rgba(4, 18, 31, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-card .brand-name {
  font-size: 1.34rem;
  letter-spacing: 0.18em;
}

.footer-card .brand-tag {
  font-size: 0.92rem;
}

.footer-title {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-primary {
  display: grid;
  gap: 10px;
  align-content: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-link.light {
  color: var(--blue);
  background: rgba(16, 36, 54, 0.06);
  border-color: rgba(16, 36, 54, 0.08);
}

.page-banner { padding: 26px 0 16px; }

.page-banner .section-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.66));
}

.mini-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.page-banner .section-head {
  max-width: none;
}

.page-banner .section-head h1 {
  color: var(--brand-accent-blue);
}

.page-banner .section-head p {
  max-width: none;
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .stats-grid,
  .team-grid,
  .contact-grid,
  .footer-grid,
  .categories-grid,
  .services-grid,
  .hero-notes {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .nav-cta { display: none; }
  .hero-panel,
  .section-card { padding: 28px; }

}

@media (max-width: 640px) {
  :root { --content-width: min(100% - 20px, 1540px); }
  .brand-name { font-size: 0.95rem; letter-spacing: 0.16em; }
  .brand-tag { font-size: 0.68rem; letter-spacing: 0.12em; }
  .hero h1 { font-size: 2.5rem; }
  .button,
  .nav-cta { width: 100%; }
  .hero-actions,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

}
