@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #18212f;
  --muted: #5b6574;
  --line: #d9e1ea;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --brand: #0f6b5f;
  --brand-dark: #084c45;
  --accent: #c77d2d;
  --navy: #172a45;
  --mint: #dff4ed;
  --gold-soft: #fff3df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: var(--navy);
  font-size: 14px;
}

.topbar a {
  color: #ffffff;
  font-weight: 700;
}

.topbar-contact,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 28px);
}

.brand {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 27, 45, 0.9), rgba(11, 27, 45, 0.58), rgba(11, 27, 45, 0.18)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1800&q=80") center / cover;
  transform: scale(1.02);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  animation: floatShape 7s ease-in-out infinite;
}

.hero-shape-one {
  right: 11%;
  top: 18%;
  width: 116px;
  height: 116px;
}

.hero-shape-two {
  right: 25%;
  bottom: 17%;
  width: 64px;
  height: 64px;
  animation-delay: 1.5s;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 80px 0 120px;
  animation: fadeUp 700ms ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(15, 107, 95, 0.28);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 7vw, 92px);
  bottom: 58px;
  width: min(340px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(12, 34, 55, 0.68);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: fadeUp 800ms 180ms ease both;
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffe2b7;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
}

.hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: 30px clamp(18px, 5vw, 56px);
  background: #ffffff;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--brand-dark);
  font-size: 20px;
}

.stats-band span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.split-section,
.notice-section,
.policy-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(18px, 4vw, 28px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.visual-section {
  position: relative;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.info-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(24, 33, 47, 0.06);
}

.service-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: rgba(15, 107, 95, 0.34);
  box-shadow: 0 22px 46px rgba(24, 33, 47, 0.12);
  transform: translateY(-5px);
}

.image-card {
  overflow: hidden;
  padding: 0;
}

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

.image-card h3,
.image-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.image-card h3 {
  margin-top: 24px;
}

.image-card p {
  padding-bottom: 26px;
}

.process-section {
  max-width: none;
  padding: 78px max(clamp(18px, 4vw, 28px), calc((100vw - 1180px) / 2 + 28px));
  background: linear-gradient(135deg, #f5faf8 0%, #fff8ec 100%);
}

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

.process-grid article {
  position: relative;
  min-height: 245px;
  padding: 30px;
  border: 1px solid rgba(15, 107, 95, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(24, 33, 47, 0.07);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-weight: 800;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px clamp(18px, 4vw, 28px);
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 76px clamp(18px, 4vw, 28px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(24, 33, 47, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--brand);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.local-image {
  min-height: 430px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 107, 95, 0.12), rgba(23, 42, 69, 0.24)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: 0 24px 54px rgba(24, 33, 47, 0.16);
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 12px;
}

.brand-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(15, 107, 95, 0.22);
  border-radius: 6px;
  color: var(--brand-dark);
  background: var(--mint);
  font-weight: 700;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
}

.service-card h2 {
  font-size: 27px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.split-section:nth-of-type(even),
.notice-section {
  background: var(--soft);
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 28px), calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(clamp(18px, 4vw, 28px), calc((100vw - 1180px) / 2 + 28px));
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
}

.page-hero {
  min-height: 360px;
  padding: 96px clamp(18px, 8vw, 92px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 28, 48, 0.88), rgba(15, 28, 48, 0.36)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.services-hero {
  background-image: linear-gradient(90deg, rgba(15, 28, 48, 0.88), rgba(15, 28, 48, 0.36)), url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
}

.consultation-hero {
  background-image: linear-gradient(90deg, rgba(15, 28, 48, 0.88), rgba(15, 28, 48, 0.36)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80");
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(15, 28, 48, 0.88), rgba(15, 28, 48, 0.36)), url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80");
}

.contact-hero {
  background-image: linear-gradient(90deg, rgba(15, 28, 48, 0.88), rgba(15, 28, 48, 0.36)), url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=80");
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-section {
  max-width: 900px;
}

.policy-page {
  max-width: 900px;
}

.policy-page h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
}

.policy-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 54px clamp(18px, 6vw, 72px) 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.2), rgba(199, 125, 45, 0.1)),
    var(--navy);
}

.site-footer h2 {
  font-size: 24px;
}

.site-footer p {
  max-width: 720px;
}

.site-footer a {
  color: #ffffff;
}

.footer-brand {
  max-width: 720px;
}

.footer-contact {
  margin: 18px 0;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 820px) {
  .topbar,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    gap: 4px;
  }

  .topbar-contact {
    flex-direction: column;
    gap: 3px;
  }

  .nav-button {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 800;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(24, 33, 47, 0.12);
  }

  .nav-links.always {
    display: flex;
    position: static;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle:checked ~ .nav-links {
    display: grid;
  }

  .hero {
    min-height: 560px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    width: auto;
    margin-left: 18px;
    margin-right: 18px;
    padding: 64px 0 92px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -72px 18px 32px;
  }

  .grid.three,
  .grid.two,
  .split-section,
  .process-grid,
  .local-section,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .local-image {
    min-height: 300px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 17px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }
}
