:root {
  color-scheme: light;
  --canvas: #f4f2ec;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #19342b;
  --ink-soft: #2f4a40;
  --muted: #68766f;
  --subtle: #8b9690;
  --green: #3f705c;
  --green-deep: #244b3d;
  --green-soft: #dfeae3;
  --green-pale: #edf3ef;
  --peach: #e9aa75;
  --peach-soft: #f5dfca;
  --sand: #e8dfd1;
  --line: rgba(31, 62, 51, 0.13);
  --line-strong: rgba(31, 62, 51, 0.22);
  --success: #317052;
  --warning: #9a6a2d;
  --danger: #a74b51;
  --shadow-sm: 0 12px 32px rgba(45, 62, 53, 0.07);
  --shadow: 0 28px 80px rgba(45, 62, 53, 0.12);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 92% 2%, rgba(233, 170, 117, 0.18), transparent 26rem),
    radial-gradient(circle at 8% 20%, rgba(122, 155, 133, 0.11), transparent 28rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--green);
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--peach-soft);
  color: var(--ink);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  line-height: 0.99;
}

h2 {
  line-height: 1.05;
}

h3 {
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  transform: translateY(-160%);
  border-radius: 12px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(244, 242, 236, 0.76);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 10px 30px rgba(35, 55, 47, 0.045);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--green-deep);
  box-shadow: 0 8px 18px rgba(36, 75, 61, 0.17);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #f8f0e7;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--peach);
  stroke: none;
}

.brand-name {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav > a:hover,
.nav > a[aria-current="page"] {
  background: rgba(63, 112, 92, 0.08);
  color: var(--green-deep);
}

.nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--green-deep);
  color: white;
}

.nav .nav-cta:hover {
  transform: translateY(-1px);
  background: var(--green);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 19px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

main {
  overflow: hidden;
}

.hero {
  padding: 94px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 23px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #cfe0d6;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.3vw, 82px);
}

.accent-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.accent-underline::after {
  position: absolute;
  right: -0.03em;
  bottom: 0.03em;
  left: -0.03em;
  z-index: -1;
  height: 0.21em;
  border-radius: 999px;
  background: var(--peach);
  opacity: 0.72;
  transform: rotate(-1.4deg);
  content: "";
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 740;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--green-deep);
  color: white;
  box-shadow: 0 14px 28px rgba(36, 75, 61, 0.18);
}

.button-primary:hover {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 32px rgba(36, 75, 61, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green-deep);
}

.button:disabled {
  transform: none;
  opacity: 0.62;
  cursor: wait;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 740;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.hero-note {
  margin: 22px 0 0;
  color: var(--subtle);
  font-size: 13px;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.art-main {
  position: absolute;
  inset: 36px 10px 42px 52px;
  overflow: hidden;
  padding: 45px 42px;
  border-radius: 40px;
  background: var(--green-deep);
  color: white;
  box-shadow: var(--shadow);
}

.art-main::before {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -72px;
  top: -86px;
  border-radius: 50%;
  background: rgba(233, 170, 117, 0.9);
  content: "";
}

.art-main::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 66px;
  bottom: -95px;
  border-radius: 50%;
  background: rgba(245, 223, 202, 0.13);
  content: "";
}

.art-kicker {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 18px;
  color: #cadbd2;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.art-main h2 {
  position: relative;
  z-index: 2;
  max-width: 370px;
  margin: 0;
  font-size: clamp(35px, 4.1vw, 50px);
  color: #fffaf3;
}

.lane-map {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 205px;
  overflow: hidden;
}

.lane {
  position: absolute;
  left: -35px;
  width: 125%;
  height: 116px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-right: 0;
  border-bottom: 0;
  border-radius: 50% 0 0 0;
  transform: rotate(-6deg);
}

.lane-one {
  bottom: -53px;
}

.lane-two {
  bottom: -21px;
  opacity: 0.7;
}

.lane-three {
  bottom: 12px;
  opacity: 0.43;
}

.lane-dot {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 4px solid #fff8ef;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.dot-one {
  left: 95px;
  bottom: 49px;
}

.dot-two {
  left: 54%;
  bottom: 92px;
}

.dot-three {
  right: 58px;
  bottom: 137px;
}

.art-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.art-orbit-one {
  width: 122px;
  height: 122px;
  right: -8px;
  top: 12px;
  border: 1px solid rgba(63, 112, 92, 0.22);
}

.art-orbit-two {
  width: 42px;
  height: 42px;
  left: 14px;
  bottom: 32px;
  background: var(--peach-soft);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 13px;
  width: min(280px, 70%);
  padding: 15px 18px;
  border: 1px solid rgba(31, 62, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(34, 59, 49, 0.15);
  backdrop-filter: blur(10px);
}

.floating-card-top {
  top: 0;
  right: 28px;
}

.floating-card-bottom {
  right: 0;
  bottom: 5px;
}

.floating-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.floating-card small {
  color: var(--muted);
  font-size: 12px;
}

.capabilities {
  padding: 0 0 26px;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  position: relative;
  padding: 20px 22px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.capability-list span:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: 0;
  bottom: 17px;
  width: 1px;
  background: var(--line);
  content: "";
}

.section {
  padding: 104px 0;
}

.section-sm {
  padding: 64px 0 96px;
}

.section-soft {
  position: relative;
  background: var(--green-deep);
  color: white;
}

.section-soft::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 95% 15%, rgba(233, 170, 117, 0.23), transparent 24rem),
    radial-gradient(circle at 12% 100%, rgba(255, 255, 255, 0.06), transparent 22rem);
  pointer-events: none;
  content: "";
}

.section-soft > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.9vw, 60px);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-soft .section-heading > p {
  color: #c8d6cf;
}

.section-heading-compact {
  align-items: center;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 45px rgba(45, 62, 53, 0.1);
}

.service-card-wide {
  background: var(--paper-strong);
}

.service-card-accent {
  background: var(--peach-soft);
}

.service-card-accent::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  bottom: -70px;
  border: 1px solid rgba(63, 112, 92, 0.18);
  border-radius: 50%;
  content: "";
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-deep);
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.service-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--green-deep);
  font-weight: 740;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.7fr);
  gap: 90px;
  align-items: center;
}

.statement-card h2 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #fffaf2;
  font-size: clamp(42px, 5.3vw, 66px);
}

.statement-card > p {
  max-width: 620px;
  margin-bottom: 0;
  color: #c9d7d0;
  font-size: 18px;
}

.principle-list {
  display: grid;
  gap: 8px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.principle-list article:last-child {
  border-bottom: 0;
}

.principle-list article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--peach-soft);
  font-size: 12px;
  font-weight: 800;
}

.principle-list h3 {
  margin-bottom: 7px;
  color: #fffaf2;
  font-size: 20px;
}

.principle-list p {
  margin-bottom: 0;
  color: #c4d2cb;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px 28px 20px 0;
}

.process-grid article:not(:last-child) {
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.process-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--peach);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-cta {
  padding-top: 46px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding: 54px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% -30%, rgba(233, 170, 117, 0.42), transparent 18rem),
    var(--paper-strong);
  box-shadow: var(--shadow-sm);
}

.cta h2 {
  max-width: 720px;
  margin-bottom: 17px;
  font-size: clamp(38px, 4.8vw, 58px);
}

.cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-actions > span {
  color: var(--subtle);
  font-size: 12px;
}

.page-hero {
  padding: 102px 0 58px;
}

.page-hero h1 {
  max-width: 990px;
  margin-bottom: 25px;
  font-size: clamp(50px, 6.4vw, 78px);
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero-split {
  padding-bottom: 78px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  align-items: end;
  gap: 78px;
}

.page-hero-grid h1 {
  margin-bottom: 0;
}

.page-hero-grid .lead {
  font-size: 19px;
}

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

.detail-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-sm);
}

.detail-number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.detail-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.3vw, 43px);
}

.detail-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
}

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

.detail-card li,
.prose li,
.contact-note li {
  position: relative;
  margin-top: 9px;
  padding-left: 21px;
  color: var(--muted);
}

.detail-card li::before,
.prose li::before,
.contact-note li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  content: "";
}

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

.scenario-grid article {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.scenario-grid article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--peach-soft);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scenario-grid h3 {
  margin-bottom: 12px;
  color: #fffaf3;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.scenario-grid p {
  margin-bottom: 0;
  color: #c7d5ce;
}

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

.approach-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-sm);
}

.approach-card-featured {
  grid-row: span 2;
  min-height: 538px;
  padding: 42px;
  background:
    radial-gradient(circle at 83% 12%, rgba(233, 170, 117, 0.58), transparent 13rem),
    var(--green-deep);
  color: white;
}

.approach-card > span {
  display: block;
  margin-bottom: 80px;
  color: var(--peach);
  font-size: 13px;
  font-weight: 800;
}

.approach-card-featured > span {
  margin-bottom: 210px;
  color: var(--peach-soft);
}

.approach-card h2 {
  max-width: 600px;
  margin-bottom: 18px;
  color: #fffaf3;
  font-size: clamp(39px, 4.4vw, 56px);
}

.approach-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.approach-card p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.approach-card-featured p {
  color: #cbd8d2;
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.timeline article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.timeline article > span {
  color: var(--peach-soft);
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 6px;
  color: #fffaf3;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.timeline p {
  margin-bottom: 0;
  color: #c6d4cd;
}

.technical-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: 70px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
}

.technical-panel h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.7vw, 57px);
}

.technical-panel > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

.soft-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.soft-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
}

.technical-check {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green-pale);
}

.check-label {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technical-check h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.technical-check p {
  margin-bottom: 25px;
  color: var(--muted);
}

.contact-hero {
  padding-bottom: 74px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 80px;
}

.contact-hero-grid h1 {
  max-width: 870px;
}

.contact-note {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green-pale);
}

.contact-note > span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note li {
  color: var(--ink-soft);
}

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

.contact-card {
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--shadow-sm);
}

.contact-card-main {
  grid-row: span 2;
  min-height: 478px;
  padding: 42px;
  background: var(--peach-soft);
}

.contact-card > span {
  display: block;
  margin-bottom: 72px;
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card-main > span {
  margin-bottom: 230px;
}

.contact-card h2,
.contact-card h3 {
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-weight: 600;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: clamp(31px, 3.6vw, 45px);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

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

.service-contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(400px, 0.75fr);
  gap: 90px;
}

.service-contacts h2 {
  max-width: 590px;
  margin-bottom: 0;
  color: #fffaf3;
  font-size: clamp(40px, 5vw, 58px);
}

.service-contact-list {
  display: grid;
}

.service-contact-list a {
  display: grid;
  gap: 5px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: white;
}

.service-contact-list a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.service-contact-list span {
  color: #aebfb7;
  font-size: 12px;
}

.service-contact-list strong {
  overflow-wrap: anywhere;
  font-size: 16px;
}

.prose {
  max-width: 850px;
  color: var(--muted);
}

.prose h2 {
  margin-top: 58px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.prose h3 {
  margin-top: 34px;
  color: var(--ink);
}

.prose strong {
  color: var(--ink-soft);
}

.prose a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(63, 112, 92, 0.3);
  text-underline-offset: 3px;
}

.prose code,
.endpoint-table code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.notice {
  margin: 0 0 34px;
  padding: 20px 22px;
  border: 1px solid rgba(154, 106, 45, 0.2);
  border-radius: 17px;
  background: #f7ead8;
  color: #74542f;
}

.status-hero {
  padding-bottom: 48px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.status-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
}

.status-log-card {
  min-height: 310px;
}

.status-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.status-label {
  margin-bottom: 7px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 19px;
  font-weight: 700;
}

.muted {
  margin: 20px 0 0;
  color: var(--muted);
}

.state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 740;
}

.state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--subtle);
  content: "";
}

.state[data-state="ok"] {
  border-color: rgba(49, 112, 82, 0.25);
  background: rgba(49, 112, 82, 0.07);
  color: var(--success);
}

.state[data-state="ok"]::before {
  background: var(--success);
}

.state[data-state="pending"] {
  color: var(--warning);
}

.state[data-state="pending"]::before {
  background: var(--warning);
}

.state[data-state="error"] {
  color: var(--danger);
}

.state[data-state="error"]::before {
  background: var(--danger);
}

.event-log {
  display: grid;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  list-style: none;
}

.event-log li {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--green-pale);
}

.endpoint-table {
  width: 100%;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.endpoint-table th,
.endpoint-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.endpoint-table tr:last-child td {
  border-bottom: 0;
}

.endpoint-table th {
  color: var(--subtle);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding: 90px 0;
  text-align: center;
}

.not-found-code {
  display: inline-grid;
  width: 74px;
  height: 74px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 72px);
}

.site-footer {
  margin-top: 100px;
  padding: 68px 0 28px;
  border-top: 1px solid var(--line);
  background: #ebe8df;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 90px;
  padding-bottom: 55px;
}

.footer-intro > p {
  max-width: 520px;
  margin: 22px 0 18px;
  color: var(--muted);
}

.footer-email {
  color: var(--green-deep);
  font-weight: 740;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 55px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 40px;
  }

  .hero-art {
    min-height: 480px;
  }

  .art-main {
    left: 30px;
    padding: 38px 32px;
  }

  .statement-grid,
  .technical-panel,
  .service-contacts {
    gap: 48px;
  }

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

  .process-grid article:nth-child(2) {
    margin-right: 0;
    border-right: 0;
  }

  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .page-hero-grid,
  .contact-hero-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] {
    display: grid;
  }

  .nav > a {
    padding: 13px 15px;
    border-radius: 12px;
  }

  .nav .nav-cta {
    margin: 7px 0 0;
    justify-content: center;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-hero-grid,
  .statement-grid,
  .technical-panel,
  .service-contacts,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(50px, 11vw, 75px);
  }

  .hero-art {
    width: min(100%, 590px);
    min-height: 520px;
    margin-inline: auto;
  }

  .capability-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-list span:nth-child(2)::after {
    display: none;
  }

  .capability-list span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .service-grid,
  .scenario-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-card-featured,
  .contact-card-main {
    grid-row: auto;
    min-height: auto;
  }

  .approach-card-featured > span,
  .contact-card-main > span {
    margin-bottom: 110px;
  }

  .technical-panel {
    padding: 42px;
  }

  .page-hero {
    padding-top: 78px;
  }

  .page-hero-grid h1 {
    margin-bottom: 0;
  }

  .detail-card {
    grid-template-columns: 70px 1fr;
    padding: 34px;
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero h1 {
    font-size: clamp(45px, 14.5vw, 64px);
  }

  .lead {
    font-size: 18px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 450px;
  }

  .art-main {
    inset: 30px 0 35px 18px;
    padding: 35px 27px;
    border-radius: 32px;
  }

  .art-main h2 {
    max-width: 300px;
    font-size: 38px;
  }

  .floating-card {
    width: 240px;
  }

  .floating-card-top {
    right: 5px;
  }

  .floating-card-bottom {
    right: -4px;
  }

  .dot-one {
    left: 55px;
  }

  .dot-two {
    left: 51%;
  }

  .dot-three {
    right: 35px;
  }

  .capability-list span {
    padding: 16px 12px;
    font-size: 12px;
  }

  .section {
    padding: 70px 0;
  }

  .section-sm {
    padding: 44px 0 68px;
  }

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

  .section-heading h2 {
    font-size: 39px;
  }

  .service-card,
  .scenario-grid article,
  .approach-card,
  .contact-card,
  .status-card {
    min-height: 0;
    padding: 27px;
  }

  .service-icon {
    margin-bottom: 32px;
  }

  .statement-card h2,
  .service-contacts h2 {
    font-size: 42px;
  }

  .principle-list article {
    grid-template-columns: 45px 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .process-grid article,
  .process-grid article:not(:last-child) {
    min-height: 0;
    margin: 0;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-grid article > span {
    margin-bottom: 22px;
  }

  .cta {
    gap: 34px;
    padding: 36px 28px;
    border-radius: 28px;
  }

  .cta h2 {
    font-size: 39px;
  }

  .page-hero {
    padding: 66px 0 40px;
  }

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

  .detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

  .detail-number {
    width: 48px;
    height: 48px;
  }

  .scenario-grid article > span {
    margin-bottom: 38px;
  }

  .approach-card > span,
  .approach-card-featured > span,
  .contact-card > span,
  .contact-card-main > span {
    margin-bottom: 55px;
  }

  .approach-card h2 {
    font-size: 40px;
  }

  .timeline article {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .technical-panel {
    padding: 28px;
    border-radius: 28px;
  }

  .technical-panel h2 {
    font-size: 39px;
  }

  .technical-check {
    padding: 24px;
  }

  .contact-note {
    padding: 25px;
  }

  .contact-card h2 {
    font-size: 29px;
  }

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

  .status-top {
    flex-direction: column;
  }

  .status-top .button {
    width: auto;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
