:root {
  --white: #ffffff;
  --off-white: #f5f8f8;
  --mist: #e7eeee;
  --ink: #172024;
  --charcoal: #263136;
  --muted: #66767c;
  --line: rgba(23, 32, 36, 0.13);
  --blue: #1263a4;
  --blue-dark: #0b416d;
  --green: #2f8f5b;
  --green-dark: #17623b;
  --slate: #56666d;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-line: rgba(255, 255, 255, 0.34);
  --shadow: 0 22px 58px rgba(18, 99, 164, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f7f8 46%, #ffffff 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes watermarkDrift {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

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

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance, 24px), 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--stagger-y, 0), 0);
}

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

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 104px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(23, 32, 36, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 184px;
  transition: width 220ms ease;
}

.brand img {
  width: 184px;
  height: 74px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.25));
  transition: width 220ms ease, height 220ms ease, filter 220ms ease;
}

.site-header.is-scrolled .brand,
.site-header.nav-open .brand {
  width: 150px;
}

.site-header.is-scrolled .brand img,
.site-header.nav-open .brand img {
  width: 150px;
  height: 54px;
  filter: none;
}

.main-nav {
  display: flex;
  justify-self: end;
  gap: 2px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.main-nav a {
  min-width: auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
}

.site-header.is-scrolled .main-nav a,
.site-header.nav-open .main-nav a {
  color: var(--slate);
}

.site-header.is-scrolled .main-nav,
.site-header.nav-open .main-nav {
  background: var(--white);
  border-color: var(--line);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a[aria-current="page"],
.site-header.nav-open .main-nav a:hover,
.site-header.nav-open .main-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--mist);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.header-action,
.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(47, 143, 91, 0.24);
}

.site-header:not(.is-scrolled):not(.nav-open) .header-action {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(47, 143, 91, 0.24);
}

.header-action:hover,
.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn-light {
  color: var(--white);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span {
  background: var(--blue-dark);
}

.hero-photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-photo::before {
  content: attr(data-watermark);
  position: absolute;
  left: clamp(-12px, 2vw, 42px);
  bottom: clamp(22px, 7vw, 90px);
  z-index: 1;
  max-width: 100vw;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4.4rem, 13vw, 15rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  animation: watermarkDrift 1000ms ease 180ms both;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.88) 0%, rgba(13, 69, 103, 0.271) 45%, rgba(47, 143, 92, 0) 100%),
    linear-gradient(0deg, rgba(9, 33, 50, 0), rgba(9, 33, 50, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 980px);
  align-items: end;
  gap: clamp(28px, 6vw, 92px);
  width: 100%;
  padding: clamp(110px, 13vw, 150px) clamp(18px, 5vw, 84px) clamp(44px, 7vw, 86px);
}

.hero-title-block {
  max-width: 920px;
  animation: heroLift 760ms ease 120ms both;
}

.hero-tagline {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 6.2vw, 5.8rem);
  font-weight: 300;
  line-height: 0.98;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero-tagline span {
  display: inline-block;
  padding: 0.02em 0.12em 0.08em;
  border: 0.08em solid var(--green);
  border-radius: 8px;
  line-height: 0.9;
}

.hero-title-block .eyebrow,
.hero-title-block .hero-text {
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.hero-panel {
  justify-self: end;
  max-width: 670px;
  padding: clamp(24px, 3.5vw, 40px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.11));
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9, 33, 50, 0.3);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  animation: heroLift 760ms ease 260ms both;
}

.hero-panel .eyebrow,
.hero-panel .hero-text {
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 5.4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 300;
  line-height: 1.22;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
  margin: -44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(11, 65, 109, 0.95), rgba(23, 98, 59, 0.92));
  box-shadow: 0 24px 60px rgba(9, 33, 50, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quick-bar div {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(26px, 3vw, 38px);
  padding-top: clamp(46px, 4.5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-bar div:last-child {
  border-right: 0;
}

.quick-bar strong,
.quick-bar span {
  display: block;
}

.quick-icon {
  display: inline-grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 64px;
  color: var(--green);
  background: var(--white);
  border: 4px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(9, 33, 50, 0.22);
  font-size: 2rem;
  transform: translate(-50%, -50%);
}

.quick-bar strong {
  color: var(--white);
  font-size: clamp(1.22rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

.quick-bar span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.5;
}

.section,
.split-section,
.target-section,
.contact-layout {
  position: relative;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 84px);
}

.decor-section {
  overflow: hidden;
}

.decor-section::before {
  content: attr(data-watermark);
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(-18px, 2vw, 30px);
  z-index: 0;
  color: rgba(18, 99, 164, 0.07);
  font-size: clamp(4.8rem, 12vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.decor-section.is-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.decor-section.decor-left::before {
  right: auto;
  left: clamp(-18px, 2vw, 30px);
  writing-mode: vertical-lr;
}

.decor-section > * {
  position: relative;
  z-index: 1;
}

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

.section-heading h2,
.about-copy h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-card,
.detail-card,
.values-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 252, 0.9));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0 22px 26px;
  overflow: hidden;
}

.service-card:nth-child(2) {
  --stagger-y: 22px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), transparent);
}

.service-card > img {
  width: calc(100% + 44px);
  max-width: none;
  height: 196px;
  margin: 0 -22px 22px;
  object-fit: cover;
  border-bottom: 5px solid var(--blue-dark);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.detail-card p,
.split-section p,
.values-grid p,
.page-hero p,
.form-note {
  color: var(--muted);
}

.service-card p {
  margin-bottom: 18px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -48px 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(9, 33, 50, 0.18);
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-card .service-icon {
  margin-top: 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.service-cta::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease;
}

.service-cta:hover {
  color: var(--green-dark);
}

.service-cta:hover::after {
  width: 42px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(9, 33, 50, 0.95), rgba(11, 65, 109, 0.9) 55%, rgba(23, 98, 59, 0.9));
  color: var(--white);
}

.split-section.decor-section::before,
.cta-band.decor-section::before {
  color: rgba(255, 255, 255, 0.07);
}

.split-section h2,
.split-section .eyebrow {
  color: var(--white);
}

.split-section p {
  color: rgba(255, 255, 255, 0.78);
}

.about-preview {
  min-height: clamp(520px, 68vh, 740px);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.about-preview .split-image {
  align-self: stretch;
  min-height: inherit;
  border-radius: 0 8px 8px 0;
}

.about-preview .split-image img {
  min-height: 100%;
}

.about-copy {
  max-width: 660px;
  padding-block: clamp(58px, 8vw, 104px);
}

.split-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(9, 33, 50, 0.32);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.btn-more {
  margin-top: 18px;
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn-more:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.feature-list strong,
.feature-list span {
  display: block;
}

.why-section {
  position: relative;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 84px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 245, 0.92));
}

.why-section .section-heading {
  max-width: 860px;
}

.why-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.why-content > img {
  width: 100%;
  min-height: 440px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(9, 33, 50, 0.18);
}

.why-list {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.why-content .why-list {
  grid-template-columns: 1fr;
}

.why-list div {
  position: relative;
  min-height: 180px;
  padding: 28px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 99, 164, 0.08);
}

.why-list div::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 52px;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.why-list strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.why-list span {
  max-width: 330px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 84px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 33, 50, 0.9), rgba(18, 99, 164, 0.78), rgba(47, 143, 91, 0.82)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(130px, 0.65fr) minmax(190px, 0.9fr) minmax(220px, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 84px) 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(47, 143, 91, 0.2), transparent 34%),
    linear-gradient(135deg, #101b22, #18344b 58%, #12251c);
  color: var(--white);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 84px);
  right: clamp(18px, 5vw, 84px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.site-footer img {
  width: min(230px, 72vw);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(104px, 11vw, 138px) clamp(18px, 5vw, 84px) clamp(48px, 6vw, 74px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.visual-page-hero {
  min-height: 410px;
  color: var(--white);
  background: var(--blue-dark);
}

.visual-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.visual-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 33, 50, 0.88), rgba(11, 65, 109, 0.52), rgba(47, 143, 91, 0.24));
}

.page-watermark::before {
  content: attr(data-watermark);
  position: absolute;
  left: clamp(14px, 5vw, 84px);
  bottom: -0.08em;
  z-index: 1;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.visual-page-hero .eyebrow,
.visual-page-hero h1,
.visual-page-hero p {
  position: relative;
  z-index: 1;
}

.visual-page-hero .eyebrow,
.visual-page-hero h1 {
  color: var(--white);
}

.visual-page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.1vw, 3.65rem);
  line-height: 1.05;
}

.page-hero p {
  max-width: 780px;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.service-detail-list {
  display: grid;
  gap: 20px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(240px, 0.68fr) minmax(300px, 1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.detail-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border-bottom: 6px solid var(--blue-dark);
}

.detail-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.25vw, 2.1rem);
  line-height: 1.1;
}

.detail-card ul,
.target-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.target-list li {
  position: relative;
  padding: 12px 12px 12px 32px;
  border-bottom: 1px solid var(--line);
}

.detail-card li::before,
.target-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 21px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 50%;
}

.about-split {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 245, 0.92));
  color: var(--ink);
}

.about-split h2 {
  color: var(--ink);
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
}

.about-split p {
  color: var(--muted);
  max-width: 780px;
}

.about-side-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(9, 33, 50, 0.18);
}

.about-side-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.profile-panel {
  padding: clamp(20px, 4vw, 36px);
  background: linear-gradient(145deg, rgba(11, 65, 109, 0.96), rgba(18, 37, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(9, 33, 50, 0.24);
}

.profile-panel img {
  width: min(100%, 320px);
  margin: 0 auto 18px;
  padding: 14px;
  background: var(--white);
  border-radius: 8px;
}

.profile-panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.profile-panel div {
  display: grid;
  grid-template-columns: 134px 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.profile-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.profile-panel dd {
  margin: 0;
  font-weight: 900;
}

.values-section {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.registration-section {
  background: var(--white);
}

.business-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.business-facts div {
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

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

.values-grid article {
  padding: 26px;
}

.values-grid h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--blue-dark);
}

.image-band img {
  width: 100%;
  height: clamp(230px, 28vw, 390px);
  object-fit: cover;
}

.image-band img:nth-child(2) {
  border-left: 6px solid var(--green);
  border-right: 6px solid var(--green);
}

.target-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.target-section h2 {
  max-width: 620px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(145deg, rgba(11, 65, 109, 0.96), rgba(18, 37, 28, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(9, 33, 50, 0.24);
}

.contact-info img {
  width: min(100%, 260px);
  margin-bottom: 8px;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
}

.contact-info a,
.contact-info div {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.contact-info span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info strong {
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 252, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(18, 99, 164, 0.12);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.map-section {
  padding: 0 clamp(18px, 5vw, 84px) clamp(58px, 8vw, 104px);
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 1060px) {
  .service-grid,
  .values-grid,
  .business-facts,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    --stagger-y: 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-self: start;
  }

  .detail-card,
  .why-content {
    grid-template-columns: 1fr;
  }

  .why-content > img {
    min-height: 360px;
  }

  .about-preview {
    min-height: auto;
    padding: 0 clamp(18px, 5vw, 84px) clamp(58px, 8vw, 104px);
  }

  .about-preview .split-image {
    min-height: 420px;
    border-radius: 8px;
  }

  .about-copy {
    padding-block: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 164px;
  }

  .brand img {
    width: 164px;
    height: 64px;
  }

  .site-header.is-scrolled .brand,
  .site-header.nav-open .brand {
    width: 138px;
  }

  .site-header.is-scrolled .brand img,
  .site-header.nav-open .brand img {
    width: 138px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    gap: 8px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  .main-nav a {
    width: 100%;
    color: var(--slate);
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--blue-dark);
    background: var(--mist);
  }

  .header-action {
    display: none;
  }

  .quick-bar,
  .split-section,
  .target-section,
  .contact-layout,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-content {
    padding-top: 260px;
    gap: 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 33, 50, 0.82) 0%, rgba(11, 65, 109, 0.62) 46%, rgba(9, 33, 50, 0.1) 80%);
  }

  .hero-photo::before {
    left: 16px;
    bottom: 45%;
    font-size: clamp(3.8rem, 18vw, 8rem);
  }

  .decor-section::before {
    right: 10px;
    top: 18px;
    font-size: clamp(4rem, 22vw, 8rem);
    writing-mode: horizontal-tb;
  }

  .quick-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .quick-bar div:last-child {
    border-bottom: 0;
  }

  .cta-band {
    align-items: start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2rem, 12vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.85rem);
  }

  .visual-page-hero {
    min-height: 360px;
  }

  .hero-tagline {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-content {
    padding-top: 230px;
  }

  .service-grid,
  .values-grid,
  .business-facts,
  .why-list,
  .target-list,
  .image-band {
    grid-template-columns: 1fr;
  }

  .profile-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .image-band img:nth-child(2) {
    border-left: 0;
    border-right: 0;
    border-top: 6px solid var(--green);
    border-bottom: 6px solid var(--green);
  }
}
