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

:root {
  --navy: #4A5240;
  --navy-mid: #3A4132;
  --gold: #C4A44A;
  --gold-light: #D4B86A;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-light: #F2F0EB;
  --gray-mid: #9CA3AF;
  --gray-dark: #4B5563;
  --text: #1A1A2E;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.55;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.75rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-left: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(196,164,74,0.08); }

.hero-stats {
  position: relative;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 540px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--gray-dark);
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ── SERVICES ── */
#services { background: var(--off-white); }

.services-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.83rem;
  color: var(--gray-dark);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── EVENT TYPES ── */
#event-types { background: var(--navy); }

#event-types .section-title { margin-bottom: 3rem; }

.event-accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.event-card {
  background: var(--navy);
  transition: background 0.2s;
}

.event-card:hover { background: var(--navy-mid); }

.event-card summary {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  padding: 1.4rem 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.event-card summary::-webkit-details-marker { display: none; }

.event-card summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.event-card[open] summary::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.event-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  padding: 0 2rem 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
}

.event-card[open] p {
  max-height: 400px;
  opacity: 1;
  padding: 0.5rem 2rem 2rem;
}

@media (max-width: 640px) { .event-accordion { grid-template-columns: 1fr; } }

/* ── GALLERY / CAROUSEL ── */
#gallery {
  background: var(--white);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.gallery-header {
  padding: 4rem 5% 2rem;
}

.carousel {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 100vh;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: filter 0.35s ease;
  will-change: transform;
}

.carousel-slide:hover img {
  filter: brightness(0.4) grayscale(0.3);
}

.slide-hover-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.carousel-slide:hover .slide-hover-info { opacity: 1; }

.slide-event {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 2rem;
}

.slide-location {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.carousel-btn:hover { background: rgba(255,255,255,0.28); }
.carousel-btn--prev { left: 1rem; }
.carousel-btn--next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .carousel-slide { height: 50vh; }
  .carousel-btn { width: 2.2rem; height: 2.2rem; font-size: 0.9rem; }
}

/* ── PROCESS ── */
#process { background: var(--white); }

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

.process-step {
  position: relative;
  padding-top: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 2.5rem;
  right: -1rem;
  height: 1px;
  background: var(--gray-light);
}

.process-step:last-child::before { display: none; }

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ── TEAM ── */
#team { background: var(--gray-light); }

.team-header { margin-bottom: 3.5rem; }

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 260px 1fr;
}

.team-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--navy-mid);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.katherine-photo { transform: scale(1.25) translateX(10%); }

.team-info {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

/* ── CTA BANNER ── */
#cta {
  background: var(--navy);
  text-align: center;
  padding: 5rem 5%;
}

#cta .section-title {
  max-width: 600px;
  margin: 0.75rem auto 2rem;
}

/* ── CONTACT ── */
#contact { background: var(--off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-email {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.contact-email a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.contact-email a:hover { color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status { font-size: 0.875rem; margin-top: 0.25rem; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

/* ── FOOTER ── */
footer {
  background: #060E17;
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::before { display: none; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { min-height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 1rem 5%; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  #hero { align-items: center; text-align: center; padding-top: 6rem; }
  .hero-eyebrow { margin-top: 0; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .hero-content .buttons { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; margin: 0; }

  .process-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
