:root {
  --red: #9B1010;
  --red-dark: #6B0000;
  --red-bright: #C0392B;
  --cream: #F5EFE0;
  --cream-dark: #E8DFC8;
  --black: #111;
  --charcoal: #1A1A1A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--black); overflow-x: hidden; }

/* ── LANG TOGGLE ── */
.lang-toggle { background: none; border: none; font-size: 1.4rem; padding: 0.2rem 0.4rem; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; margin-left: 1rem; white-space: nowrap; flex-shrink: 0; }
.lang-opt { line-height: 1; transition: transform 0.2s; }
.lang-opt:hover { transform: scale(1.15); }
.lang-sep { color: rgba(245,239,224,0.2); font-size: 0.8rem; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.97); backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 58px;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.1em; color: var(--cream); text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--red-bright); }
.nav-links { display: flex; gap: 0.2rem; list-style: none; }
.nav-links a { color: rgba(245,239,224,0.7); text-decoration: none; font-size: 0.71rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 2px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); background: var(--red); }

/* ── HERO ── */
#hero { min-height: 100vh; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; padding-top: 58px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 5rem 3.5rem 5rem 4rem; position: relative; z-index: 2; }
.hero-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 1.5rem; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem, 8vw, 8.5rem); line-height: 0.92; color: var(--cream); margin-bottom: 2rem; }
.hero-title span { color: var(--red-bright); display: block; }
.hero-sub { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.05rem; color: var(--cream-dark); line-height: 1.65; max-width: 38ch; margin-bottom: 2.5rem; border-left: 3px solid var(--red); padding-left: 1rem; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--red); color: var(--cream); text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.85rem 2rem; transition: background 0.25s; width: fit-content; }
.hero-cta:hover { background: var(--red-bright); }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--charcoal) 0%, transparent 35%); z-index: 1; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ── SHARED ── */
section { scroll-margin-top: 58px; }
.section-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; display: block; }
.divider { height: 4px; background: linear-gradient(to right, var(--red-dark), var(--red-bright), var(--red-dark)); }
.btn-primary { background: var(--red); color: var(--cream); text-decoration: none; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 1rem 2.5rem; transition: background 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-bright); }

/* ── CTA BAR ── */
#cta-bar { background: var(--black); padding: 0; }
.cta-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.cta-action { display: flex; align-items: center; gap: 0.75rem; padding: 1.4rem 2rem; color: rgba(245,239,224,0.75); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-right: 1px solid rgba(245,239,224,0.08); transition: background 0.2s, color 0.2s; }
.cta-action:last-child { border-right: none; }
.cta-action:hover { background: var(--red); color: var(--cream); }
.cta-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

/* ── ABOUT ── */
#about { background: var(--cream); padding: 6rem 0; }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 0 5rem; align-items: start; }
.about-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: 0.95; color: var(--red-dark); margin-bottom: 1.5rem; }
.about-left p { font-size: 0.97rem; line-height: 1.75; color: #333; margin-bottom: 1rem; }
.mvg-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(155,16,16,0.12); margin-top: 2.5rem; }
.mvg-item { background: var(--cream); padding: 2rem 2.5rem; text-align: center; }
.mvg-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--red-dark); letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.mvg-item p { font-size: 0.87rem; line-height: 1.65; color: #555; margin: 0; }
/* ── PROGRESS BAR ── */
.progress-bar-wrap { max-width: 1200px; margin: 3rem auto 0; padding: 0 4rem 3rem; }
.progress-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
.progress-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,224,0.5); }
.progress-count { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--cream); letter-spacing: 0.05em; line-height: 1; }
.progress-total { font-size: 1.1rem; color: rgba(245,239,224,0.35); }
.progress-track { width: 100%; height: 6px; background: rgba(245,239,224,0.1); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(to right, var(--red), var(--red-bright)); border-radius: 3px; min-width: 6px; transition: width 1.2s ease; }
.progress-note { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.85rem; color: rgba(245,239,224,0.35); margin-top: 0.75rem; text-align: right; }

.braid-count-bar { display: flex; align-items: stretch; justify-content: center; background: rgba(0,0,0,0.25); margin-top: 0; }
.count-stat { flex: 1; padding: 2rem; text-align: center; max-width: 340px; }
.count-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--cream); line-height: 1; letter-spacing: 0.05em; }
.count-label { display: block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,224,0.5); margin-top: 0.4rem; }
.count-divider { width: 1px; background: rgba(245,239,224,0.12); align-self: stretch; flex-shrink: 0; }
.intro-card { background: var(--red); padding: 3rem; color: var(--cream); position: relative; margin-bottom: 1.5rem; }
.intro-card::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--red-dark); z-index: -1; }
.intro-card blockquote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.2rem; line-height: 1.65; margin-bottom: 1.5rem; }
.intro-card cite { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,239,224,0.6); }
.movement-note { background: var(--cream-dark); padding: 1.5rem 2rem; border-left: 3px solid var(--red); }
.movement-note p { font-size: 0.92rem; line-height: 1.7; color: #333; }

/* ── BRAIDS (inline inside About) ── */
.braids-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.2rem; }
.braid-inline-item { display: flex; align-items: flex-start; gap: 1rem; }
.braid-swatch-sm { width: 36px; height: 36px; border-radius: 3px; flex-shrink: 0; margin-top: 2px; }
.redblack-swatch { background: linear-gradient(to right, var(--red-bright) 50%, #111 50%); }
.braid-inline-item strong { display: block; font-size: 0.9rem; color: var(--red-dark); margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.braid-inline-item p { font-size: 0.86rem; line-height: 1.6; color: #555; margin: 0; }
.braids-note { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 0.92rem; color: #777; }

/* ── BRAIDS SECTION ── */
#braids { background: var(--cream); padding: 6rem 0; }
.braids-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.braids-top { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.braids-top h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5vw, 5rem); line-height: 0.95; color: var(--red-dark); margin-bottom: 2rem; }
.braids-top-photo { position: relative; overflow: hidden; }
.braids-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.braids-bottom > .section-label { margin-bottom: 1.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(155,16,16,0.12); }
.step-card { background: var(--cream); display: flex; flex-direction: column; }
.step-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.step-body { padding: 1.8rem; flex: 1; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: rgba(155,16,16,0.12); line-height: 1; margin-bottom: 0.3rem; }
.step-body h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--red-dark); margin-bottom: 0.6rem; }
.step-body p { font-size: 0.87rem; line-height: 1.7; color: #555; margin: 0; }
.social-media-label { max-width: 900px; margin: 0 auto; padding: 2rem 0 0.75rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0, 0, 0, 1); text-align: center; }

/* ── MAP ── */
#map { background: var(--charcoal); padding: 6rem 0; color: var(--cream); }
.map-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem 4rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.map-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4.5vw, 4.5rem); line-height: 0.95; color: var(--cream); margin-bottom: 1rem; }
.map-text p { font-size: 0.95rem; line-height: 1.75; color: rgba(245,239,224,0.75); margin-bottom: 1rem; }
.map-coming-soon { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; background: rgba(155,16,16,0.15); border-left: 3px solid var(--red); padding: 0.9rem 1.2rem; }
.map-coming-soon span { font-size: 1.2rem; }
.map-coming-soon p { font-size: 0.88rem; color: rgba(245,239,224,0.65); margin: 0; }
.map-placeholder svg { width: 100%; border-radius: 4px; display: block; }
.cities-label { max-width: 900px; margin: 0 auto; padding: 2rem 0 0.75rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,224,0.45); text-align: center; }

/* ── RECORD ── */
#record { background: var(--red-dark); padding: 6rem 0; color: var(--cream); }
.record-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
.record-badge { font-size: 6rem; line-height: 1; }
.record-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.95; color: var(--cream); margin-bottom: 1.2rem; }
.record-text p { font-size: 0.97rem; line-height: 1.75; color: rgba(245,239,224,0.8); margin-bottom: 0.8rem; }
.record-text strong { color: var(--cream); }

/* ── GALLERY ── */
#gallery { background: var(--cream); padding: 6rem 0; }
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.gallery-header { margin-bottom: 3rem; }
.gallery-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: 0.95; color: var(--red-dark); margin-bottom: 0.75rem; }
.gallery-header p { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.05rem; color: #555; }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(245,239,224,0.08); max-width: 900px; margin: 0 auto; }
.city-group { background: var(--charcoal); padding: 1.5rem 1.8rem; transition: background 0.2s; }
.city-group:hover { background: rgba(155,16,16,0.2); }
.city-group h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--cream); letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.city-group p { font-size: 0.82rem; line-height: 1.6; color: rgba(245,239,224,0.55); }
.media-placeholders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.media-placeholder { border: 2px dashed rgba(155,16,16,0.2); padding: 3.5rem 2rem; text-align: center; }
.media-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.media-placeholder p { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1rem; color: #888; }

/* ── CHARITY ── */
#charity { background: var(--black); padding: 6rem 0; color: var(--cream); }
.charity-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.charity-photo { position: relative; overflow: hidden; }
.charity-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.charity-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 0.95; color: var(--cream); margin-bottom: 1.2rem; margin-top: 0.5rem; }
.charity-text p { font-size: 0.97rem; line-height: 1.75; color: rgba(245,239,224,0.75); margin-bottom: 0.8rem; }
.charity-note { font-style: italic; color: rgba(245,239,224,0.45) !important; font-size: 0.85rem !important; }

/* ── TEAM ── */
#team { background: var(--cream); padding: 6rem 0; color: var(--black); }
.team-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.team-header { margin-bottom: 2rem; }
.team-photo-wrap { margin-bottom: 3rem; overflow: hidden; }
.team-photo { width: 100%; max-height: 580px; object-fit: cover; object-position: center top; display: block; }
.team-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 5vw, 5rem); line-height: 0.95; color: var(--red-dark); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: rgba(155,16,16,0.15); }
.team-card { background: var(--cream); padding: 2.5rem; transition: background 0.2s; }
.team-card:hover { background: var(--cream-dark); }
.team-role { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
.team-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--red-dark); margin-bottom: 0.85rem; }
.team-card p { font-size: 0.88rem; line-height: 1.7; color: #555; margin-bottom: 1.2rem; }
.team-link { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); text-decoration: none; border-bottom: 1px solid rgba(155,16,16,0.3); padding-bottom: 1px; transition: color 0.2s; }
.team-link:hover { color: var(--red-dark); border-color: var(--red-dark); }

/* ── CONTACT ── */
#contact { background: var(--red-dark); padding: 6rem 0; color: var(--cream); }
.contact-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: 0.95; color: var(--cream); margin-bottom: 1rem; }
.contact-left p { font-size: 0.95rem; line-height: 1.75; color: rgba(245,239,224,0.75); margin-bottom: 2rem; }
.direct-contact { display: flex; flex-direction: column; gap: 1rem; }
.contact-item label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,239,224,0.45); margin-bottom: 0.25rem; }
.contact-item a { font-size: 0.93rem; color: var(--cream); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-form-box { background: rgba(0,0,0,0.25); padding: 2.5rem; }
.checkbox-group { margin-bottom: 2rem; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; margin-bottom: 0.7rem; }
.checkbox-other { display: flex; align-items: center; gap: 1rem; }
.checkbox-other-label { flex-shrink: 0; }
.other-text-input { flex: 1; margin: 0; transition: opacity 0.2s; }
.other-text-input.other-locked { opacity: 0.35; pointer-events: none; user-select: none; }
.checkbox-label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: rgba(245,239,224,0.8); cursor: pointer; }
.checkbox-label input { accent-color: var(--red-bright); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.form-fields { display: flex; flex-direction: column; gap: 0.8rem; }
.form-input { background: rgba(245,239,224,0.08); border: 1px solid rgba(245,239,224,0.15); color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s; width: 100%; }
.form-input::placeholder { color: rgba(245,239,224,0.35); }
.form-input:focus { border-color: var(--red-bright); }
.form-textarea { resize: vertical; }
.form-submit { width: 100%; margin-top: 0.5rem; }

/* ── FAQ ── */
#faq { background: var(--cream); padding: 6rem 0; }
.faq-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: 0.95; color: var(--red-dark); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1.5px solid rgba(155,16,16,0.15); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--red-dark); padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: '+'; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--red); flex-shrink: 0; transition: transform 0.25s; }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.3rem; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.92rem; line-height: 1.75; color: #444; }

/* ── BUSINESS ── */
#business { background: var(--black); padding: 6rem 0; color: var(--cream); }
.business-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.business-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 0.95; color: var(--cream); margin-bottom: 1rem; margin-top: 0.5rem; }
.business-text p { font-size: 0.95rem; line-height: 1.75; color: rgba(245,239,224,0.7); }
.business-photo { position: relative; overflow: hidden; }
.business-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; object-position: center top; }

/* ── FOOTER ── */
footer { background: #0a0a0a; padding: 2rem 4rem; border-top: 1px solid rgba(155,16,16,0.3); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
footer p { font-size: 0.73rem; color: rgba(245,239,224,0.3); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.7rem; color: rgba(245,239,224,0.3); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.footer-links a:hover { color: var(--red-bright); }

/* ── BACK TO TOP ── */
#back-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 46px; height: 46px; background: var(--red); color: var(--cream); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s, background 0.2s; pointer-events: none; }
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { background: var(--red-bright); }
#back-top svg { width: 18px; height: 18px; }

/* ── ANIMATIONS ── */
/* Content is visible by default. JS adds .js-ready to body to enable animations. */
.js-ready .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-ready .fade-up { opacity: 1; transform: none; } }

/* ── HAMBURGER & MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; margin-left: 0.75rem; flex-shrink: 0; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(17,17,17,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 0; }
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { border-bottom: 1px solid rgba(245,239,224,0.07); }
.mobile-nav ul a { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.1em; color: var(--cream-dark); text-decoration: none; padding: 0.7rem 2rem; transition: color 0.2s; }
.mobile-nav ul a:hover { color: var(--red-bright); }
.mobile-nav-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--cream-dark); cursor: pointer; padding: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  /* Nav */
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 55vw; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-title { font-size: clamp(3.5rem, 12vw, 6rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }

  /* CTA bar */
  .cta-bar-inner { grid-template-columns: 1fr 1fr; }
  .cta-action { border-bottom: 1px solid rgba(245,239,224,0.08); padding: 1rem 1.2rem; font-size: 0.75rem; }

  /* About */
  .about-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .mvg-grid { grid-template-columns: 1fr; }

  /* Braids */
  .braids-section-inner { padding: 3rem 1.5rem; }
  .braids-top { grid-template-columns: 1fr; gap: 2rem; }
  .braids-inline { grid-template-columns: 1fr; gap: 1.2rem; }
  .steps-grid { grid-template-columns: 1fr; }

  /* Map */
  .map-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-label { padding: 2rem 1.5rem 0.75rem; }

  /* Record */
  .record-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .record-badge { font-size: 4rem; }
  .progress-bar-wrap { padding: 0 1.5rem 2rem; }

  /* Gallery */
  .gallery-inner { padding: 3rem 1.5rem; }
  .media-placeholders { grid-template-columns: 1fr; gap: 1rem; }

  /* Charity */
  .charity-inner { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 0; }
  .charity-text { padding: 2.5rem 0; }

  /* Team */
  .team-inner { padding: 3rem 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photo-wrap { margin-bottom: 2rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .checkbox-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }

  /* Business */
  .business-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }

  /* Footer */
  footer { padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; }

  /* Back to top */
  #back-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  /* CTA bar */
  .cta-bar-inner { grid-template-columns: 1fr; }

  /* Cities */
  .cities-grid { grid-template-columns: 1fr; }

  /* Team — single column on small screens */
  .team-grid { grid-template-columns: 1fr; }

  /* Count bar — stack vertically */
  .braid-count-bar { flex-direction: column; }
  .count-divider { width: 40px; height: 1px; margin: 0 auto; }

  /* Hero title bigger on small */
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  /* Section headings */
  .about-left h2, .braids-top h2, .map-text h2,
  .record-text h2, .gallery-header h2, .charity-text h2,
  .team-header h2, .contact-left h2, .faq-header h2,
  .business-text h2 { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  /* Cards full padding */
  .team-card, .mvg-item, .step-body { padding: 1.5rem; }

  /* Progress bar */
  .progress-count { font-size: 1.5rem; }
}