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

* {
  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(--red);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
h1,
h2,
h3,
.site-nav,
.button,
.call-button,
figcaption,
.share-section a {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 38px;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(10px, 1.7vw, 24px);
  align-items: center;
  font-size: 15px;
}

.site-nav a,
.call-button,
.button,
.share-section a {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 12px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid rgba(53, 184, 196, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 20px;
}

.call-button {
  border-color: var(--red);
}

.call-button img,
.button img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.reviews-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #030404;
}

.reviews-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 66%;
}

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

.reviews-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 35%, rgba(0, 0, 0, 0.44) 66%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.34));
}

.reviews-hero-copy {
  position: relative;
  z-index: 2;
  width: min(600px, calc(100% - 48px));
  padding: 140px 0 62px;
  margin-left: clamp(24px, 4.8vw, 72px);
}

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

h1 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 92px);
  font-weight: 400;
  line-height: 0.96;
}

.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;
}

.reviews-hero-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: #f2f5f5;
  font-size: 18px;
  line-height: 1.7;
}

.reviews-hero-copy .name-note {
  max-width: 430px;
  margin-top: 18px;
  color: #c8d2d4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.real-experiences {
  padding: 34px clamp(24px, 5vw, 70px) 46px;
  color: #191513;
  background: var(--paper);
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.section-title span,
.red-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--red);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.quote-grid figure {
  display: grid;
  align-content: space-between;
  min-height: 184px;
  padding: 14px 34px;
  margin: 0;
  text-align: center;
  border-right: 1px solid var(--paper-line);
}

.quote-grid figure:last-child {
  border-right: 0;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
}

figcaption {
  color: #7a1918;
  font-size: 18px;
}

.featured-recommendation {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding: clamp(44px, 6vw, 78px) clamp(24px, 8vw, 100px);
  color: #f8fafa;
  background: #070808;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.recommendation-label h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
}

.recommendation-label .red-rule {
  margin: 20px 0 22px;
}

.recommendation-label p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: #dde4e5;
  font-size: 17px;
  line-height: 1.6;
}

.recommendation-quote {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  color: #15120f;
  background: #ffffff;
  border-top: 5px solid var(--red);
}

.recommendation-quote blockquote {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.recommendation-quote figcaption {
  margin-top: 24px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.additional-recommendations {
  padding: clamp(42px, 5vw, 70px) clamp(24px, 8vw, 100px);
  color: #15120f;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
}

.recommendation-list {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 28px auto 0;
}

.additional-recommendations .recommendation-quote {
  border: 1px solid var(--paper-line);
  border-top: 5px solid var(--red);
}

.relationship-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  min-height: 336px;
  background: #050606;
}

.relationship-copy {
  padding: clamp(44px, 5vw, 70px) clamp(24px, 5vw, 56px);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%), #070808;
}

.relationship-copy h2,
.review-proof h2,
.share-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.04;
  text-transform: none;
}

.relationship-copy .red-rule {
  margin: 22px 0 24px;
}

.relationship-copy p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #f2f5f5;
  font-size: 17px;
  line-height: 1.55;
}

.relationship-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #15120f;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
}

.review-proof article {
  min-height: 210px;
  padding: 38px clamp(24px, 4vw, 54px);
  border-right: 1px solid var(--paper-line);
}

.review-proof article:last-child {
  border-right: 0;
}

.review-proof h2 {
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}

.review-proof p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.share-section {
  display: grid;
  grid-template-columns: 120px minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px clamp(24px, 8vw, 100px);
  color: #1b1715;
  background: var(--paper);
}

.share-mark {
  display: grid;
  place-items: center;
  height: 96px;
  color: var(--red);
  border-right: 1px solid var(--paper-line);
  font-size: 48px;
}

.share-section h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.share-section p {
  max-width: 620px;
  margin: 8px 0 14px;
  font-size: 16px;
  line-height: 1.5;
}

.share-section a {
  color: #9a1919;
  font-size: 18px;
}

.share-section a::after {
  content: " ->";
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(150px, 0.9fr)) minmax(190px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px clamp(24px, 5vw, 64px);
  background: #030404;
  border-top: 1px solid var(--line);
}

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

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
}

.site-footer p {
  margin: 0;
  color: #d9dfdf;
  font-size: 14px;
  line-height: 1.5;
}

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

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

  .site-nav {
    flex-wrap: wrap;
  }

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

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

  .quote-grid,
  .featured-recommendation,
  .relationship-section,
  .review-proof,
  .share-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quote-grid figure {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .share-mark {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .review-proof article {
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }
}

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

  .call-button {
    width: 100%;
  }
}
