:root {
  --ink: #20342b;
  --muted: #65736b;
  --line: #dfe7dc;
  --paper: #fbfcf8;
  --white: #ffffff;
  --green: #1f7a46;
  --green-2: #84b94d;
  --red: #d83f32;
  --gold: #c99a2e;
  --shadow: 0 18px 60px rgba(32, 52, 43, .12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  left: 1rem;
  padding: .7rem .9rem;
  position: absolute;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 248, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 76px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: .75rem;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 48px;
  width: 215px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.4rem;
  font-size: .94rem;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: .55rem .75rem;
}

.button,
.button-secondary {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: .74rem 1rem;
  text-decoration: none;
}

.button {
  background: var(--ink);
  color: var(--white);
}

.button:hover {
  background: var(--green);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero {
  overflow: hidden;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 76px);
  padding: 54px 24px 42px;
}

.eyebrow {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  margin-top: 1.2rem;
  max-width: 650px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.hero-art {
  align-self: end;
  margin: 0;
}

.hero-art img {
  aspect-ratio: 5 / 3;
  display: block;
  filter: drop-shadow(0 24px 42px rgba(32, 52, 43, .12));
  height: auto;
  width: 100%;
}

.hero-art figcaption {
  color: var(--muted);
  font-size: .88rem;
  margin-top: .7rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px 24px;
}

.trust-item {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}

.trust-item strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 82px 24px;
}

.section-header {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.product-card,
.post-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(32, 52, 43, .03);
}

.feature-card,
.post-card {
  padding: 24px;
}

.feature-card p,
.post-card p,
.product-card p {
  color: var(--muted);
  margin-top: .7rem;
}

.text-link {
  color: var(--green);
  display: inline-block;
  font-weight: 850;
  margin-top: 1rem;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.feature-icon {
  align-items: center;
  background: #eef6e7;
  border: 1px solid #d2e6bd;
  border-radius: 8px;
  color: var(--green);
  display: inline-flex;
  font-size: 1.4rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 44px;
}

.product-card {
  overflow: hidden;
}

.product-media {
  align-items: center;
  aspect-ratio: 3 / 2;
  background: #eef3e8;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-media img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform .35s ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-visual {
  align-items: end;
  display: flex;
  gap: 10px;
  min-height: 130px;
}

.product-club {
  background: var(--ink);
  border-radius: 20px;
  height: 122px;
  position: relative;
  transform: rotate(28deg);
  width: 8px;
}

.product-club::after {
  background: var(--ink);
  border-radius: 16px 4px 4px 16px;
  bottom: -3px;
  content: "";
  height: 20px;
  left: -15px;
  position: absolute;
  width: 34px;
}

.product-ball {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 50%;
  height: 46px;
  width: 46px;
}

.product-rangefinder {
  background: var(--ink);
  border-radius: 8px;
  height: 76px;
  position: relative;
  width: 116px;
}

.product-rangefinder::before {
  background: var(--white);
  border: 5px solid var(--green-2);
  border-radius: 50%;
  content: "";
  height: 34px;
  left: 16px;
  position: absolute;
  top: 18px;
  width: 34px;
}

.product-rangefinder::after {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 10px;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 10px;
}

.product-watch {
  align-items: center;
  background: var(--ink);
  border-radius: 24px;
  display: flex;
  height: 112px;
  justify-content: center;
  position: relative;
  width: 84px;
}

.product-watch::before,
.product-watch::after {
  background: var(--ink);
  content: "";
  height: 44px;
  left: 26px;
  position: absolute;
  width: 32px;
}

.product-watch::before {
  border-radius: 16px 16px 0 0;
  top: -35px;
}

.product-watch::after {
  border-radius: 0 0 16px 16px;
  bottom: -35px;
}

.watch-face {
  align-items: center;
  background: #eef6e7;
  border-radius: 18px;
  color: var(--green);
  display: flex;
  font-size: .8rem;
  font-weight: 900;
  height: 68px;
  justify-content: center;
  position: relative;
  width: 60px;
  z-index: 1;
}

.product-body {
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .8rem;
}

.tag {
  background: #eef6e7;
  border: 1px solid #d2e6bd;
  border-radius: 999px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  padding: .26rem .54rem;
}

.product-card .button {
  margin-top: 1rem;
  width: 100%;
}

.editorial-note,
.meta {
  color: var(--muted);
  font-size: .9rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  overflow: hidden;
}

.post-card-art {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  margin: -24px -24px 20px;
  max-width: none;
  object-fit: cover;
  width: calc(100% + 48px);
}

.post-card .meta {
  margin-bottom: .85rem;
}

.post-card a {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.band {
  background: var(--ink);
  color: var(--white);
}

.band .section {
  padding-bottom: 68px;
  padding-top: 68px;
}

.band p {
  color: rgba(255, 255, 255, .76);
}

.newsletter {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
}

.newsletter form {
  display: flex;
  gap: .6rem;
}

.newsletter input {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  font: inherit;
  min-height: 46px;
  min-width: min(320px, 60vw);
  padding: 0 .9rem;
}

.newsletter-pending input:disabled,
.newsletter-pending button:disabled {
  cursor: not-allowed;
  opacity: .68;
}

.newsletter-status {
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  grid-column: 1 / -1;
  max-width: 680px;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-hero .section {
  padding-bottom: 58px;
  padding-top: 58px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.article {
  background: var(--white);
}

.article .section {
  max-width: 860px;
  padding-top: 58px;
}

.article-figure {
  margin: 2rem 0 2.5rem;
}

.article-figure img {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.article h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 2.4rem;
}

.article p,
.article li {
  color: #405048;
  font-size: 1.07rem;
}

.article p {
  margin-top: 1rem;
}

.article ul,
.article ol {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-inner {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: .84rem;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px 24px;
}

.legal-footer .legal-inner {
  border-top: 0;
}

.legal-inner a {
  color: inherit;
}

.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 44px 24px;
}

.footer-inner img {
  height: 42px;
  width: 188px;
}

.footer-inner p,
.footer-inner a {
  color: var(--muted);
  font-size: .94rem;
}

.footer-inner a {
  display: block;
  margin-top: .45rem;
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--green);
}

.footer-heading {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: .75rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: .5rem 24px 1rem;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: .8rem 0;
    width: 100%;
  }

  .hero-inner,
  .newsletter,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 42px;
  }

  .trust-inner,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section,
  .hero-inner,
  .footer-inner,
  .trust-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .legal-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    height: 40px;
    width: 180px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .trust-inner,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .section {
    padding-bottom: 58px;
    padding-top: 58px;
  }
}
