:root {
  --bg: #2f3135;
  --bg-2: #202226;
  --panel: rgba(49, 51, 56, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.96);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --muted-dark: #5f6673;
  --accent: #f1b51c;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

.site-bg,
.site-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.site-bg {
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.10), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(241,181,28,.18), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(255,255,255,.05), transparent 24%),
    linear-gradient(135deg, rgba(17,18,22,.94), rgba(34,36,42,.90)),
    url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  opacity: 1;
  filter: saturate(0.9) contrast(1.05);
}

.site-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(24, 25, 28, 0.15), rgba(35, 37, 41, 0.25)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 140px);
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 33, 37, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #222;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.brand-text strong {
  display: block;
  font-size: 13px;
  letter-spacing: .25em;
}

.brand-text span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  letter-spacing: .18em;
  transition: .2s;
}

.nav a:hover,
.nav a.active { color: var(--accent); }

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  padding: 10px 14px;
  cursor: pointer;
}

main section.page { display: none; }
main section.page.active { display: block; }

.hero-top { padding: 72px 0 28px; }

.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

.accent-text { color: var(--accent); }

.hero-title,
.page-title,
.section-title {
  font-weight: 300;
  line-height: 1.02;
  margin: 0;
}

.hero-title,
.page-title { font-size: clamp(44px, 8vw, 68px); }

.section-title { font-size: clamp(34px, 5vw, 52px); }

.lead,
.intro-copy p,
.copy,
.list,
.table-value { color: rgba(255,255,255,.88);  color:#1f2530; 
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.lead { max-width: 640px; }

.intro-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.intro-highlight {
  color: var(--accent);
  font-size: 32px;
  line-height: 1.2;
  margin: 10px 0 0;
  max-width: 420px;
  font-weight: 300;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0 10px;
}

.angled-card {
  min-height: 270px;
  padding: 34px 28px;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.angled-card.accent {
  background: var(--accent);
  color: #222;
  border: none;
}

.angled-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 600;
}

.angled-card p { margin: 0; }
.angled-card.accent p,
.angled-card.accent li { color: #2a2a2a; }

.angled-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.summary-section,
.process-section,
.page-wrap {
  padding: 36px 0 72px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
  margin-top: 36px;
}

.info-list { display: grid; gap: 28px; }

.info-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.info-row h4 {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
}

.info-row.highlight h4 { color: var(--accent); }

.info-year {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: .18em;
  white-space: nowrap;
  padding-top: 8px;
}

.info-side-panel {
  display: grid;
  gap: 16px;
}

.side-stat {
  background: linear-gradient(135deg, rgba(43,46,53,.92), rgba(31,33,38,.88));
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.side-stat span {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.side-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.process-head .section-title { margin-bottom: 14px; }

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 36px auto 0;
  max-width: 920px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: rgba(241,181,28,.5);
}

.timeline-item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  margin: 0 auto 14px;
  background: var(--accent);
  border: 1px solid white;
}

.timeline-item.first .timeline-dot {
  background: white;
  border-color: var(--accent);
}

.timeline-item span {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
}

.process-card {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: linear-gradient(135deg, rgba(43,46,53,.92), rgba(31,33,38,.88));
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  border-radius: 6px;
}

.process-image {
  min-height: 350px;
  background: #d9dde3;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-content {
  padding: 34px 38px;
  color: #fff;
}

.process-content h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 300;
}

.process-content p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.9;
}

.page-hero { padding: 58px 0 28px; }

.about-grid,
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.panel-dark {
  background: linear-gradient(135deg, rgba(43,46,53,.92), rgba(31,33,38,.88));
  padding: 34px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.panel-white {
  background: linear-gradient(135deg, rgba(248,249,251,.98), rgba(236,239,244,.96));
  color: #1f2530;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  padding: 34px;
  border-radius: 6px;
}

.inner-title {
  font-size: 44px;
  margin-top: 16px;
}

.small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-card {
  background: linear-gradient(135deg, rgba(43,46,53,.92), rgba(31,33,38,.88));
  padding: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.small-card p,
.panel-white p,
.panel-dark p { margin: 14px 0 0; }

.table-box {
  background: linear-gradient(135deg, rgba(43,46,53,.94), rgba(31,33,38,.90));
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border-radius: 6px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 18px 28px;
}

.table-head {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.58);
  letter-spacing: .16em;
}

.table-row {
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

.table-row:last-child { border-bottom: 0; }

.table-label {
  color: rgba(255,255,255,.62);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.form-grid { display: grid; gap: 18px; margin-top: 26px; }

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #56606d;
}

input, textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  background: white;
}

input:focus, textarea:focus { border-color: var(--accent); }

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

.error-text {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 12px;
  color: #d03030;
}

.btn {
  display: inline-block;
  border: 0;
  background: #222;
  color: white;
  padding: 14px 24px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  transition: .2s;
}

.btn:hover { background: var(--accent); color: #222; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(241,181,28,.22); }

.form-title {
  font-size: 42px;
  margin-top: 10px;
  color: #1f2530;
}

.form-eyebrow {
  color: #c48c00;
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  background: #ebfff0;
  color: #16753a;
  border: 1px solid #b8e5c6;
  font-size: 14px;
  font-weight: 600;
}

.success-message.show { display: block; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(32,34,38,.9);
  padding: 36px 0;
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.footer-title {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .2em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-copy,
.footer-copy p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.9;
}

.footer-copy strong { color: #fff; }

@media (max-width: 980px) {
  .hero-grid,
  .cards-row,
  .info-grid,
  .process-card,
  .about-grid,
  .contact-grid,
  .services-grid,
  .footer-grid,
  .intro-side,
  .small-grid,
  .table-head,
  .table-row {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .info-row { grid-template-columns: 1fr; }
  .process-image { min-height: 260px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .hero-top { padding-top: 42px; }
  .page-hero { padding-top: 38px; }
  .angled-card,
  .panel-dark,
  .panel-white,
  .small-card { padding: 24px; }
  .process-content { padding: 24px; }
  .table-head,
  .table-row { padding: 16px 18px; }
}


.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.angled-card,
.small-card,
.side-stat,
.panel-dark,
.panel-white,
.table-box,
.process-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.angled-card:hover,
.small-card:hover,
.side-stat:hover,
.panel-dark:hover,
.panel-white:hover,
.table-box:hover,
.process-card:hover {
  transform: translateY(-2px);
}

.process-image img {
  transition: transform .5s ease;
}
.process-card:hover .process-image img {
  transform: scale(1.03);
}

.site-header {
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.process-content h3,
.hero-title,
.page-title,
.section-title {
  letter-spacing: -.02em;
}


.map-box {
  margin-top: 30px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.map-box iframe {
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}


.map-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.map-actions a {
  display: inline-block;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  transition: .2s ease;
}

.map-actions a:hover {
  background: rgba(241,181,28,0.18);
  border-color: rgba(241,181,28,0.35);
  color: #f1b51c;
}


.header-map-strip {
  padding: 18px 0 8px;
}

.map-compact-card {
  background: linear-gradient(135deg, rgba(43,46,53,.92), rgba(31,33,38,.88));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.map-compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.map-compact-title {
  margin: 4px 0 0;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.1;
}

.map-box.compact {
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.map-box.compact iframe {
  display: block;
  filter: grayscale(0.08) contrast(1.04);
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  transition: .2s ease;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: .04em;
}

.map-open-link:hover {
  background: rgba(241,181,28,0.18);
  border-color: rgba(241,181,28,0.35);
  color: #f1b51c;
}

@media (max-width: 640px) {
  .map-compact-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-open-link {
    width: 100%;
  }
}


.footer-map {
  margin-top: 30px;
}

.footer-map .map-box {
  height: 200px;
}

.footer-map-action {
  justify-content: flex-start;
  margin-top: 10px;
}


.footer-map.inline-map {
  margin-top: 14px;
}

.map-box.mini {
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.map-box.mini iframe {
  display: block;
  filter: grayscale(0.08) contrast(1.04);
}

.map-open-link.small {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  transition: .2s ease;
}

.map-open-link.small:hover {
  color: #f1b51c;
  border-color: rgba(241,181,28,0.35);
  background: rgba(241,181,28,0.14);
}

.table-value{word-break:break-word;}

.brand-mark{
  letter-spacing:.03em;
}
.brand-text strong{
  font-size:12px;
}
.brand-text span{
  font-size:10px;
}


.footer-copy a,
.copy a,
.table-value a {
  color: #f1b51c;
  text-decoration: none;
}

.footer-copy a:hover,
.copy a:hover,
.table-value a:hover {
  text-decoration: underline;
}
