:root {
  --black: #030404;
  --white: #ffffff;
  --paper: #e6ded2;
  --teal: #0085CA;
  --red: #C8102E;
  --orange: #C8102E;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 62px);
  background: rgba(0, 0, 0, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 27px;
}

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

.brand strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 31px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: #d8eeee;
  font-size: 12px;
  font-weight: 800;
}

.site-nav,
.nav-menu {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 19px;
}

.site-nav a {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 226px;
  padding: 10px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid var(--line);
}

.nav-menu a {
  display: block;
  padding: 10px 16px;
  color: #f6f8f8;
  font-size: 17px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  display: block;
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.call-button img {
  width: 19px;
  height: 19px;
}

.dogs-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #050606;
}

.dogs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 4, 4, 0.96) 0%, rgba(3, 4, 4, 0.72) 28%, rgba(3, 4, 4, 0.3) 43%, rgba(3, 4, 4, 0.08) 58%, rgba(3, 4, 4, 0.02) 100%);
}

.dogs-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
}

.dogs-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.dogs-hero-copy {
  position: relative;
  z-index: 2;
  width: min(570px, calc(100% - 48px));
  padding-top: 170px;
  margin-left: clamp(24px, 7vw, 98px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.red {
  color: var(--red);
}

.teal {
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(70px, 9vw, 126px);
  font-weight: 400;
  line-height: 0.88;
}

.hero-brush-line {
  display: block;
  width: 430px;
  max-width: 92%;
  height: 20px;
  margin: 16px 0 22px;
  background: url("instinct-brush-line.png") left center / 100% 100% no-repeat;
}

.dogs-hero-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: #f2f5f5;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.dog-foundation,
.standards-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(46px, 6vw, 76px) clamp(24px, 8vw, 100px);
}

.dog-foundation {
  color: #15120f;
  background: #f7f3eb;
}

.dog-foundation h2,
.standards-section h2,
.dogs-cta h2 {
  max-width: 520px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
}

.red-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 20px 0 0;
  background: var(--red);
}

.foundation-copy {
  display: grid;
  gap: 16px;
}

.foundation-copy p {
  margin: 0;
  color: #202526;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.dog-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #080909;
}

.dog-roles article {
  display: grid;
  grid-template-rows: 360px 1fr;
  border-right: 1px solid var(--line);
}

.dog-roles article:last-child {
  border-right: 0;
}

.dog-roles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dog-roles article:nth-child(2) img {
  object-fit: cover;
  object-position: center 48%;
}

.dog-roles div {
  padding: clamp(30px, 5vw, 56px);
}

.dog-roles h2 {
  color: var(--white);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.9;
}

.dog-roles p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #e2e8e8;
  font-size: 16px;
  line-height: 1.6;
}

.dog-roles a,
.partners-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.dog-roles a::after,
.partners-link::after {
  content: " ->";
}

.standards-section {
  background: #050606;
}

.standards-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.standards-grid article {
  padding: 24px 28px;
  background: #111313;
}

.standards-grid h3 {
  color: var(--teal);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.standards-grid p {
  margin: 10px 0 0;
  color: #e8eeee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

.dogs-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(40px, 5vw, 66px) clamp(24px, 8vw, 100px);
  color: #15120f;
  background: var(--paper);
}

.small-brush {
  width: 360px;
  margin-bottom: 0;
}

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

.button.primary {
  background: var(--red);
}

.button.outline {
  color: #15120f;
  background: transparent;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(24px, 5vw, 60px);
  background: #030404;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  min-width: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav,
  .cta-actions {
    flex-wrap: wrap;
  }

  .dogs-hero-copy {
    padding-top: 72px;
    margin-left: 24px;
  }

  .dogs-hero-media {
    width: 100%;
    opacity: 0.46;
  }

  .dog-foundation,
  .dog-roles,
  .standards-section,
  .dogs-cta {
    grid-template-columns: 1fr;
  }

  .dog-roles article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .call-button {
    width: 100%;
  }

  .dog-roles article {
    grid-template-rows: 220px 1fr;
  }
}
