:root {
  --ink: #1d2430;
  --slate: #29384d;
  --slate-dark: #172234;
  --muted: #657184;
  --line: #dce3eb;
  --paper: #f7f8f5;
  --white: #ffffff;
  --yellow: #f6b91f;
  --orange: #f0782d;
  --teal: #0f8f8c;
  --rose: #c84f68;
  --shadow: 0 24px 60px rgba(23, 34, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid rgba(220, 227, 235, 0.8);
}

.brand img {
  width: 176px;
  height: 50px;
  object-fit: cover;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--slate);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 8vw, 108px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(41, 56, 77, 0.96), rgba(23, 34, 52, 0.98)),
    radial-gradient(circle at 18% 24%, rgba(246, 185, 31, 0.24), transparent 28%);
  color: var(--white);
}

.hero-content {
  max-width: 710px;
}

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

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.2vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  color: var(--slate-dark);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--slate-dark);
  font-size: 1.32rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--yellow);
  color: #172234;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.hero-visual {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.24));
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  background: var(--white);
}

.intro p:last-child,
.print-copy p,
.work-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.services {
  background: #eef3f5;
}

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

.service-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 34, 52, 0.06);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--slate);
  color: var(--yellow);
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card:nth-child(3) .service-icon {
  background: var(--teal);
  color: var(--white);
}

.service-card:nth-child(4) .service-icon {
  background: var(--rose);
  color: var(--white);
}

.service-card p {
  color: var(--muted);
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 102px) clamp(18px, 5vw, 72px);
  background: var(--slate);
  color: var(--white);
}

.work-band h2 {
  color: var(--white);
}

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

.process-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-list strong {
  color: var(--yellow);
  font-size: 1.05rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.78);
}

.print-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.print-visual {
  padding: clamp(10px, 2vw, 20px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--slate);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px var(--teal);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #fff6dc, #f4f8fb 48%, #e7f5f4);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: var(--slate-dark);
  box-shadow: var(--shadow);
}

.contact-panel a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  background: rgba(246, 185, 31, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 118px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .work-band,
  .print-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 68px;
  }

  .brand img {
    width: 148px;
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    width: auto;
    gap: 0;
    padding: 8px 18px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 34, 52, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    font-size: 0.88rem;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 34px;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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