:root {
  --bg: #070a11;
  --bg-soft: #0d1320;
  --bg-elev: #131b2d;
  --text: #e8eefc;
  --text-muted: #a6b4d4;
  --line: #26324f;
  --accent: #39d2b4;
  --accent-2: #f4b562;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% -5%, rgba(57, 210, 180, 0.14), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(244, 181, 98, 0.1), transparent 42%),
    linear-gradient(170deg, #06090f 0%, #0a101a 52%, #090d14 100%);
}

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

a {
  color: #a7f6e6;
}

a:hover,
a:focus-visible {
  color: #c8fff4;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0a1020;
  padding: 0.5rem 0.9rem;
  border-radius: 0 0 0.4rem 0.4rem;
}

.skip-link:focus {
  left: 0.8rem;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 18, 0.86);
  border-bottom: 1px solid rgba(53, 70, 108, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: min(260px, 52vw);
  height: auto;
  object-fit: contain;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  font-size: 0.92rem;
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  opacity: 1;
}

.site-nav .nav-cta {
  padding: 0.54rem 0.84rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  font: inherit;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.hero {
  padding: 4.8rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.22rem 0.65rem;
  background: rgba(57, 210, 180, 0.12);
  border: 1px solid rgba(57, 210, 180, 0.35);
  border-radius: 999px;
  color: #9ef1e1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.22;
  padding-bottom: 0.06em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.22;
}

p {
  margin-top: 0;
}

.lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.meta-line {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.73rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent) 0%, #8df0dd 100%);
  color: #081a16;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(31, 42, 68, 0.25);
}

.text-link {
  color: #9deee0;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: #cbfff5;
  text-decoration: underline;
}

.hero-points {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-muted);
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(76, 95, 138, 0.45);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 4.2rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(24, 33, 53, 0.36), rgba(9, 13, 22, 0.18));
  border-top: 1px solid rgba(62, 81, 122, 0.32);
  border-bottom: 1px solid rgba(62, 81, 122, 0.2);
}

.section-intro {
  margin-bottom: 1.6rem;
  color: var(--text-muted);
  max-width: 72ch;
}

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

.service-card {
  background: linear-gradient(160deg, rgba(18, 26, 41, 0.9), rgba(12, 18, 30, 0.72));
  border: 1px solid rgba(70, 88, 128, 0.52);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.service-card figure {
  margin: 0 0 0.8rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(96, 117, 165, 0.45);
  background: rgba(9, 14, 24, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.service-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
  color: var(--text-muted);
}

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

.timeline article {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(70, 88, 128, 0.52);
  background: rgba(14, 20, 34, 0.72);
}

.format-table-wrap {
  overflow-x: auto;
}

.format-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
  border: 1px solid rgba(72, 91, 132, 0.52);
  border-radius: 12px;
  overflow: hidden;
}

.format-table th,
.format-table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid rgba(57, 71, 104, 0.56);
}

.format-table th {
  background: rgba(26, 37, 61, 0.9);
}

.format-table td {
  color: var(--text-muted);
}

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

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

.location-card {
  background: rgba(14, 20, 34, 0.62);
  border: 1px solid rgba(67, 85, 125, 0.5);
  border-radius: 12px;
  padding: 0.9rem;
}

.blog-card {
  background: rgba(14, 20, 34, 0.62);
  border: 1px solid rgba(67, 85, 125, 0.5);
  border-radius: 12px;
  padding: 1rem;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 0.45rem;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible,
.blog-card h3 a:hover,
.blog-card h3 a:focus-visible {
  color: var(--accent);
}

.location-card h3 {
  margin-bottom: 0.5rem;
}

.location-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.location-card h3 a:hover,
.location-card h3 a:focus-visible {
  color: var(--accent);
}

.location-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.area-footer-link {
  margin-top: 1.2rem;
}

.blog-main .blog-post h1 {
  margin-bottom: 0.4rem;
}

.blog-section {
  margin-top: 1.25rem;
}

.blog-section h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  margin-bottom: 0.45rem;
}

.blog-section p {
  color: var(--text-muted);
}

.blog-related {
  margin: 0.7rem 0 1.2rem;
  padding-left: 1rem;
}

.blog-related li {
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

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

.faq-list details {
  border: 1px solid rgba(67, 85, 125, 0.5);
  border-radius: 12px;
  background: rgba(14, 20, 34, 0.62);
  padding: 0.7rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.cta .cta-inner {
  border: 1px solid rgba(76, 95, 138, 0.6);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(57, 210, 180, 0.16), transparent 55%),
    linear-gradient(205deg, rgba(244, 181, 98, 0.14), transparent 60%),
    rgba(13, 20, 32, 0.85);
  padding: 1.5rem;
}

.contact-lines {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-lines span {
  opacity: 0.5;
  margin: 0 0.35rem;
}

.site-footer {
  padding: 1.4rem 0 1.9rem;
  color: var(--text-muted);
}

.footer-content {
  border-top: 1px solid rgba(62, 81, 122, 0.45);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.86rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: min(220px, 48vw);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid,
  .timeline,
  .locations-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: 82px;
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(65, 83, 120, 0.7);
    background: rgba(10, 15, 25, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .section,
  .hero {
    padding: 3.4rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.3rem, var(--max));
  }

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

  .btn {
    text-align: center;
  }

  .contact-lines span {
    display: none;
  }

  .contact-lines a,
  .contact-lines strong {
    display: inline-block;
    margin-right: 0.4rem;
  }
}
