/* ============================================================
   Golf Selector — shared styles
   styles.css
   ============================================================ */

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

/* ── Design tokens ── */
:root {
  /* Brand palette */
  --green-deep:  #1a3a2a;
  --green-mid:   #2d5c42;
  --green-light: #4a8c63;
  --green-pale:  #c8e6d4;
  --gold:        #c9a84c;
  --gold-light:  #e8d08a;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --text-dark:   #1a1a18;
  --text-mid:    #3d3d38;
  --text-muted:  #7a7a72;

  /* Fitting-tool palette */
  --bg:          #f4f0e8;
  --card:        #fdfaf4;
  --border:      #ddd8cc;
  --dark:        #181510;
  --green:       #1e4d2b;
  --green-m:     #2d6a40;
  --green-l:     #4a9460;
  --gold2:       #b8820a;
  --gold2-light: #d4a520;
  --tan:         #ede8d8;
  --text:        #282318;
  --muted:       #7a7060;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Shared nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26,58,42,.96);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold);
  letter-spacing: .02em; text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--green-pale); text-decoration: none;
  font-size: .9rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  font-weight: 500 !important;
  padding: .55rem 1.4rem; border-radius: 2px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── Shared buttons ── */
.btn-primary {
  background: var(--gold); color: var(--green-deep);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 2.2rem; border: none; border-radius: 2px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  color: var(--green-pale); font-size: .9rem; font-weight: 400;
  text-decoration: none; letter-spacing: .04em;
  border-bottom: 1px solid rgba(200,230,212,.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ── Shared footer ── */
footer {
  background: #111c16;
  padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); text-decoration: none;
}
.footer-copy { font-size: .8rem; color: rgba(200,230,212,.35); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .8rem; color: rgba(200,230,212,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   INDEX PAGE STYLES
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh; background: var(--green-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 4rem 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.12);
}
.hero::after {
  content: ''; position: absolute; top: 10%; right: 5%;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem,5vw,4.5rem); line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem; font-weight: 300; color: var(--green-pale);
  line-height: 1.7; max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; justify-content: center; }

/* Stats strip */
.stats-strip {
  background: var(--green-mid); padding: 2rem 4rem;
  display: flex; justify-content: center; gap: 6rem;
}
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); display: block; }
.stat-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-pale); font-weight: 300; }

/* LP content sections */
section.lp-section { padding: 6rem 4rem; }
.section-eyebrow { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-light); margin-bottom: 1rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,3.5vw,2.8rem); line-height: 1.2;
  color: var(--green-deep); margin-bottom: 1.2rem; max-width: 600px;
}
.section-body { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; max-width: 560px; }

/* How it works */
.how-it-works { background: var(--white); }
.how-header { margin-bottom: 4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.step { position: relative; padding-left: 1rem; border-left: 2px solid var(--green-pale); }
.step-num-lp { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--green-pale); line-height: 1; margin-bottom: 1rem; }
.step-title-lp { font-size: 1.1rem; font-weight: 500; color: var(--green-deep); margin-bottom: .75rem; }
.step-desc-lp { font-size: .9rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* Swing analysis */
.swing-section { background: var(--green-deep); padding: 6rem 4rem; }
.swing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.swing-section .section-title { color: var(--white); }
.swing-section .section-eyebrow { color: var(--gold); }
.swing-section .section-body { color: var(--green-pale); }
.swing-upload {
  background: rgba(255,255,255,.04);
  border: 1.5px dashed rgba(201,168,76,.3); border-radius: 4px;
  padding: 3rem; text-align: center;
}
.swing-icon { width: 56px; height: 56px; margin: 0 auto 1.2rem; background: var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.swing-upload-title { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.swing-upload-sub { font-size: .85rem; color: rgba(200,230,212,.5); margin-bottom: 1.5rem; }
.metrics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.metric-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.15); border-radius: 3px; padding: .8rem; text-align: center; }
.metric-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); display: block; margin-bottom: .2rem; }
.metric-name { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,230,212,.5); }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-title { margin: 0 auto 1rem; }
.testimonials-header .section-body { margin: 0 auto; text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.testi-card { border: 1px solid var(--green-pale); border-radius: 4px; padding: 2rem; }
.testi-quote { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--text-dark); line-height: 1.6; margin-bottom: 1.5rem; }
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-author { font-size: .9rem; font-weight: 500; color: var(--green-mid); }
.testi-role { font-size: .8rem; color: var(--text-muted); }

/* CTA banner */
.cta-section { background: var(--green-deep); text-align: center; padding: 7rem 4rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(201,168,76,.07); }
.cta-section::after  { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(201,168,76,.1); }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); color: var(--white); margin-bottom: 1.2rem; position: relative; z-index: 2; }
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 1rem; font-weight: 300; color: var(--green-pale); margin-bottom: 2.5rem; position: relative; z-index: 2; }
.cta-section .btn-primary { position: relative; z-index: 2; }

/* Hero animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow  { animation: fadeUp .6s      ease both; }
.hero-title    { animation: fadeUp .6s .1s  ease both; }
.hero-subtitle { animation: fadeUp .6s .2s  ease both; }
.hero-actions  { animation: fadeUp .6s .3s  ease both; }

/* ============================================================
   FITTING PAGE STYLES
   ============================================================ */

/* Page chrome */
.tool-page { background: var(--bg); min-height: 100vh; font-family: 'Outfit', sans-serif; }
.tool-header { background: var(--green); position: relative; overflow: hidden; }
.tool-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,transparent,transparent 50px,rgba(255,255,255,.018) 50px,rgba(255,255,255,.018) 100px),
    radial-gradient(ellipse 70% 80% at 90% 50%,rgba(184,130,10,.12) 0%,transparent 70%);
}
.tool-header-inner {
  max-width: 980px; margin: 0 auto; padding: 28px 28px 24px;
  position: relative; display: flex; align-items: center; gap: 20px;
}
.tool-back-btn {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #f5f0e8; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: background .2s; flex-shrink: 0;
  text-decoration: none; display: inline-block;
}
.tool-back-btn:hover { background: rgba(255,255,255,.18); }
.tool-header-eyebrow { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold2-light); margin-bottom: 6px; font-weight: 600; }
.tool-header-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,4vw,38px); color: #f5f0e8; line-height: 1.1; font-weight: 900; }
.tool-header-title em { font-style: italic; color: var(--gold2-light); }
.tool-header-sub { margin-top: 6px; font-size: 13px; color: rgba(245,240,232,.58); font-weight: 300; max-width: 460px; line-height: 1.65; }
.progress-strip { background: rgba(0,0,0,.25); height: 4px; }
.progress-fill { height: 100%; background: linear-gradient(90deg,var(--gold2),var(--gold2-light)); transition: width .5s cubic-bezier(.4,0,.2,1); }
.tool-main { max-width: 980px; margin: 0 auto; padding: 44px 28px 80px; }

/* Quiz card */
.quiz-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: 0 6px 40px rgba(24,21,16,.09); }
.quiz-top-bar { padding: 18px 28px; border-bottom: 1px solid var(--border); background: var(--tan); display: flex; justify-content: space-between; align-items: center; }
.step-dots { display: flex; align-items: center; gap: 5px; }
.step-dot { width: 7px; height: 7px; border-radius: 50%; background: #ccc9be; transition: all .3s; flex-shrink: 0; }
.step-dot.done   { background: var(--green-l); }
.step-dot.active { background: var(--gold2); transform: scale(1.35); }
.step-text { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.question-body { padding: 38px 38px 26px; animation: qIn .28s ease both; }
@keyframes qIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }
.q-category { font-size: 10px; color: var(--green-l); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600; margin-bottom: 10px; }
.q-text { font-family: 'Playfair Display', serif; font-size: clamp(20px,2.8vw,28px); font-weight: 700; color: var(--dark); line-height: 1.22; margin-bottom: 8px; }
.q-hint { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; max-width: 500px; font-weight: 300; }
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.options-grid.single-col { grid-template-columns: 1fr; }
@media (max-width: 540px) { .options-grid { grid-template-columns: 1fr; } .question-body { padding: 24px 20px 20px; } .quiz-nav { padding: 0 20px 20px; } }
.opt-btn {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 11px;
  padding: 15px 18px; text-align: left; cursor: pointer; font-family: 'Outfit', sans-serif;
  color: var(--text); transition: all .16s ease; position: relative;
}
.opt-btn::after { content: ''; position: absolute; top: 11px; right: 12px; width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid #ccc9be; transition: all .16s; }
.opt-btn:hover { border-color: var(--gold2); background: #fdf7ea; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,130,10,.09); }
.opt-btn.selected { border-color: var(--green); background: #eef5ef; }
.opt-btn.selected::after { background: var(--green); border-color: var(--green); }
.opt-label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; padding-right: 22px; }
.opt-desc  { font-size: 12px; color: var(--muted); line-height: 1.45; font-weight: 300; }
.quiz-nav { padding: 0 38px 30px; display: flex; gap: 11px; }
.btn-back { background: transparent; border: 1.5px solid var(--border); color: var(--muted); padding: 13px 22px; border-radius: 9px; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; transition: all .16s; }
.btn-back:hover { border-color: var(--muted); color: var(--text); }
.btn-next { flex: 1; background: var(--green); border: none; color: #f5f0e8; padding: 13px 22px; border-radius: 9px; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .2px; transition: all .16s; }
.btn-next:hover:not(:disabled) { background: var(--green-m); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30,77,43,.18); }
.btn-next:disabled { opacity: .33; cursor: not-allowed; }

/* Results */
@keyframes fadeUpR { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.results-wrap { animation: fadeUpR .45s ease both; }
.summary-card { background: var(--green); border-radius: 18px; padding: 32px 36px; margin-bottom: 40px; color: #f5f0e8; position: relative; overflow: hidden; }
.summary-card::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 80px); }
.summary-card-inner { position: relative; }
.summary-eyebrow { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold2-light); font-weight: 600; margin-bottom: 6px; }
.summary-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,3.5vw,34px); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; }
.summary-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 16px 18px; }
.summary-item-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,.55); margin-bottom: 5px; font-weight: 500; }
.summary-item-value { font-size: 17px; font-weight: 700; color: #f5f0e8; line-height: 1.2; margin-bottom: 3px; }
.summary-item-sub { font-size: 11px; color: rgba(245,240,232,.5); font-weight: 300; line-height: 1.4; }
.summary-item.highlight { background: rgba(212,165,32,.18); border-color: rgba(212,165,32,.35); }
.summary-item.highlight .summary-item-value { color: var(--gold2-light); }
.section-block { margin-bottom: 44px; }
.section-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--tan); }
.section-title-r { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); }
.section-meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.ranked-list { display: flex; flex-direction: column; gap: 16px; }
.ranked-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; display: grid; grid-template-columns: 80px 1fr; overflow: hidden; transition: all .18s ease; }
.ranked-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(24,21,16,.09); border-color: var(--gold2); }
.ranked-card.rank-1 { border-color: var(--gold2); }
.ranked-card.rank-2 { border-color: #b0b8b0; }
.rank-col { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 0; gap: 6px; }
.rank-col.r1 { background: #fdf4e0; } .rank-col.r2 { background: #f0f2f0; } .rank-col.r3 { background: #f5f0ea; }
.rank-number { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; line-height: 1; }
.r1 .rank-number { color: var(--gold2); } .r2 .rank-number { color: #6a8070; } .r3 .rank-number { color: #8a7060; }
.rank-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.r1 .rank-label { color: var(--gold2); } .r2 .rank-label { color: #6a8070; } .r3 .rank-label { color: #8a7060; }
.ranked-body { padding: 20px 24px; border-left: 1px solid var(--border); }
.ranked-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.ranked-brand { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold2); margin-bottom: 2px; }
.ranked-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.ranked-visual { flex-shrink: 0; width: 48px; height: 64px; }
.ranked-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.tag { font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 20px; letter-spacing: .3px; }
.tag-flex   { background: #e8f0e8; color: #1e5030; border: 1px solid #bcd8c0; }
.tag-weight { background: #f5ece0; color: #7a4010; border: 1px solid #d8baa0; }
.tag-launch { background: #eaeef5; color: #1e3a60; border: 1px solid #b8cce0; }
.tag-feel   { background: #f0eae8; color: #603020; border: 1px solid #d8bab0; }
.ranked-desc { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.ranked-best { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12px; color: var(--green-m); font-weight: 500; line-height: 1.5; }
.ranked-best strong { color: var(--dark); font-weight: 600; }
@media (max-width: 520px) { .ranked-card { grid-template-columns: 60px 1fr; } .ranked-body { padding: 16px; } .ranked-visual { display: none; } }

/* Shaft tabs */
.shaft-tabs { display: flex; border-bottom: 1.5px solid var(--border); margin: 12px 0 0; overflow-x: auto; }
.shaft-tab { padding: 9px 16px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; border: none; background: none; font-family: 'Outfit', sans-serif; border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; white-space: nowrap; transition: all .16s; letter-spacing: .3px; }
.shaft-tab:hover { color: var(--text); }
.shaft-tab.active { color: var(--green); border-bottom-color: var(--green); }
.shaft-tab-panel { display: none; padding: 16px 0 4px; }
.shaft-tab-panel.active { display: block; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 4px; }
@media (max-width: 560px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-block { background: #eef6f0; border: 1px solid #c0dcc8; border-radius: 9px; padding: 13px 15px; }
.cons-block { background: #f8f0ee; border: 1px solid #e0c0b8; border-radius: 9px; padding: 13px 15px; }
.pc-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.pros-block .pc-heading { color: var(--green-m); } .cons-block .pc-heading { color: #8a3020; }
.pc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.pc-list li { font-size: 12.5px; color: var(--text); font-weight: 300; line-height: 1.45; padding-left: 16px; position: relative; }
.pros-block .pc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green-l); font-weight: 700; font-size: 11px; top: 1px; }
.cons-block .pc-list li::before { content: '✗'; position: absolute; left: 0; color: #c04030; font-weight: 700; font-size: 11px; top: 1px; }
.popular-block { background: #fdf6e8; border: 1px solid #e0cc98; border-radius: 9px; padding: 14px 16px; }
.popular-block .pc-heading { color: var(--gold2); }
.popular-text { font-size: 13px; color: var(--text); font-weight: 300; line-height: 1.65; }
.tour-block { background: #1a1510; border-radius: 9px; padding: 14px 16px; }
.tour-block .pc-heading { color: var(--gold2-light); }
.tour-players-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.tour-player-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #f0ece4; font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; }
.tour-note { font-size: 12px; color: rgba(240,236,228,.5); font-weight: 300; line-height: 1.6; font-style: italic; }

/* Grip cards */
.grip-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 14px; }
.grip-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: all .18s ease; }
.grip-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(24,21,16,.09); border-color: var(--gold2); }
.grip-card.top-grip { border-color: var(--gold2); }
.grip-img { height: 100px; display: flex; align-items: center; justify-content: center; position: relative; }
.grip-img.rubber-style   { background: linear-gradient(135deg,#1e2e1e 0%,#0e1e0e 100%); }
.grip-img.cord-style     { background: linear-gradient(135deg,#2e200e 0%,#1e140a 100%); }
.grip-img.wrap-style     { background: linear-gradient(135deg,#1a1e2e 0%,#0e1220 100%); }
.grip-img.oversized-style{ background: linear-gradient(135deg,#1e2820 0%,#0e1a12 100%); }
.grip-badge { position: absolute; top: 8px; right: 8px; background: var(--gold2); color: white; font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; }
.grip-info { padding: 15px 17px 17px; }
.grip-type-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold2); margin-bottom: 2px; }
.grip-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
.grip-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 9px; }
.grip-best { font-size: 11px; color: var(--green-m); font-weight: 500; padding-top: 9px; border-top: 1px solid var(--border); line-height: 1.45; }
.grip-best strong { color: var(--dark); font-weight: 600; }
.grip-card .shaft-tab.active { color: var(--gold2); border-bottom-color: var(--gold2); }
.grip-size-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-top: 2px; }
.grip-size-table th { text-align: left; padding: 7px 10px; background: var(--tan); color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); }
.grip-size-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); color: var(--text); font-weight: 300; line-height: 1.5; vertical-align: top; }
.grip-size-table tr:last-child td { border-bottom: none; }
.grip-size-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }
.grip-size-name { font-weight: 600; color: var(--dark); white-space: nowrap; }
.grip-size-diam { color: var(--gold2); font-weight: 600; font-size: 11px; white-space: nowrap; }
.grip-effect-text { font-size: 12px; color: var(--muted); line-height: 1.55; }
.wrap-list { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.wrap-item { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 13px; }
.wrap-label { font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 3px; letter-spacing: .3px; }
.wrap-effect { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.5; }
.player-effect-box { background: linear-gradient(135deg,#eef5f0 0%,#f5f5ea 100%); border: 1px solid #c8dcc0; border-radius: 9px; padding: 14px 16px; margin-top: 2px; }
.player-effect-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-m); margin-bottom: 7px; }
.player-effect-text { font-size: 13px; color: var(--text); font-weight: 300; line-height: 1.7; }

/* Iron type */
.iron-type-card { border-radius: 16px; overflow: hidden; margin-bottom: 40px; border: 1.5px solid var(--border); box-shadow: 0 4px 24px rgba(24,21,16,.08); }
.iron-type-header { padding: 20px 28px 18px; display: flex; align-items: center; gap: 16px; }
.iron-type-header.blade-style    { background: linear-gradient(135deg,#1a1510 0%,#2a2018 100%); }
.iron-type-header.cavity-style   { background: linear-gradient(135deg,#1a2a1e 0%,#1e3828 100%); }
.iron-type-header.gi-style       { background: linear-gradient(135deg,#1a2030 0%,#1e2a42 100%); }
.iron-type-header.super-gi-style { background: linear-gradient(135deg,#28181a 0%,#3a2020 100%); }
.iron-type-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.iron-type-eyebrow { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,232,.55); font-weight: 600; margin-bottom: 4px; }
.iron-type-name { font-family: 'Playfair Display', serif; font-size: clamp(20px,3vw,28px); font-weight: 900; color: #f5f0e8; line-height: 1.1; }
.iron-type-name em { font-style: italic; color: var(--gold2-light); }
.iron-type-body { background: var(--card); padding: 24px 28px 26px; }
.iron-type-desc { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 20px; max-width: 680px; }
.iron-type-traits { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 10px; margin-bottom: 20px; }
.iron-trait { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.iron-trait-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.iron-trait-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.iron-type-examples { padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.iron-type-examples strong { color: var(--dark); font-weight: 600; }
.results-footer { text-align: center; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.btn-restart { background: transparent; border: 1.5px solid var(--border); color: var(--muted); padding: 12px 32px; border-radius: 9px; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; transition: all .18s; }
.btn-restart:hover { border-color: var(--green); color: var(--green); }

/* Fitting-page landing screen */
.landing-wrap { animation: fadeUpR .5s ease both; }
.golf-scene { width: 100%; max-width: 680px; margin: 0 auto 40px; display: block; }
.landing-hero { text-align: center; margin-bottom: 36px; }
.landing-eyebrow { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold2); font-weight: 700; margin-bottom: 12px; }
.landing-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,5vw,52px); font-weight: 900; color: var(--dark); line-height: 1.1; margin-bottom: 14px; }
.landing-title em { font-style: italic; color: var(--green); }
.landing-subtitle { font-size: 16px; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 520px; margin: 0 auto; }
.covers-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 14px; margin-bottom: 36px; }
.cover-item { background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px 18px; text-align: center; transition: all .2s; }
.cover-item:hover { border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,130,10,.08); }
.cover-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.cover-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cover-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.5; }
.disclaimer-card { background: var(--green); border-radius: 16px; padding: 28px 32px; margin-bottom: 32px; position: relative; overflow: hidden; color: #f5f0e8; }
.disclaimer-card::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 80px); }
.disclaimer-inner { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start; }
@media (max-width: 480px) { .disclaimer-inner { grid-template-columns: 1fr; } .disclaimer-icon-wrap { display: none; } }
.disclaimer-icon-wrap { width: 52px; height: 52px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.disclaimer-heading { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #f5f0e8; margin-bottom: 10px; line-height: 1.2; }
.disclaimer-heading em { font-style: italic; color: var(--gold2-light); }
.disclaimer-text { font-size: 13.5px; color: rgba(245,240,232,.78); font-weight: 300; line-height: 1.75; margin-bottom: 14px; }
.disclaimer-bullets { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.disclaimer-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(245,240,232,.85); font-weight: 300; line-height: 1.5; }
.disclaimer-bullet::before { content: '✓'; color: var(--gold2-light); font-weight: 700; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.disclaimer-pga { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 16px; font-size: 13px; color: rgba(245,240,232,.7); font-weight: 300; line-height: 1.6; }
.disclaimer-pga strong { color: var(--gold2-light); font-weight: 600; }
.how-it-works-tool { margin-bottom: 36px; }
.section-label-tool { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); background: var(--card); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.step-item { padding: 20px 18px; border-right: 1px solid var(--border); }
.step-item:last-child { border-right: none; }
@media (max-width: 600px) { .steps-row { grid-template-columns: 1fr 1fr; } .step-item:nth-child(2) { border-right: none; } .step-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); } .step-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; } }
.step-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--tan); line-height: 1; margin-bottom: 6px; }
.step-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.step-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.5; }
.landing-cta-tool { text-align: center; margin-top: 8px; }
.btn-start { display: inline-block; background: var(--green); color: #f5f0e8; border: none; padding: 18px 52px; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .5px; cursor: pointer; transition: all .2s ease; box-shadow: 0 8px 24px rgba(30,77,43,.25); }
.btn-start:hover { background: var(--green-m); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(30,77,43,.32); }
.cta-note { margin-top: 12px; font-size: 12px; color: var(--muted); font-weight: 300; }
