:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --navy: #0A0F1E;
  --navy-mid: #111827;
  --navy-card: #161D30;
  --white: #F5F0E8;
  --text-muted: #8A95B0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-logo { display: inline-flex; align-items: center; }
nav img { height: 30px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-toggle {
  display: none;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(201,168,76,0.14);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle i { font-size: 1rem; }

.hero-small {
  padding: 6.3rem 1.2rem 2.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.hero-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 15%, rgba(10,40,100,0.35) 0%, transparent 60%);
  z-index: 0;
}
.hero-small > * { position: relative; z-index: 1; }
.hero-tagline {
  font-family: "Dancing Script", cursive;
  color: var(--gold-light);
  font-size: clamp(1.05rem, 4.3vw, 1.45rem);
  margin-bottom: 0.7rem;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.5px;
  font-size: clamp(2.2rem, 10vw, 4rem);
  line-height: 0.95;
}

section {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 2.8rem 1.2rem;
}
.section-label {
  display: block;
  font-family: "Dancing Script", cursive;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1;
  margin-bottom: 1.3rem;
}
.divider {
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.4rem;
}

.copy-card, .timeline-item, .value-card, .mv-card, .cta-card {
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 14px;
}

.copy-card { padding: 1.2rem; }
.copy-card p {
  line-height: 1.72;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.95);
  margin-bottom: 1rem;
}
.copy-card p:last-child { margin-bottom: 0; }
.copy-card .quote {
  text-align: center;
  font-family: "Dancing Script", cursive;
  color: var(--gold-light);
  font-size: clamp(1.5rem, 6vw, 2rem);
  line-height: 1.4;
}
.copy-card .quote-stars {
  display: inline-flex;
  gap: 0.25rem;
  margin-left: 0.35rem;
  color: var(--gold);
  font-size: 0.88em;
  vertical-align: middle;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.35rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.43rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.15));
}
.timeline-item {
  position: relative;
  padding: 1rem 1rem 1rem 1.15rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  left: -1.24rem;
  top: 1.15rem;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
}
.timeline-item h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.6px;
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}
.timeline-item p, .timeline-item li {
  color: rgba(245,240,232,0.94);
  line-height: 1.65;
  font-size: 0.93rem;
}
.timeline-item ul { margin-top: 0.55rem; padding-left: 0; list-style: none; }
.timeline-item li {
  margin-bottom: 0.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.timeline-item li i {
  color: var(--gold);
  margin-top: 0.22rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.value-card { padding: 1rem; }
.value-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.8px;
  margin-bottom: 0.35rem;
}
.value-card p { font-size: 0.9rem; color: rgba(245,240,232,0.92); line-height: 1.6; }

.mv-stack { display: grid; gap: 0.9rem; }
.mv-card { padding: 1.05rem; }
.mv-card h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.8px;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}
.mv-card p { font-size: 0.92rem; line-height: 1.7; color: rgba(245,240,232,0.94); }

.director-card {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
}
.director-photo-wrap {
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.32);
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.1));
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.director-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.director-content h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.8px;
  font-size: clamp(1.9rem, 7vw, 2.5rem);
  margin-bottom: 0.35rem;
}
.director-content p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.final-cta { padding-top: 1rem; padding-bottom: 4.5rem; }
.cta-card { padding: 1.25rem; text-align: center; }
.cta-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.5rem);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.cta-card p { color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #0A0F1E;
  font-family: "Asap Condensed", sans-serif;
  font-weight: 900;
  font-size: 0.96rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  transition: background-position 0.4s, transform 0.2s;
}
.btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); }

footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  color: var(--text-muted);
  font-size: 0.8rem;
}
footer img {
  width: 100px;
  margin-bottom: 1rem;
  opacity: 0.7;
}
footer p { margin-top: 0.5rem; }
footer a {
  color: var(--gold);
  text-decoration: none;
}
footer i { color: var(--gold); }
.footer-location-link { color: var(--text-muted); }
.footer-location-link:hover { color: var(--gold); }
.footer-social-link { margin-top: 0.45rem; }
.footer-social-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.wa-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.84rem 1.2rem 0.84rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
}
.wa-float svg { width: 23px; height: 23px; flex-shrink: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(10,15,30,0.96);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 12px;
    padding: 0.55rem;
    backdrop-filter: blur(10px);
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 0.82rem;
    padding: 0.62rem 0.72rem;
    border-radius: 9px;
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
  }
  .nav-links a:hover {
    color: var(--gold-light);
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.22);
  }
}

@media (max-width: 480px) {
  .wa-float span { display: none; }
  .wa-float {
    padding: 1rem;
    border-radius: 50%;
  }
}

@media (min-width: 740px) {
  nav { padding: 1rem 1.5rem; }
  nav img { height: 36px; }
  .hero-small { padding-top: 7.1rem; padding-bottom: 2.7rem; }
  section { padding: 3.5rem 1.6rem; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-card.wide { grid-column: 1 / -1; }
  .mv-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .director-card { grid-template-columns: minmax(220px, 340px) 1fr; padding: 1.2rem; }
  .director-photo-wrap { margin: 0; }
}
