/* ============================================
   MONIKA GIRARDI — BOLD CINEMATIC EDITORIAL
   Dark immersive + amber accents + grain
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Tokens --- */
:root {
  --font-display: Georgia, 'Times New Roman', serif;
  --font-display-text: Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --bg-deep: #060F07;
  --bg-primary: #0A1A0D;
  --bg-elevated: #0F2512;
  --bg-card: #132B16;
  --bg-card-hover: #1A3620;

  --accent: #D4940E;
  --accent-hover: #EDAA1E;
  --accent-glow: rgba(212, 148, 14, 0.15);
  --accent-green: #6B9F4A;
  --accent-green-dim: rgba(107, 159, 74, 0.3);

  --text-primary: #F0EDE6;
  --text-secondary: rgba(240, 237, 230, 0.6);
  --text-muted: rgba(240, 237, 230, 0.3);
  --text-dim: rgba(240, 237, 230, 0.12);

  --border: rgba(240, 237, 230, 0.06);
  --border-hover: rgba(240, 237, 230, 0.12);

  --max-width: 1320px;
  --gutter: 40px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Film Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.accent {
  font-style: italic;
  color: var(--accent);
}

.accent--green {
  font-style: italic;
  color: var(--accent-green);
}

.section-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 300;
}

.large-quote {
  font-family: var(--font-display-text);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 700px;
  font-weight: 400;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--arrow::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}
.btn--arrow:hover::after {
  transform: translateX(5px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background 0.4s ease;
}

.nav--scrolled {
  background: rgba(6, 15, 7, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Legacy class kept for contact page where nav starts visible */
.nav--scrolled {
  transform: translateY(0);
  opacity: 1;
  background: rgba(6, 15, 7, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.96875rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}

.nav__cta {
  padding: 12px 28px;
  font-size: 0.8125rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 15, 7, 0.8) 0%,
    rgba(6, 15, 7, 0.45) 12%,
    transparent 25%
  );
}

.hero__content,
.hero__content * {
  text-shadow:
    /* tight core */
    0 0 10px rgba(0, 0, 0, 1),
    0 0 20px rgba(0, 0, 0, 1),
    /* directional spread */
    30px 0 40px rgba(0, 0, 0, 0.9),
    -30px 0 40px rgba(0, 0, 0, 0.9),
    0 20px 40px rgba(0, 0, 0, 0.9),
    0 -20px 40px rgba(0, 0, 0, 0.9),
    /* wide halo */
    60px 0 80px rgba(0, 0, 0, 0.7),
    -60px 0 80px rgba(0, 0, 0, 0.7),
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 -40px 80px rgba(0, 0, 0, 0.7),
    /* outer glow */
    0 0 120px rgba(0, 0, 0, 0.5),
    0 0 200px rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  width: 100%;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__subtitle {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 480px;
  margin-top: 24px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero--text .hero__subtitle {
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Short hero for subpages */
.hero--sub {
  height: 70vh;
  min-height: 500px;
}

/* Text-only hero */
.hero--text {
  height: auto;
  min-height: auto;
  padding: 200px 0 100px;
  background: var(--bg-primary);
}

.hero--text .hero__content {
  padding-bottom: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* --- Sections --- */
.section {
  padding: 140px 0;
  position: relative;
}

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

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

/* Amber divider line */
.divider {
  width: 80px;
  height: 1px;
  background: var(--accent);
  margin: 80px auto;
}

.divider--left {
  margin-left: 0;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.reveal-fade.revealed { opacity: 1; }

/* --- Asymmetric Two Column --- */
.split {
  display: grid;
  gap: 80px;
  align-items: center;
}

.split--60-40 {
  grid-template-columns: 1.5fr 1fr;
}

.split--40-60 {
  grid-template-columns: 1fr 1.5fr;
}

.split--50-50 {
  grid-template-columns: 1fr 1fr;
}

.split__text h2 {
  margin-bottom: 28px;
}

.split__text p {
  margin-bottom: 16px;
  max-width: 480px;
}

/* --- Image Styling --- */
.img-frame {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.img-frame:hover img {
  transform: scale(1.03);
}

.img-frame--rounded { border-radius: 40px; }

.img-frame--rounded::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  box-shadow: 0 0 30px 10px var(--bg-deep);
  pointer-events: none;
}

.img-frame--rounded img {
  mask-image:
    linear-gradient(to right, transparent, black 14%, black 86%, transparent),
    linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}
.img-frame--portrait { aspect-ratio: 3/4; }
.img-frame--landscape { aspect-ratio: 16/10; }
.img-frame--square { aspect-ratio: 1; }
.img-frame--wide { aspect-ratio: 21/9; }

/* Image with overlay text */
.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,7,0.8) 0%, transparent 60%);
  pointer-events: none;
}

.img-overlay__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 1;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card__img img {
  transform: scale(1.05);
}

.card__body {
  padding: 32px;
}

.card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.card__body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* --- Stats --- */
.stats-bar {
  display: flex;
  gap: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- Services (typographic list) --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.service-item {
  padding: 48px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}

.service-item:hover::before {
  width: 100%;
}

.service-item:nth-child(even) {
  border-right: none;
}

.service-item:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
}

.service-item__number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-item h4 {
  font-family: var(--font-display-text);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.service-item p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 420px;
}

/* --- Horizontal Scroll Gallery --- */
.h-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.h-scroll::-webkit-scrollbar { display: none; }

.h-scroll__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
  width: max-content;
}

.h-scroll__item {
  width: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.h-scroll__item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.h-scroll__item:hover img {
  transform: scale(1.04);
}

.h-scroll__item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(6,15,7,0.9) 0%, transparent 100%);
}

.h-scroll__item-text h3 {
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.h-scroll__item-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Info Cards (Events) --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.info-card {
  background: var(--bg-card);
  padding: 40px;
  border-top: 2px solid var(--accent);
}

.info-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.info-card h4 {
  font-family: var(--font-display-text);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.info-card strong {
  color: var(--text-primary);
}

/* --- Event List --- */
.event-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease-out);
}

.event-list-item:hover {
  padding-left: 16px;
}

.event-list-item--active {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.event-list-item__date {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.event-list-item__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--text-primary);
  flex: 1;
}

.event-list-item__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Featured Full-Bleed Section --- */
.featured-full {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.featured-full__media {
  position: absolute;
  inset: 0;
}

.featured-full__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,15,7, 0.92) 0%,
    rgba(6,15,7, 0.6) 50%,
    rgba(6,15,7, 0.2) 100%
  );
}

.featured-full__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px var(--gutter);
  width: 100%;
}

.featured-full__content h2 {
  margin-bottom: 24px;
  max-width: 550px;
}

.featured-full__content p {
  max-width: 440px;
  margin-bottom: 32px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-section {
  text-align: center;
  padding: 120px var(--gutter);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  margin-bottom: 20px;
}

.cta-section p {
  position: relative;
  max-width: 460px;
  margin: 0 auto 36px;
}

.cta-section .btn { position: relative; }

/* --- Newsletter --- */
.newsletter {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.newsletter p {
  margin-top: 12px;
  max-width: 420px;
}

.newsletter__form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.newsletter__input {
  padding: 16px 24px;
  border: 1px solid var(--border-hover);
  border-right: none;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 300px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: var(--text-muted);
}

.newsletter__input:focus {
  border-color: var(--accent);
}

.newsletter__form .btn {
  border-left: none;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 520px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--border-hover);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--bg-deep);
  padding: 64px 0 36px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__contact {
  font-size: 1rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  max-width: 500px;
  line-height: 1.6;
}

/* Legacy footer classes — keep for compat */
.footer__inner { display: contents; }
.footer__tagline { display: none; }
.footer__links { display: none; }
.footer__col { display: none; }

/* --- Utilities --- */
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .split { gap: 48px; }
  .services-list { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .h-scroll__item { width: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { min-height: 600px; }

  .nav__links { display: none; }

  .split--60-40,
  .split--40-60,
  .split--50-50 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .newsletter__inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter__input {
    width: 100%;
    border-right: 1px solid var(--border-hover);
    border-bottom: none;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .event-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
