/* ============================================
   ELIISE PIIRLA — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --red:    #c41e1e;
  --dark:   #1a1a1a;
  --mid:    #555;
  --light:  #f5f5f5;
  --white:  #ffffff;
  --max:    1200px;
  --font-hero: 'Bebas Neue', sans-serif;
  --font-h:    'Raleway', sans-serif;
  --font-b:    'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

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

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── Layout helpers ─────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark);  color: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 48px;
}
.divider--left {
  margin-left: 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.88; transform: translateY(-2px); }

.btn--red   { background: var(--red);  color: var(--white); }
.btn--dark  { background: var(--dark); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--dark); }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  color: #ccc;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 0.75rem !important;
  letter-spacing: 1.5px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: #a01515 !important; color: var(--white) !important; }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* page offset for fixed nav */
.page-top { padding-top: 72px; }

@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav__links.open { max-height: 480px; padding: 16px 0 24px; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a  { display: block; padding: 14px 24px; font-size: 0.9rem; }
  .nav__cta { margin: 8px auto; display: inline-block; }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center calc(30% + 200px); /* nihuta pilti: muuda px väärtust üles/alla */
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
}

@media (max-width: 768px) {
  .hero__bg {
    object-position: 70% 30%; /* mobiilil nihuta horisontaalselt paremale et Eliise näha oleks */
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.1) 75%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__tag {
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero__btns { justify-content: center; }
  .hero__content { text-align: center; }
  .hero__tag { text-align: center; }
}

/* page hero (inner pages) */
.page-hero {
  height: 50vh;
  min-height: 300px;
}
.page-hero .hero__title { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero .hero__bg {
  object-position: center center;
}

/* Treeningud hero — mahutab kogu isiku bannerisse */
.page-hero--contain {
  background: var(--dark);
}
.page-hero--contain .hero__bg {
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 768px) {
  .page-hero .hero__bg { object-position: center center; }
  .page-hero--contain .hero__bg {
    object-fit: contain;
    object-position: center center;
  }
}


/* ============================================
   SERVICES STRIP (homepage 3-cards)
   ============================================ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.services-strip__card {
  padding: 56px 40px;
  background: var(--dark);
  color: var(--white);
  border-right: 1px solid #2e2e2e;
  display: flex;
  flex-direction: column;
}
.services-strip__card .btn {
  margin-top: auto;
}
.services-strip__card:last-child { border-right: none; }
.services-strip__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}
.services-strip__card h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
.services-strip__card p {
  color: #d8d8d8;
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.services-strip__card .btn {
  font-size: 0.72rem;
  padding: 10px 24px;
}

@media (max-width: 768px) {
  .services-strip { grid-template-columns: 1fr; }
  .services-strip__card { border-right: none; border-bottom: 1px solid #2e2e2e; text-align: center; }
  .services-strip__card .btn { display: inline-block; }
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-left: 4px solid var(--red);
}
.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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


/* ============================================
   ABOUT TEASER
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  min-height: 400px;
  overflow: hidden;
}
.about-split__img {
  object-fit: cover;
  object-position: center 35%; /* suurem % = rohkem ülevalt ära lõigatud */
  width: 100%;
  height: calc(100% + 150px);
  margin-top: -150px;
  min-height: 320px;
}
.about-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.about-split__text h2 { margin-bottom: 16px; }
.about-split__text .divider { margin-bottom: 28px; }
.about-split__text p { color: var(--mid); margin-bottom: 20px; }

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__text { padding: 48px 24px; }
}


/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 { margin-bottom: 12px; }
.blog-card p  { color: var(--mid); font-size: 0.9rem; margin-bottom: 20px; flex: 1; }
.blog-card .btn { align-self: flex-start; }

@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }


/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid #e5e5e5;
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(196,30,30,0.08);
}
.pricing-card__title {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-card__duration {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; }
.pricing-card p { color: var(--mid); font-size: 0.88rem; line-height: 1.6; }

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


/* ============================================
   EQUIPMENT CARDS (rental page)
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.equipment-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.equipment-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.equipment-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.equipment-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.equipment-card__name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.equipment-card__price {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}
.equipment-card p {
  color: var(--mid);
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex: 1;
}
.equipment-card .btn { align-self: flex-start; margin-top: auto; }

/* Card image slider */
.card-slider {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.card-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}
.card-slider__img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
}
.card-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.card-slider__btn:hover { background: rgba(0,0,0,0.7); }
.card-slider__btn--prev { left: 8px; }
.card-slider__btn--next { right: 8px; }
.card-slider__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.card-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.card-slider__dot.active { background: #fff; }

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


/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section { background: var(--dark); color: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2  { color: var(--white); margin-bottom: 16px; }
.contact-info .divider { background: var(--red); margin-bottom: 28px; }
.contact-info p   { color: #aaa; margin-bottom: 20px; }
.contact-info a   { color: var(--white); }
.contact-info a:hover { color: var(--red); }
.contact-detail { display: flex; flex-direction: column; gap: 12px; }
.contact-detail span { color: #aaa; font-size: 0.9rem; }
.contact-detail a    { font-weight: 600; font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: #999; }
.form-group input,
.form-group textarea {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  padding: 20px 24px;
  background: linear-gradient(135deg, #0f2a0f 0%, #1a3d1a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #3a7a3a;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Form row 2-col ───────────────────────── */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: start;
}

/* Remove number input spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] { -moz-appearance: textfield; }

/* ── Custom multi-select ───────────────────── */
.custom-select { position: relative; }

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  transition: border-color 0.2s;
  user-select: none;
  min-height: 50px;
}
.custom-select__trigger:hover,
.custom-select.open .custom-select__trigger {
  border-color: var(--red);
}
.custom-select__placeholder { color: #666; font-size: 0.95rem; }

.custom-select__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.custom-select__tag {
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.custom-select__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #666;
  transition: transform 0.2s, color 0.2s;
}
.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.custom-select__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #1c1c1c;
  border: 1px solid #444;
  border-radius: 6px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.custom-select.open .custom-select__dropdown { display: block; }

.custom-select__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  cursor: pointer;
  transition: background 0.15s;
  color: #bbb;
  font-size: 0.95rem;
}
.custom-select__option:not(:last-child) { border-bottom: 1px solid #2a2a2a; }
.custom-select__option:hover { background: #252525; color: #fff; }
.custom-select__option input[type="checkbox"] { display: none; }

.custom-select__checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #444;
  border-radius: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.custom-select__option input:checked ~ .custom-select__checkmark {
  background: var(--red);
  border-color: var(--red);
}
.custom-select__option input:checked ~ .custom-select__checkmark::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.custom-select__option input:checked ~ span:last-child { color: #fff; }


/* ============================================
   SHOW TYPES (esinemine page)
   ============================================ */
.show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.show-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.show-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.show-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.show-card__body h3 { margin-bottom: 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.show-card__body p  { color: var(--mid); font-size: 0.88rem; line-height: 1.6; flex: 1; }

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


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
}
.about-photos img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.about-bio { max-width: 780px; }
.about-bio p { color: var(--mid); margin-bottom: 20px; }
.cert-list { list-style: none; margin-top: 16px; }
.cert-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  color: var(--mid);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cert-list li::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }

@media (max-width: 700px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photos img { height: 300px; }
}


/* ============================================
   BLOG PAGE
   ============================================ */
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.blog-full-card { display: flex; flex-direction: column; }
.blog-full-card__img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 24px; }
.blog-full-card__meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-full-card__meta span { font-size: 0.78rem; color: var(--red); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.blog-full-card h2 { font-size: 1.3rem; margin-bottom: 16px; }
.blog-full-card p  { color: var(--mid); font-size: 0.92rem; margin-bottom: 24px; flex: 1; }

@media (max-width: 640px) { .blog-full-grid { grid-template-columns: 1fr; } }


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111;
  color: #aaa;
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid #333;
  color: #aaa;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover { border-color: var(--red); color: var(--white); }

.footer__col h4 {
  font-family: var(--font-h);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: #aaa; font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }

.footer__hours { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.footer__hours span:first-child { color: var(--white); font-weight: 600; }

.footer__bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer__bottom a { color: #aaa; }
.footer__bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ============================================
   UTILITIES
   ============================================ */
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-mid   { color: var(--mid); }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-32  { margin-top: 32px; }
.mb-0   { margin-bottom: 0; }
.center { text-align: center; }

/* ============================================
   ÄÄSMÄE SECTION
   ============================================ */
.aasmaee-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.aasmaee-layout h2 { margin-bottom: 4px; }
.schedule-table { margin: 28px 0; border-top: 1px solid #e0e0e0; }
.schedule-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #e0e0e0;
}
.schedule-time {
  font-weight: 700;
  color: var(--red);
  min-width: 76px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.schedule-row span:last-child { color: var(--dark); font-size: 0.95rem; }
.schedule-row em { color: var(--mid); font-size: 0.85rem; }
.aasmaee-info {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 0 4px 4px 0;
}
.aasmaee-info h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--dark);
}
.aasmaee-list { list-style: none; padding: 0; }
.aasmaee-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--mid);
  line-height: 1.65;
  font-size: 0.93rem;
}
.aasmaee-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.aasmaee-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.aasmaee-imgs img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 4px;
}
.aasmaee-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 4px;
  display: block;
}
.aasmaee-address {
  text-align: center;
  font-size: 0.83rem;
  color: var(--mid);
  margin-top: 10px;
}
@media (max-width: 860px) {
  .aasmaee-layout { grid-template-columns: 1fr; gap: 40px; }
  .aasmaee-imgs img { height: 200px; }
}
