/* ==========================================================================
   ADC — Avenir Crazy Dance — Master Stylesheet
   ========================================================================== */

/* ---------- Reset & base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  color: #14171a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: #fd504f;
  color: #fff;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

/* ---------- Reusable placeholder for image slots (elegant, no external deps) ---------- */
.slot {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4f1ee 0%, #e8e3de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slot.dark {
  background: linear-gradient(135deg, #23272b 0%, #15181b 100%);
}
.slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(253, 80, 79, 0.06) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(20, 23, 26, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.slot .glyph {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fd504f;
}
.slot.dark .glyph {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.slot .glyph svg {
  width: 24px;
  height: 24px;
}
.slot.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slot.cover .glyph {
  display: none;
}

/* ---------- Animations ---------- */
@keyframes adcPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Hover helpers ---------- */
.nav-link {
  font: 600 14px/1 "Barlow";
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #14171a;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #e23c3b;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fd504f;
  color: #fff;
  font: 700 15px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 19px 32px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}
.btn-primary:hover {
  background: #e84140;
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -16px rgba(253, 80, 79, 0.85);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #14171a;
  font: 700 15px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 19px 30px;
  border-radius: 3px;
  text-decoration: none;
  border: 1.6px solid #e2e5e8;
  transition: 0.25s;
}
.btn-ghost:hover {
  border-color: #fd504f;
  color: #e23c3b;
}

.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px -30px rgba(20, 23, 26, 0.42);
  border-color: #dfe2e6;
}
.teacher-card {
  transition: transform 0.3s ease;
}
.teacher-card:hover {
  transform: translateY(-6px);
}
.gallery-tile {
  transition: transform 0.35s ease;
}
.gallery-tile:hover {
  transform: scale(0.985);
}
.gallery-tile.small:hover {
  transform: scale(0.97);
}
.event-row {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.event-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px -32px rgba(20, 23, 26, 0.42);
  border-color: #dfe2e6;
}
.event-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #14171a;
  font: 700 13px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1.6px solid #e2e5e8;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.22s;
}
.event-cta:hover {
  border-color: #fd504f;
  color: #e23c3b;
}
.post-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ebedf0;
  border-radius: 5px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px -30px rgba(20, 23, 26, 0.4);
}
.pdf-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fd504f;
  color: #fff;
  text-decoration: none;
  padding: 28px 46px;
  border-radius: 7px;
  transition: 0.25s;
  box-shadow: 0 26px 50px -22px rgba(253, 80, 79, 0.75);
}
.pdf-cta-light:hover {
  background: #e84140;
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -22px rgba(253, 80, 79, 0.9);
}
.pdf-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #14171a;
  text-decoration: none;
  padding: 28px 46px;
  border-radius: 7px;
  transition: 0.25s;
  box-shadow: 0 26px 50px -24px rgba(0, 0, 0, 0.6);
}
.pdf-cta-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -22px rgba(0, 0, 0, 0.7);
}
.input {
  width: 100%;
  padding: 14px 16px;
  font: 400 15px/1.3 "Barlow";
  color: #14171a;
  background: #fff;
  border: 1.5px solid #e3e6e9;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.input:focus {
  border-color: #fd504f;
}
.textarea {
  min-height: 130px;
  resize: vertical;
  font: 400 15px/1.5 "Barlow";
}
.select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b939b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.social-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #2c3136;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd4d8;
  font: 700 12px/1 "Barlow";
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.social-dot:hover {
  background: #fd504f;
  border-color: #fd504f;
  color: #fff;
}
.footer-legal a {
  font: 600 12.5px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9aa1a8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fd504f;
}
.pause-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 23, 26, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font: 700 12px/1 "Barlow";
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
}
.pause-btn:hover {
  background: #fd504f;
  border-color: #fd504f;
}

/* ---------- Filter tabs ---------- */
.tab {
  padding: 13px 22px;
  font: 600 15px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
  background: #fff;
  color: #5a626a;
  border: 1.5px solid #e3e6e9;
}
.tab:hover {
  border-color: #fd504f;
  color: #e23c3b;
}
.tab.active {
  background: #fd504f;
  color: #fff;
  border-color: #fd504f;
}
.tab.active:hover {
  background: #e84140;
  color: #fff;
  border-color: #e84140;
}

/* ==========================================================================
   LAYOUT — Page wrapper, containers, grids
   ========================================================================== */
.page-wrap {
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 1100px;
  margin: 0 auto;
}
.container--xs {
  max-width: 720px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 44px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand__logo {
  height: 46px;
  width: auto;
}
.brand__text {
  display: flex;
  flex-direction: column;
}
.brand__name {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.02em;
  color: #14171a;
  text-transform: uppercase;
}
.brand__dot {
  color: #fd504f;
}
.brand__sub {
  font: 600 9.5px/1 "Barlow";
  letter-spacing: 0.42em;
  color: #8b939b;
  text-transform: uppercase;
  margin-top: 3px;
}
.brand__sub--footer {
  color: #7c848b;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #14171a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mm-link {
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #14171a;
  text-decoration: none;
  padding: 9px 0;
}
.mm-link--first {
  font-size: 34px;
  padding: 12px 0;
}
.mm-link--cta {
  margin-top: 18px;
  padding: 18px 30px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: #fff;
  scroll-margin-top: 84px;
}
.deco-circle {
  position: absolute;
  top: 120px;
  left: -60px;
  width: 300px;
  height: 300px;
  border: 1.5px solid #eef0f2;
  border-radius: 50%;
  z-index: 0;
}
.hero__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 168px 44px 96px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---------- Section label (the red uppercase subtitle with chevrons) ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e23c3b;
  font: 600 13px/1 "Barlow";
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.section-label--center {
  justify-content: center;
  gap: 18px;
}
.section-label--video {
  color: #fd504f;
  margin-top: 32px;
  gap: 14px;
}
.section-label--dark {
  color: #fd504f;
}

/* Chevron containers and individual chevrons */
.chevrons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.chevron {
  width: 10px;
  height: 12px;
  background: #fd504f;
}
.chevron--hero {
  width: 11px;
  height: 13px;
}

/* Right-pointing chevron */
.chevron--r {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* Left-pointing chevron */
.chevron--l {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* Opacity levels */
.chevron--1 {
  opacity: 0.4;
}
.chevron--2 {
  opacity: 0.7;
}
.chevron--3 {
  opacity: 1;
}
/* Hero-specific opacity variants (slightly different values) */
.chevron--hero1 {
  opacity: 0.35;
}
.chevron--hero2 {
  opacity: 0.6;
}

/* ---------- Hero headings ---------- */
.hero__h1 {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: -0.012em;
  margin: 20px 0 0;
  color: #14171a;
}
.h1--light {
  display: block;
  font-weight: 300;
  font-size: clamp(52px, 6.6vw, 98px);
  line-height: 0.9;
}
.h1--bold {
  display: block;
  font-weight: 700;
  font-size: clamp(52px, 6.6vw, 98px);
  line-height: 0.9;
}

.accent {
  color: #fd504f;
}

.hero__lead {
  max-width: 480px;
  margin: 26px 0 0;
  font: 400 18px/1.65 "Barlow";
  color: #69727a;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 48px;
}

.stat__number {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #14171a;
}
.stat__label {
  font: 600 11.5px/1 "Barlow";
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa1a8;
  margin-top: 6px;
}
.stat__divider {
  width: 1px;
  height: 42px;
  background: #e6e8eb;
}

/* ---------- Hero media ---------- */
.hero__media {
  position: relative;
  min-height: 600px;
}
.hero__accent-block {
  position: absolute;
  top: -22px;
  right: -26px;
  width: 60%;
  height: 78%;
  background: #fd504f;
  border-radius: 6px;
  z-index: 0;
}
.hero__accent-border {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 118px;
  height: 118px;
  border: 1.5px solid #fd504f;
  border-radius: 6px;
  z-index: 0;
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  border-radius: 6px;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__trial {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: 0 24px 50px -22px rgba(20, 23, 26, 0.45);
}
.trial__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fd504f;
  box-shadow: 0 0 0 4px rgba(253, 80, 79, 0.22);
}
.trial__wrap {
  line-height: 1.2;
}
.trial__title {
  font: 700 14px/1 "Barlow";
  color: #14171a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.trial__sub {
  font: 500 12.5px/1 "Barlow";
  color: #8b939b;
  margin-top: 4px;
}

/* ==========================================================================
   SECTIONS — Generic
   ========================================================================== */
.section {
  scroll-margin-top: 84px;
}
.section--white {
  background: #fff;
  padding: 34px 44px 110px;
}
.section--white-top {
  background: #fff;
  padding: 100px 44px 104px;
}
.section--white-center {
  background: #fff;
  padding: 104px 44px;
  text-align: center;
}
.section--light {
  background: #f5f6f7;
  padding: 96px 44px 104px;
}
.section--light-blog {
  background: #f5f6f7;
  padding: 98px 44px 104px;
}
.section--dark {
  background: #14171a;
  padding: 104px 44px;
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 12px;
}
.section-header--team {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}
.section-header--events {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-header--between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.section-header--between-inner {
  max-width: 560px;
}

.section-title {
  font-family: "Barlow Condensed";
  font-weight: 300;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  margin: 16px 0 0;
  color: #14171a;
}
.section-title--sm {
  font-size: clamp(38px, 4.6vw, 60px);
  margin: 14px 0 0;
}
.section-title--md {
  font-size: clamp(40px, 5vw, 64px);
}
.section-title--white {
  color: #fff;
}
.section-title b {
  font-weight: 700;
}

.section-desc {
  margin: 16px auto 0;
  max-width: 560px;
  font: 400 17px/1.6 "Barlow";
  color: #69727a;
}
.section-desc--narrow {
  max-width: 540px;
}
.section-desc--xs {
  max-width: 520px;
}
.section-desc--muted {
  color: #a7aeb5;
}
.section-desc--side {
  max-width: 340px;
  font: 400 16px/1.6 "Barlow";
  color: #69727a;
  margin: 0;
}
.section-desc--tarifs {
  margin: 16px auto 36px;
  max-width: 520px;
  font: 400 17px/1.6 "Barlow";
  color: #69727a;
}
.section-desc--horaires {
  margin: 16px auto 36px;
  max-width: 520px;
  font: 400 17px/1.6 "Barlow";
  color: #a7aeb5;
}

/* ==========================================================================
   FILTER TABS
   ========================================================================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 44px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
  position: relative;
  background: #14171a;
  overflow: hidden;
}
.video-el {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  background: #14171a;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 23, 26, 0.55),
    rgba(20, 23, 26, 0.78)
  );
  cursor: pointer;
}
.video-overlay__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.play-btn {
  position: relative;
  width: 92px;
  height: 92px;
  cursor: pointer;
  pointer-events: auto;
}
.play-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fd504f;
  animation: adcPulse 2.2s ease-out infinite;
}
.play-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fd504f;
  box-shadow: 0 18px 40px -12px rgba(253, 80, 79, 0.8);
}

/* Video section title */
.video-title {
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: -0.012em;
  margin: 14px 0 0;
  color: #fff;
  line-height: 0.95;
}
.video-title__line {
  display: block;
  font-size: clamp(38px, 5vw, 62px);
}
.video-title__line--light {
  font-weight: 300;
}
.video-title__line--bold {
  font-weight: 700;
}

/* ==========================================================================
   PDF CTA (content inside the button)
   ========================================================================== */
.pdf-cta__content {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.pdf-cta__title {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.pdf-cta__sub {
  font: 600 12.5px/1 "Barlow";
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}
.pdf-cta__sub--dark {
  color: #8b939b;
  opacity: 1;
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-desc {
  margin: 18px 0 0;
  max-width: 420px;
  font: 400 17px/1.65 "Barlow";
  color: #69727a;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #ffeceb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font: 600 11.5px/1 "Barlow";
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa1a8;
}
.contact-value {
  font: 500 16px/1.4 "Barlow";
  color: #14171a;
  margin-top: 5px;
}

/* ==========================================================================
   FORM
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid #ebedf0;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 34px 64px -42px rgba(20, 23, 26, 0.45);
}
.form-title {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: #14171a;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid--mt {
  margin-top: 18px;
}
.form-label {
  display: block;
  font: 600 11.5px/1 "Barlow";
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b939b;
  margin-bottom: 9px;
}
.form-field-mt {
  margin-top: 18px;
}
.form-error {
  margin-top: 18px;
  background: #fff1f2;
  border: 1px solid #ffd9dd;
  color: #c0344a;
  font: 500 14px/1.4 "Barlow";
  padding: 12px 14px;
  border-radius: 4px;
}
.form-success {
  text-align: center;
  padding: 36px 10px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffeceb;
}
.success-title {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
  color: #14171a;
}
.success-desc {
  margin: 12px auto 0;
  max-width: 360px;
  font: 400 16px/1.6 "Barlow";
  color: #69727a;
}
.form-reset-btn {
  margin-top: 24px;
  background: #fff;
  color: #14171a;
  border: 1.5px solid #e3e6e9;
  font: 700 14px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #15181b;
  padding: 78px 44px 32px;
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer__brand-name {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.footer__desc {
  margin: 20px 0 0;
  font: 400 15px/1.7 "Barlow";
  color: #9aa1a8;
  max-width: 300px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer__heading {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.footer__contact-text {
  font: 400 15px/1.7 "Barlow";
  color: #9aa1a8;
}
.footer__contact-block {
  margin-bottom: 12px;
}
.footer__phone {
  margin-bottom: 12px;
  color: #fd504f;
}

.footer-article {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-article:last-child {
  margin-bottom: 0;
}
.footer-article__thumb {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 4px;
  overflow: hidden;
}
.footer-article__thumb .slot {
  border-radius: 4px;
}
.footer-article__title {
  font: 600 14px/1.3 "Barlow";
  color: #e7eaec;
}
.footer-article__date {
  font: 500 12px/1 "Barlow";
  color: #7c848b;
  margin-top: 5px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 54px auto 0;
  padding-top: 26px;
  border-top: 1px solid #23282d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-copyright {
  font: 500 13px/1 "Barlow";
  color: #7c848b;
}
.footer-links {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   BLOG section header "all articles" link
   ========================================================================== */
.blog-all-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 700 14px/1 "Barlow";
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #14171a;
  text-decoration: none;
  border-bottom: 2px solid #fd504f;
  padding-bottom: 6px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  [data-r="header"] {
    padding: 15px 20px !important;
  }
  [data-r="nav"] {
    display: none !important;
  }
  [data-r="burger"] {
    display: inline-flex !important;
  }
  [data-r="hero"] {
    grid-template-columns: 1fr !important;
    padding: 112px 20px 64px !important;
    gap: 40px !important;
  }
  [data-r="heromedia"] {
    min-height: 0 !important;
  }
  [data-r="heromedia"] .hero-img {
    height: 420px !important;
  }
  [data-r="h1"] span {
    font-size: 48px !important;
  }
  [data-r="contact"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  [data-r="gfooter"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
  [data-r="g4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [data-r="g3"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [data-r="gallery"] {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 160px !important;
  }
  [data-r="gallery"] > div {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  [data-r="formcard"] {
    padding: 24px !important;
  }
  [data-r="videoel"] {
    height: 460px !important;
  }
  [data-r="eventrow"] {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  [data-r="eventdate"] {
    margin: 0 auto !important;
  }
  [data-r="eventbody"] {
    text-align: center !important;
  }
  [data-r="eventmeta"] {
    justify-content: center !important;
  }
  [data-r="eventcta"] {
    justify-content: center !important;
  }
  [data-pad] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 600px) {
  [data-r="g3"] {
    grid-template-columns: 1fr !important;
  }
  [data-r="form2"] {
    grid-template-columns: 1fr !important;
  }
  [data-r="gallery"] {
    grid-auto-rows: 140px !important;
  }
  [data-r="gfooter"] {
    grid-template-columns: 1fr !important;
  }
  [data-r="stats"] {
    gap: 14px !important;
  }
  [data-r="heromedia"] .hero-img {
    height: 340px !important;
  }
  [data-r="videoel"] {
    height: 340px !important;
  }
  [data-r="h1"] span {
    font-size: 42px !important;
  }
  [data-r="sectiontop"] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
