:root {
  --ink: #16162f;
  --muted: #67627c;
  --paper: #fff6fb;
  --surface: #ffffff;
  --blue: #075eea;
  --blue-deep: #061d7a;
  --pink: #ee2a9c;
  --peach: #ff8d71;
  --yellow: #ffc83d;
  --green: #00a971;
  --violet: #8138ff;
  --line: rgba(22, 22, 47, 0.14);
  --shadow: 0 24px 70px rgba(47, 20, 98, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(238, 42, 156, 0.12), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(7, 94, 234, 0.14), transparent 30%),
    linear-gradient(180deg, #fff6fb, #f6fbff 42%, #fff9ed);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-elevated,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 246, 251, 0.96);
  box-shadow: 0 12px 28px rgba(22, 22, 47, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  border: 1px solid currentColor;
  cursor: pointer;
}

.header-action {
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 82, 0.9) 0%, rgba(78, 14, 99, 0.68) 40%, rgba(238, 42, 156, 0.12) 77%),
    linear-gradient(180deg, rgba(4, 9, 61, 0.18), rgba(7, 94, 234, 0.1) 50%, rgba(13, 11, 55, 0.66));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  min-height: 92vh;
  padding: 116px 0 86px;
  margin-left: clamp(18px, 7vw, 92px);
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 9vw, 116px);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

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

.button.primary {
  border-color: transparent;
  color: #120f32;
  background: linear-gradient(135deg, var(--yellow), var(--peach) 48%, var(--pink));
  box-shadow: 0 14px 30px rgba(238, 42, 156, 0.3);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 700px;
  margin: 52px 0 0;
}

.hero-metrics div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-metrics dt {
  margin-bottom: 5px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.quick-intake {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.quick-intake a {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(7, 94, 234, 0.18), rgba(238, 42, 156, 0.16));
}

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

.quick-intake span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-intake strong {
  display: block;
  max-width: 370px;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.18;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 70px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section h2 {
  font-size: clamp(38px, 5.4vw, 72px);
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(58, 32, 115, 0.08);
  position: relative;
  overflow: hidden;
}

.service-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--yellow), var(--green), var(--violet));
}

.service-icon {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-icon.sapphire-blue {
  color: var(--blue);
}

.service-icon.sapphire-pink {
  color: var(--pink);
}

.service-icon.sapphire-yellow {
  color: #d89a00;
}

.service-icon.sapphire-violet {
  color: var(--violet);
}

.service-grid h3 {
  margin: 46px 0 12px;
  font-size: 24px;
}

.service-grid p {
  margin: 0;
  font-size: 15px;
}

.process-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 6vw, 82px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 29, 122, 0.97), rgba(129, 56, 255, 0.9) 48%, rgba(238, 42, 156, 0.92)),
    var(--blue-deep);
}

.process-band .section p,
.process-band p {
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px;
  background: rgba(6, 29, 122, 0.42);
  backdrop-filter: blur(12px);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--yellow);
  border: 1px solid currentColor;
  font-weight: 850;
}

.process-list strong {
  font-size: 22px;
}

.process-list p {
  grid-column: 2;
  margin: -10px 0 0;
}

.reports {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.94)),
    linear-gradient(90deg, rgba(7, 94, 234, 0.14), rgba(238, 42, 156, 0.14));
}

.report-panel {
  max-width: 640px;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 6px;
  color: #120f32;
  background: linear-gradient(135deg, var(--yellow), var(--peach), var(--pink));
  box-shadow: 0 16px 32px rgba(238, 42, 156, 0.22);
  font-size: 34px;
  font-weight: 900;
}

.price-tag span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-note {
  max-width: 560px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 4px solid var(--blue);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-card {
  display: grid;
  gap: 22px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  min-height: 420px;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 46px rgba(6, 29, 122, 0.16);
  background: #eaf3ff;
}

.product-gallery img:first-child {
  grid-row: span 2;
}

.report-specs {
  display: grid;
  border-top: 1px solid var(--line);
}

.report-specs div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.report-specs strong {
  color: var(--pink);
}

.report-specs span {
  color: var(--muted);
}

.product-button {
  width: 100%;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--blue), var(--pink), var(--yellow), var(--green)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fffafd;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(90deg, #061d7a, #6f21c9, #c21d7a);
}

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

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-active .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 24px;
    background: rgba(247, 245, 240, 0.98);
    box-shadow: 0 18px 28px rgba(21, 33, 31, 0.12);
  }

  .site-header.menu-active .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
  }

  .hero img {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 15, 82, 0.92), rgba(78, 14, 99, 0.55), rgba(238, 42, 156, 0.26));
  }

  .hero-content {
    min-height: 88vh;
    margin-left: 18px;
  }

  .quick-intake,
  .split,
  .process-band,
  .reports,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-intake a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-intake a:last-child {
    border-bottom: 0;
  }

  .section-copy {
    position: static;
  }

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

  .product-gallery {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    font-size: 10px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: 50px;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .report-specs div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .product-gallery img,
  .product-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    padding: 22px 0;
  }

  .site-footer {
    display: grid;
  }
}
