@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600&family=Barlow+Semi+Condensed:wght@500;600&display=swap');

:root {
  --black: #111111;
  --charcoal: #1c1c1c;
  --steel: #2a2a2a;
  --iron: #3a3a3a;
  --orange: #e86100;
  --orange-dk: #c45200;
  --orange-lt: #fff1e8;
  --mid: #888888;
  --light: #d4d4d4;
  --rule: #e2e2e2;
  --bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
  --shadow-md: 0 6px 28px rgba(0,0,0,.13);
  --font-head: 'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --font-semi: 'Barlow Semi Condensed', Arial, sans-serif;
}

.hv3-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 28px;
  font-family: var(--font-body);
  color: var(--black);
  box-sizing: border-box;
  background: var(--bg);
}

.hv3-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.hv3-wrap--hero {
  background: linear-gradient(180deg, #101010 0%, #191919 100%);
  padding-top: 34px;
  padding-bottom: 34px;
}

.hv3-wrap--categories {
  background: #f3f3f1;
}

.hv3-wrap--process {
  background: #ece8e1;
}

.hv3-wrap--cta {
  background: #101010;
}

.hv3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-family: var(--font-semi);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}

.hv3-kicker::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}

.hv3-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  background: var(--charcoal);
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hv3-hero-left {
  padding: 56px 52px;
  border-right: 1px solid var(--iron);
}

.hv3-hero-right {
  padding: 52px 38px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hv3-hero h1 {
  margin: 0 0 24px;
  font-family: var(--font-head);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hv3-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hv3-hero p {
  margin: 0 0 14px;
  max-width: 860px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #a8a8a8;
}

.hv3-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hv3-pills span {
  padding: 9px 14px;
  border: 1px solid #444;
  border-radius: 2px;
  background: var(--iron);
  color: var(--light);
  font-family: var(--font-semi);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hv3-hero-cta-head {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
}

.hv3-hero-cta-sub {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--mid);
}

.hv3-btn-primary {
  display: block;
  width: 100%;
  padding: 17px 22px;
  border-radius: 3px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}

.hv3-btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

.hv3-btn-outline {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px 22px;
  border: 1.5px solid var(--iron);
  border-radius: 3px;
  background: transparent;
  color: var(--light) !important;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}

.hv3-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
}

.hv3-hero-rule {
  height: 1px;
  margin: 24px 0;
  background: var(--iron);
}

.hv3-contact-item {
  padding: 11px 0;
  border-bottom: 1px solid var(--iron);
  font-family: var(--font-semi);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}

.hv3-contact-item a {
  display: block;
  margin-top: 4px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

.hv3-contact-item:last-child {
  border-bottom: none;
}

.hv3-section-head {
  margin: 0 0 32px;
}

.hv3-section-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-section-head p {
  margin: 0;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.hv3-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hv3-cats a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--black);
  text-decoration: none;
  transition: background .18s, border-color .18s;
}

.hv3-cats a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .18s;
}

.hv3-cats a:hover {
  background: var(--orange-lt);
  border-color: var(--orange);
}

.hv3-cats a:hover::before {
  background: var(--orange);
}

.hv3-cats strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hv3-cats span {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
}

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

.hv3-story-card {
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hv3-story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hv3-story-body {
  padding: 24px 22px;
}

.hv3-story-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-story-body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.hv3-story-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-family: var(--font-semi);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.hv3-two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.hv3-card-main,
.hv3-card-side {
  padding: 36px 34px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hv3-card-side {
  background: var(--charcoal);
  border-color: var(--iron);
}

.hv3-card-main h2 {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-card-side h2 {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}

.hv3-card-main h3 {
  display: inline-block;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-card-side h3 {
  margin: 24px 0 12px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--orange);
}

.hv3-card-main p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.85;
  color: #444;
}

.hv3-card-side p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.85;
  color: #b0b0b0;
}

.hv3-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 14px;
}

.hv3-checklist div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-family: var(--font-semi);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-checklist div::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--orange);
  clip-path: polygon(0 50%, 35% 100%, 100% 10%, 80% 0, 35% 75%, 20% 40%);
}

.hv3-link-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.hv3-link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid #3f3f3f;
  background: var(--steel);
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-semi);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .18s, color .18s;
}

.hv3-link-stack a::after {
  content: "→";
  color: var(--orange);
}

.hv3-link-stack a:hover {
  background: var(--iron);
  color: var(--white);
}

.hv3-form-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.hv3-form-card {
  padding: 36px 34px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hv3-form-card h2 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--black);
}

.hv3-form-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
  color: #555;
}

.hv3-form {
  display: grid;
  gap: 8px;
}

.hv3-form input,
.hv3-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 15px;
  border: 1.5px solid var(--rule);
  border-radius: 2px;
  outline: none;
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color .2s, background .2s;
}

.hv3-form input:focus,
.hv3-form textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.hv3-form textarea {
  min-height: 148px;
  resize: vertical;
}

.hv3-form button {
  padding: 16px 22px;
  border: none;
  border-radius: 2px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
}

.hv3-form button:hover {
  background: var(--orange-dk);
}

.hv3-form-small {
  margin-top: 10px;
  font-family: var(--font-semi);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .03em;
  color: var(--mid);
}

.hv3-form-small strong {
  color: var(--black);
}

.hv3-form-content {
  padding: 40px 36px;
  border: 1px solid var(--iron);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.hv3-form-content h2 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  line-height: .97;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}

.hv3-form-content p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.85;
  color: #b0b0b0;
}

.hv3-form-content h3 {
  margin: 28px 0 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

.hv3-feat-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hv3-feat-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #3a3a3a;
  background: var(--steel);
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-semi);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .18s, color .18s;
}

.hv3-feat-links a::after {
  content: "→";
  color: var(--orange);
}

.hv3-feat-links a:hover {
  background: var(--iron);
  color: var(--white);
}

@media (max-width: 1200px) {
  .hv3-wrap {
    padding: 48px 24px;
  }

  .hv3-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .hv3-hero-left {
    padding: 48px 42px;
  }

  .hv3-hero-right {
    padding: 42px 30px;
  }

  .hv3-card-main,
  .hv3-card-side,
  .hv3-form-card,
  .hv3-form-content {
    padding: 32px 28px;
  }
}

@media (max-width: 1080px) {
  .hv3-cats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hv3-hero h1 {
    font-size: clamp(44px, 5vw, 68px);
  }

  .hv3-card-main h2,
  .hv3-card-side h2,
  .hv3-form-card h2,
  .hv3-form-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .hv3-wrap {
    padding: 36px 18px;
  }

  .hv3-hero,
  .hv3-two-col,
  .hv3-form-wrap {
    grid-template-columns: 1fr;
  }

  .hv3-hero-left {
    padding: 36px 28px;
    border-right: none;
    border-bottom: 1px solid var(--iron);
  }

  .hv3-hero-right {
    padding: 30px 28px;
  }

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

  .hv3-story-grid {
    grid-template-columns: 1fr;
  }

  .hv3-pills {
    gap: 10px;
  }

  .hv3-pills span {
    flex: 0 1 auto;
  }
}

@media (max-width: 768px) {
  .hv3-wrap {
    padding: 32px 16px;
  }

  .hv3-wrap--hero {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hv3-hero-left,
  .hv3-hero-right,
  .hv3-card-main,
  .hv3-card-side,
  .hv3-form-card,
  .hv3-form-content {
    padding: 28px 22px;
  }

  .hv3-hero h1 {
    font-size: clamp(40px, 9vw, 56px);
    line-height: .98;
  }

  .hv3-section-head h2,
  .hv3-card-main h2,
  .hv3-card-side h2,
  .hv3-form-card h2,
  .hv3-form-content h2 {
    font-size: 30px;
  }

  .hv3-cats a {
    min-height: 0;
    padding: 20px 18px;
  }

  .hv3-story-body {
    padding: 20px 18px;
  }

  .hv3-story-body h3 {
    font-size: 22px;
  }

  .hv3-checklist {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hv3-link-stack a,
  .hv3-feat-links a {
    padding: 15px 16px;
  }

  .hv3-form input,
  .hv3-form textarea,
  .hv3-form button {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hv3-wrap {
    padding: 28px 14px;
  }

  .hv3-hero-left,
  .hv3-hero-right,
  .hv3-card-main,
  .hv3-card-side,
  .hv3-form-card,
  .hv3-form-content {
    padding: 24px 18px;
  }

  .hv3-kicker {
    font-size: 12px;
    letter-spacing: .16em;
  }

  .hv3-kicker::before {
    width: 16px;
  }

  .hv3-hero h1 {
    font-size: 42px;
  }

  .hv3-hero p,
  .hv3-section-head p,
  .hv3-card-main p,
  .hv3-card-side p,
  .hv3-form-card p,
  .hv3-form-content p {
    font-size: 16px;
  }

  .hv3-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .hv3-pills span {
    width: 100%;
    text-align: center;
  }

  .hv3-cats,
  .hv3-checklist {
    grid-template-columns: 1fr;
  }

  .hv3-section-head h2 {
    font-size: 30px;
  }

  .hv3-btn-primary,
  .hv3-btn-outline,
  .hv3-form button {
    width: 100%;
  }

  .hv3-contact-item a {
    font-size: 16px;
  }

  .hv3-link-stack a,
  .hv3-feat-links a {
    font-size: 14px;
    letter-spacing: .04em;
  }
}

@media (max-width: 480px) {
  .hv3-wrap {
    padding: 24px 12px;
  }

  .hv3-hero h1 {
    font-size: 36px;
  }

  .hv3-section-head h2,
  .hv3-card-main h2,
  .hv3-card-side h2,
  .hv3-form-card h2,
  .hv3-form-content h2 {
    font-size: 26px;
  }

  .hv3-hero-cta-head {
    font-size: 24px;
  }

  .hv3-btn-primary {
    font-size: 17px;
    padding: 15px 16px;
  }

  .hv3-btn-outline {
    font-size: 15px;
    padding: 13px 16px;
  }

  .hv3-cats strong {
    font-size: 18px;
  }

  .hv3-cats span,
  .hv3-story-body p,
  .hv3-checklist div,
  .hv3-link-stack a,
  .hv3-feat-links a,
  .hv3-form-small {
    font-size: 14px;
  }
}
