:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee7;
  --paper: #f6f7f9;
  --white: #ffffff;
  --blue: #155e75;
  --blue-dark: #0f3f52;
  --yellow: #f3b61f;
  --red: #b91c1c;
  --shadow: 0 22px 70px rgba(17, 24, 39, .18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(17, 24, 39, .94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .16);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
}

.nav-links {
  gap: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
}

.nav-links a {
  padding: 10px 0;
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.icon-btn {
  display: grid;
  place-items: center;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .46);
  color: var(--white);
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.lang-toggle {
  width: 48px;
}

.icon-btn {
  width: 42px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 12, 18, .9), rgba(8, 12, 18, .54) 48%, rgba(8, 12, 18, .18)),
    linear-gradient(0deg, rgba(8, 12, 18, .72), rgba(8, 12, 18, .04) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 136px 0 54px;
}

.hero-copy {
  max-width: 770px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.04rem, 1.7vw, 1.32rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  background: var(--yellow);
  color: #1f2937;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.contact .btn.secondary,
.planner .btn.compact {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn.compact {
  min-height: 42px;
  margin-top: 12px;
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.metric {
  font-size: 2rem;
  font-weight: 850;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quick-strip a {
  min-height: 92px;
  padding: 19px 22px;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

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

.quick-strip strong {
  color: var(--blue-dark);
}

.quick-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  padding-top: 112px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 238px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.service-card:focus,
.service-card.active {
  transform: translateY(-3px);
  border-color: rgba(21, 94, 117, .55);
  box-shadow: 0 18px 40px rgba(17, 24, 39, .1);
  outline: 0;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  background: #e8f3f6;
  color: var(--blue-dark);
  border-radius: 8px;
  font-weight: 850;
}

.service-card p,
.planner-copy p,
.contact-main p {
  color: var(--muted);
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.planner-tool {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.choice {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.choice.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.plan-output {
  min-height: 244px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f4f8fa);
}

.plan-output ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.plan-output li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.plan-output li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--yellow);
  border-radius: 999px;
}

.image-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr .9fr;
  gap: 12px;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-photo {
  margin: 0;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-photo figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(17, 24, 39, .82);
  border-radius: 8px;
  font-size: .9rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: 32px;
  align-items: stretch;
}

.contact-main,
.contact-details {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-details dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-details div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 52px) 88px;
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 850;
}

.mobile-bar {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(17, 24, 39, .92);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 46px;
  background: var(--yellow);
  color: #1f2937;
  border-radius: 8px;
  font-weight: 850;
}

.mobile-bar a:nth-child(2) {
  background: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

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

  .hero-panel div {
    grid-template-columns: 1fr;
  }

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

  .planner,
  .contact {
    grid-template-columns: 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 12, 18, .9), rgba(8, 12, 18, .35)),
      linear-gradient(90deg, rgba(8, 12, 18, .62), rgba(8, 12, 18, .25));
  }

  .hero-content,
  .quick-strip,
  .section,
  .image-band {
    width: min(100% - 24px, 1180px);
  }

  .hero-content {
    gap: 18px;
    padding: 104px 0 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 11vw, 2.55rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hero-panel div {
    min-height: 0;
    grid-template-columns: 86px 1fr;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .quick-strip a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 18px;
  }

  .intro {
    padding-top: 64px;
  }

  .section {
    padding: 66px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 192px;
  }

  .card-icon {
    margin-bottom: 22px;
  }

  .planner-tool,
  .contact-main,
  .contact-details {
    padding: 14px;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .feature-photo,
  .feature-photo img {
    min-height: 280px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 92px;
  }

  .mobile-bar {
    display: grid;
  }
}
