*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --crimson: #7c1518;
  --crimson-deep: #5a0f12;
  --gold: #d4a017;
  --gold-light: #e8be4a;
  --cobalt: #1b3a6b;
  --cobalt-light: #2d5294;
  --terracotta: #c4622d;
  --cream: #fdf6ec;
  --cream-dark: #f5e9d6;
  --brown: #2c1a0e;
  --brown-soft: #5c4434;
  --font-display: 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  scroll-padding-top: 80px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--brown); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(124, 21, 24, 0.97); backdrop-filter: blur(12px);
  padding: 0 48px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  transition: height 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links > li > a { color: var(--cream); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links > li > a:not(.nav-reserve)::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links > li > a:hover { color: var(--gold-light); }
.nav-links > li > a:not(.nav-reserve):hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-reserve { background: var(--gold); color: var(--crimson-deep) !important; padding: 11px 22px; font-weight: 600 !important; letter-spacing: 1.5px; transition: background 0.2s; }
.nav-reserve:hover { background: var(--gold-light); }
.nav-phone { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold-light); text-decoration: none; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 101; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--crimson); border-bottom: 2px solid var(--gold); padding: 20px; z-index: 99; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--cream); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(212,160,23,0.2); }
.mobile-menu a:last-child { background: var(--gold); color: var(--crimson-deep); text-align: center; padding: 14px; border: none; margin-top: 8px; }

/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--crimson-deep); padding: 17px 38px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border: 2px solid var(--gold); cursor: pointer; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--cream); padding: 17px 38px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; border: 2px solid var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--crimson); }

/* PAGE HERO (interior pages) */
.page-hero { position: relative; padding: 160px 80px 90px; text-align: center; background: linear-gradient(rgba(44,26,14,0.6), rgba(124,21,24,0.7)); background-size: cover; background-position: center; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 76px); color: var(--cream); line-height: 1; margin-bottom: 14px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-family: var(--font-accent); font-style: italic; font-size: clamp(20px, 2.5vw, 28px); color: var(--cream); }

/* MARQUEE */
.marquee { background: var(--crimson); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: scroll 50s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--cream); padding: 0 26px; }
.marquee-track .star { color: var(--gold); padding: 0 4px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FOOTER */
footer { background: var(--crimson-deep); padding: 56px 80px 32px; text-align: center; border-top: 2px solid var(--gold); }
.footer-logo { height: 80px; margin-bottom: 24px; }
.footer-tag { font-family: var(--font-accent); font-style: italic; font-size: 20px; color: var(--gold-light); margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 24px; }
.footer-copy { font-family: var(--font-body); font-size: 12px; color: rgba(253,246,236,0.4); line-height: 1.8; }

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

/* RESPONSIVE NAV */
@media (max-width: 1100px) {
  nav { padding: 0 28px; }
  .nav-links { gap: 22px; }
  .nav-links > li > a { font-size: 11px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 130px 24px 70px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; }
  .nav-logo img { height: 46px; }
  .mobile-menu { top: 70px; }
  footer { padding: 48px 20px 28px; }
  .marquee-track span { font-size: 15px; padding: 0 18px; }
}
@media (max-width: 375px) { nav { padding: 0 14px; } .nav-logo img { height: 40px; } }

/* ===== ELEVATED ANIMATIONS ===== */

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

/* Image reveal with clip - elegant wipe */
.img-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(0.7,0,0.3,1); }
.img-reveal.visible { clip-path: inset(0 0 0 0); }

/* Kicker line that draws in */
.draw-line { position: relative; }
.draw-line::after { content: ""; position: absolute; left: 0; bottom: -10px; height: 2px; width: 0; background: var(--gold); transition: width 0.9s ease 0.3s; }
.draw-line.visible::after { width: 60px; }

/* Subtle float for accent elements */
@keyframes gentleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-accent { animation: gentleFloat 5s ease-in-out infinite; }

/* Hero text shimmer on the gold */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* Button shine sweep */
.btn-gold, .btn-outline, .btn-submit, .nav-reserve { position: relative; overflow: hidden; }
.btn-gold::before, .btn-outline::before, .btn-submit::before, .nav-reserve::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-gold:hover::before, .btn-outline:hover::before, .btn-submit:hover::before, .nav-reserve:hover::before { left: 130%; }

/* Card lift with shadow bloom */
.lift { transition: transform 0.4s cubic-bezier(0.2,0,0.2,1), box-shadow 0.4s ease; }
.lift:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(124,21,24,0.18); }

/* Parallax-ish slow zoom on hero bg */
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.12); } }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--terracotta)); z-index: 200; transition: width 0.1s linear; }

/* Animated marquee pause on hover for elegance */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Decorative floating dove watermark */
.dove-float { position: absolute; opacity: 0.06; pointer-events: none; font-size: 120px; animation: gentleFloat 7s ease-in-out infinite; }

/* Section entrance for backgrounds */
.bg-ken { background-size: cover; background-position: center; animation: kenBurns 20s ease-in-out infinite alternate; }
@keyframes kenBurns { from { background-size: 100%; } to { background-size: 112%; } }


/* ============ REFINED ANIMATIONS ============ */

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

/* Reveal directional variants */
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Image reveal with subtle scale */
.reveal-img { opacity: 0; transform: scale(1.06); transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.reveal-img.visible { opacity: 1; transform: scale(1); }

/* Gold underline draw on section titles */
@keyframes drawLine { from { width: 0; } to { width: 100%; } }

/* Soft floating animation for decorative elements */
@keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Button shimmer on hover */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent); transition: left 0.6s; }
.btn-gold:hover::before { left: 100%; }

/* Nav link letterspacing micro-interaction handled in markup */

/* Parallax-ready hero zoom on load */
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* Decorative grain/texture overlay for atmosphere */
.grain-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Smooth scroll-driven fade for marquee edges */
.marquee { position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--crimson), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--crimson), transparent); }

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