:root {
  --bg: #111412;
  --bg-soft: #181c19;
  --card: #202720;
  --card-strong: #273027;
  --text: #f1f4ef;
  --muted: #bdc8bd;
  --line: #435246;
  --accent: #9fca72;
  --accent-strong: #d9ef9f;
  --accent-warm: #e4b85f;
  --danger: #f09a77;
  --radius: 8px;
  --shadow: 0 20px 44px rgba(3, 8, 6, 0.42);
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(119, 151, 99, 0.2), transparent 58%),
    radial-gradient(850px 480px at 6% 14%, rgba(228, 184, 95, 0.13), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--radius);
  background: var(--accent);
  color: #10140e;
  padding: 0.7rem 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signal-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(transparent 96%, rgba(159, 202, 114, 0.16) 100%),
    linear-gradient(90deg, transparent 96%, rgba(228, 184, 95, 0.12) 100%);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 12% 10%, black 12%, transparent 54%);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(13, 16, 14, 0.78);
  border-bottom: 1px solid rgba(159, 202, 114, 0.18);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.7rem;
  padding: 0.85rem 4vw;
}

.site-header nav {
  justify-self: end;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.16rem;
  padding: 0.18rem;
  border: 1px solid rgba(217, 239, 159, 0.32);
  border-radius: 999px;
  background: rgba(17, 20, 18, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.language-option {
  min-width: 2.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--text);
}

.language-option.is-active {
  background: var(--accent);
  color: #10140e;
}

:focus-visible {
  outline: 3px solid var(--accent-warm);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section-stack {
  padding-top: 5rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2,
.contact-block h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.15;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  max-width: 23ch;
}

.section-head p:last-child {
  max-width: 70ch;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero {
  margin: 2rem auto 0;
  width: min(1240px, 94vw);
  min-height: 82vh;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(217, 239, 159, 0.22);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 14, 12, 0.88) 12%, rgba(10, 14, 12, 0.48) 58%, rgba(10, 14, 12, 0.62) 100%),
    radial-gradient(circle at 78% 12%, rgba(159, 202, 114, 0.18), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: clamp(2rem, 5vw, 4rem);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.05;
  max-width: 12ch;
}

.hero-subline {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #dce5d9;
  max-width: 64ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #10140e;
}

.btn-secondary {
  border-color: rgba(217, 239, 159, 0.58);
  color: var(--text);
  background: rgba(17, 20, 18, 0.42);
}

.btn-tertiary {
  color: var(--accent-strong);
  padding-left: 0;
  padding-right: 0;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.credibility {
  padding-top: 2.5rem;
  font-size: clamp(1.02rem, 1.45vw, 1.26rem);
  color: #dce5d9;
  max-width: 78ch;
}

.answer-strip {
  margin-top: 2.5rem;
  padding: 1.15rem;
  border: 1px solid rgba(217, 239, 159, 0.24);
  border-left: 4px solid var(--accent-warm);
  border-radius: var(--radius);
  background: rgba(32, 39, 32, 0.72);
}

.answer-strip p {
  margin: 0;
  color: #dce5d9;
}

.service-grid,
.project-grid,
.route-grid,
.format-grid,
.proof-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card,
.route-card,
.format-card,
.proof-card,
.insight-card,
.faq-item,
.service-detail,
.triage-panel,
.result-card {
  background: linear-gradient(180deg, rgba(159, 202, 114, 0.08), rgba(16, 20, 17, 0.82));
  border: 1px solid rgba(159, 202, 114, 0.22);
  border-radius: var(--radius);
}

.service-card,
.route-card,
.format-card,
.proof-card,
.insight-card {
  grid-column: span 6;
  padding: 1.3rem;
}

.service-grid .service-card:last-child:nth-child(odd) {
  grid-column: span 12;
}

.route-card,
.format-card,
.proof-card,
.insight-card {
  background: rgba(24, 28, 25, 0.86);
}

.service-card h3,
.route-card h3,
.format-card h3,
.proof-card h3,
.insight-card h3,
.project-card h2,
.project-card h3,
.service-detail h2,
.service-detail h3,
.faq-item h3,
.result-card h2,
.brief-card h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.2;
}

.service-card h3,
.route-card h3,
.format-card h3,
.proof-card h3,
.insight-card h3 {
  font-size: 1.2rem;
}

.project-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.service-card p,
.route-card p,
.format-card p,
.proof-card p,
.insight-card p,
.project-card p,
.service-detail p,
.faq-item p,
.page-hero p,
.about-section p,
.split-highlight p,
.where-section p,
.contact-block p,
.result-card p,
.brief-card p {
  color: var(--muted);
}

.service-card p,
.route-card p,
.format-card p,
.proof-card p,
.insight-card p,
.project-card p {
  margin: 0.7rem 0 0;
}

.service-card a,
.route-card a {
  display: inline-block;
  margin-top: 0.95rem;
}

.where-section {
  padding-top: 5rem;
}

.region-line {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(217, 239, 159, 0.34);
  border-radius: 999px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.project-card {
  grid-column: span 6;
  background: var(--bg-soft);
  border: 1px solid rgba(159, 202, 114, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.project-wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.project-wide img {
  height: 100%;
  aspect-ratio: auto;
}

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

.project-card-text {
  display: flex;
  align-items: stretch;
}

.project-card-text div {
  padding: 1.3rem;
}

.split-highlight,
.about-section {
  padding-top: 5rem;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.1rem;
  align-items: stretch;
}

.split-highlight img,
.about-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(159, 202, 114, 0.22);
}

.contact-block {
  margin-top: 5rem;
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 239, 159, 0.34);
  background: linear-gradient(160deg, rgba(159, 202, 114, 0.12), rgba(12, 16, 13, 0.95));
}

.contact-block h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
}

.page-main {
  padding-top: 2.4rem;
  padding-bottom: 3rem;
}

.page-hero {
  margin-bottom: 2rem;
  padding: 1.2rem 0 0.4rem;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  max-width: 25ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 74ch;
}

.service-detail {
  padding: 1.45rem;
  margin-top: 1rem;
}

.service-detail h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-section h2,
.legal-section h3 {
  margin-top: 0;
}

.legal-section address {
  color: var(--muted);
  font-style: normal;
}

.legal-placeholder {
  border-left: 4px solid var(--danger);
}

.service-detail ul,
.faq-list,
.check-list,
.result-list {
  padding: 0;
  list-style: none;
}

.service-detail li,
.check-list li,
.result-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 0.45rem 0;
}

.service-detail li::before,
.check-list li::before,
.result-list li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent-warm);
  position: absolute;
  left: 0;
  top: 0.68rem;
}

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

.faq-item {
  padding: 1.15rem;
}

.faq-item h3 {
  font-size: 1.05rem;
}

.triage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.triage-panel,
.result-card {
  padding: 1.35rem;
}

.triage-panel fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.4rem;
}

.triage-panel legend,
.field-label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
}

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

.option-card,
.check-card {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(159, 202, 114, 0.22);
  background: rgba(17, 20, 18, 0.7);
  color: var(--muted);
}

.option-card input,
.check-card input {
  margin-top: 0.3rem;
  accent-color: var(--accent);
}

.option-card span,
.check-card span {
  color: var(--text);
  font-weight: 700;
}

.option-card small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.triage-panel select,
.triage-panel input[type="text"],
.triage-panel input[type="email"],
.triage-panel textarea,
.brief-card textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(159, 202, 114, 0.26);
  background: rgba(11, 14, 12, 0.9);
  color: var(--text);
  padding: 0.85rem;
  font: inherit;
}

.brief-card textarea {
  min-height: 13rem;
  resize: vertical;
}

.brief-card {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(159, 202, 114, 0.22);
}

.result-card {
  position: sticky;
  top: 5.8rem;
}

.result-kicker {
  color: var(--accent-strong);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.result-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.result-block {
  margin-top: 1.1rem;
}

.result-block h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--accent-strong);
}

.result-list {
  margin: 0;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.notice {
  color: var(--accent-warm);
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.5rem 0 1rem;
}

.site-footer {
  border-top: 1px solid rgba(159, 202, 114, 0.18);
  background: rgba(13, 16, 14, 0.78);
  padding: 1.2rem 4vw;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

.hero-image,
.project-card img,
.split-highlight img,
.about-section img {
  width: 100%;
  display: block;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .nav-list {
    justify-content: flex-start;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .service-card,
  .route-card,
  .format-card,
  .proof-card,
  .insight-card,
  .project-card,
  .project-wide {
    grid-column: span 12;
  }

  .project-wide,
  .split-highlight,
  .about-section,
  .triage-layout {
    grid-template-columns: 1fr;
  }

  .project-wide img {
    aspect-ratio: 16 / 7;
  }

  .result-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .faq-list,
  .option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 76vh;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 10vw, 2.3rem);
  }

  .contact-block,
  .triage-panel,
  .result-card {
    padding: 1.2rem;
  }

  .region-line {
    border-radius: var(--radius);
  }
}
