/* =========================================================
   HH Snow Mokykla — design system
   Bold / raw / street-jibbing
   ========================================================= */

:root {
  /* palette */
  --hh-bg:        #fafaf8;
  --hh-bg-2:      #f0eeeb;
  --hh-bg-3:      #e8e5e2;
  --hh-ink:       #0f0f0d;
  --hh-ink-dim:   #6a6a65;
  --hh-line:      #d5d2cc;
  --hh-accent:    #cf061e;                        /* HateHard red */
  --hh-accent-2:  #9c0517;
  --hh-accent-rgb: 207 6 30;                       /* for rgba glows */
  --hh-accent-ink:#ffffff;

  /* type families (overridable via Tweaks) */
  --hh-font-display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --hh-font-body:    "Space Grotesk", system-ui, sans-serif;
  --hh-font-mono:    "Space Mono", ui-monospace, monospace;

  /* sizes */
  --hh-step--1: clamp(12px, 0.78vw, 14px);
  --hh-step-0:  clamp(15px, 1vw, 17px);
  --hh-step-1:  clamp(18px, 1.3vw, 22px);
  --hh-step-2:  clamp(24px, 2vw, 32px);
  --hh-step-3:  clamp(36px, 4vw, 56px);
  --hh-step-4:  clamp(56px, 7vw, 104px);
  --hh-step-5:  clamp(80px, 14vw, 232px);

  /* layout */
  --hh-gutter:   clamp(20px, 4vw, 64px);
  --hh-section-y: clamp(80px, 9vw, 160px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* =========================================================
   WORDPRESS BLOCK EDITOR — full-width overrides
   Užtikrina, kad WP blokų wrapper'iai neapribotų pločio
   ========================================================= */
.wp-site-blocks,
.wp-block-group,
.wp-block-group__inner-container,
.is-layout-flow,
.is-layout-constrained,
.wp-block-template-part {
  padding-inline: 0 !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

/* WordPress prideda padding prie body per --wp--style--root--padding */
body {
  padding: 0 !important;
}

/* Išjungiame WP automatinį "align" padding */
.wp-site-blocks > * { padding-block: 0; }

body {
  background: var(--hh-bg);
  color: var(--hh-ink);
  font-family: var(--hh-font-body);
  font-size: var(--hh-step-0);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--hh-accent); color: var(--hh-accent-ink); }

/* ---------- type utilities ---------- */
.hh-display {
  font-family: var(--hh-font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.86;
  text-transform: uppercase;
}
.hh-mono {
  font-family: var(--hh-font-mono);
  font-size: var(--hh-step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hh-eyebrow {
  font-family: var(--hh-font-mono);
  font-size: var(--hh-step--1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hh-eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: var(--hh-accent);
}

/* ---------- container ---------- */
.hh-wrap {
  width: 100%;
  padding-inline: var(--hh-gutter);
  max-width: 1640px;
  margin-inline: auto;
}

/* =========================================================
   NAV
   ========================================================= */
.hh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--hh-gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.hh-nav.is-stuck { border-bottom-color: var(--hh-line); }
.hh-nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--hh-font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hh-nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--hh-font-display);
  font-size: 20px;
  transform: rotate(-3deg);
}
/* Header: tik logotipas — paslepiam wordmark teksta ("HateHard / Snow mokykla") */
.hh-nav__logo > span:not(.hh-nav__logo-mark) {
  display: none;
}
/* Kai logo-mark turi paveiksla (PNG), be fono/dydzio apribojimu */
.hh-nav__logo-mark:has(img) {
  background: none;
  width: auto;
  transform: none;
}
.hh-nav__links {
  display: flex; gap: 28px;
  font-family: var(--hh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hh-nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--hh-ink-dim);
  transition: color .15s ease;
}
.hh-nav__links a:hover { color: var(--hh-ink); }
.hh-nav__links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--hh-accent);
  transition: width .2s ease;
}
.hh-nav__links a:hover::after { width: 100%; }

.hh-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  font-family: var(--hh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  transition: transform .15s ease;
}
.hh-nav__cta:hover { transform: translateY(-1px); }

@media (max-width: 900px) {
  .hh-nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hh-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 40px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hh-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(var(--hh-accent-rgb) / 0.10), transparent 70%),
    repeating-linear-gradient(135deg, #ede9e5 0 24px, #fafaf8 24px 48px);
}
.hh-hero__top {
  position: relative; z-index: 2;
  padding: 24px var(--hh-gutter) 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.hh-hero__meta {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--hh-ink-dim);
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px;
}
.hh-hero__meta span:first-child { color: var(--hh-accent); }

.hh-hero__title-wrap {
  position: relative; z-index: 2;
  padding: 0 var(--hh-gutter);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}

.hh-hero__title {
  font-family: var(--hh-font-display);
  font-weight: 400;
  font-size: var(--hh-step-5);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
.hh-hero__title .row {
  display: block;
  white-space: nowrap;
}
.hh-hero__title .row.indent { padding-left: 8vw; }
.hh-hero__title .neon {
  color: var(--hh-accent);
  font-style: italic;
}
.hh-hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--hh-ink);
}

.hh-hero__bottom {
  position: relative; z-index: 2;
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 32px;
}
.hh-hero__lead {
  max-width: 460px;
  font-size: var(--hh-step-1);
  line-height: 1.35;
  color: var(--hh-accent);
  font-weight: 700;
}
.hh-hero__lead strong { color: var(--hh-accent); font-weight: 600; }

.hh-hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-left: 0;
}
.hh-stat {
  border-top: 1px solid var(--hh-line);
  padding-top: 12px;
}
.hh-stat__num {
  font-family: var(--hh-font-display);
  font-size: var(--hh-step-3);
  line-height: 0.9;
  color: var(--hh-accent);
}
.hh-stat__label {
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
  margin-top: 8px;
}

.hh-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  font-family: var(--hh-font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--hh-accent);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.hh-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--hh-ink);
}
.hh-cta--ghost {
  background: transparent;
  color: var(--hh-ink);
  border-color: var(--hh-ink);
}
.hh-cta--ghost:hover {
  background: var(--hh-ink);
  color: var(--hh-bg);
  box-shadow: 6px 6px 0 var(--hh-accent);
}
.hh-cta__arrow { font-size: 18px; }

@media (max-width: 900px) {
  .hh-hero__bottom { grid-template-columns: 1fr; }
  .hh-hero__stats { order: 3; }
}

/* ----- marquee ----- */
.hh-marquee {
  position: relative;
  border-top: 1px solid var(--hh-line);
  border-bottom: 1px solid var(--hh-line);
  background: var(--hh-bg);
  overflow: hidden;
  padding: 20px 0;
}
.hh-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: hh-marquee 28s linear infinite;
  font-family: var(--hh-font-display);
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 1;
}
.hh-marquee__item { display: inline-flex; align-items: center; gap: 48px; }
.hh-marquee__item::after {
  content: "✦";
  color: var(--hh-accent);
  font-size: 0.6em;
}
.hh-marquee__item.italic { font-style: italic; color: var(--hh-accent); }
@keyframes hh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.hh-section {
  padding: var(--hh-section-y) 0;
  position: relative;
}
.hh-section--alt { background: var(--hh-bg-2); }

.hh-section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding: 0 var(--hh-gutter);
  margin-bottom: clamp(40px, 5vw, 80px);
}
.hh-section__title {
  font-family: var(--hh-font-display);
  font-size: var(--hh-step-4);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.hh-section__title .neon { color: var(--hh-accent); font-style: italic; }
.hh-section__lead {
  max-width: 440px;
  color: var(--hh-ink-dim);
  font-size: var(--hh-step-1);
  line-height: 1.4;
}
.hh-section__num {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
}
.hh-section__num b { color: var(--hh-accent); font-weight: 400; }

@media (max-width: 900px) {
  .hh-section__head { grid-template-columns: 1fr; }
}

/* =========================================================
   CAMPS GRID
   ========================================================= */
.hh-camps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hh-line);
  border-top: 1px solid var(--hh-line);
  border-bottom: 1px solid var(--hh-line);
}
.hh-camp {
  position: relative;
  background: var(--hh-bg);
  padding: 40px;
  min-height: 480px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s ease;
}
.hh-camp:hover { background: var(--hh-bg-3); }
.hh-camp--lg,
.hh-camp--md,
.hh-camp--sm,
.hh-camp--feature { grid-column: auto; }

.hh-camp__visual {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(250,250,248,0.92) 90%),
    repeating-linear-gradient(45deg, #ede9e5 0 12px, #f5f1ed 12px 24px);
  z-index: 0;
}
.hh-camp__visual::before {
  content: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.18);
  text-align: center;
  white-space: pre-line;
}
.hh-camp__top, .hh-camp__bottom { position: relative; z-index: 2; }
.hh-camp__top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.hh-camp__tag {
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
}
.hh-camp__tag b { color: var(--hh-accent); font-weight: 400; }

.hh-camp__title {
  font-family: var(--hh-font-display);
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hh-camp__title em { color: var(--hh-accent); font-style: italic; }
.hh-camp__desc {
  color: var(--hh-ink-dim);
  font-size: 15px;
  max-width: 380px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hh-camp__link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--hh-font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hh-ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hh-line);
  transition: border-color .2s ease, color .2s ease;
}
.hh-camp:hover .hh-camp__link {
  border-color: var(--hh-accent);
  color: var(--hh-accent);
}
.hh-camp__arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.hh-camp:hover .hh-camp__arrow { transform: translateX(6px); }

.hh-camp__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  border-top: 1px solid var(--hh-line);
  padding-top: 15px;
}
.hh-camp__price {
  font-family: var(--hh-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--hh-ink);
}
.hh-camp__register-btn {
  display: inline-flex;
  align-items: center;
  background: var(--hh-ink);
  color: #ffffff;
  border: none;
  font-family: var(--hh-font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.hh-camp__register-btn:hover {
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
}

/* ── Global Section Accordions ───────────────────────────────── */
.hh-camps-head-btn,
.hh-schedule-head-btn,
.hh-about-head-btn,
.hh-coaches-head-btn,
.hh-testimonials-head-btn,
.hh-gallery-head-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.hh-camps-head-btn .hh-section__title,
.hh-schedule-head-btn .hh-section__title,
.hh-about-head-btn .hh-section__title,
.hh-coaches-head-btn .hh-section__title,
.hh-testimonials-head-btn .hh-section__title,
.hh-gallery-head-btn .hh-section__title {
  margin: 0;
}

.hh-camps-head-btn__icon,
.hh-schedule-head-btn__icon,
.hh-about-head-btn__icon,
.hh-coaches-head-btn__icon,
.hh-testimonials-head-btn__icon,
.hh-gallery-head-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--hh-line);
  font-size: 20px;
  color: var(--hh-accent-ink);
  background: var(--hh-accent);
  transition: transform .3s ease, background .3s ease;
  margin-top: 10px;
  flex-shrink: 0;
}

.hh-camps-head-btn:hover .hh-camps-head-btn__icon,
.hh-schedule-head-btn:hover .hh-schedule-head-btn__icon,
.hh-about-head-btn:hover .hh-about-head-btn__icon,
.hh-coaches-head-btn:hover .hh-coaches-head-btn__icon,
.hh-testimonials-head-btn:hover .hh-testimonials-head-btn__icon,
.hh-gallery-head-btn:hover .hh-gallery-head-btn__icon {
  background: var(--hh-accent-2);
}

.hh-camps-head-btn[aria-expanded="true"] .hh-camps-head-btn__icon,
.hh-schedule-head-btn[aria-expanded="true"] .hh-schedule-head-btn__icon,
.hh-about-head-btn[aria-expanded="true"] .hh-about-head-btn__icon,
.hh-coaches-head-btn[aria-expanded="true"] .hh-coaches-head-btn__icon,
.hh-testimonials-head-btn[aria-expanded="true"] .hh-testimonials-head-btn__icon,
.hh-gallery-head-btn[aria-expanded="true"] .hh-gallery-head-btn__icon {
  transform: rotate(180deg);
}

.hh-camps-wrap,
.hh-schedule-wrap,
.hh-about-wrap,
.hh-coaches-wrap,
.hh-testimonials-wrap,
.hh-gallery-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
  overflow: hidden;
  visibility: hidden; /* kol suskleista — nieko nesimato (jokios nuotraukų juostos / ruoželio) */
}

.hh-camps-wrap.is-open,
.hh-schedule-wrap.is-open,
.hh-about-wrap.is-open,
.hh-coaches-wrap.is-open,
.hh-testimonials-wrap.is-open,
.hh-gallery-wrap.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
}

.hh-camps-wrap > .hh-camps,
.hh-schedule-wrap > .hh-schedule,
.hh-about-wrap > .hh-about,
.hh-coaches-wrap > .hh-coaches,
.hh-testimonials-wrap > .hh-testimonials,
.hh-gallery-wrap > .hh-gallery {
  min-height: 0;
}

@media (max-width: 1100px) {
  .hh-camps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hh-camps { grid-template-columns: 1fr; }
}

/* =========================================================
   SCHEDULE
   ========================================================= */
.hh-schedule {
  padding: 0 var(--hh-gutter);
}
.hh-schedule__filters {
  display: flex; gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hh-schedule__filter {
  background: transparent;
  border: 1px solid var(--hh-line);
  color: var(--hh-ink-dim);
  padding: 10px 18px;
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .15s ease;
}
.hh-schedule__filter:hover { border-color: var(--hh-ink); color: var(--hh-ink); }
.hh-schedule__filter.is-active {
  background: var(--hh-accent);
  border-color: var(--hh-accent);
  color: var(--hh-accent-ink);
}

.hh-schedule__list {
  border-top: 1px solid var(--hh-line);
}
.hh-event {
  display: grid;
  grid-template-columns: 80px 1.5fr 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--hh-line);
  transition: background .15s ease, padding .15s ease;
}
.hh-event:hover {
  background: var(--hh-bg-3);
  padding-left: 24px;
  padding-right: 24px;
}
.hh-event__date {
  font-family: var(--hh-font-display);
  font-size: 36px;
  line-height: 0.9;
  color: var(--hh-ink);
}
.hh-event__date small {
  display: block;
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--hh-ink-dim);
  margin-top: 4px;
  font-weight: 400;
  text-transform: uppercase;
}
.hh-event__name {
  font-family: var(--hh-font-display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.hh-event__meta {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--hh-ink-dim);
  text-transform: uppercase;
}
.hh-event__price {
  font-family: var(--hh-font-display);
  font-size: 22px;
  color: var(--hh-accent);
}
.hh-event__status {
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--hh-line);
}
.hh-event__status--open { color: var(--hh-accent); border-color: var(--hh-accent); }
.hh-event__status--few  { color: #ffb547; border-color: #ffb547; }
.hh-event__status--full { color: var(--hh-ink-dim); }

/* Registracijos mygtukas (veda į išorinį URL arba atidaro vidinę formą) */
.hh-event__reg {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 16px;
  border: 1px solid var(--hh-accent);
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.hh-event__reg:hover {
  background: transparent;
  color: var(--hh-accent);
  border-color: var(--hh-accent);
}
.hh-event__reg--off {
  background: transparent;
  border-color: var(--hh-line);
  color: var(--hh-ink-dim);
  cursor: not-allowed;
}
.hh-event__reg--off:hover {
  background: transparent;
  color: var(--hh-ink-dim);
  border-color: var(--hh-line);
}
/* Užpildyta, bet su nuoroda — „Sužinoti daugiau" (paspaudžiamas) */
.hh-event__reg--more {
  background: transparent;
  border-color: var(--hh-ink);
  color: var(--hh-ink);
  cursor: pointer;
}
.hh-event__reg--more:hover {
  background: var(--hh-ink);
  color: var(--hh-bg);
  border-color: var(--hh-ink);
}

@media (max-width: 900px) {
  .hh-event {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hh-event__name { grid-column: 1 / -1; }
  .hh-event__meta { grid-column: 1 / -1; }
  .hh-event__reg  { grid-column: 1 / -1; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.hh-about {
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.hh-about__text p {
  font-size: var(--hh-step-1);
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 56ch;
}
.hh-about__text p.lead {
  font-family: var(--hh-font-display);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hh-about__text p.lead em { color: var(--hh-accent); font-style: italic; }

.hh-about__visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, transparent 60%, rgba(250,250,248,0.82)),
    repeating-linear-gradient(135deg, #ede9e5 0 16px, #f5f1ed 16px 32px);
  position: relative;
}
.hh-about__visual::before {
  content: "02 // TEAM PHOTO / GROUP ON MOUNTAIN";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.22);
  text-align: center;
}
.hh-about__sticker {
  position: absolute;
  right: -20px; bottom: -20px;
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  padding: 18px 24px;
  font-family: var(--hh-font-display);
  font-size: 22px;
  line-height: 0.95;
  text-transform: uppercase;
  transform: rotate(-4deg);
  max-width: 220px;
}

@media (max-width: 900px) {
  .hh-about { grid-template-columns: 1fr; gap: 40px; }
  .hh-about__visual { position: static; }
}

/* =========================================================
   COACHES
   ========================================================= */
.hh-coaches {
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hh-coach {
  position: relative;
  cursor: pointer;
}
.hh-coach__photo {
  position: relative;
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, transparent 40%, rgba(250,250,248,0.94)),
    repeating-linear-gradient(45deg, #e8e4e0 0 10px, #f2eee9 10px 20px);
  overflow: hidden;
}
.hh-coach__photo::before {
  content: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.18);
  text-align: center;
}
.hh-coach__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--hh-accent);
  z-index: 2;
}
.hh-coach__name {
  font-family: var(--hh-font-display);
  font-size: var(--hh-step-3);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 16px 0 8px;
  transition: color .2s ease;
}
.hh-coach:hover .hh-coach__name { color: var(--hh-accent); }
.hh-coach__role {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
  margin-bottom: 12px;
}
.hh-coach__bio {
  color: var(--hh-ink-dim);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hh-coaches { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.hh-testimonials {
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hh-quote {
  background: var(--hh-bg-3);
  padding: 36px;
  position: relative;
  border-left: 3px solid transparent;
  transition: border-color .2s ease;
}
.hh-quote:hover { border-left-color: var(--hh-accent); }
.hh-quote__mark {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--hh-font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--hh-accent);
  opacity: 0.4;
}
.hh-quote__text {
  font-size: var(--hh-step-1);
  line-height: 1.4;
  margin: 0 0 24px;
  position: relative; z-index: 2;
}
.hh-quote__author {
  font-family: var(--hh-font-display);
  font-size: 20px;
  text-transform: uppercase;
}
.hh-quote__role {
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--hh-ink-dim);
  margin-top: 4px;
}

@media (max-width: 700px) {
  .hh-testimonials { grid-template-columns: 1fr; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.hh-gallery {
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}
.hh-gallery__tile {
  position: relative;
  background:
    linear-gradient(180deg, transparent 50%, rgba(250,250,248,0.82)),
    repeating-linear-gradient(var(--angle, 45deg), #eae6e2 0 10px, #f5f1ed 10px 20px);
  cursor: pointer;
  overflow: hidden;
}
.hh-gallery__tile::before {
  content: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.18);
  text-align: center;
  text-transform: uppercase;
}
.hh-gallery__tile::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--hh-accent);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .2s ease;
}
.hh-gallery__tile:hover::after { opacity: 0.3; }

.hh-gallery__tile--xl { grid-column: span 3; grid-row: span 2; }
.hh-gallery__tile--lg { grid-column: span 2; grid-row: span 2; }
.hh-gallery__tile--md { grid-column: span 2; grid-row: span 1; }
.hh-gallery__tile--sm { grid-column: span 1; grid-row: span 1; }

@media (max-width: 900px) {
  .hh-gallery { grid-template-columns: repeat(2, 1fr); }
  .hh-gallery__tile { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* =========================================================
   SHOP TEASER (HateHard rūbai)
   ========================================================= */
.hh-shop {
  padding: 0 var(--hh-gutter);
}
.hh-shop__inner {
  position: relative;
  padding: clamp(60px, 8vw, 120px) clamp(32px, 5vw, 80px);
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hh-shop__title {
  font-family: var(--hh-font-display);
  font-size: clamp(60px, 9vw, 144px);
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0;
}
.hh-shop__title em { font-style: italic; }
.hh-shop__copy {
  font-size: var(--hh-step-1);
  line-height: 1.4;
  margin: 24px 0 32px;
  max-width: 460px;
}
.hh-shop__cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--hh-accent-ink);
  color: var(--hh-accent);
  padding: 18px 28px;
  font-family: var(--hh-font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform .15s ease;
}
.hh-shop__cta:hover { transform: translateY(-2px); }
.hh-shop__visual {
  position: relative;
  aspect-ratio: 4/5;
  width: min(450px, 100%);
  justify-self: center;
  background:
    repeating-linear-gradient(60deg, rgba(0,0,0,0.06) 0 20px, transparent 20px 40px);
  border: 1px dashed rgba(0,0,0,0.4);
}
@media (max-width: 900px) {
  .hh-shop__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.hh-faq {
  padding: 0 var(--hh-gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.hh-faq__intro {
  position: sticky; top: 100px;
}
.hh-faq__intro h2 {
  font-family: var(--hh-font-display);
  font-size: var(--hh-step-4);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.hh-faq__intro h2 .neon { color: var(--hh-accent); font-style: italic; }
.hh-faq__intro p {
  color: var(--hh-ink-dim);
  font-size: var(--hh-step-0);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hh-faq__list { border-top: 1px solid var(--hh-line); }
.hh-faq__item {
  border-bottom: 1px solid var(--hh-line);
}
.hh-faq__q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--hh-ink);
  text-align: left;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--hh-font-display);
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1.1;
  transition: color .15s ease;
}
.hh-faq__q:hover { color: var(--hh-accent); }
.hh-faq__icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.hh-faq__icon::before, .hh-faq__icon::after {
  content: ""; position: absolute;
  background: currentColor;
}
.hh-faq__icon::before {
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.hh-faq__icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  transition: transform .2s ease;
}
.hh-faq__item.is-open .hh-faq__icon::after { transform: translateX(-50%) scaleY(0); }
.hh-faq__item.is-open .hh-faq__q { color: var(--hh-accent); }

.hh-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--hh-ink-dim);
  font-size: var(--hh-step-0);
  line-height: 1.6;
}
.hh-faq__a-inner { padding: 0 0 28px; max-width: 60ch; }

@media (max-width: 900px) {
  .hh-faq { grid-template-columns: 1fr; gap: 32px; }
  .hh-faq__intro { position: static; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.hh-contact {
  padding: 0;
  border-top: 1px solid var(--hh-line);
  border-bottom: 1px solid var(--hh-line);
}
.hh-contact__col {
  background: var(--hh-bg);
  padding: clamp(56px, 7vw, 100px) var(--hh-gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 120px);
  align-items: start;
}
.hh-contact__col h3 {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
  margin: 0 0 16px;
  font-weight: 400;
}
.hh-contact__big {
  font-family: var(--hh-font-display);
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.hh-contact__big a { transition: color .15s ease; }
.hh-contact__big a:hover { color: var(--hh-accent); }

.hh-contact__row { margin-bottom: 0; }
.hh-contact__hint {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
}
.hh-contact__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.hh-contact__socials a {
  padding: 12px 18px;
  border: 1px solid var(--hh-line);
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .15s ease;
}
.hh-contact__socials a:hover {
  background: var(--hh-accent);
  color: var(--hh-accent-ink);
  border-color: var(--hh-accent);
}

.hh-contact__map {
  position: relative;
  min-height: 480px;
  background:
    radial-gradient(40% 40% at 50% 50%, rgba(var(--hh-accent-rgb) / 0.14), transparent 70%),
    repeating-linear-gradient(90deg, #e8e4e0 0 32px, #f5f1ed 32px 64px),
    repeating-linear-gradient(0deg, #e8e4e0 0 32px, #f5f1ed 32px 64px);
}
.hh-contact__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.hh-contact__pin-dot {
  width: 18px; height: 18px;
  background: var(--hh-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(var(--hh-accent-rgb) / 0.22), 0 0 0 14px rgba(var(--hh-accent-rgb) / 0.10);
}
.hh-contact__pin-label {
  margin-top: 8px;
  background: var(--hh-bg);
  border: 1px solid var(--hh-accent);
  color: var(--hh-accent);
  padding: 6px 10px;
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hh-contact__map-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--hh-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--hh-ink-dim);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hh-contact__col { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.hh-footer {
  padding: 80px var(--hh-gutter) 32px;
  border-top: 1px solid var(--hh-line);
}
.hh-footer__big {
  font-family: var(--hh-font-display);
  font-size: clamp(80px, 15vw, 280px);
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.hh-footer__big em { color: var(--hh-accent); font-style: italic; }
.hh-footer__row {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--hh-line);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.hh-footer__row span,
.hh-footer__row a {
  font-family: var(--hh-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hh-ink-dim);
}
.hh-footer__row a:hover { color: var(--hh-accent); }

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.hh-tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 280px;
  background: #fff;
  color: #0a0a0a;
  padding: 18px;
  z-index: 100;
  display: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  box-shadow: 8px 8px 0 var(--hh-accent), 0 20px 50px rgba(0,0,0,0.5);
}
.hh-tweaks.is-open { display: block; }
.hh-tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.hh-tweaks__title {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hh-tweaks__close {
  background: none; border: none;
  font-size: 18px;
  line-height: 1; padding: 4px 8px;
  cursor: pointer;
}
.hh-tweaks__group { margin-bottom: 14px; }
.hh-tweaks__label {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #666;
}
.hh-tweaks__select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
}
