/* ================================================================
   SKE SKATES (sheskates.cz) — Premium Street Landing Page
   Palette: Off-white / Charcoal / Neon Coral Accent
   Font: Outfit (geometric sans)
   ================================================================ */

/* ---- Design tokens ------------------------------------------------ */
:root {
  --bg: #F7F5F2;
  --bg-sand: #EFEBE5;
  --bg-dark: #1A1A1A;
  --bg-dark-secondary: #242424;

  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #777777;
  --text-light: #F7F5F2;
  --text-light-muted: #AAAAAA;

  --accent: #FF4D2E;
  --accent-hover: #E63A1C;
  --accent-glow: rgba(255, 77, 46, 0.35);

  --card: #FFFFFF;
  --card-border: rgba(0,0,0,0.06);
  --card-border-strong: rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.14);
  --shadow-accent: 0 8px 32px rgba(255, 77, 46, 0.30);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- Utilities ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container.narrow { max-width: 840px; }

.center { text-align: center; }

.text-accent { color: var(--accent); }

/* ---- Buttons ------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border-strong);
  border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.btn-xl {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-full { width: 100%; }

.btn-full-mobile {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  gap: 0.375rem;
}

/* ---- Header ------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-accent { color: var(--accent); }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.desktop-nav a:hover { color: var(--text); transition: color 0.2s; }

.header-cta { display: none; }

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; padding: 0.625rem 1.25rem; font-size: 0.875rem; }
}

/* ---- Hero --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.4) 45%, rgba(26,26,26,0.15) 70%, rgba(26,26,26,0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  padding-top: 8rem;
}

.hero-meta { margin-bottom: 1.5rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.chip-live { color: rgba(255,255,255,0.9); }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  100% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.hero-lead {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-lead { font-size: 1.1875rem; }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
}

.hero-tags {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  max-width: 520px;
}

@media (min-width: 640px) {
  .hero-tags { grid-template-columns: repeat(4, 1fr); }
}

.tag-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.tag-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.01em;
}

.tag-card span {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
  font-weight: 400;
}

/* ---- Sections ----------------------------------------------------- */
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-sand {
  background: var(--bg-sand);
}

.section-header {
  max-width: 640px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-kicker.light { color: var(--accent); }

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title.light { color: var(--text-light); }

.section-title.large {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
}

.section-lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
}

.section-lead.light { color: var(--text-light-muted); }

@media (min-width: 768px) {
  .section-lead { font-size: 1.125rem; }
}

/* ---- Offer / Countdown (dark) ------------------------------------ */
.offer-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.countdown {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 76px;
}

@media (min-width: 640px) {
  .countdown-cell {
    padding: 1.25rem 1.75rem;
    min-width: 96px;
  }
}

.countdown-num {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .countdown-num { font-size: 2.75rem; }
}

.countdown-unit {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light-muted);
  margin-top: 0.375rem;
}

.countdown-caption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.offer-actions { margin-top: 2rem; }

.offer-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.offer-note strong { color: var(--text-light); }

/* ---- Cards grid --------------------------------------------------- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.cards-grid.three { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .cards-grid.three { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Feature cards ------------------------------------------------ */
.feature-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Bento Grid --------------------------------------------------- */
.bento-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
}

.bento-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-lg);
}

.bento-large {
  grid-column: 1 / -1;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.bento-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}

.bento-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  min-height: 220px;
}

@media (min-width: 768px) {
  .bento-img { min-height: auto; }
}

/* ---- For who ------------------------------------------------------ */
.forwho-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .forwho-grid { grid-template-columns: 1fr 1fr; }
}

.forwho-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.forwho-media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.forwho-content { padding-top: 0.5rem; }

.checklist {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
}

.checkmark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Pricing ------------------------------------------------------ */
.pricing-wrap {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-wrap { grid-template-columns: 1.4fr 1fr; }
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.pricing-highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
}

.pricing-header {
  padding: 2rem 2rem 1.5rem;
}

.pricing-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-label.small {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-old {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.pricing-main-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-sub {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-per-person {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

.pricing-per-person strong { color: var(--accent); }

.pricing-breakdown {
  padding: 0 2rem 1.5rem;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.breakdown-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.breakdown-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.breakdown-list li strong { color: var(--text); font-weight: 600; }

.pricing-footer {
  padding: 0 2rem 2rem;
}

.pricing-solo .pricing-header { padding-bottom: 1.5rem; }
.pricing-solo .pricing-footer { padding-top: 0; }

.guarantee {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.625rem;
  padding: 1rem;
  background: var(--bg-sand);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.guarantee svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.guarantee strong { color: var(--text); font-weight: 600; }

.pricing-deposit {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

/* ---- Testimonials ------------------------------------------------- */
.big-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.big-quote p {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--card-border-strong);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.testimonial-handle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.testimonial-handle:hover { color: var(--accent); }

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---- Dark CTA section --------------------------------------------- */
.cta-section .section-title { margin-bottom: 1rem; }
.cta-actions { margin-top: 2.5rem; }
.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

/* ---- FAQ ---------------------------------------------------------- */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--card-border-strong);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
  color: var(--text);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ---- Footer ------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--card-border);
  background: var(--card);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---- Sticky mobile CTA -------------------------------------------- */
.sticky-mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
}

/* ---- Reveal animations -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ---- Body padding for mobile CTA --------------------------------- */
body { padding-bottom: 4.5rem; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ---- Scrollbar styling -------------------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #aaa; }
