
:root {
  --ink: #102d3f;
  --ink-2: #19384b;
  --ink-3: #28495b;
  --copper: #c8643e;
  --copper-2: #e39a6d;
  --sand: #e8e1d6;
  --stone: #f5f1eb;
  --paper: #ffffff;
  --muted: #66727c;
  --line: rgba(16, 45, 63, .12);
  --shadow: 0 24px 70px rgba(16, 45, 63, .18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--copper); }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -10rem; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: 999px; z-index: 1000; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(245, 241, 235, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: .8rem; min-width: max-content; }
.brand-logo { width: 66px; height: 66px; object-fit: contain; border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(16,45,63,.08); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; letter-spacing: .02em; }
.brand-text strong { font-size: 1.4rem; }
.brand-text small { color: var(--ink-3); font-size: .74rem; text-transform: uppercase; }
.menu-toggle { width: 48px; height: 48px; border: 0; border-radius: 14px; background: var(--ink); display: inline-grid; place-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 999px; background: #fff; display: block; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { position: fixed; inset: 88px 1rem auto 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .22s ease; max-height: calc(100dvh - 110px); overflow: auto; }
.primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.primary-nav ul { margin: 0; padding: .75rem; list-style: none; }
.primary-nav a, .nav-link { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .35rem; padding: .85rem 1rem; border-radius: 14px; border: 0; background: transparent; font: inherit; font-weight: 700; color: var(--ink); cursor: pointer; }
.primary-nav a.is-active, .nav-link.is-active { color: var(--copper); background: rgba(200,100,62,.12); }
.nav-cta { background: var(--ink) !important; color: #fff !important; }
.nav-cta:hover { color: #fff; background: var(--copper) !important; }
.submenu { display: none; padding: .25rem .25rem .5rem 1rem !important; }
.nav-group.is-open .submenu { display: grid; gap: .2rem; }
.submenu a { font-size: .94rem; font-weight: 650; color: var(--ink-3); padding: .7rem .9rem; }
.hero { position: relative; min-height: calc(100dvh - 88px); display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--ink); }
.hero .hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,45,63,.92) 0%, rgba(16,45,63,.74) 40%, rgba(16,45,63,.20) 100%), linear-gradient(0deg, rgba(16,45,63,.55), rgba(16,45,63,.20)); }
.hero-content { position: relative; z-index: 1; width: min(100% - 2rem, 1180px); margin-inline: auto; padding: 5rem 0; }
.eyebrow { display: inline-flex; gap: .65rem; align-items: center; color: var(--copper-2); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; }
.eyebrow::before { content: ""; width: 38px; height: 2px; background: currentColor; display: inline-block; }
.hero h1, .page-hero h1 { margin: 1rem 0; font-weight: 900; line-height: .98; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(2.4rem, 4.15vw, 3.7rem); max-width: 880px; text-wrap: balance; }
.hero p { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.35rem); margin: 0 0 2rem; color: rgba(255,255,255,.88); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.2rem; border-radius: 999px; font-weight: 800; letter-spacing: .02em; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--copper); color: #fff; }
.btn.primary:hover { background: var(--ink); color: #fff; }
.btn.ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.btn.ghost:hover { background: #fff; color: var(--ink); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.alt { background: #fff; }
.section.dark { background: var(--ink); color: #fff; }
.section-head { display: grid; gap: 1rem; margin-bottom: 2rem; }
.section-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; letter-spacing: -.04em; }
.section-head p { margin: 0; max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.dark .section-head p, .dark p { color: rgba(255,255,255,.78); }
.split { display: grid; gap: 2rem; align-items: center; }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); background: var(--ink); }
.media-frame img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: auto 1rem 1rem auto; width: 120px; height: 120px; border-radius: 24px; background: rgba(200,100,62,.88); mix-blend-mode: multiply; }
.lead { font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.35; color: var(--ink-2); font-weight: 750; }
.kicker { color: var(--copper); font-weight: 900; text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; }
.logo-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 2rem; }
.logo-chip { min-height: 84px; border: 1px solid var(--line); border-radius: 18px; display: grid; place-items: center; background: #fff; color: var(--ink-3); font-weight: 800; text-align: center; padding: 1rem; }
.feature-grid { display: grid; gap: 1.2rem; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 14px 50px rgba(16,45,63,.08); }
.feature-media { position: relative; display: block; min-height: 250px; overflow: hidden; background: var(--ink); }
.feature-media img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform .35s ease; }
.feature-card:hover .feature-media img { transform: scale(1.04); }
.number { position: absolute; left: 1rem; top: 1rem; width: 52px; height: 52px; border-radius: 50%; background: var(--copper); color: #fff; display: grid; place-items: center; font-weight: 900; box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.feature-content { padding: 1.35rem; }
.feature-content h3 { margin: 0 0 .6rem; font-size: 1.35rem; line-height: 1.15; }
.feature-content p { margin: 0; color: var(--muted); }
.service-list { display: grid; gap: .8rem; counter-reset: services; }
.service-row { counter-increment: services; display: grid; gap: .85rem; padding: 1.25rem; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.service-row h3 { margin: 0; font-size: 1.25rem; color: #fff; }
.service-row h3::before { content: counter(services, decimal-leading-zero); color: var(--copper-2); margin-right: .75rem; font-weight: 900; }
.service-row p { margin: 0; }
.projects-grid { display: grid; gap: 1.2rem; }
.project-card { display: grid; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.project-card img { min-height: 300px; height: 100%; object-fit: cover; width: 100%; }
.project-card .copy { padding: 1.5rem; }
.project-card .copy span { color: var(--copper); font-weight: 900; }
.project-card h3 { margin: .35rem 0 .7rem; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.08; }
.project-card p { color: var(--muted); }
.page-hero { background: linear-gradient(135deg, var(--ink), #21475e); color: #fff; padding: clamp(5rem, 11vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(200,100,62,.22); right: -180px; top: -190px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); max-width: 920px; }
.page-hero p { max-width: 780px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.values-grid { display: grid; gap: 1rem; }
.value-card { padding: 1.35rem; background: #fff; border-radius: 22px; border: 1px solid var(--line); }
.value-card .count { color: var(--copper); font-weight: 900; }
.value-card h3 { margin: .35rem 0 .5rem; }
.value-card p { margin: 0; color: var(--muted); }
.detail-hero { display: grid; gap: 2rem; align-items: center; }
.detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.detail-image img { width: 100%; min-height: 320px; height: 100%; object-fit: cover; }
.contact-grid { display: grid; gap: 2rem; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 800; color: var(--ink-2); }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem; font: inherit; background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(200,100,62,.18); border-color: var(--copper); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { margin: 1rem 0 0; color: var(--ink-3); font-weight: 700; }
.site-footer { background: #0d2535; color: #fff; padding: 3rem 0 1rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { display: flex; gap: .9rem; align-items: center; margin-bottom: 1rem; }
.footer-logo { width: 62px; height: 62px; object-fit: contain; border-radius: 12px; background: #fff; }
.footer-brand span { display: grid; line-height: 1.1; }
.footer-brand small { color: rgba(255,255,255,.72); }
.site-footer h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .15em; color: var(--copper-2); }
.site-footer p { color: rgba(255,255,255,.72); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: var(--copper-2); }
.footer-links.compact { font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-bottom a { color: var(--copper-2); font-weight: 800; }
@media (min-width: 640px) {
  .logo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field.full, .form-grid .actions { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .primary-nav { position: static; inset: auto; display: block; opacity: 1; visibility: visible; transform: none; max-height: none; overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .primary-nav > ul { display: flex; align-items: center; gap: .35rem; padding: 0; }
  .primary-nav a, .nav-link { padding: .75rem .95rem; width: auto; }
  .nav-group { position: relative; }
  .submenu { position: absolute; top: calc(100% + .65rem); right: 0; width: min(360px, 92vw); display: grid !important; gap: .2rem; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: .6rem !important; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
  .nav-group:hover .submenu, .nav-group:focus-within .submenu, .nav-group.is-open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .split, .detail-hero, .contact-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: .8fr 1fr; align-items: end; }
  .section-head h2 { max-width: 560px; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-card { grid-template-columns: .95fr 1.05fr; }
  .footer-grid { grid-template-columns: 1.5fr .7fr 1fr; }
}
@media (min-width: 1100px) {
  .feature-grid.sectors { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-row { grid-template-columns: .95fr 1.25fr auto; align-items: center; }
}
@media (max-width: 520px) {
  .site-header { min-height: 78px; }
  .brand-logo { width: 54px; height: 54px; }
  .brand-text strong { font-size: 1.1rem; }
  .brand-text small { font-size: .63rem; }
  .primary-nav { inset-top: 78px; }
  .hero { min-height: calc(100dvh - 78px); }
  .hero h1 { font-size: clamp(2rem, 8.8vw, 2.85rem); }
  .page-hero h1 { font-size: clamp(2.05rem, 10vw, 3.4rem); }
}
