/*
 * PROJECT: rekovetkat.com
 * DOMAIN: rekovetkat.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Инфографика (White bg, #4361ee, #f72585, Barlow/Noto Sans)
 * - Effect: Brutalism (bold borders, offset shadows)
 * - Fonts: Barlow (heading) + Noto Sans (body)
 * - Buttons: 3D Effect
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;900&family=Noto+Sans:wght@400;500;600&display=swap');

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden !important; }

:root {
  --ninja-blue:    #4361ee;
  --slash-pink:    #f72585;
  --veggie-green:  #06d6a0;
  --blade-yellow:  #ffd60a;
  --smoke-dark:    #1a1a2e;
  --ink-black:     #0d0d0d;
  --page-white:    #ffffff;
  --off-white:     #f8f9ff;
  --muted-grey:    #6c757d;
  --border-dark:   #0d0d0d;

  --font-heading:  'Barlow', sans-serif;
  --font-body:     'Noto Sans', sans-serif;

  --radius:        4px;
  --shadow-brutal: 4px 4px 0 var(--ink-black);
  --shadow-brutal-lg: 8px 8px 0 var(--ink-black);
  --transition:    .2s ease;
  --header-height: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--page-white);
  color: var(--ink-black);
  line-height: 1.6;
  font-size: 1rem;
}

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

/* ─── MANDATORY RULES ──────────────────────────────────────── */
.article-card          { position: relative; }
.article-card__overlay { position: absolute; inset: 0; z-index: 1; }
.offer-card            { position: relative; }
.card                  { position: relative; }
.stars                 { color: #ffc107; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink-black);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: inline-block;
  border-bottom: 4px solid var(--slash-pink);
  padding-bottom: .25rem;
  margin-bottom: 2.5rem;
}

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--smoke-dark); color: var(--page-white); }
.section--dark .section-title { color: var(--page-white); border-color: var(--blade-yellow); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink-black);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-brutal);
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: var(--shadow-brutal-lg); }
.btn:active { transform: translate(2px,2px);   box-shadow: none; }

.btn--primary   { background: var(--ninja-blue); color: var(--page-white); }
.btn--secondary { background: var(--slash-pink); color: var(--page-white); }
.btn--green     { background: var(--veggie-green); color: var(--ink-black); }
.btn--outline   { background: transparent; color: var(--ink-black); }

.btn-play {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 1rem 2.75rem;
  background: var(--slash-pink);
  color: var(--page-white);
  border: 3px solid var(--ink-black);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink-black);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.btn-play:hover  { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink-black); }
.btn-play:active { transform: translate(3px,3px);   box-shadow: none; }

/* ─── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--page-white);
  border-bottom: 3px solid var(--ink-black);
  box-shadow: 0 3px 0 var(--ninja-blue);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink-black);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  position: relative;
}
.logo span { color: var(--slash-pink); }

.nav__list { display: flex; gap: 2rem; align-items: center; }
.nav__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-black);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: var(--slash-pink);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--slash-pink); }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  background: var(--ninja-blue);
  color: var(--page-white) !important;
  padding: .4rem 1rem;
  border: 2px solid var(--ink-black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-brutal);
}
.nav__link--cta:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-brutal-lg); }
.nav__link--cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle__bar { width: 26px; height: 3px; background: var(--ink-black); border-radius: 2px; transition: all var(--transition); }

/* ─── COOKIE CONSENT ───────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  background: var(--smoke-dark);
  color: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  box-shadow: var(--shadow-brutal-lg);
  padding: 1.25rem 1.5rem;
  max-width: 380px;
  width: calc(100% - 2.5rem);
}
.cookie-consent__inner { display: flex; flex-direction: column; gap: .75rem; }
.cookie-consent__text { font-size: .85rem; line-height: 1.5; margin: 0; }
.cookie-consent__text a { color: var(--blade-yellow); text-decoration: underline; }
.cookie-consent .btn { align-self: flex-end; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--off-white);
  border-bottom: 3px solid var(--ink-black);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: var(--ninja-blue);
  opacity: .07;
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-block;
  background: var(--blade-yellow);
  color: var(--ink-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border: 2px solid var(--ink-black);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink-black);
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--slash-pink); }

.hero__desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__meta-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-grey);
}
.hero__meta-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-black);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__game-card {
  background: var(--page-white);
  border: 3px solid var(--ink-black);
  border-radius: 8px;
  box-shadow: var(--shadow-brutal-lg);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

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

.hero__game-badge {
  background: var(--ninja-blue);
  color: var(--page-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 1rem;
  border-top: 2px solid var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--ninja-blue);
  border-bottom: 3px solid var(--ink-black);
  padding: 1.5rem 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.stats-bar__item { text-align: center; color: var(--page-white); }
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blade-yellow);
}
.stats-bar__label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

/* ─── FEATURE CARDS ────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-brutal-lg); }

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
}
.feature-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.feature-card__text { font-size: .9rem; color: #444; margin: 0; }

/* ─── HOW-TO STEPS ─────────────────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}

.step-card {
  background: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-brutal);
  position: relative;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -18px; left: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  background: var(--slash-pink);
  color: var(--page-white);
  width: 36px; height: 36px;
  border: 2px solid var(--ink-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.step-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.step-card__text { font-size: .9rem; color: #444; margin: 0; }

/* ─── ARTICLE CARDS ────────────────────────────────────────── */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.article-card {
  background: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.article-card:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow-brutal-lg); }

.article-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid var(--ink-black);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 180px;
}

.article-card__body { padding: 1.25rem; }

.article-card__cat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--ninja-blue);
  color: var(--page-white);
  padding: .2rem .6rem;
  border-radius: var(--radius);
  margin-bottom: .75rem;
}

.article-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.article-card__meta {
  font-size: .8rem;
  color: var(--muted-grey);
  margin-bottom: .75rem;
}

.article-card__excerpt { font-size: .9rem; color: #444; margin: 0; }

.article-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: 1rem; }

.faq__item {
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
}

.faq__question {
  width: 100%;
  text-align: left;
  background: var(--off-white);
  border: none;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--blade-yellow); }

.faq__icon {
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--page-white);
  font-size: .95rem;
  padding: 0 1.25rem;
}
.faq__item.is-open .faq__answer { max-height: 400px; padding: 1rem 1.25rem; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: var(--shadow-brutal);
    position: relative;
}
.review-card__stars { margin-bottom: .5rem; font-size: 1.1rem; }
.review-card__text { font-size: .9rem; font-style: italic; margin-bottom: 1rem; color: #333; }
.review-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
}

/* ─── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--slash-pink);
  border-top: 3px solid var(--ink-black);
  border-bottom: 3px solid var(--ink-black);
  text-align: center;
  padding: 4rem 1.25rem;
}
.cta-banner__title {
  color: var(--page-white);
  margin-bottom: 1rem;
}
.cta-banner__text {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-play {
  background: var(--blade-yellow);
  color: var(--ink-black);
  border-color: var(--ink-black);
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--smoke-dark);
  color: rgba(255,255,255,.75);
  border-top: 3px solid var(--ink-black);
  padding: 3.5rem 0 1.5rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .logo { color: var(--page-white); }
.footer-brand p { font-size: .9rem; margin-top: .75rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blade-yellow);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--blade-yellow); }

.site-footer__bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ─── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--ninja-blue);
  border-bottom: 3px solid var(--ink-black);
  padding: 3.5rem 1.25rem 3rem;
  text-align: center;
  color: var(--page-white);
}
.page-hero__title { color: var(--page-white); margin-bottom: .5rem; }
.page-hero__sub { font-size: 1.05rem; opacity: .85; max-width: 580px; margin: 0 auto; }

/* ─── ARTICLE PAGE ─────────────────────────────────────────── */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.article-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.article-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.article-content h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.article-content p  { font-size: 1rem; color: #333; line-height: 1.75; }
.article-content ul,
.article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: .4rem; font-size: 1rem; color: #333; list-style: disc; }
.article-content ol li { list-style: decimal; }

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
  font-size: .85rem;
  color: var(--muted-grey);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.article-meta__cat {
  background: var(--slash-pink);
  color: var(--page-white);
  padding: .2rem .7rem;
  border-radius: var(--radius);
  font-size: .75rem;
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  box-shadow: var(--shadow-brutal-lg);
  margin-bottom: 2rem;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  min-height: 200px;
}

/* ─── ABOUT PAGE EXTRAS ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid__text h2 { margin-bottom: 1rem; }
.about-grid__img-box {
  border: 3px solid var(--ink-black);
  border-radius: 8px;
  box-shadow: var(--shadow-brutal-lg);
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  min-height: 320px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--page-white);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-brutal);
  text-align: center;
}
.value-card__icon { font-size: 2rem; margin-bottom: .5rem; display: block; }
.value-card__title { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; margin-bottom: .3rem; }
.value-card__text { font-size: .85rem; color: #555; margin: 0; }

/* ─── HOW-TO PAGE ──────────────────────────────────────────── */
.controls-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  margin: 1.5rem 0;
}
.controls-table th {
  background: var(--ninja-blue);
  color: var(--page-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  padding: .75rem 1rem;
  text-align: left;
  font-size: .9rem;
}
.controls-table td {
  padding: .75rem 1rem;
  font-size: .95rem;
  border-top: 1px solid #e0e0e0;
}
.controls-table tr:nth-child(even) td { background: var(--off-white); }

.tip-box {
  background: var(--blade-yellow);
  border: 2px solid var(--ink-black);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-brutal);
  margin: 1.5rem 0;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.tip-box__icon { font-size: 1.5rem; flex-shrink: 0; }
.tip-box__text { font-size: .95rem; margin: 0; font-weight: 500; }

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
  border: 2px solid var(--ink-black);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--page-white);
  box-shadow: 3px 3px 0 var(--ink-black);
  transition: box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { box-shadow: 5px 5px 0 var(--ninja-blue); border-color: var(--ninja-blue); }
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info__label {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--muted-grey);
}
.contact-info__value { font-size: .95rem; }

/* ─── PRIVACY / TERMS ──────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.legal-content h1 { margin-bottom: .5rem; }
.legal-content .updated { font-size: .85rem; color: var(--muted-grey); margin-bottom: 2rem; font-family: var(--font-heading); }
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 .75rem; color: var(--ninja-blue); }
.legal-content p,
.legal-content li { font-size: .95rem; color: #333; line-height: 1.75; }
.legal-content ul { margin: .75rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: .4rem; list-style: disc; }

/* ─── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 2px solid var(--ink-black);
  padding: .6rem 1.25rem;
  font-size: .85rem;
  font-family: var(--font-heading);
  font-weight: 600;
}
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ninja-blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--muted-grey); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .hero__visual { order: -1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: var(--page-white);
    border-top: 2px solid var(--ink-black);
    border-bottom: 3px solid var(--ink-black);
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
  .nav__list.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .stats-bar__inner { justify-content: center; gap: 2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}