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

:root {
  --red: #C8102E;
  --red-dark: #8B0018;
  --red-light: #FF2A4A;
  --black: #0A0A0A;
  --off-black: #111111;
  --charcoal: #1A1A1A;
  --dark-gray: #222222;
  --mid-gray: #444444;
  --light-gray: #888888;
  --cream: #F5F0E8;
  --off-white: #FAF8F5;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.97) 0%, transparent 100%);
}

.nav-logo {
  height: 48px;
  filter: brightness(1.1);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.22) saturate(0.7);
  transform: scale(1.04);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(200,16,46,0.18) 0%, transparent 65%),
              linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--red-light);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(245,240,232,0.7);
  margin-bottom: 2.6rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.4rem;
  border-radius: 2px;
  transition: all 0.25s;
  box-shadow: 0 0 30px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 0 48px rgba(200,16,46,0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: 1px solid rgba(245,240,232,0.3);
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,0.07);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ─── SOCIAL PROOF STRIP ─── */
.strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(200,16,46,0.25);
  border-bottom: 1px solid rgba(200,16,46,0.25);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

.strip-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(245,240,232,0.12);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }
.container { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--cream);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 2px;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.8) brightness(0.9);
  display: block;
}

.about-years {
  position: absolute;
  bottom: 2rem; right: -2rem;
  background: var(--red);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 2px;
}

.about-years strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
}

.about-years span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text {
  color: rgba(245,240,232,0.75);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--cream);
  font-weight: 500;
}

/* ─── DIRECTOR ─── */
.director-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--off-black);
}

.director-img-col {
  position: relative;
  overflow: hidden;
}

.director-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.75) contrast(1.05);
}

.director-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--off-black) 100%);
}

.director-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
  position: relative;
}

.director-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.director-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.director-name em {
  font-style: italic;
  color: var(--red-light);
  font-weight: 600;
}

.director-role {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 2rem;
}

.director-text {
  color: rgba(245,240,232,0.72);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 460px;
}

.director-text strong {
  color: var(--cream);
  font-weight: 500;
}

.director-quote {
  border-left: 2px solid var(--red);
  padding-left: 1.4rem;
  margin: 1.8rem 0 2.2rem;
  max-width: 440px;
}

.director-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.5;
}

/* ─── WHY US ─── */
.why-section { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--dark-gray);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.why-card:hover { background: #1e1e1e; }

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.why-desc {
  color: rgba(245,240,232,0.55);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ─── COURSES ─── */
.courses-section { background: var(--off-black); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.course-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.course-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.6);
  transition: filter 0.5s, transform 0.6s;
}

.course-card:hover .course-card-bg {
  filter: brightness(0.25) saturate(0.5);
  transform: scale(1.04);
}

.course-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
}

.course-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.course-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.course-desc {
  color: rgba(245,240,232,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}

.course-card.featured {
  grid-column: 1 / -1;
  aspect-ratio: 21/7;
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--black); overflow: hidden; }

.gallery-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 3 / 5; grid-row: 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.4s, transform 0.5s;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) img { aspect-ratio: 8/3; }
.gallery-item:nth-child(6) img { aspect-ratio: 8/3; }

.gallery-item:hover img {
  filter: saturate(0.95) brightness(1);
  transform: scale(1.03);
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  background: var(--charcoal);
  text-align: center;
  padding: 5rem 2rem;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 2rem;
  line-height: 1.4;
}

.testimonial-quote::before { content: '\201C'; color: var(--red); }
.testimonial-quote::after { content: '\201D'; color: var(--red); }

.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 2rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/billy-bond-bg.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.5);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.22) 0%, transparent 70%);
}

.cta-content { position: relative; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.cta-title em {
  font-style: italic;
  color: var(--red-light);
}

.cta-sub {
  color: rgba(245,240,232,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}

/* ─── DETAILS ─── */
.details-section { background: var(--off-black); }

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}

.detail-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.detail-label {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.detail-desc {
  color: rgba(245,240,232,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.detail-divider {
  width: 32px;
  height: 1px;
  background: var(--red);
  margin-bottom: 1.2rem;
  opacity: 0.5;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img { height: 40px; opacity: 0.8; }

.footer-info {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
  line-height: 2;
  text-align: center;
}

.footer-info a {
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .director-section { grid-template-columns: 1fr; min-height: auto; }
  .director-img-col { height: 50vh; }
  .director-img-col::after { background: linear-gradient(to bottom, transparent 70%, var(--off-black) 100%); }
  .director-text-col { padding: 3rem 1.5rem; }
  .director-text, .director-quote { max-width: 100%; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-years { right: 1rem; }
  .about-img-wrap::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-card.featured { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .gallery-item img { aspect-ratio: 4/3 !important; }
  .details-grid { grid-template-columns: 1fr; gap: 2rem; }
  .strip { gap: 1.2rem; }
  .strip-divider { display: none; }
  nav { padding: 1rem; }
}
