/* ═══════════════════════════════════════════
   Hummer Event – style.css
   ═══════════════════════════════════════════ */

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

/* ── Variables ──────────────────────────────── */
:root {
  --black:     #0E0E0E;
  --dark:      #1A1A1A;
  --charcoal:  #2C2C2C;
  --mid:       #6B6B6B;
  --light:     #B0B0B0;
  --off-white: #F5F3EF;
  --white:     #FFFFFF;
  --accent:    #D4688A;
  --accent-dark: #B84E70;
  --gold:      #C9A96E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:  4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.16);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Container ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--charcoal); }
.lead { font-size: 1.2rem; line-height: 1.75; color: var(--mid); }
.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,104,138,0.3); }

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 32px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.nav-logo span { color: var(--accent); }
.nav.scrolled .nav-logo { color: var(--black); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--black); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all var(--transition); }
.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ── Mobile Nav ─────────────────────────────── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-mobile-close:hover { color: var(--accent); }

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.72) 0%, rgba(14,14,14,0.4) 60%, rgba(14,14,14,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero-content .label { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero-content h1 { color: var(--white); margin-bottom: 24px; font-weight: 400; font-style: italic; }
.hero-content h1 em { font-style: normal; font-weight: 700; color: var(--white); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { opacity: 0.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── Page Hero ──────────────────────────────── */
.page-hero {
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.85) 30%, rgba(14,14,14,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); font-style: italic; font-weight: 400; }
.page-hero-content .label { color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { opacity: 0.4; }

/* ── Sections ───────────────────────────────── */
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--dark .label { color: var(--accent); }
.text-center { text-align: center; }
.section-header { margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.section-header.text-center p { margin: 0 auto; }

/* ── Stats Bar ──────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--mid); }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Services Grid ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--off-white); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 0.925rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── About Teaser ───────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-img {
  position: relative;
}
.about-teaser-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-teaser-img::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-teaser-text .label { margin-bottom: 16px; }
.about-teaser-text h2 { margin-bottom: 20px; }
.about-teaser-text p { margin-bottom: 16px; }
.about-teaser-text .btn { margin-top: 16px; }
.team-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.team-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--off-white);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--charcoal);
}
.team-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-img::after { display: none; }
}

/* ── Testimonial ────────────────────────────── */
.testimonial-section {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.testimonial-author { color: var(--mid); font-size: 0.875rem; letter-spacing: 0.05em; }
.testimonial-author strong { color: var(--white); display: block; margin-bottom: 4px; font-weight: 500; }

/* ── Events Masonry ─────────────────────────── */
.events-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.event-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-img { transform: scale(1.03); }
.event-card-body { padding: 32px; }
.event-card-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.event-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.event-card p { font-size: 0.9rem; line-height: 1.7; }
.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.event-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--mid);
}
@media (max-width: 768px) { .events-masonry { grid-template-columns: 1fr; } }

/* ── Team Grid ──────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-card:hover .team-card-img { filter: grayscale(0%); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-role { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.team-card-desc { font-size: 0.875rem; color: var(--mid); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ── Leistungen Detail ──────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.leistung-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.leistung-item:hover { border-color: var(--accent); box-shadow: 0 4px 24px rgba(212,104,138,0.08); }
.leistung-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,104,138,0.15);
  line-height: 1;
  text-align: center;
}
.leistung-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.leistung-item p { font-size: 0.9rem; }
@media (max-width: 768px) { .leistungen-grid { grid-template-columns: 1fr; } }

/* ── Prozess ────────────────────────────────── */
.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.prozess-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  z-index: 0;
}
.prozess-step { text-align: center; position: relative; z-index: 1; }
.prozess-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 auto 20px;
}
.prozess-step h3 { font-size: 1rem; margin-bottom: 8px; }
.prozess-step p { font-size: 0.85rem; color: var(--mid); }
@media (max-width: 768px) {
  .prozess-steps { grid-template-columns: repeat(2, 1fr); }
  .prozess-steps::before { display: none; }
}

/* ── Kontakt ────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.kontakt-info .label { margin-bottom: 16px; }
.kontakt-info h2 { margin-bottom: 20px; }
.kontakt-info p { margin-bottom: 24px; }
.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.kontakt-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.kontakt-detail-text { font-size: 0.9rem; }
.kontakt-detail-text strong { display: block; color: var(--black); margin-bottom: 2px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.kontakt-form { background: var(--off-white); padding: 48px; border-radius: var(--radius-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success svg { color: var(--accent); margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 560px) { .kontakt-form { padding: 28px 24px; } .form-row { grid-template-columns: 1fr; } }

/* ── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 40px; font-size: 1.1rem; }
.cta-banner .label { color: rgba(255,255,255,0.5); margin-bottom: 16px; }

/* ── Legal Content ──────────────────────────── */
.legal-content { max-width: 800px; padding: 80px 0; }
.legal-content h1 { margin-bottom: 8px; }
.legal-date { color: var(--mid); font-size: 0.875rem; margin-bottom: 48px; }
.legal-content h2 { font-size: 1.2rem; margin: 40px 0 12px; color: var(--black); }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────── */
.footer { background: var(--black); padding-top: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a, .footer-col address {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* ── Animations ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding-top: 100px; }
  .section { padding: 70px 0; }
}

/* ── Team Avatar (no photo) ─────────────────── */
.team-card-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-avatar span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* ── Team List (no photos) ──────────────────── */
.team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}
.team-list-item {
  background: var(--white);
  padding: 40px;
  transition: background var(--transition);
}
.team-list-item:hover { background: var(--off-white); }
.team-list-header {
  margin-bottom: 12px;
}
.team-list-header h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .team-list { grid-template-columns: 1fr; }
}
