/* ============================================
   TRUSTTHEWEDGE.COM — CHIPSHOTS GOLF
   V3 / WEDGE-FIRST BRAND SITE
   ============================================ */

:root {
  --bg: #050708;
  --bg-2: #0a0d0e;
  --panel: #0d1112;
  --white: #f4f5f3;
  --muted: #9aa2a2;
  --line: rgba(255,255,255,.13);
  --aqua: #33e3d8;
  --aqua-soft: rgba(51,227,216,.12);
  --heading: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --pad: clamp(22px, 4vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--aqua);
  color: #00100f;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 1000;
  background-image:
    radial-gradient(rgba(255,255,255,.55) .5px, transparent .5px);
  background-size: 5px 5px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s ease, border-color .25s ease, height .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(5,7,8,.85);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading);
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: .82;
  letter-spacing: .075em;
}

.brand-wordmark strong {
  font-size: 18px;
  font-weight: 900;
}

.brand-wordmark b {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .26em;
}

.header-ig {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-ig .desktop-only {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px var(--pad) clamp(58px, 7vw, 95px);
  background:
    radial-gradient(circle at 82% 30%, rgba(51,227,216,.12), transparent 28%),
    linear-gradient(180deg, #050708 0%, #070a0b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 70%);
}

.hero-inner {
  width: 100%;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 22px;
  color: var(--aqua);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 1100px;
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(88px, 15vw, 220px);
  line-height: .72;
  letter-spacing: -.048em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

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

.hero-bottom {
  margin-top: clamp(42px, 6vw, 78px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-belief {
  margin: 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 500;
}

.circle-link {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.circle-link span {
  font-size: 9px;
  letter-spacing: .18em;
  font-weight: 800;
}

.circle-link b {
  display: block;
  margin-top: -18px;
  font-size: 20px;
  color: var(--aqua);
}

.circle-link:hover {
  background: var(--aqua);
  color: #00110f;
  border-color: var(--aqua);
}

.circle-link:hover b { color: inherit; }

.hero-mascot {
  position: absolute;
  width: min(42vw, 650px);
  right: -4vw;
  top: 13vh;
  opacity: .065;
  transform: rotate(-6deg);
  z-index: -1;
  filter: saturate(.85);
}

.hero-rule {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 26px;
  height: 1px;
  background: var(--line);
}

.section-shell {
  padding: clamp(90px, 11vw, 165px) var(--pad);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 90px);
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .2em;
  font-weight: 700;
}

.section-label span:first-child {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--aqua);
  letter-spacing: 0;
}

.belief {
  background: var(--white);
  color: #080b0c;
}

.belief-copy {
  max-width: 1250px;
  margin-left: auto;
}

.belief-small {
  margin: 0 0 26px;
  color: #697070;
  font-size: clamp(14px, 1.2vw, 17px);
}

.belief h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(70px, 11vw, 170px);
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.belief h2 strong {
  display: block;
  color: #0caea5;
  font-weight: inherit;
}

.belief-end {
  margin: 48px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.truth-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07100f;
}

.truth-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 17px 0;
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .03em;
  animation: marquee 26s linear infinite;
}

.truth-track span { white-space: nowrap; }
.truth-track i { color: var(--aqua); font-style: normal; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.shots {
  background: var(--bg);
}

.shots-grid {
  display: grid;
  grid-template-columns: minmax(160px, .4fr) 1.1fr;
  column-gap: clamp(35px, 7vw, 120px);
}

.shots-grid > .section-label {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  position: sticky;
  top: 100px;
}

.shots-head {
  grid-column: 2;
}

.shots-head h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(66px, 10vw, 145px);
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.shots-head h2 span,
.shots-head h2 strong {
  display: block;
}

.shots-head h2 strong {
  color: var(--aqua);
  font-weight: inherit;
}

.shot-notes {
  grid-column: 2;
  margin-top: clamp(75px, 10vw, 135px);
  border-top: 1px solid var(--line);
}

.shot-notes article {
  display: grid;
  grid-template-columns: 60px 210px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 115px;
  border-bottom: 1px solid var(--line);
}

.shot-notes article > span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 700;
}

.shot-notes h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 28px;
  letter-spacing: .03em;
}

.shot-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gear {
  position: relative;
  overflow: hidden;
  background: #0a0e0f;
}

.gear-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    radial-gradient(circle at 75% 45%, rgba(51,227,216,.13), transparent 33%),
    linear-gradient(120deg, transparent 0 47%, rgba(255,255,255,.025) 47% 48%, transparent 48%);
}

.gear-grid {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.section-label-inline {
  margin-bottom: 65px;
}

.gear-eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .19em;
}

.gear-copy h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(72px, 9vw, 135px);
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.gear-copy > p:not(.gear-eyebrow) {
  max-width: 460px;
  margin: 34px 0 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-arrow {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--aqua);
  padding-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.text-arrow span { color: var(--aqua); }

.gear-visual {
  min-width: 0;
}

.gear-frame {
  position: relative;
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  background: #111;
}

.gear-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(0,0,0,.28);
  pointer-events: none;
}

.gear-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}

.gear-frame:hover img { transform: scale(1.025); }

.gear-caption {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 15px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.gear-caption span:first-child { color: var(--white); }

.community {
  background: var(--white);
  color: #080b0c;
}

.community-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(35px, 8vw, 120px);
  align-items: center;
}

.community-mark {
  display: flex;
  justify-content: center;
}

.community-mark img {
  width: min(390px, 100%);
  filter: drop-shadow(0 28px 32px rgba(0,0,0,.13));
}

.community-copy .kicker { color: #0ba59d; }

.community-copy h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(65px, 9vw, 135px);
  line-height: .8;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

.community-copy h2 strong {
  color: #0caea5;
  font-weight: inherit;
}

.community-copy > p {
  max-width: 610px;
  margin: 34px 0 0;
  color: #606767;
  font-size: 16px;
  line-height: 1.75;
}

.community-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 24px;
  background: #090d0e;
  color: white;
  font-size: 13px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease;
}

.button-primary span { color: var(--aqua); }

.button-primary:hover {
  background: #11191a;
  transform: translateY(-2px);
}

.community-actions p {
  margin: 0;
  color: #747b7b;
  font-size: 12px;
  line-height: 1.6;
}

.community-actions b { color: #0b8f88; }

.final-statement {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 90px var(--pad);
  background:
    radial-gradient(circle at center, rgba(51,227,216,.085), transparent 40%),
    #050708;
}

.final-inner {
  width: 100%;
  text-align: center;
  position: relative;
}

.final-inner p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}

.final-inner h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(75px, 14vw, 215px);
  line-height: .78;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.final-inner h2 span { color: var(--aqua); }

.final-inner img {
  position: absolute;
  width: min(250px, 23vw);
  right: 4%;
  bottom: -30%;
  opacity: .09;
  transform: rotate(9deg);
}

footer {
  min-height: 105px;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 28px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-lockup img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  line-height: .82;
  font-family: var(--heading);
}

.footer-wordmark strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.footer-wordmark b {
  color: var(--aqua);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .24em;
}

.footer-right a:hover { color: var(--aqua); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .desktop-only { display: none; }

  .hero {
    min-height: 92svh;
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(82px, 19vw, 145px);
    line-height: .76;
  }

  .hero-mascot {
    width: 58vw;
    right: -16vw;
  }

  .shots-grid,
  .gear-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid > .section-label {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }

  .shots-head,
  .shot-notes { grid-column: 1; }

  .gear-copy {
    max-width: 700px;
  }

  .community-mark {
    order: 2;
    justify-content: flex-start;
  }

  .community-mark img {
    width: 250px;
  }

  .community-copy { order: 1; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }

  .site-header {
    height: 70px;
  }

  .brand-wordmark { display: none; }

  .header-ig {
    font-size: 10px;
  }

  .hero {
    padding-top: 110px;
    min-height: 88svh;
  }

  .hero h1 {
    font-size: clamp(70px, 23vw, 115px);
    line-height: .77;
  }

  .hero-bottom {
    align-items: flex-end;
  }

  .circle-link {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .hero-belief {
    font-size: 15px;
  }

  .belief h2,
  .shots-head h2,
  .gear-copy h2,
  .community-copy h2 {
    line-height: .84;
  }

  .truth-track {
    font-size: 22px;
  }

  .shot-notes article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .shot-notes h3 {
    font-size: 24px;
  }

  .shot-notes p {
    grid-column: 2;
  }

  .gear-caption {
    flex-direction: column;
    gap: 7px;
  }

  .community-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }

  .final-statement {
    min-height: 55vh;
  }

  footer {
    padding: 25px var(--pad);
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
