:root {
  --ink: #173c42;
  --ink-soft: #2f6668;
  --paper: #f5f8f5;
  --white: #fff;
  --muted: #647976;
  --line: #d4e1dc;
  --mint: #b9efd1;
  --orange: #e78368;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.detail-wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.detail-topline {
  padding: 12px 0;
  color: rgba(255,255,255,.8);
  background: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
}
.detail-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.detail-logo { width: 154px; }
.detail-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #365c5d;
  font-size: 15px;
  font-weight: 700;
}
.detail-nav-links a:hover { color: var(--orange); }
.detail-nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.detail-main { padding: 42px 0 88px; }
.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}
.detail-breadcrumb a:hover { color: var(--ink); }
.detail-breadcrumb span:last-child { color: var(--ink); }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 64px;
  align-items: start;
}
.detail-image {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.detail-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.detail-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-copy h1 {
  max-width: 12ch;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.04em;
}
.detail-lead {
  max-width: 54ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}
.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.detail-button.primary {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}
.detail-button.secondary { color: var(--ink); background: transparent; }
.detail-specs {
  border-top: 1px solid var(--line);
}
.detail-spec {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
}
.detail-spec strong { color: var(--ink); }
.detail-spec span { color: var(--muted); }
.detail-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  margin-top: 70px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.detail-section h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.035em;
}
.detail-section p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.detail-section p:last-child { margin-bottom: 0; }
.detail-footer {
  color: rgba(255,255,255,.75);
  background: var(--ink-soft);
}
.detail-footer-main {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 56px;
  padding: 48px 0 42px;
}
.detail-footer-logo { width: 154px; filter: brightness(0) invert(1); }
.detail-footer-brand p {
  max-width: 32ch;
  margin: 24px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
}
.detail-footer-column h3 {
  margin: 0 0 17px;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-footer-links {
  display: grid;
  gap: 14px;
  font-size: 16px;
  line-height: 1.35;
}
.detail-footer-links a:hover { color: var(--mint); }
.detail-footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.5;
}
.detail-footer-contact a { color: var(--white); }
.detail-footer-contact a:hover { color: var(--mint); }
.detail-footer-label {
  display: block;
  margin-bottom: 2px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .detail-nav-links { display: none; }
  .detail-grid,
  .detail-section { grid-template-columns: 1fr; gap: 34px; }
  .detail-copy h1 { max-width: none; }
  .detail-footer-main { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .detail-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .detail-wrap { width: min(var(--max), calc(100% - 28px)); }
  .detail-main { padding-top: 28px; }
  .detail-spec { grid-template-columns: 1fr; gap: 4px; }
}
