/* =============================================
   miMuze – Hoofdstijlblad
   Kleuren: Zwart #1A1A1A | Rood #CC1A1A | Wit #FFFFFF
   Font: Plus Jakarta Sans
   ============================================= */

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

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --black:      #1A1A1A;
  --red:        #CC1A1A;
  --red-dark:   #A81515;
  --red-light:  #E03030;
  --white:      #FFFFFF;
  --gray-50:    #F9F9F9;
  --gray-100:   #F2F2F2;
  --gray-200:   #E5E5E5;
  --gray-300:   #D0D0D0;
  --gray-500:   #888888;
  --gray-700:   #444444;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.13);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 24px rgba(204,26,26,0.35);

  --transition: 0.22s ease;

  --container:  1200px;
  --section-py: clamp(56px, 8vw, 96px);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-700);
  line-height: 1.7;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.section {
  padding: var(--section-py) 0;
}

.section--gray { background: var(--gray-50); }
.section--dark { background: var(--black); color: var(--white); }
.section--red  { background: var(--red);  color: var(--white); }

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

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }

.section-header {
  max-width: 640px;
}
.section-header.centered {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 48px;
}
.section-header p { margin-top: 12px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(204,26,26,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--red-dark); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-bar a { color: var(--white); opacity: 0.9; transition: opacity var(--transition); }
.announcement-bar a:hover { opacity: 1; }

.announcement-bar__links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.announcement-bar__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
}

.logo__m-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 1px;
}

.logo__circle {
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 50%;
}

.logo__m {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--red);
  background: rgba(204,26,26,0.07);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--gray-200);
}

.nav__mobile.open { display: flex; }

.nav__mobile .nav__link {
  font-size: 1rem;
  padding: 12px 16px;
  display: block;
}

.nav__mobile .btn { margin: 8px 16px 0; align-self: flex-start; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero--loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26,26,26,0.80) 0%,
    rgba(26,26,26,0.55) 55%,
    rgba(26,26,26,0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.hero h1 span { color: #ff6b6b; }

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 480px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--red);
  color: var(--white);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.trust-item__label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 1px;
}

.trust-item__value {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* =============================================
   PILLAR CARDS
   ============================================= */
.pillars { }

.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.pillar-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
}

.pillar-card__content {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--white);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
}

.pillar-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pillar-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 16px; }

/* =============================================
   FEATURED IMAGES GRID
   ============================================= */
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-grid__item {
  overflow: hidden;
  position: relative;
}

.img-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.img-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-grid__item:hover img { transform: scale(1.05); }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-card__body {
  padding: 18px 20px 20px;
}

.product-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-card__price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}

.product-card__price-old {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

/* =============================================
   REVIEW CARDS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-stars svg { color: #f59e0b; }

.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.review-name { font-weight: 700; font-size: 0.9rem; }
.review-source { font-size: 0.78rem; color: var(--gray-500); }

/* =============================================
   EVENT CARDS
   ============================================= */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: all var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.event-date {
  text-align: center;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 8px;
}

.event-date__day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date__month { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.event-info__genre {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.event-info h4 { font-size: 1rem; margin-bottom: 4px; }
.event-info__meta { font-size: 0.82rem; color: var(--gray-500); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-300);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}

.newsletter-form input:focus { border-color: var(--red); }

/* =============================================
   INFO CARDS
   ============================================= */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.info-card:hover { box-shadow: var(--shadow-md); }

.info-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(204,26,26,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}

.info-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.info-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* =============================================
   FORM STYLES
   ============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-control {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  background: var(--white);
  width: 100%;
  color: var(--black);
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.1);
}

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

select.form-control { cursor: pointer; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =============================================
   SECTION CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px) clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-banner p { opacity: 0.75; max-width: 480px; }

/* =============================================
   OPENINGSUREN TABLE
   ============================================= */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child { font-weight: 600; color: var(--gray-700); width: 50%; }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--red); font-weight: 700; }
.hours-table tr:last-child { border-bottom: none; }

/* =============================================
   MAP EMBED
   ============================================= */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   ACCORDION
   ============================================= */
.accordion { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}

.accordion-trigger:hover { background: var(--gray-50); }
.accordion-trigger[aria-expanded="true"] { color: var(--red); }

.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.accordion-content {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.accordion-content.open { display: block; }

/* =============================================
   GALLERY GRID
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* =============================================
   TAGS / BADGES
   ============================================= */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
}

.tag--red { background: rgba(204,26,26,0.1); color: var(--red); }
.tag--dark { background: var(--black); color: var(--white); }

/* =============================================
   STAT BLOCKS
   ============================================= */
.stat-block {
  text-align: center;
}

.stat-block__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block__label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* =============================================
   STEPS
   ============================================= */
.steps { display: flex; flex-direction: column; gap: 20px; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__content h4 { margin-bottom: 4px; }
.step__content p { font-size: 0.9rem; color: var(--gray-700); }

/* =============================================
   TEAM CARDS
   ============================================= */
.team-card {
  text-align: center;
}

.team-card__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--gray-100);
}

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

.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card__role { font-size: 0.82rem; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 0.88rem; color: var(--gray-700); line-height: 1.55; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 10vw, 100px) 0;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero p { margin-top: 12px; font-size: 1.1rem; opacity: 0.85; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.breadcrumb a { color: var(--gray-500); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb__sep { color: var(--gray-300); }

/* =============================================
   CONTACT INFO
   ============================================= */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(204,26,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-info-item__label { font-size: 0.78rem; font-weight: 600; color: var(--gray-500); margin-bottom: 4px; }
.contact-info-item__value { font-weight: 600; font-size: 0.95rem; }
.contact-info-item a { color: var(--red); }
.contact-info-item a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 240px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}

.footer__social a:hover { background: var(--red); }

.footer__col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}

.footer__links a:hover { opacity: 1; color: #ff6b6b; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* =============================================
   DIVIDERS & EXTRAS
   ============================================= */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 40px 0;
}

.red-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}

#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

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

  .pillars .grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }

  .img-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .img-grid__item:first-child { grid-column: span 2; grid-row: span 1; }

  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner .btn-group { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }

  .form-grid { grid-template-columns: 1fr; }

  .event-card { grid-template-columns: 70px 1fr; }
  .event-card .btn { display: none; }

  .announcement-bar__links { display: none; }

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

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .hero { min-height: 540px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
}
