/* ============================================================
   SIDELINE SOCIETY — Design System
   Colors: Vanille #F7F2EC · Khaki #D2C7BA · Turf #60744D
           Asphalt #A1A599 · Black #000000
   Fonts: Barlow Condensed (headers) · Montserrat (body)
============================================================ */

:root {
  --vanille:   #F7F2EC;
  --khaki:     #D2C7BA;
  --turf:      #60744D;
  --turf-dark: #4f6340;
  --asphalt:   #A1A599;
  --black:     #000000;
  --white:     #FFFFFF;

  --font-display: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Montserrat', Arial, sans-serif;

  --max-w:    1120px;
  --pad:      1.5rem;
  --section:  6rem 0;
  --ease:     0.2s ease;
  --radius:   2px;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--vanille);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.75rem, 7.5vw, 6rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.625rem); }
h4 { font-size: 1rem; letter-spacing: 0.04em; }

p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #444;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--asphalt);
  display: block;
  margin-bottom: 0.875rem;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--section); }

.section-header {
  max-width: 540px;
  margin-bottom: 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1rem; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 1.875rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--turf);
  color: var(--white);
  border-color: var(--turf);
}
.btn-primary:hover {
  background: var(--turf-dark);
  border-color: var(--turf-dark);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--turf);
  color: var(--white);
  border-color: var(--turf);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ============================================================
   LOGO IMAGE
============================================================ */
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: 85px;
  margin-bottom: 1.25rem;
}

/* ============================================================
   NAVIGATION
============================================================ */

/* Nav logo mark */
.nav-logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-stretch: condensed;
  color: #000;
  line-height: 1;
}
.nlm-top {
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nlm-divider {
  display: flex;
  align-items: center;
  width: calc(100% + 1.4rem);
  margin: 0.22rem -0.7rem;
}
.nlm-line {
  flex: 1;
  height: 1.75px;
  background: #000;
}
.nlm-cap {
  display: block;
  width: 1.75px;
  height: 0.55rem;
  background: #000;
  flex-shrink: 0;
}
.nlm-bottom {
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
  /* letter-spacing set dynamically by logo-match.js to width-match SIDELINE */
}

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--vanille);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.nav-wrap.is-scrolled {
  border-bottom-color: rgba(0,0,0,0.09);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.625rem 0 0.75rem;
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav-logo { flex-shrink: 0; display: inline-flex; align-items: center; }

/* Image-based nav logo */
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav-logo-img { height: 44px; }
}

#shop,
#how-it-works {
  scroll-margin-top: 165px;
}

.nav-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--ease);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--turf); }

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform var(--ease), opacity var(--ease);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 0;
  max-width: 780px;
  margin: 0 auto;
}

.hero-content {
  width: 100%;
}

.hero-content .eyebrow { margin-bottom: 1.5rem; }

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  color: #555;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-anchor {
  font-size: 0.8125rem;
  color: var(--asphalt);
  letter-spacing: 0.01em;
}

.hero-anchor strong { color: var(--black); }

/* Decorative arch — references brand board arch motif */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-arch {
  width: 100%;
  height: 520px;
  background: var(--khaki);
  border-radius: 260px 260px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-arch::after {
  content: '';
  position: absolute;
  inset: 6px 6px 0 6px;
  background: var(--vanille);
  border-radius: 240px 240px 0 0;
  opacity: 0.35;
}

/* ============================================================
   BRAND STATEMENT STRIP
============================================================ */
.brand-strip {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
}

.brand-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  quotes: none;
}

/* ============================================================
   VALUE PROP
============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-item {
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.value-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.value-item p { font-size: 0.875rem; }

/* ============================================================
   SHOP
============================================================ */
.shop { background: var(--white); }

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}
.pkg { grid-column: span 2; }
.pkg:nth-child(4) { grid-column: 2 / span 2; }

.pkg-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.5rem;
  display: block;
}

.pkg {
  padding: 3rem 3rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pkg .btn { margin-top: auto; }

.pkg--dark {
  background: var(--asphalt);
  color: var(--black);
}

.pkg--light { background: var(--vanille); }

.pkg--featured {
  border: 2px solid var(--asphalt);
}

.pkg-badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.pkg--dark  .pkg-badge { color: var(--black); opacity: 0.55; }
.pkg--light .pkg-badge { color: var(--turf); }

.pkg-name {
  margin-bottom: 0.625rem;
  color: inherit;
}

.pkg--dark  .pkg-name { color: var(--black); }
.pkg--light .pkg-name { color: var(--black); }

.pkg-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.25rem;
  color: inherit;
}

.pkg--dark  .pkg-price { color: var(--black); }
.pkg--light .pkg-price { color: var(--black); }

.pkg-price sup {
  font-size: 1.25rem;
  vertical-align: super;
  font-weight: 600;
}

.pkg-price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 0.25rem;
}

.pkg-list {
  margin-bottom: 2.75rem;
}

.pkg-list li {
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid;
}

.pkg--dark  .pkg-list li { color: rgba(0,0,0,0.65); border-color: rgba(0,0,0,0.1); }
.pkg--light .pkg-list li { color: #555; border-color: rgba(0,0,0,0.08); }

.pkg-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}

/* Individual items */
.items-header {
  margin-bottom: 3rem;
}

.items-header h3 { margin-bottom: 0.5rem; }
.items-header p  { font-size: 0.9375rem; max-width: 480px; }

.items-category { margin-bottom: 3.5rem; }

.cat-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--asphalt);
  padding-bottom: 0.875rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: block;
  margin-bottom: 0;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

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

.item-card {
  background: var(--vanille);
  padding: 1.875rem 1.75rem;
  transition: background var(--ease);
  display: flex;
  flex-direction: column;
}

.item-card:hover { background: var(--khaki); }

.item-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.125rem;
  display: block;
}

.item-card h4 { margin-bottom: 0.625rem; }

.item-card p {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}

.shop-cta-band {
  margin-top: 1px;
  background: var(--khaki);
  border-left: 3px solid var(--turf);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.shop-cta-band p {
  font-size: 0.9375rem;
  color: #555;
  max-width: 420px;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw { background: var(--vanille); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.step {
  background: var(--vanille);
  padding: 2.5rem 2rem 3rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.step p  { font-size: 0.875rem; margin-bottom: 0; }

.step-tip {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--khaki);
  border-left: 3px solid var(--turf);
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--black);
  line-height: 1.5;
  margin-top: 1.25rem;
}
.step-tip strong {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--turf);
  white-space: nowrap;
  flex-shrink: 0;
}

.hiw-note {
  background: var(--khaki);
  border-left: 3px solid var(--turf);
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.hiw-note p {
  font-size: 0.875rem;
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TOURNAMENTS
============================================================ */
.tournaments { background: var(--khaki); }

.tournament-card {
  background: var(--vanille);
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.t-sponsor {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 0.5rem;
}

.t-name { margin-bottom: 0.5rem; }

.t-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 0.625rem;
}

.t-dates {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.tournaments-more {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.tournaments-more a {
  color: var(--turf);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--ease);
}

.tournaments-more a:hover { opacity: 0.7; }

/* ============================================================
   PARTNERSHIP
============================================================ */
.partnership { background: var(--black); color: var(--white); }

.partnership .section-header h2 { color: var(--white); }
.partnership .section-header p  { color: rgba(255,255,255,0.55); }
.partnership .eyebrow            { color: var(--asphalt); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 3rem;
}

.benefit {
  background: var(--black);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.benefit h4 { color: var(--white); margin-bottom: 0.75rem; }
.benefit p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

.partnership-cta { text-align: center; }

/* ============================================================
   TEAM
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.team-card {}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: block;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 { font-size: 1.125rem; margin-bottom: 0.3rem; }

.team-role {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 0.875rem;
  display: block;
}

.team-card p { font-size: 0.875rem; color: #555; line-height: 1.7; }

.team-cta { text-align: center; }

/* ============================================================
   NEWSLETTER
============================================================ */
/* ── Homepage partner CTA ── */
.home-partner-cta {
  background: var(--turf);
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
}

.home-partner-cta .eyebrow {
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.home-partner-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.home-partner-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.25rem;
}

/* ── Footer newsletter strip ── */
.footer-newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 0;
}

.footer-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.footer-nl-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.footer-nl-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.newsletter-copy h2 { color: var(--white); margin-bottom: 0.875rem; }
.newsletter-copy p  { color: rgba(255,255,255,0.7); font-size: 1rem; }

.newsletter-form {
  display: flex;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color var(--ease), background var(--ease);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.newsletter-form .btn {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.newsletter-form .btn:hover {
  background: var(--turf);
  border-color: var(--turf);
  color: var(--white);
}

/* ============================================================
   FOOTER
============================================================ */

/* Footer wordmark */
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  font-stretch: condensed;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-wm-l, .footer-wm-r {
  display: inline-block;
  flex-shrink: 0;
  width: 0.65em;
  height: 0.38em;
  position: relative;
}

.footer-wm-l::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0.055em;
  background: currentColor;
}
.footer-wm-l::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.055em;
  background: currentColor;
}
.footer-wm-r::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 0.055em;
  background: currentColor;
}
.footer-wm-r::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.055em;
  background: currentColor;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}


.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-nav-col { display: flex; flex-direction: column; gap: 0.875rem; }

.footer-nav-col a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--ease);
}

.footer-nav-col a:hover { color: rgba(255,255,255,0.45); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-social a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--ease);
}

.footer-social a:hover { color: rgba(255,255,255,0.45); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--ease);
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section: 5rem 0; }

  .hero-visual { display: none; }

  .value-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .steps { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: span 2; flex-direction: row; gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --section: 4rem 0;
    --pad: 1.25rem;
  }

  /* Nav */
  .nav-top-row { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 105px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--vanille);
    padding: 1.5rem var(--pad) 2rem;
    gap: 1.375rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-cta { display: none; }

  /* Hero */
  .hero { min-height: auto; padding-top: 105px; }
  .hero-inner { padding: 3.5rem 0 4rem; }

  /* Shop */
  .packages { grid-template-columns: 1fr; }
  .pkg, .pkg:nth-child(4) { grid-column: auto; }
  .items-grid { grid-template-columns: 1fr 1fr; }
  .items-grid--3 { grid-template-columns: 1fr 1fr; }
  .shop-cta-band { flex-direction: column; align-items: flex-start; }
  .shop-cta-band > .btn { align-self: center; }

  /* Value */
  .value-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }

  /* Tournament */
  .tournament-card { flex-direction: column; align-items: flex-start; }
  .t-name { font-size: 1rem; }
  .tournament-card > div:last-child { width: 100%; justify-content: center; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Footer newsletter */
  .footer-newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input {
    border-right: 1.5px solid rgba(255,255,255,0.3);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .newsletter-form .btn { border-radius: 0 0 var(--radius) var(--radius); justify-content: center; }

  /* Trust */
  .stat { padding: 0 1.75rem; }
  .stat-sep { height: 32px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-social { flex-direction: row; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BLOG — THE SIDELINE REPORT
============================================================ */

/* Article hero */
.blog-article-hero {
  padding-top: 155px;
  padding-bottom: 4rem;
  background: var(--black);
  color: var(--white);
}

.blog-article-hero .eyebrow { color: var(--asphalt); }

.blog-article-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  max-width: 780px;
}

.blog-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-top: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asphalt);
}

.breadcrumb a {
  color: var(--asphalt);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--white); }

/* Article body */
.blog-container {
  max-width: 740px;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.blog-body p {
  font-size: 1rem;
  line-height: 1.875;
  color: #444;
  margin-bottom: 1.625rem;
}

.blog-body h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: 2.75rem;
  margin-bottom: 0.875rem;
}

.blog-body h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.blog-body ul,
.blog-body ol {
  margin-bottom: 1.625rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.blog-body ol { list-style: decimal; }

.blog-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 0.5rem;
}

.blog-body strong { color: var(--black); font-weight: 600; }

/* Blog index hero */
.blog-index-hero {
  padding-top: 130px;
  padding-bottom: 5rem;
  background: var(--black);
  color: var(--white);
}
@media (max-width: 768px) {
  .blog-index-hero { padding-top: 90px; }
}

.blog-index-hero .eyebrow { color: var(--asphalt); }

.blog-index-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.blog-index-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  font-size: 1rem;
}

/* Category pill filters */
.blog-cat-filters {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.blog-cat-pill {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  border-radius: var(--radius);
}

.blog-cat-pill:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Article grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
}

.blog-card {
  background: var(--vanille);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--ease);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover { background: #f0ebe4; }

.blog-card-cat {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turf);
}

.blog-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  margin: 0;
}

.blog-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #666;
  flex: 1;
  margin: 0;
}

.blog-card-link {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--ease);
  margin-top: auto;
}

.blog-card:hover .blog-card-link { color: var(--turf); }

/* Category page hero */
.blog-cat-hero {
  padding-top: 155px;
  padding-bottom: 4rem;
  background: var(--vanille);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.blog-cat-hero .breadcrumb a { color: var(--asphalt); }
.blog-cat-hero .breadcrumb a:hover { color: var(--black); }
.blog-cat-hero .breadcrumb { color: var(--asphalt); }

.blog-cat-hero h1 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.blog-cat-hero p {
  font-size: 1rem;
  color: #666;
  max-width: 540px;
}

/* Bottom CTA band */
.blog-bottom-cta {
  background: var(--turf);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
}

.blog-bottom-cta h2 { color: var(--white); margin-bottom: 1.25rem; }

.blog-bottom-cta p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.blog-bottom-cta .btn-primary {
  background: var(--white);
  color: var(--turf);
  border-color: var(--white);
}
.blog-bottom-cta .btn-primary:hover {
  background: var(--vanille);
  border-color: var(--vanille);
}

.blog-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog Responsive ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-container { padding-top: 2.5rem; padding-bottom: 4rem; }
  .blog-article-hero h1 { font-size: clamp(1.75rem, 7vw, 2.75rem); }
}

/* ============================================================
   RESPONSIVE — Small mobile (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .hero-sub { padding: 0 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .items-grid { grid-template-columns: 1fr; }
  .items-grid--3 { grid-template-columns: 1fr; }

  .trust-stats { flex-wrap: wrap; justify-content: center; }
  .stat { width: 50%; padding: 0.875rem; }
  .stat-sep { display: none; }

  .pkg { padding: 2.25rem 1.75rem; }

  .hiw-note { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CSS PRODUCT TILES — typographic cards, no image file needed
============================================================ */
.t-product-tile {
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
}

.t-pt-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 1.5rem;
}

/* Morning Coffee Kit tile */
.t-product-tile--coffee {
  background: var(--vanille) !important;
  border: 1.5px solid var(--khaki) !important;
}

/* Beat the Heat Kit tile */
.t-product-tile--heat {
  background: var(--vanille) !important;
  border: 1.5px solid var(--khaki) !important;
}

/* Shared tile — all other CSS product tiles */
.t-product-tile--white {
  background: var(--vanille) !important;
  border: 1.5px solid var(--khaki) !important;
}

/* Bordered image — rental items on index */
.t-product-img--bordered {
  border: 1.5px solid var(--khaki) !important;
}

/* Turf green nlm bracket marks inside product tiles */
.t-product-tile .nlm-cap,
.t-product-tile .nlm-line {
  background: var(--turf);
}

.t-pt-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "HelveticaNeue-CondensedBold", "Arial Narrow", Arial, sans-serif;
  font-stretch: condensed;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  line-height: 0.88;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.2em;
  white-space: nowrap;
}

/* Kit row — uses .nlm-cap and .nlm-line from the logo divider */
.t-pt-kit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0.3em 0 0.45em;
}
.t-pt-kit-row .nlm-line {
  flex: 0 0 1.5rem;
}

.t-pt-kit-word {
  font-family: "HelveticaNeue-CondensedBold", "Arial Narrow", Arial, sans-serif;
  font-stretch: condensed;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  line-height: 1;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 0 0.4em;
}

.t-pt-tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.38rem, 0.75vw, 0.52rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}
