/* ============================================================
   URAZ HOOPS — styles
   Palette: warm off-white base, deep ink, burnt orange accent
   Type: Anton (display) + Inter (body)
   ============================================================ */

:root {
  --paper: #FAF6F0;
  --cream: #F1E9DD;
  --ink: #191B20;
  --ink-soft: #2A2D34;
  --orange: #FF5A1F;
  --orange-deep: #E04A12;
  --muted: #5C5F66;
  --muted-light: #B9BCC4;
  --line: rgba(25, 27, 32, 0.12);
  --line-light: rgba(250, 246, 240, 0.16);
  --radius: 14px;
  --display: "Anton", sans-serif;
  --body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.05; }
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.9rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; }
.accent { color: var(--orange); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 560px;
  margin-top: 14px;
}
.section-dark .section-sub,
.section-dark .about-copy p { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-solid { background: var(--orange); color: #fff; }
.btn-solid:hover { background: var(--orange-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { border-color: var(--line-light); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-word {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-word em { font-style: normal; color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.btn-nav { padding: 10px 22px; color: #fff !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
}
.hero-court {
  position: absolute;
  inset: 0;
  color: rgba(25, 27, 32, 0.07);
  pointer-events: none;
}
.hero-court svg { width: 100%; height: 100%; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(255, 90, 31, 0); }
}
.hero-sub {
  margin-top: 24px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 540px;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-points {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
}
.hero-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-points li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}
.hero-art { display: flex; justify-content: center; }
.hero-card {
  position: relative;
  background: var(--ink);
  border-radius: 22px;
  padding: 42px 36px 32px;
  width: min(330px, 100%);
  box-shadow: 0 30px 60px -20px rgba(25, 27, 32, 0.45);
  transform: rotate(3deg);
}
.hero-ball {
  width: 180px;
  margin: 0 auto;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-tag {
  margin-top: 30px;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--paper);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* ---------- Trust strip ---------- */
.strip {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track span {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.strip-track i { font-style: normal; color: rgba(255, 255, 255, 0.55); font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-cream { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 56px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-copy p + p { margin-top: 18px; }
.about-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step { border-top: 3px solid var(--orange); padding-top: 16px; }
.step-num {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.step h3 { margin: 6px 0 6px; font-size: 1.02rem; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Services cards ---------- */
.cards-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-5 .card:nth-child(4),
.cards-5 .card:nth-child(5) { grid-column: span 1; }
.card {
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--orange); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(255, 90, 31, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { color: #fff; margin-bottom: 10px; }
.card p { color: var(--muted-light); font-size: 0.95rem; }

/* ---------- Focus grid ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.focus {
  background: var(--paper);
  padding: 30px 24px;
  transition: background 0.2s ease;
}
.focus:hover { background: var(--cream); }
.focus-num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 0.06em;
}
.focus h3 { margin: 8px 0 8px; font-size: 1.05rem; }
.focus p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.benefits-intro .btn { margin-top: 28px; }
.benefits-list { list-style: none; }
.benefits-list li {
  padding: 22px 0 22px 54px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.02rem;
}
.benefits-list li:first-child { padding-top: 6px; }
.benefits-list li strong { color: var(--ink); font-weight: 800; }
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 16px no-repeat, linear-gradient(#000 0 0);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 16px no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.benefits-list li:first-child::before { top: 10px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 920px;
}
.price-card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.price-card-feature { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.price-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 999px;
}
.price-card-head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: #fff;
}
.price-card-head p { color: var(--muted-light); font-size: 0.9rem; margin-top: 6px; }
.price-rows {
  list-style: none;
  margin: 26px 0 30px;
  flex: 1;
}
.price-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}
.price-rows li:first-child { border-top: 1px solid var(--line-light); }
.price-type { font-weight: 600; font-size: 0.97rem; color: #fff; }
.price-type em { font-style: normal; color: var(--muted-light); font-weight: 500; font-size: 0.85rem; }
.price-amt {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--orange);
  white-space: nowrap;
}
.price-amt small {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-light);
  margin-left: 3px;
}
.pricing-note { margin-top: 28px; color: var(--muted-light); font-size: 0.95rem; }
.pricing-note a { color: var(--orange); font-weight: 700; }

/* ---------- Testimonials ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 14px 34px -22px rgba(25, 27, 32, 0.25);
}
.quote-stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.quote blockquote { font-size: 1rem; color: var(--ink-soft); }
.quote figcaption { margin-top: 18px; display: flex; flex-direction: column; }
.quote figcaption strong { font-weight: 800; }
.quote figcaption span { font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-intro a { color: var(--orange); font-weight: 700; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.faq-icon::before { width: 14px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.97rem;
}
.faq-item p a { color: var(--orange); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-list { list-style: none; margin-top: 36px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-list a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--orange); }
.contact-list span:not(.contact-label) { color: var(--muted-light); font-weight: 600; }

.booking-form {
  background: var(--ink-soft);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--paper);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: #fff;
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF5A1F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.field select option { color: var(--ink); background: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(250, 246, 240, 0.38); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 0.92rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: #6BE89B; }
.form-status.err { color: #FF8A65; }
.form-fineprint { margin-top: 10px; font-size: 0.82rem; color: var(--muted-light); }
.form-fineprint a { color: var(--orange); }

/* ---------- Footer ---------- */
.footer {
  background: #101216;
  color: var(--muted-light);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.footer .brand-word { color: var(--paper); font-size: 1.2rem; }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted-light);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 28px;
  font-size: 0.82rem;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .hero-ball { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .about-grid, .benefits-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .hero { padding: 140px 0 72px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; margin-top: 14px; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .cards-5 { grid-template-columns: 1fr; }
  .about-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .sticky-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .focus-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
