/* Mobile Racket — shared chrome. Cream surface, purple / green / gold. */
:root {
  --purple: #4A1C6B;
  --purple-light: #6B3A8C;
  --purple-soft: #EDE6F3;
  --green: #0D5C2E;
  --green-light: #1A7A42;
  --green-soft: #E3F0E8;
  --gold: #C5A46E;
  --gold-bright: #D4B87A;
  --gold-dark: #8B6F3A;
  --black: #161616;
  --ink: #1C1916;
  --text: #2A2622;
  --muted: #5C564E;
  --cream: #F8F5F0;
  --cream-2: #F4F2EE;
  --paper: #FFFCF8;
  --line: #E4DFD6;
  --white: #FFFFFF;
  --shadow: 0 14px 36px rgba(28, 25, 22, 0.08);
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.15;
}
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--purple-light); }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--black); padding: 0.5rem 1rem; z-index: 200;
}
.skip:focus { left: 1rem; top: 1rem; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 245, 240, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 1.35rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(145deg, var(--purple), var(--green));
  border-radius: 10px; display: grid; place-items: center;
  color: #fff; font-size: 1.2rem;
  border: 1px solid rgba(197, 164, 110, 0.45);
}
.logo-text { font-family: Outfit, sans-serif; font-weight: 700; line-height: 1.05; }
.logo-text .mobile {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark); font-weight: 600;
}
.logo-text .racket { color: var(--purple); font-size: 1.15rem; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper); cursor: pointer; align-items: center; justify-content: center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  display: block; width: 18px; height: 2px; background: var(--purple); position: relative; content: "";
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.15rem 1.45rem;
  font-size: 0.9rem; font-weight: 600;
}
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--purple); }
.nav-cta {
  background: var(--gold); color: var(--black) !important; font-weight: 700;
  padding: 0.65rem 1.15rem; border-radius: 8px; font-size: 0.88rem;
  min-height: 44px; display: inline-flex; align-items: center; text-decoration: none !important;
}
.nav-cta:hover { background: var(--gold-bright); }
@media (max-width: 920px) {
  .nav-burger { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 0.75rem 1.35rem 1.1rem; gap: 0.35rem;
  }
  .nav-links a { padding: 0.65rem 0.25rem; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 48px; padding: 0.85rem 1.45rem; border-radius: 8px;
  font-weight: 700; font-size: 0.98rem; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--black) !important; }
.btn-gold:hover { background: var(--gold-bright); }
.btn-purple { background: var(--purple); color: #fff !important; }
.btn-purple:hover { background: var(--purple-light); }
.btn-ghost { background: transparent; color: var(--ink) !important; border-color: var(--line); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple) !important; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.35rem; }
section { padding: 4.25rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.55rem); margin-bottom: 0.7rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.kicker {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(197,164,110,0.16);
  border: 1px solid rgba(197,164,110,0.4); padding: 0.32rem 0.8rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero {
  padding: 4.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 70% 55% at 88% 0%, rgba(74,28,107,0.12) 0%, transparent 58%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(13,92,46,0.10) 0%, transparent 52%),
    var(--cream);
}
.hero-grid { display: grid; gap: 2.75rem; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); margin-bottom: 1.1rem; }
.hero h1 em { color: var(--purple); font-style: italic; }
.hero-lede { font-size: 1.12rem; color: var(--muted); max-width: 34rem; margin-bottom: 1.6rem; }
.hero-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.55rem; box-shadow: var(--shadow);
}
.hero-card h2 { font-family: Outfit, sans-serif; font-size: 1.15rem; margin-bottom: 0.55rem; color: var(--purple); }
.hero-card ul { list-style: none; color: var(--muted); font-size: 0.94rem; }
.hero-card li { padding: 0.28rem 0 0.28rem 1.25rem; position: relative; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.15rem; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.55rem 1.4rem;
}
.card h3 { font-family: Outfit, sans-serif; font-size: 1.12rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.94rem; }
.icon {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--green));
  color: #fff; margin-bottom: 0.9rem; font-size: 1.15rem;
}

.price-panel { background: var(--cream-2); }
.price-base {
  background: var(--paper); border: 2px solid var(--purple); border-radius: 16px;
  padding: 2rem 1.6rem; text-align: center; max-width: 520px; margin: 0 auto 1.5rem;
  box-shadow: 0 18px 40px rgba(74,28,107,0.10); position: relative;
}
.price-base .flag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 999px;
}
.price-num {
  font-family: "Playfair Display", serif; font-size: 3.1rem; color: var(--purple); line-height: 1;
  margin: 0.55rem 0 0.35rem;
}
.addons { display: grid; gap: 1rem; max-width: 820px; margin: 0 auto; }
@media (min-width: 700px) { .addons { grid-template-columns: 1fr 1fr; } }
.addon {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.45rem 1.3rem;
}
.addon .plus { font-family: Outfit, sans-serif; font-weight: 800; color: var(--green); font-size: 1.35rem; }
.addon .total { font-weight: 700; color: var(--ink); margin-top: 0.45rem; }
.rush-note {
  max-width: 820px; margin: 1.25rem auto 0; background: var(--purple-soft);
  border: 1px solid rgba(74,28,107,0.18); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; color: var(--ink); font-size: 0.95rem;
}
.fine { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 1.25rem; }

.split { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .split { grid-template-columns: 1fr 1fr; } }
.do { border-top: 4px solid var(--green); }
.dont { border-top: 4px solid #8B2E2E; }
.do h3 { color: var(--green); }
.dont h3 { color: #8B2E2E; }
.check-list, .x-list { list-style: none; margin-top: 0.7rem; }
.check-list li, .x-list li { padding: 0.38rem 0 0.38rem 1.4rem; position: relative; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.x-list li::before { content: "×"; position: absolute; left: 0; color: #8B2E2E; font-weight: 800; font-size: 1.15rem; }

.product {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--cream-2); }
.product-body { padding: 1.1rem 1.15rem 1.25rem; flex: 1; }
.product-body h3 { font-family: Outfit, sans-serif; font-size: 1.08rem; margin-bottom: 0.25rem; }
.kind { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.product-body p { color: var(--muted); font-size: 0.9rem; }
.product a.more { display: inline-block; margin-top: 0.55rem; font-size: 0.86rem; font-weight: 600; }

.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1.1rem; margin-bottom: 0.65rem;
}
.faq summary { cursor: pointer; font-weight: 650; color: var(--ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--purple); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 0.55rem; font-size: 0.95rem; }

.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.75rem 1.4rem; box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
label.field { display: block; font-size: 0.86rem; font-weight: 650; color: var(--ink); }
.field span.req { color: #8B2E2E; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; margin-top: 0.35rem; padding: 0.7rem 0.8rem; border-radius: 8px;
  border: 1px solid var(--line); background: var(--white); font: inherit; color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--purple); outline-offset: 1px; border-color: var(--purple);
}
fieldset {
  border: 1px solid var(--line); border-radius: 10px; padding: 0.9rem 1rem 1rem; margin: 0;
}
legend { font-size: 0.86rem; font-weight: 700; padding: 0 0.35rem; color: var(--ink); }
.choice { display: flex; gap: 0.55rem; align-items: flex-start; margin: 0.45rem 0; font-weight: 500; font-size: 0.94rem; }
.choice input { margin-top: 0.28rem; }
.hint { font-size: 0.86rem; color: var(--muted); margin: 0.35rem 0 0; }
.hint a { font-weight: 700; }
.attest { display: flex; gap: 0.6rem; align-items: flex-start; margin: 0.7rem 0; font-size: 0.92rem; }
.attest input { margin-top: 0.25rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.1rem; }
.mailto-fallback {
  margin-top: 1.4rem; padding-top: 1.15rem; border-top: 1px dashed var(--line);
  color: var(--muted); font-size: 0.92rem;
}
.warn {
  display: none; background: #F8E8E8; border: 1px solid #E2B4B4; color: #5C2020;
  padding: 0.7rem 0.85rem; border-radius: 8px; font-size: 0.9rem; margin-top: 0.55rem;
}
.warn.show { display: block; }
.success {
  background: var(--green-soft); border: 1px solid rgba(13,92,46,0.25);
  color: var(--green); padding: 0.85rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 650;
}

.page-hero {
  padding: 3.4rem 0 2.2rem; text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(74,28,107,0.10) 0%, transparent 60%),
    var(--cream);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.2rem); margin-bottom: 0.6rem; }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--muted); }

.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
  padding: 3.75rem 1.35rem; text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.7rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 540px; margin: 0 auto 1.25rem; }
.cta-band a.btn-gold { text-decoration: none; }

footer {
  background: var(--black); color: rgba(255,255,255,0.78);
  padding: 2.75rem 1.35rem 1.6rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; gap: 1.5rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand { font-family: Outfit, sans-serif; font-weight: 700; letter-spacing: 0.04em; color: #fff; font-size: 1.1rem; }
.footer-brand span { color: var(--gold); }
.footer-note { font-size: 0.86rem; margin-top: 0.4rem; color: rgba(255,255,255,0.58); }
footer h3 { font-family: Outfit, sans-serif; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.55rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { text-align: center; margin-top: 2rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.steps { display: grid; gap: 1.1rem; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.3rem 1.4rem; position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -0.7rem; left: 1.15rem;
  background: var(--gold); color: var(--black);
  font-family: Outfit, sans-serif; font-weight: 700; font-size: 0.8rem;
  padding: 0.22rem 0.55rem; border-radius: 5px;
}

.partner a { text-decoration: none; color: inherit; display: block; height: 100%; }
.partner:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.partner .url { color: var(--purple); font-weight: 650; font-size: 0.86rem; margin-top: 0.55rem; }
.guide-card { display: flex; flex-direction: column; gap: 0.55rem; }
.guide-card h3 { color: var(--purple); }

@media (max-width: 600px) {
  section { padding: 3.1rem 0; }
  .hero { padding: 3rem 0 2.4rem; }
}
