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

:root {
  --paper: #f3efe7;
  --paper-dim: #e5dfd3;
  --ink: #070909;
  --charcoal: #121615;
  --line: #c8c0b4;
  --muted: #494b45;
  --teal: #6fc3c7;
  --teal-deep: #2f969b;
  --yellow: #efbc2f;
  --white: #fffaf0;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Raleway", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

body.cart-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
.display-price,
.weapon-card strong,
.button,
.main-nav,
.cart-toggle,
.promo-bar {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 34px;
  padding: 6px 16px;
  background: var(--teal);
  color: var(--ink);
  font-size: 16px;
}

.promo-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.promo-bar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) auto minmax(150px, 0.9fr);
  align-items: center;
  min-height: 106px;
  padding: 0 34px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.logo-brand {
  max-width: min(34vw, 430px);
}

.site-logo {
  width: clamp(230px, 28vw, 410px);
  max-width: 100%;
  max-height: 82px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 64px);
  font-size: 20px;
}

.main-nav a {
  padding: 34px 0;
}

.main-nav a:hover {
  color: var(--teal);
}

.cart-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 20px;
}

.cart-toggle svg,
.icon-button svg,
.button svg,
.trust-row svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paper-page {
  max-width: 1480px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(7, 9, 9, 0.08);
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  gap: 28px;
  align-items: start;
  padding: 30px 34px 0;
}

.product-showcase {
  background: #ddd7cc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.main-product-shot {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--charcoal);
  border-right: 1px solid rgba(7, 9, 9, 0.18);
}

.main-product-shot img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}

.paint-callout {
  position: absolute;
  top: 54px;
  right: 28px;
  padding: 18px 26px;
  background: var(--yellow);
  color: var(--ink);
  clip-path: polygon(5% 7%, 96% 0, 91% 96%, 0 88%);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 22px 20px;
  background: var(--paper);
}

.thumb {
  aspect-ratio: 1.35 / 1;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 6px;
  background: var(--charcoal);
  overflow: hidden;
}

.thumb.active {
  border-color: var(--teal);
}

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

.weapon-picker {
  padding: 30px 32px 34px;
  background: var(--paper);
}

.scribble-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.scribble-title span {
  width: 84px;
  height: 22px;
  border-top: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.weapon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.weapon-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  text-align: center;
}

.weapon-card.active {
  border: 3px solid var(--teal-deep);
}

.weapon-card.active::before {
  content: "V";
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 900;
}

.weapon-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  border-radius: 5px;
  background: var(--ink);
}

.weapon-card strong {
  font-size: 23px;
  line-height: 0.95;
}

.weapon-card span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.product-copy {
  padding: 40px 48px 34px;
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-copy h1 {
  margin: 0;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 0.92;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-family: "Raleway", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.stars {
  color: var(--yellow);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  letter-spacing: 0;
}

.product-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1;
}

.product-copy h3 {
  margin: 4px 0 0;
  color: var(--teal-deep);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy p {
  max-width: 650px;
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.icon-grid div {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.icon-grid svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-grid div:nth-child(2) svg,
.icon-grid div:nth-child(3) svg {
  stroke: var(--teal-deep);
}

.icon-grid strong {
  max-width: 120px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  margin-top: 34px;
  padding: 30px 32px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.8);
}

.display-price {
  display: block;
  color: var(--teal-deep);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.9;
}

.price-buy label {
  display: block;
  margin-top: 10px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.quantity {
  display: grid;
  grid-template-columns: 44px 56px 44px;
  width: max-content;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.qty-button {
  min-height: 38px;
  border: 0;
  background: transparent;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
}

.qty-value {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-inline: 1px solid var(--line);
  font-weight: 900;
}

.do-it-note {
  align-self: end;
  max-width: 140px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.add-cart-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 62px;
  border: 0;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
}

.button.accent {
  background: var(--teal-deep);
}

.trust-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
}

.payment-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.payment-row span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--white);
  color: #151515;
  font-size: 13px;
  font-weight: 900;
}

.discount-box {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.75);
}

.discount-box strong {
  display: block;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.discount-box > div {
  grid-column: 1 / -1;
}

.discount-box span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.discount-box input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
}

.discount-box .form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal-deep);
  font-weight: 900;
}

.black-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 56px 68px 0;
  padding: 22px 24px;
  background: var(--ink);
  color: var(--teal);
  border-radius: var(--radius);
}

.black-strip div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 8px 18px;
  border-right: 1px solid rgba(255, 250, 240, 0.28);
}

.black-strip div:last-child {
  border-right: 0;
}

.black-strip svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.black-strip strong {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: stretch;
  min-height: 225px;
  background: var(--teal);
  border-top: 1px solid rgba(7, 9, 9, 0.15);
}

.story-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-band > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 28px 40px;
  background: var(--teal);
}

.story-band h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1;
}

.story-band p {
  max-width: 560px;
  margin: 12px 0 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 16px 24px 20px;
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand,
.site-footer p,
.site-footer nav {
  display: none;
}

.site-footer::before {
  content: "Talk shit. Measure it.";
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer::after {
  content: "How good's fishin'?";
  color: var(--teal);
  font-family: "Raleway", "Helvetica Neue", Helvetica, sans-serif;
  font-size: clamp(18px, 3vw, 30px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: 56px 28px;
}

.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.policy,
.contact-card,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.policy h1,
.contact-card h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.policy h2 {
  margin: 28px 0 8px;
  font-size: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 12px;
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw, 430px);
  height: 100vh;
  border-left: 1px solid rgba(7, 9, 9, 0.3);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 160ms ease;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  background: rgba(7, 9, 9, 0.58);
}

body.cart-open .cart-backdrop {
  display: block;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.shipping-meter {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.meter-copy {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.meter-track {
  height: 9px;
  background: #d6d0c5;
}

.meter-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal-deep);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 22px;
}

.cart-empty {
  margin-top: 32px;
  color: var(--muted);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-item h3 {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 21px;
}

.cart-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.mini-qty {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  border: 1px solid var(--line);
}

.mini-qty button {
  border: 0;
  background: transparent;
}

.mini-qty span {
  display: grid;
  place-items: center;
  min-height: 30px;
  font-weight: 900;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
}

.cart-summary {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    padding-bottom: 14px;
  }

  .sales-hero,
  .story-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-copy {
    border-left: 0;
  }

  .black-strip {
    margin-inline: 18px;
    padding-inline: 18px;
  }

  .black-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 18px;
  }

  .logo-brand {
    max-width: 100%;
  }

  .site-logo {
    width: min(56vw, 260px);
    max-height: 72px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    font-size: 18px;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .sales-hero {
    display: block;
  }

  .main-product-shot,
  .main-product-shot img {
    min-height: 430px;
  }

  .product-copy {
    padding: 30px 20px;
  }

  .thumb-row,
  .weapon-picker {
    padding-inline: 16px;
  }

  .weapon-grid,
  .icon-grid,
  .trust-row,
  .discount-box {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    grid-template-columns: 1fr;
  }

  .do-it-note {
    justify-self: center;
  }

  .paint-callout {
    top: 18px;
    right: 14px;
    font-size: 24px;
  }

  .site-footer {
    display: grid;
    text-align: center;
  }
}
