/* ======================================
   PRESTARENA — Style Principal
   Palette : Bleu nuit / Corail / Blanc cassé
   ====================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0c1829;
  --navy-light: #142237;
  --navy-mid: #1a2d45;
  --gold: #E8502A;
  --gold-light: #FF7A56;
  --gold-dark: #C73E1F;
  --coral: #E8502A;
  --coral-light: #FF7A56;
  --cream: #f8f6f1;
  --cream-dark: #ede9e0;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7c93;
  --text-on-dark: #c8d6e5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(12, 24, 41, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 24, 41, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- SPLASH SCREEN ---------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: splashIn 0.6s ease forwards 0.2s;
}

.splash-globe {
  margin-bottom: 24px;
}

.splash-globe svg {
  width: 80px;
  height: 80px;
  color: var(--white);
  opacity: 0.9;
}

.splash-logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.splash-logo-accent {
  color: var(--gold);
}

.splash-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-on-dark);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 300;
}

@keyframes splashIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(12, 24, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 2;
}

.nav-brand-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}

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

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  opacity: 1 !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white);
}

.hero-title-line.accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.1rem);
  color: var(--text-on-dark);
  max-width: 700px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-card {
  background: var(--navy);
  color: var(--gold);
  width: 100%;
  margin-top: auto;
}

.btn-card:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 24, 41, 0.2);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.services .section-header {
  margin-bottom: 32px;
}

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

.section-header h2,
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* ---------- GLASS EFFECT ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--cream-dark);
  overflow: visible;
  padding-top: 64px;
  padding-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 16px;
}

.service-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-audience {
  font-size: 0.8125rem;
  color: var(--gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.service-list {
  margin-bottom: 28px;
  flex: 1;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 24, 41, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li > span:first-child {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9375rem;
}

.service-detail {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-label {
  display: inline-block;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
}

.value strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 2px;
}

.value span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

/* ---------- PRICING ---------- */
.pricing {
  background: var(--navy);
  padding-top: 60px;
  padding-bottom: 80px;
}

.pricing .section-header {
  margin-bottom: 32px;
}

.pricing .section-label {
  color: var(--gold-light);
}

.pricing .section-header h2 {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.pricing-card.featured {
  background: rgba(201, 168, 76, 0.08) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price span {
  font-size: 1.5rem;
  vertical-align: super;
}

/* Double pricing layout */
.price-dual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.price-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-mode {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.8;
}

.price-sm {
  font-size: 2.2rem;
}

.price-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  margin: 0 4px;
}

.pricing-header p {
  font-size: 0.875rem;
  color: var(--text-on-dark);
  margin-top: 8px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-note svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--text-on-dark);
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--gold-light);
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-grid-centered {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}

.contact-card {
  border-radius: var(--radius);
  padding: 40px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-card > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(12, 24, 41, 0.06);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-detail a {
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}

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

.contact-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  background: rgba(201, 168, 76, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}

/* ---------- BOOKING WIDGET ---------- */
.booking-widget {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.booking-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.booking-step-hidden {
  display: none;
}

/* Service options */
.booking-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(12, 24, 41, 0.08);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.booking-option:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.12);
}

.booking-option-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.booking-option-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* Scrollable request type list */
.booking-request-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.booking-request-list::-webkit-scrollbar {
  width: 4px;
}

.booking-request-list::-webkit-scrollbar-track {
  background: transparent;
}

.booking-request-list::-webkit-scrollbar-thumb {
  background: rgba(12, 24, 41, 0.15);
  border-radius: 4px;
}

.booking-request-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(12, 24, 41, 0.08);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  width: 100%;
}

.booking-request-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.booking-request-item.is-other {
  color: var(--text-light);
  font-style: italic;
}

/* Price display */
.booking-price-display {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 20px;
  text-align: center;
  display: none;
}

.booking-price-display.visible {
  display: block;
}

.booking-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.booking-price-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Step 2 */
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
  padding: 0;
  transition: var(--transition);
}

.booking-back:hover {
  color: var(--navy);
}

.booking-selected {
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
}

.booking-mode-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.booking-mode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(12, 24, 41, 0.08);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.booking-mode:hover {
  border-color: var(--gold);
}

.booking-mode.active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--navy);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(12, 24, 41, 0.1);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--navy);
  transition: var(--transition);
  outline: none;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.booking-field textarea {
  resize: vertical;
  min-height: 70px;
}

.booking-submit {
  width: 100%;
  margin-top: 4px;
}

/* Booking info rows */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(12, 24, 41, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(12, 24, 41, 0.07);
}

.booking-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--navy);
}

.booking-info-row svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

.booking-info-row strong {
  color: var(--navy);
}

.booking-cal-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.booking-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 32px 16px;
}

.booking-confirmation svg {
  color: #22c55e;
  margin-bottom: 16px;
}

.booking-confirmation h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.booking-confirmation p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.booking-reset {
  margin: 0 auto;
}

@media (max-width: 480px) {
  .booking-field-row {
    grid-template-columns: 1fr;
  }

  .booking-widget {
    padding: 28px 20px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

.footer-logo-accent {
  color: var(--gold);
}

.footer-brand p {
  color: var(--text-on-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-on-dark);
  font-size: 0.875rem;
  padding: 6px 0;
  opacity: 0.7;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-on-dark);
  opacity: 0.5;
}

.footer-bottom a {
  color: inherit;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
  opacity: 1;
}

/* ---------- HERO ANIMATIONS (CSS-based, after splash) ---------- */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 1.9s;
}

.hero-anim-delay-1 { animation-delay: 2.1s; }
.hero-anim-delay-2 { animation-delay: 2.3s; }

/* No splash on reload — show hero immediately */
.no-splash .hero-anim,
.no-splash .hero-anim-delay-1,
.no-splash .hero-anim-delay-2 {
  animation-delay: 0.1s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-image {
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.125rem;
  }

  .nav-cta {
    text-align: center;
  }

  /* Hero */
  .hero-content {
    padding: 140px 24px 80px;
  }

  /* Grids */
  .services-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child,
  .pricing-grid .pricing-card:last-child {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-card,
  .pricing-card,
  .contact-card {
    padding: 28px 20px;
  }
}
