/* ===================================================
   THE QUINCE PROJECT — style.css
   Palette: #0a0a0a (deep black), #ffffff (white), #C9A84C (gold)
   =================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --gold:        #C9A84C;
  --gold-light:  #dfc06b;
  --gold-dim:    rgba(201, 168, 76, 0.3);
  --white:       #ffffff;
  --white-dim:   rgba(255, 255, 255, 0.7);
  --white-faint: rgba(255, 255, 255, 0.05);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', system-ui, sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================================
   NAVIGATION
   =================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gold-dim);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--gold);
  width: 100%;
}

.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  letter-spacing: 0.14em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nav-links a.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a130a 0%, var(--black) 70%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 6rem 2rem 4rem;
  animation: fadeUp 1.2s ease both;
}

.hero-logo {
  width: min(460px, 80vw);
  border-radius: 8px;
  animation: fadeUp 1.4s 0.2s ease both;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  animation: fadeUp 1.4s 0.4s ease both;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  animation: fadeUp 1.4s 0.5s ease both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===================================================
   SHARED SECTION STYLES
   =================================================== */
section {
  padding: 7rem 0;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.gold-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 3rem;
}

/* ===================================================
   ABOUT
   =================================================== */
#about {
  background: var(--black-soft);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--white-dim);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about-text strong { color: var(--gold-light); font-weight: 500; }
.about-text em { color: var(--white); font-style: italic; }

.about-lead {
  font-family: var(--serif);
  font-size: 1.3rem !important;
  font-weight: 500;
  color: var(--white) !important;
  font-style: italic;
}

.about-closing {
  font-family: var(--serif) !important;
  font-size: 1.1rem !important;
  color: var(--gold-light) !important;
  border-left: 2px solid var(--gold-dim);
  padding-left: 1rem;
  margin-top: 1.5rem !important;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-quote-card {
  background: var(--white-faint);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 2rem;
}

.about-quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.about-quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.about-quote-card cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: normal;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background: var(--white-faint);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  transition: background var(--transition), border-color var(--transition);
}
.badge:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}
.badge-icon { font-size: 1.2rem; }
.badge-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white-dim);
}

/* ===================================================
   PORTFOLIO
   =================================================== */
#portfolio {
  background: var(--black);
  position: relative;
}

#portfolio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* Video */
.video-wrapper {
  margin-bottom: 5rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.1);
  transition: box-shadow var(--transition);
}
.video-frame:hover {
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.18);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Video thumbnail / click-to-play */
.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-thumbnail:hover .video-thumb-img {
  transform: scale(1.03);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.video-thumbnail:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-yt-link {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.video-yt-link:hover { color: var(--gold-light); }

.video-caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* Carousel */
.carousel-section { text-align: center; }

.carousel-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-card);
  transition: border-color var(--transition), transform var(--transition);
}
.carousel-slide:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ===================================================
   PHOTOGRAPHER PROFILE
   =================================================== */
#photographer {
  background: var(--black-soft);
  position: relative;
}
#photographer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

/* Team member layout */
.team-member {
  margin-bottom: 1rem;
}

.team-member-header {
  margin-bottom: 2rem;
}

.team-member-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
}

.team-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.team-divider-icon {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.profile-grid-reverse {
  grid-template-columns: 1fr 320px;
}

.profile-grid-reverse .profile-img-col {
  order: 2;
}

.profile-grid-reverse .profile-text-col {
  order: 1;
}

.profile-img-frame {
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition);
}
.profile-img-frame:hover { border-color: var(--gold); }

.profile-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.profile-img-frame:hover .profile-real-img {
  transform: scale(1.03);
}

.profile-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(201,168,76,0.5);
}
.profile-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}
.profile-img-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.profile-awards {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  padding: 0.6rem 1rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
}
.award-icon { font-size: 1rem; }

.profile-lead {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.profile-text-col p {
  color: var(--white-dim);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.profile-text-col strong { color: var(--gold-light); font-weight: 500; }

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: rgba(201,168,76,0.04);
  transition: background var(--transition), border-color var(--transition);
}
.tag:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

/* ===================================================
   PACKAGES
   =================================================== */
#packages {
  background: var(--black);
  position: relative;
}
#packages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.packages-subtitle {
  color: var(--white-dim);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 3.5rem;
  margin-top: -1.5rem;
}

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

/* Last 2 cards in second row centered */
.packages-grid .package-card:nth-child(4),
.packages-grid .package-card:nth-child(5) {
  grid-column: auto;
}

.package-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.package-featured {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, #1a1508 0%, var(--black-card) 100%);
  box-shadow: 0 0 40px rgba(201,168,76,0.1);
}
.package-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.18);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.package-badge-secondary {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.package-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-dim);
  opacity: 0.7;
}

.package-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  text-align: right;
}

.package-divider {
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin-bottom: 1.5rem;
}

.phase-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.package-phase {
  margin-bottom: 1.25rem;
}

.package-phase ul li {
  font-size: 0.88rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.package-phase ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.35rem;
}

/* À La Carte grid */
.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.alacarte-item {
  padding: 0.85rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  background: rgba(201,168,76,0.04);
}
.alacarte-price {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.alacarte-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--white-dim);
  line-height: 1.4;
}

.package-alacarte {
  grid-column: span 1;
}

/* Bigger grid for last row of 2 */
@media (min-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .packages-grid .package-card:nth-child(4) { grid-column: 1 / 2; }
  .packages-grid .package-card:nth-child(5) { grid-column: 2 / 4; }
}

/* ===================================================
   CONTACT / CTA
   =================================================== */
#contact {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
    var(--black-soft);
  text-align: center;
  position: relative;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.contact-inner { max-width: 700px; margin: 0 auto; }

.contact-text {
  color: var(--white-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  margin-top: -1rem;
}

.contact-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: 1px solid var(--gold-dim);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.contact-sep { color: var(--gold-dim); }

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--black);
  padding: 4rem 0 2.5rem;
  text-align: center;
  border-top: 1px solid var(--gold-dim);
}

.footer-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 1.5rem;
  border-radius: 4px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

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

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid .package-card:nth-child(4) { grid-column: auto; }
  .packages-grid .package-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-quote-card { flex: 1; min-width: 260px; }
  .about-badges { flex: 1; min-width: 200px; flex-direction: column; }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .profile-grid-reverse {
    grid-template-columns: 1fr;
  }
  .profile-grid-reverse .profile-img-col {
    order: 0;
  }
  .profile-grid-reverse .profile-text-col {
    order: 0;
  }
  .profile-img-frame {
    max-width: 280px;
    aspect-ratio: 1/1;
  }
  .profile-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.97);
    padding: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a.nav-cta {
    margin-top: 1.5rem;
    text-align: center;
    padding: 0.8rem;
  }

  .nav-toggle { display: flex; }

  .packages-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }

  .carousel-slide { flex: 0 0 calc(50% - 0.75rem); }

  .contact-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .carousel-slide { flex: 0 0 90%; }
  .alacarte-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   VIDEO MODAL LIGHTBOX
   =================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  width: min(90vw, 1100px);
  z-index: 1;
  animation: modalIn 0.35s ease forwards;
}
.video-modal:not(.active) .video-modal-inner {
  animation: none;
}

@keyframes modalIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.video-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.15);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.video-modal-close:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Make thumbnail cursor pointer clearly */
.video-frame { cursor: pointer; }
