:root {
  --bg: #0b0d10;
  --bg-soft: #11151a;
  --surface: rgba(17, 21, 26, 0.78);
  --surface-strong: #14191f;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f7fa;
  --text-soft: rgba(244, 247, 250, 0.74);
  --text-muted: rgba(244, 247, 250, 0.56);
  --accent: #ff9a3d;
  --accent-soft: rgba(255, 154, 61, 0.16);
  --success: #83d9b8;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 82px;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #090b0e 0%, #0b0d10 32%, #101419 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  flex: none;
}

::selection {
  color: #0b0d10;
  background: var(--accent);
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.breadcrumb,
.detail-label,
.meta-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.section-head h1,
.split-copy h2,
.page-hero h1,
.cta-band h2,
.legal-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
}

.section-head p,
.split-copy p,
.page-summary p,
.legal-content p,
.legal-content li,
.contact-note,
.faq-item p,
.service-card p,
.area-card p,
.metric-card p,
.detail-list p {
  margin: 0;
  color: var(--text-soft);
}

.prose > * + * {
  margin-top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 12, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 750;
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.95rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 0.35rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-toggle [data-icon-close] {
  display: none;
}

.nav-toggle[aria-expanded="true"] [data-icon-menu] {
  display: none;
}

.nav-toggle[aria-expanded="true"] [data-icon-close] {
  display: block;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.button-ghost svg,
.inline-link svg {
  width: 1rem;
  height: 1rem;
}

.button {
  background: var(--accent);
  color: #0b0d10;
  box-shadow: 0 18px 36px rgba(255, 154, 61, 0.18);
}

.button:hover,
.button:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  transform: translateY(-1px);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 5rem;
  overflow: clip;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img,
.page-hero-media picture,
.page-hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img,
.page-hero-media img {
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 10, 14, 0.92) 14%, rgba(8, 10, 14, 0.72) 43%, rgba(8, 10, 14, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.18) 0%, rgba(8, 10, 14, 0.82) 100%);
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 2.2rem;
}

.hero-grid {
  min-height: calc(100svh - var(--header-height) - 4rem);
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
}

.hero-content {
  display: grid;
  gap: 1.35rem;
  max-width: 720px;
}

.hero-content h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
}

.hero-lead {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 650;
}

.hero-copy {
  margin: 0;
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-panel,
.contact-panel,
.map-card,
.quote-panel,
.legal-card,
.detail-card,
.service-card,
.metric-card,
.area-card,
.faq-item {
  background: linear-gradient(180deg, rgba(22, 26, 33, 0.86) 0%, rgba(12, 15, 19, 0.94) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel,
.contact-panel,
.map-card,
.legal-card,
.detail-card {
  border-radius: var(--radius-lg);
}

.hero-panel {
  padding: 1.4rem;
  display: grid;
  gap: 1.2rem;
  align-self: end;
}

.panel-head,
.metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-tag,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 154, 61, 0.22);
  background: var(--accent-soft);
  color: #ffd4a9;
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-list,
.detail-list,
.check-list,
.contact-list,
.footer-links,
.legal-list,
.stats-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-item,
.contact-item,
.footer-link-group a,
.legal-list li {
  display: flex;
  gap: 0.85rem;
}

.panel-item svg,
.contact-item svg,
.detail-list svg,
.service-icon svg,
.area-icon svg,
.meta-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.panel-item strong,
.detail-list strong,
.contact-card strong,
.service-card h3,
.area-card h3,
.faq-item summary,
.metric-card strong,
.value-card h3 {
  display: block;
  margin-bottom: 0.22rem;
}

.panel-item p,
.meta-value,
.contact-item p,
.footer-link-group span,
.footer-legal,
.form-note {
  margin: 0;
  color: var(--text-muted);
}

.intro-strip {
  position: relative;
  margin-top: -2rem;
  z-index: 2;
}

.intro-grid,
.metric-grid,
.card-grid,
.area-grid,
.footer-grid,
.contact-grid,
.detail-grid,
.value-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

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

.metric-card,
.service-card,
.area-card,
.faq-item,
.value-card {
  border-radius: var(--radius);
}

.metric-card {
  padding: 1.3rem;
}

.metric-card strong {
  font-size: 1.05rem;
  font-weight: 750;
}

.metric-card p {
  margin-top: 0.45rem;
}

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

.service-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.service-icon,
.area-icon,
.meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.service-card h3,
.area-card h3,
.value-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 760;
}

.service-card p,
.area-card p,
.value-card p {
  color: var(--text-soft);
}

.split-section,
.about-preview,
.contact-layout,
.two-column,
.legal-layout {
  display: grid;
  gap: 2rem;
}

.split-section,
.about-preview,
.two-column,
.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.split-copy,
.page-summary,
.contact-copy,
.legal-content,
.detail-copy {
  display: grid;
  gap: 1.1rem;
}

.split-media,
.about-media,
.page-visual {
  position: relative;
  overflow: clip;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #0e1116;
  box-shadow: var(--shadow);
}

.split-media img,
.about-media img,
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media {
  aspect-ratio: 1.05 / 1;
}

.about-media {
  aspect-ratio: 1 / 1.08;
}

.page-visual {
  aspect-ratio: 1.2 / 1;
  min-height: 280px;
}

.detail-list li,
.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.detail-list p,
.check-list p {
  margin: 0;
  color: var(--text-muted);
}

.process-list {
  display: grid;
  gap: 1rem;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.process-item:first-child {
  border-top: none;
  padding-top: 0;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 154, 61, 0.24);
  background: rgba(255, 154, 61, 0.08);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 750;
}

.process-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.process-item p {
  margin: 0;
  color: var(--text-soft);
}

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

.area-card,
.value-card {
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.seo-copy {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.seo-copy h2,
.seo-copy h3 {
  margin: 0;
}

.seo-copy p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  overflow: clip;
}

.page-hero-grid {
  min-height: clamp(380px, 60svh, 620px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.page-summary {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(10, 12, 16, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

.meta-list {
  display: grid;
  gap: 0.8rem;
}

.meta-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.meta-value {
  font-size: 0.96rem;
}

.contact-panel {
  padding: 1.45rem;
}

.contact-panel h2,
.map-card h2,
.legal-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: rgba(255, 154, 61, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 154, 61, 0.12);
}

.checkbox {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.checkbox label,
.legal-content small,
.contact-form small,
.map-placeholder p,
.footer-note {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.form-status {
  color: var(--success);
  font-size: 0.93rem;
  min-height: 1.25rem;
}

.map-card {
  padding: 1.45rem;
  overflow: clip;
}

.map-placeholder {
  display: grid;
  gap: 1rem;
  min-height: 360px;
  padding: 1.5rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(135deg, rgba(255, 154, 61, 0.08) 0%, transparent 56%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-content: end;
}

.map-frame iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 20px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.3rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-top: 0.85rem;
}

.cta-band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 154, 61, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 154, 61, 0.1) 0%, rgba(255, 154, 61, 0.03) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 72%);
}

.cta-band p {
  margin: 0.9rem 0 0;
  max-width: 56ch;
  color: var(--text-soft);
}

.cta-band .hero-actions {
  margin-top: 1.35rem;
}

.legal-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}

.legal-card {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.45rem;
}

.legal-card p,
.legal-card a,
.legal-content a {
  color: var(--text-soft);
}

.legal-card a:hover,
.legal-card a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--text);
}

.legal-content h2 {
  margin: 2rem 0 0.8rem;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.08rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.footer {
  padding: 4rem 0 2.2rem;
  border-top: 1px solid var(--line);
  background: rgba(6, 8, 11, 0.72);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 360px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
}

.footer-link-group {
  display: grid;
  gap: 0.8rem;
}

.footer-link-group strong {
  font-size: 0.96rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-section,
  .about-preview,
  .contact-layout,
  .two-column,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .card-grid,
  .area-grid,
  .value-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel,
  .page-summary,
  .legal-card {
    position: static;
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(1180px, calc(100vw - 1.25rem));
    --header-height: 74px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0.65rem 1.1rem;
    background: rgba(7, 9, 12, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a,
  .nav-cta {
    justify-content: flex-start;
    min-height: 48px;
    border-radius: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-bottom: 3.4rem;
  }

  .intro-strip {
    margin-top: -1rem;
  }

  .intro-grid,
  .card-grid,
  .metric-grid,
  .area-grid,
  .value-grid,
  .contact-grid,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .cta-band,
  .seo-copy,
  .hero-panel,
  .contact-panel,
  .map-card,
  .legal-card {
    padding: 1.3rem;
  }
}

@media (max-width: 560px) {
  .brand-text span {
    display: none;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

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

  .button,
  .button-ghost {
    width: 100%;
  }

  .map-placeholder {
    min-height: 300px;
  }
}
