/* ===================================================================
   RC ENDLESS POSSIBILITIES — base.css v2
   Rounded corners, layered animations, drawer nav, modal system
   =================================================================== */

:root {
  --navy: #1a2b5c;
  --navy-deep: #0f1a3d;
  --navy-soft: #2a3f7a;
  --gold: #c9a961;
  --gold-bright: #d4b97a;
  --gold-deep: #a8893f;
  --cream: #faf7f2;
  --ivory: #f5efe4;
  --charcoal: #2a2a2a;
  --grey: #6b6b6b;
  --grey-light: #e8e4dc;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(26,43,92,0.08);
  --shadow-md: 0 10px 30px rgba(26,43,92,0.12);
  --shadow-lg: 0 20px 60px rgba(26,43,92,0.18);
  --shadow-gold: 0 10px 30px rgba(201,169,97,0.25);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-deep); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }

/* ============== NAVBAR ============== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(26, 43, 92, 0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 2px 20px rgba(26,43,92,0.06);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.navbar-brand { display: flex; align-items: center; transition: var(--transition); }
.navbar-brand:hover { transform: translateY(-1px); }
.navbar-brand img { height: 52px; width: auto; display: block; }
@media (max-width: 600px) {
  .navbar-brand img { height: 44px; }
}

.navbar-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.navbar-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 500;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.12em; position: relative; padding: 0.5rem 0;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.navbar-links a:hover::after, .navbar-links a.active::after {
  transform: scaleX(1); transform-origin: left;
}
.navbar-cta {
  background: var(--navy) !important; color: var(--cream) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--radius-pill) !important;
  border: 1px solid var(--navy) !important;
  position: relative;
  transition: var(--transition);
}
.navbar-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.navbar-cta::before { display: none !important; }
.navbar-cta::after { display: none !important; }

.navbar-toggle {
  display: none; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0;
  position: relative; z-index: 200;
}
.navbar-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 6px auto;
  transition: transform 0.4s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.3s, background 0.3s;
  border-radius: 2px;
}
.navbar-toggle.open span { background: var(--navy); }
.navbar-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============== MOBILE DRAWER ============== */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 85vw); background: var(--cream); z-index: 150;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15); overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
}
.drawer-header {
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-header img { height: 44px; }
.drawer-close {
  width: 40px; height: 40px; background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-pill); cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: var(--navy); transition: var(--transition);
}
.drawer-close:hover { background: var(--navy); color: var(--gold); transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-links { list-style: none; padding: 2rem; flex: 1; }
.drawer-links li {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-drawer.open .drawer-links li { opacity: 1; transform: translateX(0); }
.mobile-drawer.open .drawer-links li:nth-child(1) { transition-delay: 0.15s; }
.mobile-drawer.open .drawer-links li:nth-child(2) { transition-delay: 0.20s; }
.mobile-drawer.open .drawer-links li:nth-child(3) { transition-delay: 0.25s; }
.mobile-drawer.open .drawer-links li:nth-child(4) { transition-delay: 0.30s; }
.mobile-drawer.open .drawer-links li:nth-child(5) { transition-delay: 0.35s; }
.mobile-drawer.open .drawer-links li:nth-child(6) { transition-delay: 0.40s; }
.mobile-drawer.open .drawer-links li:nth-child(7) { transition-delay: 0.45s; }
.drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; font-family: var(--font-serif);
  font-size: 1.5rem; font-style: italic; color: var(--navy);
  border-bottom: 1px solid var(--grey-light); transition: var(--transition);
}
.drawer-links a::after {
  content: '→'; font-style: normal; color: var(--gold);
  transition: var(--transition); font-size: 1.25rem;
}
.drawer-links a:hover { color: var(--gold-deep); padding-left: 0.5rem; }
.drawer-links a:hover::after { transform: translateX(4px); }
.drawer-footer { padding: 2rem; background: var(--ivory); border-top: 1px solid var(--grey-light); }
.drawer-footer .drawer-cta { display: block; text-align: center; margin-bottom: 1.5rem; }
.drawer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9rem; }
.drawer-contact a { color: var(--navy); display: flex; align-items: center; gap: 0.75rem; }
.drawer-contact svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }
.drawer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.drawer-socials a {
  width: 40px; height: 40px; border: 1px solid var(--navy);
  border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: var(--transition);
}
.drawer-socials a:hover { background: var(--navy); color: var(--gold); transform: translateY(-3px); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 26, 61, 0.5);
  backdrop-filter: blur(4px); z-index: 140;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
@media (max-width: 968px) {
  .navbar-toggle { display: block; }
  .navbar-links { display: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2.25rem; font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: var(--transition);
  text-align: center; border-radius: var(--radius-pill);
  position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease; z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--navy); color: var(--cream); border-color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: var(--gold); }
.btn-outline-light:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-full { width: 100%; }

/* ============== HERO ============== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--cream); overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,0.12) 0%, transparent 50%);
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(2deg); }
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3; z-index: 1;
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 1.5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-sans); font-size: 0.8rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  color: var(--cream); font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400; margin-bottom: 1.5rem; font-style: italic;
}
.hero h1 .accent {
  font-family: var(--font-script); color: var(--gold); font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}
@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-tagline {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic; color: var(--ivory); margin-bottom: 2.5rem; opacity: 0.92;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* ============== PHILOSOPHY ============== */
.philosophy {
  background: var(--navy); color: var(--cream);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.philosophy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.1) 0%, transparent 70%);
}
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  max-width: 1100px; margin: 0 auto; position: relative;
}
.philosophy-grid::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.philosophy-item { position: relative; z-index: 1; padding: 1rem; background: var(--navy); }
.philosophy-item h3 { color: var(--gold); font-style: italic; margin-bottom: 0.5rem; font-size: 1.75rem; }
.philosophy-item p { color: var(--ivory); opacity: 0.85; font-size: 0.95rem; }
@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============== SECTION HEADING ============== */
.section-heading { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: var(--font-sans); font-size: 0.8rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.section-heading h2 { margin-bottom: 1rem; }
.section-heading h2 .accent { font-family: var(--font-script); color: var(--gold); font-weight: 400; }
.section-heading p { max-width: 700px; margin: 0 auto; color: var(--grey); font-size: 1.05rem; }
.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1rem 0;
}
.divider-ornament::before, .divider-ornament::after {
  content: ''; width: 60px; height: 1px; background: var(--gold);
}
.divider-ornament-dot {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); border-radius: 1px;
}

/* ============== SERVICES GRID ============== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  position: relative; transition: var(--transition); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,169,97,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory); border-radius: var(--radius-md);
  margin-bottom: 1.5rem; color: var(--gold-deep);
  transition: var(--transition);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon {
  background: var(--gold); color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--grey); margin-bottom: 1.25rem; }
.service-card .service-link {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.service-card .service-link svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .service-link { color: var(--gold-deep); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============== SPLIT ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 968px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split-image {
  position: relative; aspect-ratio: 4/5; background: var(--ivory);
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition-slow);
}
.split-image:hover { transform: scale(1.02); }
.split-image::before {
  content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); z-index: -1; border-radius: var(--radius-lg);
}
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { color: var(--grey); margin-bottom: 1rem; font-size: 1rem; }

/* ============== GALLERY ============== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 968px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 1; overflow: hidden; background: var(--ivory);
  position: relative; cursor: pointer;
  border-radius: var(--radius-md);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,26,61,0.7) 100%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-zoom {
  position: absolute; bottom: 1rem; right: 1rem;
  width: 40px; height: 40px; background: var(--gold);
  border-radius: var(--radius-pill); display: flex;
  align-items: center; justify-content: center; color: var(--navy);
  opacity: 0; transform: translateY(10px);
  transition: var(--transition); z-index: 1;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: translateY(0); }

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--navy); color: var(--cream);
  padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.18) 0%, transparent 70%);
}
.cta-band::before { top: -150px; left: -150px; animation: float 8s ease-in-out infinite; }
.cta-band::after { bottom: -150px; right: -150px; animation: float 8s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.cta-band h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-band h2 .accent { font-family: var(--font-script); color: var(--gold); }
.cta-band p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

/* ============== FOOTER ============== */
.footer { background: var(--navy-deep); color: var(--ivory); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer h4 {
  color: var(--gold); font-size: 0.9rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.25rem; font-family: var(--font-sans); font-weight: 600;
}
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; opacity: 0.85; max-width: 320px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--ivory); font-size: 0.95rem; opacity: 0.85; transition: var(--transition); }
.footer ul a:hover { color: var(--gold); opacity: 1; padding-left: 4px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,97,0.4);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: var(--shadow-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(201,169,97,0.2);
  padding-top: 2rem; text-align: center; font-size: 0.85rem; opacity: 0.7;
}
.footer-bottom a { color: var(--gold); }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--cream); text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.12) 0%, transparent 60%);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .breadcrumb {
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.page-header h1 { color: var(--cream); font-style: italic; }
.page-header h1 .accent {
  font-family: var(--font-script); color: var(--gold); font-style: normal;
}

/* ============== FORMS ============== */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.95rem 1.1rem;
  font-family: var(--font-sans); font-size: 0.95rem;
  border: 1px solid var(--grey-light); background: var(--white);
  color: var(--charcoal); border-radius: var(--radius-md);
  transition: var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.15);
  transform: translateY(-1px);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Star rating */
.star-rating { display: inline-flex; flex-direction: row-reverse; gap: 0.25rem; }
.star-rating input { display: none; }
.star-rating label {
  cursor: pointer; color: var(--grey-light);
  font-size: 2rem; line-height: 1; margin: 0;
  letter-spacing: 0; text-transform: none;
  transition: var(--transition);
}
.star-rating label:hover, .star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold); transform: scale(1.1);
}

/* ============== MODAL / POPUP ============== */
.modal {
  position: fixed; inset: 0;
  background: rgba(15, 26, 61, 0.7); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-content {
  background: var(--cream); border-radius: var(--radius-xl);
  max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--bounce);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal.open .modal-content { transform: scale(1) translateY(0); }
.modal-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-header { padding: 2.5rem 2.5rem 1rem; text-align: center; }
.modal-eyebrow {
  font-family: var(--font-sans); font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.75rem;
}
.modal-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.modal-header h2 .accent { font-family: var(--font-script); color: var(--gold); }
.modal-header p { color: var(--grey); font-size: 0.95rem; }
.modal-body { padding: 1rem 2.5rem 2.5rem; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-pill); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: var(--transition); z-index: 1;
}
.modal-close:hover { background: var(--navy); color: var(--gold); transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366; color: white;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
  color: white;
}
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 54px; height: 54px; }
}

/* ============== REVIEWS ============== */
.review-card {
  background: var(--white); padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  position: relative; transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.review-quote {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--font-serif); font-size: 5rem;
  color: var(--gold); opacity: 0.25; line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--charcoal); line-height: 1.7; margin-bottom: 1.5rem;
}
.review-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--grey-light);
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--navy), var(--gold-deep));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block; color: var(--navy);
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500;
}
.review-author-info span { font-size: 0.85rem; color: var(--grey); }

/* ============== UTILITIES ============== */
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy); color: var(--cream); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============== ANIMATIONS ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.fade-up-1 { animation: fadeUp 0.9s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }
.fade-up-2 { animation: fadeUp 0.9s 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.9s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.9s 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }
.fade-up-5 { animation: fadeUp 0.9s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; opacity: 0; }

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.reveal-stagger.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============== HERO SLIDER ============== */
.hero-slider { padding-top: 0; }
.hero-slider .hero-bg { z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide .hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-image {
  transform: scale(1.15);
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  background: rgba(250, 247, 242, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: var(--radius-pill);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-gold);
}
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }
@media (max-width: 768px) {
  .hero-arrow { width: 44px; height: 44px; }
  .hero-arrow-prev { left: 0.75rem; }
  .hero-arrow-next { right: 0.75rem; }
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(250, 247, 242, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-dot:hover { background: rgba(250, 247, 242, 0.7); }
.hero-dot.active {
  background: var(--gold);
  width: 32px;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.2);
}

@media (max-width: 600px) {
  .hero-dots { bottom: 4.5rem; }
}
