/*
Theme Name: Golden Petals
Theme URI: https://gpr.houstontechsys.net
Author: Houston TechSys
Author URI: https://houstontechsys.net
Description: Luxury custom theme for Golden Petals Reception Hall — Cypress, TX's premier event venue for quinceañeras, weddings, and corporate events.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: goldenpetals
*/

/* ============================================================
   CSS VARIABLES — Brand Identity
   ============================================================ */
:root {
  --gold: #C9A84C;
  --gold-light: #E5C97A;
  --gold-dark: #A07830;
  --navy: #0D1B2A;
  --navy-light: #152438;
  --blush: #F2D7D5;
  --champagne: #F7EED3;
  --white: #FAFAFA;
  --charcoal: #1C1C1C;
  --gray: #6B7280;
  --light-gray: #F3F4F6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-weight: 300; font-size: 1rem; color: var(--charcoal); line-height: 1.8; }
.lead { font-size: 1.15rem; font-weight: 300; color: var(--gray); line-height: 1.9; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 20px; }
.section-title--light { color: var(--white); }

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 40px;
}
.section-divider--left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* Gold underline hover */
.gold-link { position: relative; display: inline-block; }
.gold-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.35s ease; }
.gold-link:hover::after { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); letter-spacing: 0.06em; line-height: 1.1; }
.logo-main span { color: var(--gold); }
.logo-sub { font-family: var(--font-body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 8px 14px; transition: var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; }
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; }
.header-phone:hover { color: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); }
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.35) 50%, rgba(13,27,42,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

.petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -20px; width: 8px; height: 8px; border-radius: 50% 0 50% 0; opacity: 0; animation: petalFall linear infinite; }

@keyframes petalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.scroll-text { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.intro-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.intro-strip p { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }

.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.4); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--champagne), var(--blush)); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.8rem; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: linear-gradient(160deg, var(--navy) 0%, #0A1520 100%); position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg); overflow: hidden; margin-top: 60px; }
.why-item { background: rgba(13,27,42,0.9); padding: 56px 40px; text-align: center; position: relative; }
.why-number { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(201,168,76,0.15); line-height: 1; position: absolute; top: 24px; right: 24px; }
.why-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.why-item h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--light-gray); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 60px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cta { margin-top: 48px; text-align: center; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-carousel { position: relative; overflow: hidden; margin-top: 60px; }
.reviews-track { display: flex; gap: 28px; transition: transform 0.5s ease; }
.review-card {
  min-width: calc(33.333% - 19px);
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-stars span { color: var(--gold); font-size: 1rem; }
.review-text { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.review-source { font-size: 0.75rem; color: var(--gray); }
.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; }
.reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.3); cursor: pointer; transition: var(--transition); border: none; }
.reviews-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   VIRTUAL TOUR
   ============================================================ */
.tour-section { background: linear-gradient(135deg, var(--navy), #0A1520); text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.tour-section h2 { color: var(--white); position: relative; }
.tour-section p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 16px auto 40px; position: relative; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(160deg, #0A1520, var(--navy));
  padding: 120px 0;
  position: relative;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-text span { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* CF7 Dark Form */
.dark-form input[type="text"],
.dark-form input[type="email"],
.dark-form input[type="tel"],
.dark-form input[type="number"],
.dark-form input[type="date"],
.dark-form select,
.dark-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition);
  outline: none;
  margin-bottom: 4px;
}
.dark-form input:focus,
.dark-form select:focus,
.dark-form textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.dark-form select option { background: var(--navy); color: var(--white); }
.dark-form textarea { height: 120px; resize: vertical; }
.dark-form .form-row { margin-bottom: 18px; }
.dark-form .form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.dark-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dark-form .wpcf7-list-item { display: flex; align-items: center; gap: 8px; margin: 0 0 8px 0; }
.dark-form .wpcf7-list-item label { font-size: 0.82rem; color: rgba(255,255,255,0.7); cursor: pointer; }
.dark-form .wpcf7-list-item input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--gold); cursor: pointer; }
.dark-form .checkboxes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dark-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  margin-top: 8px;
}
.dark-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #070F1A; color: rgba(255,255,255,0.6); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); letter-spacing: 0.06em; }
.footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; font-style: italic; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 2.2; }
.footer-map { margin-top: 60px; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-map iframe { width: 100%; height: 240px; display: block; filter: grayscale(80%) contrast(1.1) brightness(0.7); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   PAGE HERO (interior)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 16px auto 0; position: relative; }

/* Interior pages */
.page-content { padding: 80px 0; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.package-card { border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.package-card.featured { border-color: var(--gold); }
.package-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 36px 32px; text-align: center; }
.package-card.featured .package-header { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.package-badge { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.package-card.featured .package-badge { color: var(--navy); background: rgba(13,27,42,0.2); border-color: rgba(13,27,42,0.2); }
.package-name { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); }
.package-body { padding: 32px; background: var(--white); }
.package-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 0.9rem; color: var(--charcoal); }
.package-feature:last-child { border-bottom: none; }
.package-feature-icon { color: var(--gold); }

/* Gallery Page */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.gallery-page-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-page-item:hover img { transform: scale(1.06); }

/* Contact page */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .review-card { min-width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .dark-form .form-grid-2 { grid-template-columns: 1fr; }
  .dark-form .checkboxes-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}

.admin-bar .site-header { top: 32px; }
.screen-reader-text { position: absolute; left: -9999em; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto; }
