:root {
  --bg: #f5f8f2;
  --bg-strong: #dfead0;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --ink: #123c5a;
  --ink-soft: #35596f;
  --accent: #66b946;
  --accent-deep: #478d31;
  --line: rgba(18, 60, 90, 0.12);
  --shadow: 0 22px 60px rgba(18, 60, 90, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(102, 185, 70, 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(18, 60, 90, 0.12), transparent 26%),
    linear-gradient(180deg, #fafdF8 0%, var(--bg) 42%, #eef4e4 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(18, 60, 90, 0.08);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 250px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  color: var(--ink-soft);
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink) 0%, #1d5d81 100%);
  box-shadow: 0 14px 30px rgba(18, 60, 90, 0.2);
}

.button.secondary {
  border: 1px solid rgba(18, 60, 90, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 44px;
}

.hero-copy,
.hero-panel,
.section,
.contact-card,
.contact-aside {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(223, 234, 208, 0.78)),
    var(--surface-strong);
}

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

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

h1 {
  max-width: 15ch;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-text,
.section-heading p:last-child,
.value-copy p:last-child,
.contact-card p:last-of-type {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 22px;
}

.hero-actions .button,
.contact-actions .button {
  white-space: nowrap;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 24px;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(102, 185, 70, 0.12);
}

.hero-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 60, 90, 0.95), rgba(24, 89, 119, 0.92)),
    var(--ink);
  color: #fff;
}

.hero-visual {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-visual figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.stat-card {
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(102, 185, 70, 0.12));
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat-label,
.mini-grid span,
.contact-aside span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  gap: 16px;
}

.mini-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-grid h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.mini-grid p,
.stat-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.section {
  padding: 34px;
  margin-bottom: 22px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2,
.value-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-grid,
.value-points,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.showcase-card-wide {
  grid-column: span 2;
}

.showcase-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.showcase-card-wide img {
  height: 320px;
}

.showcase-copy {
  padding: 20px 22px 22px;
}

.showcase-copy h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.showcase-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

.service-card.featured {
  background: linear-gradient(160deg, rgba(102, 185, 70, 0.14), rgba(255, 255, 255, 0.92));
}

.service-card h3,
.timeline h3,
.value-points h3 {
  margin-bottom: 14px;
  font-size: 1.12rem;
}

.service-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

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

.timeline article,
.value-points article {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(223, 234, 208, 0.56));
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline p,
.value-points p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.value-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  background:
    radial-gradient(circle at bottom right, rgba(102, 185, 70, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.contact-card,
.contact-aside {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-aside {
  display: grid;
  gap: 22px;
  align-content: start;
  background: linear-gradient(180deg, #174967, #123c5a);
  color: #fff;
}

.contact-aside strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.3;
}

@media (max-width: 1080px) {
  .hero,
  .value-strip,
  .contact,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .value-points,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-wide {
    grid-column: auto;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content));
    padding-top: 14px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .brand img {
    width: 190px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 10px;
  }

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

  .site-nav a {
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
  }

  .site-nav a.nav-cta {
    border: none;
  }

  .hero {
    gap: 18px;
    margin-bottom: 28px;
  }

  .hero-copy,
  .section,
  .contact-card,
  .contact-aside {
    padding: 24px;
  }

  .showcase-card img,
  .showcase-card-wide img {
    height: 240px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .hero-text,
  .section-heading p:last-child,
  .value-copy p:last-child,
  .contact-card p:last-of-type,
  .service-card ul,
  .timeline p,
  .value-points p,
  .showcase-copy p,
  .hero-highlights {
    font-size: 0.93rem;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .timeline {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--content));
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .site-header {
    position: static;
    margin-bottom: 18px;
    border-radius: 24px;
  }

  .brand img {
    width: 168px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero-copy,
  .hero-panel,
  .section,
  .contact-card,
  .contact-aside {
    padding: 20px;
    border-radius: 24px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .section-heading h2,
  .value-copy h2,
  .contact-card h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.1rem);
    letter-spacing: -0.04em;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    margin: 20px 0 18px;
  }

  .service-card,
  .timeline article,
  .value-points article {
    padding: 18px;
    border-radius: 20px;
  }

  .showcase-card {
    border-radius: 20px;
  }

  .stat-card,
  .mini-grid article {
    padding: 18px;
    border-radius: 20px;
  }

  .stat-card strong {
    font-size: 1.35rem;
  }

  .mini-grid h2,
  .service-card h3,
  .timeline h3,
  .value-points h3,
  .showcase-copy h3,
  .contact-aside strong {
    font-size: 1rem;
  }

  .showcase-card img,
  .showcase-card-wide img {
    height: 210px;
  }

  .showcase-copy {
    padding: 16px 18px 18px;
  }

  .showcase-copy p,
  .hero-visual figcaption {
    font-size: 0.9rem;
  }

  .timeline span {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 0.84rem;
  }
}

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

  .nav-cta,
  .button {
    transition: none;
  }
}
