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

:root {
  /* Crown Events — maroon structure, terracotta energy, gold crown accent.
     Var names kept as --navy* so the whole stylesheet reskins from here. */
  --navy: #6e2b25;        /* deep maroon — primary dark (the "Events Rentals" serif red) */
  --navy-deep: #4a1c18;   /* darkest maroon — footer, headers */
  --navy-soft: #8b3a2e;   /* mid maroon */
  --terracotta: #d2561e;  /* the CROWN wordmark orange — energetic accent */
  --terracotta-deep: #b23e12;
  --gold: #c49a3d;        /* the crown gold */
  --gold-bright: #dab45c;
  --gold-deep: #9a7528;
  --cream: #fbf6ee;       /* warm cream */
  --ivory: #f3e9d9;       /* warm ivory */
  --charcoal: #2a201c;    /* warm near-black brown */
  --grey: #6f655f;
  --grey-light: #e8ded0;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(74,28,24,0.08);
  --shadow-md: 0 10px 30px rgba(74,28,24,0.12);
  --shadow-lg: 0 20px 60px rgba(74,28,24,0.18);
  --shadow-gold: 0 10px 30px rgba(196,154,61,0.28);
  --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: 90px;
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .navbar-brand img {
  height: 60px;
}
@media (max-width: 600px) {
  .navbar-brand img { height: 95px; }
  .navbar.scrolled .navbar-brand img { height: 72px; }
}

.navbar-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.navbar-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 500;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.1em; position: relative; padding: 0.5rem 0;
  white-space: nowrap;
}
.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.7rem 1.25rem !important;
  border-radius: var(--radius-pill) !important;
  border: 1px solid var(--navy) !important;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}
.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(400px, 90vw);
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  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.4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 20%, rgba(201,169,97,0.12) 0%, transparent 50%),
    radial-gradient(circle at 100% 80%, rgba(201,169,97,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  z-index: 2;
}
.drawer-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--navy-deep);
  flex-shrink: 0;
}
.drawer-header img {
  height: 60px;
  filter: brightness(0) invert(1);
}
.drawer-close {
  width: 42px; height: 42px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: var(--radius-pill); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.drawer-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
  border-color: var(--gold);
}
.drawer-close svg { width: 18px; height: 18px; }

.drawer-links {
  list-style: none;
  padding: 1.5rem 1.75rem 0.5rem;
  position: relative; z-index: 2;
}
.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 > li > a,
.drawer-links > li > button.drawer-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1rem 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  background: transparent; border-top: 0; border-left: 0; border-right: 0;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.drawer-links > li > a::after {
  content: '→'; font-style: normal; color: var(--gold);
  transition: var(--transition); font-size: 1.15rem;
  opacity: 0.6;
}
.drawer-links > li > a:hover,
.drawer-links > li > button.drawer-sub-toggle:hover {
  color: var(--gold);
  padding-left: 0.65rem;
}
.drawer-links > li > a:hover::after { transform: translateX(4px); opacity: 1; }

.drawer-chevron {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.drawer-has-sub.open .drawer-chevron { transform: rotate(180deg); }
.drawer-sublist {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.drawer-has-sub.open .drawer-sublist {
  max-height: 700px;
}
.drawer-sublist li {
  opacity: 1 !important;
  transform: none !important;
}
.drawer-sublist a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0.25rem 0.7rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.85);
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  transition: var(--transition);
}
.drawer-sublist a::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  flex-shrink: 0;
}
.drawer-sublist a:hover {
  color: var(--gold);
  padding-left: 1.5rem;
}
.drawer-sublist a:hover::before {
  width: 14px;
}

.drawer-footer {
  padding: 1.5rem 1.75rem calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  background: rgba(0, 0, 0, 0.2);
  position: relative; z-index: 2;
}
.drawer-footer .drawer-cta {
  display: flex !important;
  align-items: center; justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}

.drawer-contact { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.85rem; }
.drawer-contact a {
  color: var(--cream);
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.45rem 0;
  transition: var(--transition);
}
.drawer-contact a:hover { color: var(--gold); }
.drawer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.drawer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.drawer-socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background: rgba(201, 169, 97, 0.08);
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.drawer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.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: 720px;
  height: 88vh;
  max-height: 950px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--cream); overflow: hidden; padding-top: 130px; padding-bottom: 7rem;
}
@media (max-height: 800px) {
  .hero { min-height: 680px; padding-bottom: 6rem; }
}
.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;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold);
}
@media (max-width: 600px) {
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    gap: 0.6rem;
  }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
}
.hero h1 {
  color: var(--cream); font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400; margin-bottom: 1.5rem; font-style: italic;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.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;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  display: none;
}

/* ============== PHILOSOPHY ============== */
.philosophy {
  background: var(--navy); color: var(--cream);
  padding: 2rem 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: 1.25rem;
  max-width: 1000px; margin: 0 auto; position: relative;
}
.philosophy-grid::before { display: none; }
.philosophy-item {
  position: relative; z-index: 1;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.philosophy-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(201,169,97,0.08) 0%, rgba(201,169,97,0.02) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.philosophy-item h3 { color: var(--gold); font-style: italic; margin-bottom: 0.15rem; font-size: 1rem; letter-spacing: 0.02em; }
.philosophy-item p { color: var(--ivory); opacity: 0.8; font-size: 0.8rem; margin-bottom: 0; }
@media (max-width: 768px) {
  .philosophy { padding: 2.5rem 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .philosophy-item { padding: 1rem; }
}

/* ============== 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;
}
/* Home page has exactly 10 services — explicit column counts at each breakpoint
   to guarantee clean rows with no stranded cards. */
.home-services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 700px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 900px) {
  /* 5 cols → 2 rows of 5. Fits comfortably down to ~900px viewport. */
  .home-services-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .home-services-grid .service-card h3 { font-size: 1rem; }
  .home-services-grid .service-card p { font-size: 0.85rem; }
}
@media (min-width: 1280px) {
  /* Restore comfortable padding on truly wide screens */
  .home-services-grid { gap: 1.25rem; }
  .home-services-grid .service-card h3 { font-size: 1.05rem; }
  .home-services-grid .service-card p { font-size: 0.88rem; }
}
.services-cta-row { margin-top: 1.5rem; }
@media (max-width: 600px) {
  .services-cta-row { margin-top: 0.75rem; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  position: relative; transition: var(--transition); overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card-body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; flex-grow: 1;
}
@media (max-width: 600px) {
  .service-card-body { padding: 1.25rem 1.25rem 1.25rem; }
}
.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);
  z-index: 3;
}
.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; }

/* Banner-style image thumbnail for service cards */
.service-thumb {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  overflow: hidden;
}
@media (min-width: 900px) {
  .service-thumb { height: 160px; }
}
@media (max-width: 600px) {
  .service-thumb { height: 200px; }
}
.service-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 61, 0.15) 0%, rgba(15, 26, 61, 0.55) 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-thumb-overlay {
  background: linear-gradient(180deg, rgba(15, 26, 61, 0.05) 0%, rgba(201, 169, 97, 0.25) 100%);
}
.service-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.service-card:hover .service-thumb {
  /* zoom the bg image on hover */
}
.service-card .service-thumb {
  transition: transform 0.8s ease;
}

/* Legacy icon (kept for other pages that still use it) */
.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; flex-grow: 1; }
.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;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 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 {
  display: block;
  aspect-ratio: 1; overflow: hidden; background: var(--ivory);
  position: relative; cursor: pointer;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.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);
  pointer-events: none;
}
.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;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; transform: translateY(0); }

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--navy); color: var(--cream);
  padding: 7rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  animation: ctaKenBurns 24s ease-in-out infinite alternate;
}
@keyframes ctaKenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1%); }
}
.cta-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 26, 61, 0.85) 0%, rgba(26, 43, 92, 0.75) 50%, rgba(15, 26, 61, 0.9) 100%);
}
.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%);
  z-index: 1;
}
.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: 2; max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.cta-band h2 {
  color: var(--cream); margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.cta-band h2 .accent { font-family: var(--font-script); color: var(--gold); }
.cta-band p {
  font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============== 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: 88px; 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 p { margin: 0; }
.footer-bottom .footer-copy { white-space: nowrap; }
.footer-bottom .footer-credit {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  opacity: 0.85;
}
.footer-bottom a { color: var(--gold); }
@media (max-width: 480px) {
  .footer-bottom { font-size: 0.78rem; }
  .footer-bottom .footer-copy { font-size: 0.74rem; }
}

/* ============== 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-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0.45;
  transform: scale(1.05);
  animation: bannerKenBurns 30s ease-in-out infinite alternate;
}
@keyframes bannerKenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(1.5%, 0.8%); }
}
.page-header-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 61, 0.78) 0%, rgba(26, 43, 92, 0.72) 100%);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.12) 0%, transparent 60%);
  z-index: 1;
}
.page-header-inner { position: relative; z-index: 2; }
.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;
}
/* Universal: when parent has .visible, all children fade in (no nth-child cap) */
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for the first dozen items so the cascade still feels intentional.
   Items beyond 12 just fade in together (no delay) — better than not appearing. */
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: 0.10s; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: 0.20s; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: 0.30s; }
.reveal-stagger.visible > *:nth-child(7)  { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8)  { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(9)  { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.50s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.60s; }

@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: 130px;
  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;
  background-color: var(--navy-deep);
  opacity: 1;
  transform: scale(1.05);
  transition: transform 0.6s ease-out;
}
.hero-slide.active .hero-image {
  animation: heroKenBurns 14s ease-out forwards;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -0.8%); }
}
/* Readability overlay — sits between photo and text */
.hero-slide .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 26, 61, 0.35) 0%, rgba(15, 26, 61, 0.55) 60%, rgba(15, 26, 61, 0.75) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(15, 26, 61, 0.35) 100%);
  pointer-events: none;
}
.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: 2rem;
  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: 1.5rem; }
}

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 61, 0.95);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  padding: 5rem 1.5rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.5s var(--bounce);
}
.lightbox.open .lightbox-image { transform: scale(1); }
.lightbox-caption { display: none; }
.lightbox.open .lightbox-caption { display: none; }
.lightbox-counter {
  margin-top: 1.5rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s 0.3s;
}
.lightbox.open .lightbox-counter { opacity: 0.8; }

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

/* ============== MOBILE BOTTOM NAV ============== */
.mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(26, 43, 92, 0.08);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  z-index: 95;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-tabbar.hidden { transform: translateY(100%); }
.mobile-tabbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  max-width: 500px;
  margin: 0 auto;
}
.mobile-tabbar a,
.mobile-tabbar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.55rem 0.25rem;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.mobile-tabbar a svg,
.mobile-tabbar button svg { width: 24px; height: 24px; transition: var(--transition); }
.mobile-tabbar a:hover,
.mobile-tabbar button:hover { color: var(--gold-deep); }
.mobile-tabbar a:hover svg,
.mobile-tabbar button:hover svg { transform: translateY(-2px); }
.mobile-tabbar a.active,
.mobile-tabbar button.active {
  color: var(--gold-deep);
  background: rgba(201, 169, 97, 0.08);
}
.mobile-tabbar a.active::after,
.mobile-tabbar button.active::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gold);
}
@media (max-width: 768px) {
  .mobile-tabbar { display: block; }
  /* Adjust WhatsApp float to not collide */
  .whatsapp-float { bottom: 5rem; }
  /* Extend the footer's dark navy below for the tabbar — no white/cream gap */
  .footer { padding-bottom: 6rem; }
}

/* ============== SERVICE CARD MOBILE FIX ============== */
@media (max-width: 768px) {
  .service-card {
    padding-bottom: 2.25rem;
  }
  .services-grid { gap: 1.25rem; }
}

/* ============== NAVBAR DROPDOWN ============== */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}
.dropdown-toggle svg {
  transition: transform 0.3s ease;
}
.has-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 380px;
  background: var(--cream);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 26, 61, 0.18);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem !important;
  border-radius: var(--radius-md);
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover {
  background: var(--ivory);
  color: var(--gold-deep);
}
.dropdown-icon {
  width: 36px;
  height: 36px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.dropdown-icon svg { width: 18px; height: 18px; }
.dropdown-menu a:hover .dropdown-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-4deg) scale(1.05);
}
.dropdown-menu a span { display: flex; flex-direction: column; }
.dropdown-menu a strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.dropdown-menu a:hover strong { color: var(--gold-deep); }
.dropdown-menu a small {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 2px;
}
.dropdown-all {
  margin-top: 0.5rem;
  padding-top: 0.85rem !important;
  border-top: 1px solid var(--grey-light);
  justify-content: center !important;
  color: var(--gold-deep) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
}
.dropdown-all svg { width: 12px; height: 12px; }

@media (max-width: 968px) {
  .dropdown-menu { display: none !important; }
}

/* ============== MOBILE DRAWER SUB-MENU ============== */
.drawer-has-sub { display: block; }
.drawer-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--grey-light);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.drawer-chevron {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.drawer-sub-toggle[aria-expanded="true"] .drawer-chevron {
  transform: rotate(180deg);
}
.drawer-sublist {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  padding-left: 0.5rem;
}
.drawer-sub-toggle[aria-expanded="true"] + .drawer-sublist {
  max-height: 700px;
}
.drawer-sublist li { opacity: 1 !important; transform: none !important; }
.drawer-sublist a {
  display: flex !important;
  padding: 0.85rem 0 !important;
  font-family: var(--font-sans);
  font-size: 0.95rem !important;
  font-style: normal !important;
  border-bottom: 1px solid rgba(232, 228, 220, 0.5);
  color: var(--charcoal) !important;
}
.drawer-sublist a::after { font-size: 1rem !important; }
.drawer-sublist li:first-child a {
  font-weight: 600;
  color: var(--gold-deep) !important;
}

/* ============== COCONUT WATER COMING SOON BANNER ============== */
.coconut-banner {
  background: linear-gradient(135deg, #1a5e3a 0%, #2a7d4a 50%, #1a5e3a 100%);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0;
}
.coconut-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.coconut-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.coconut-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: var(--radius-pill);
  color: var(--gold);
  flex-shrink: 0;
  animation: coconutPulse 3s ease-in-out infinite;
}
@keyframes coconutPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 97, 0); }
}
.coconut-banner-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 97, 0.35);
  white-space: nowrap;
}
.coconut-banner-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}
.coconut-banner-text strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.coconut-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(201, 169, 97, 0.18);
  border: 1px solid var(--gold);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}
.coconut-banner-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

@media (max-width: 768px) {
  .coconut-banner-inner { gap: 0.65rem; }
  .coconut-banner-text { font-size: 0.85rem; }
  .coconut-banner-tag { font-size: 0.62rem; }
  .coconut-banner-cta { font-size: 0.68rem; padding: 0.35rem 0.75rem; }
}
@media (max-width: 480px) {
  .coconut-banner { padding: 0.75rem 0; }
  .coconut-banner-text { font-size: 0.8rem; flex-basis: 100%; text-align: center; }
}

/* ============== PRESS / AS FEATURED IN ============== */

/* Home page strip — minimal, refined */
.press-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
  text-align: center;
}
.press-strip-eyebrow {
  margin-bottom: 1rem !important;
}
.press-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.press-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
}
.press-strip-item:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.press-strip-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.1;
}
.press-strip-item:hover .press-strip-name {
  color: var(--gold-deep);
}
.press-strip-section {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.25rem;
}
.press-strip-divider {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .press-strip-logos { gap: 1rem; flex-direction: column; }
  .press-strip-divider { display: none; }
  .press-strip-name { font-size: 1.2rem; }
}

/* About page — press cards */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.press-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.press-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 43, 92, 0.1);
}
.press-card:hover::before { transform: scaleX(1); }

.press-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.press-publication {
  color: var(--gold-deep);
  font-weight: 700;
}
.press-section, .press-date {
  position: relative;
  padding-left: 0.5rem;
}
.press-section::before, .press-date::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.press-headline {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.press-quote {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--charcoal);
}
.press-quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.press-byline {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  transition: var(--transition);
}
.press-link:hover {
  color: var(--navy);
}
.press-link:hover svg {
  transform: translate(2px, -2px);
}
.press-link svg {
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .press-card { padding: 1.5rem; }
  .press-headline { font-size: 1.2rem; }
  .press-quote p { font-size: 0.9rem; }
}

/* ============== MEGA MENU ============== */
/* Replaces the old .dropdown-menu for Services in the navbar */

.mega-menu {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 92vw;
  max-width: 1100px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 26, 61, 0.22);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  overflow: hidden;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar.scrolled ~ * .mega-menu,
.navbar.scrolled + .mega-menu,
.navbar.scrolled .mega-menu {
  top: 80px;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}

.mega-menu-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
  padding: 2rem 1.75rem 1.5rem;
}

.mega-menu-column h4.mega-menu-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--grey-light);
}

.mega-menu-item {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.6rem !important;
  border-radius: var(--radius-md);
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--navy);
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  white-space: normal !important;
}
.mega-menu-item::after { display: none !important; }
.mega-menu-item:hover {
  background: var(--cream);
  transform: translateX(2px);
}

.mega-icon {
  width: 38px;
  height: 38px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.mega-icon svg { width: 18px; height: 18px; }
.mega-menu-item:hover .mega-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.mega-text { display: flex; flex-direction: column; line-height: 1.3; }
.mega-text strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.mega-menu-item:hover .mega-text strong { color: var(--gold-deep); }
.mega-text small {
  font-size: 0.74rem;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}

/* Feature panel — right side */
.mega-menu-feature {
  position: relative;
  padding: 2rem 1.75rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 100%;
}
.mega-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.mega-feature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 92, 0.92) 0%, rgba(42, 63, 122, 0.88) 100%);
}
.mega-feature-content {
  position: relative;
  z-index: 1;
}
.mega-feature-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.mega-feature-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.mega-feature-title .accent { color: var(--gold); font-style: italic; }
.mega-feature-desc {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.mega-feature-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}
.mega-feature-cta::after { display: none !important; }
.mega-feature-cta:hover {
  background: var(--cream) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Bottom strip — view all + secondary links */
.mega-menu-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.75rem;
  background: var(--ivory);
  border-top: 1px solid var(--grey-light);
  flex-wrap: wrap;
}
.mega-view-all {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gold-deep) !important;
  text-decoration: none;
  transition: var(--transition);
}
.mega-view-all::after { display: none !important; }
.mega-view-all:hover {
  color: var(--navy) !important;
}
.mega-secondary-link {
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  color: var(--grey) !important;
  text-decoration: none;
  margin-left: auto;
  transition: var(--transition);
}
.mega-secondary-link::after { display: none !important; }
.mega-secondary-link + .mega-secondary-link { margin-left: 0; }
.mega-secondary-link:hover { color: var(--gold-deep) !important; }

@media (max-width: 968px) {
  .mega-menu { display: none !important; }
}

/* ============== REDUCED MOTION ACCESSIBILITY ============== */
/* Respect users who've requested reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active .hero-image,
  .cta-band-bg,
  .page-header-bg,
  .hero-bg::before {
    animation: none !important;
    transform: none !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============== SERVICES MODAL (mobile) ============== */
.services-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
}
.services-modal.open {
  display: flex;
}
.services-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 26, 61, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  cursor: pointer;
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.services-modal-panel {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: modalSlideUp 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes modalSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.services-modal-panel::before {
  content: '';
  display: block;
  width: 36px; height: 4px;
  background: var(--grey-light);
  border-radius: 2px;
  margin: 0.65rem auto 0;
}
.services-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 1.25rem 0.85rem;
  border-bottom: 1px solid var(--grey-light);
}
.services-modal-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.15rem;
}
.services-modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}
.services-modal-close {
  background: var(--ivory);
  border: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.services-modal-close:hover {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(90deg);
}
.services-modal-close svg { width: 18px; height: 18px; }

.services-modal-grid {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 1rem 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  -webkit-overflow-scrolling: touch;
}
.services-modal-item {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--transition);
}
.services-modal-item:active {
  transform: scale(0.98);
}
.services-modal-item:hover {
  border-color: var(--gold);
  background: var(--white);
}
.services-modal-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.services-modal-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 61, 0.2) 0%, rgba(15, 26, 61, 0.45) 100%);
}
.services-modal-text {
  display: flex; flex-direction: column;
  flex: 1;
  min-width: 0;
}
.services-modal-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.services-modal-text small {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2px;
}

.services-modal-footer {
  border-top: 1px solid var(--grey-light);
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: var(--ivory);
}
.services-modal-allbtn {
  display: flex !important;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: var(--navy);
  color: var(--cream) !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-decoration: none;
  transition: var(--transition);
}
.services-modal-allbtn:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* Prevent body scroll when modal open */
body.services-modal-open { overflow: hidden; }

/* ============== GALLERY PAGE — FILTERS + STATES ============== */
.gallery-page-filters {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-light);
  position: sticky;
  top: 90px;
  z-index: 30;
}
@media (max-width: 768px) {
  .gallery-page-filters { top: 76px; padding: 1rem 0; }
}
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .gallery-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-filter-bar::-webkit-scrollbar { display: none; }
}
.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--grey-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.gallery-filter-btn:hover {
  background: var(--ivory);
  border-color: var(--gold);
  color: var(--gold-deep);
}
.gallery-filter-btn.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.gallery-filter-btn.is-active .gallery-filter-count {
  color: var(--gold);
}
.gallery-filter-count {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey);
  background: rgba(0, 0, 0, 0.04);
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  min-width: 22px;
  text-align: center;
}
.gallery-filter-btn.is-active .gallery-filter-count {
  background: rgba(201, 169, 97, 0.18);
}

.gallery-page-section { min-height: 60vh; }

.gallery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  gap: 1rem;
  color: var(--grey);
}
.gallery-loading p { font-size: 0.9rem; }
.gallery-loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--grey-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: rcSpin 0.8s linear infinite;
}
@keyframes rcSpin {
  to { transform: rotate(360deg); }
}

.gallery-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--grey);
}
.gallery-empty svg { margin: 0 auto 1rem; display: block; }
.gallery-empty h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.gallery-empty p { font-size: 0.95rem; }

.gallery-load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-load-more-wrap .btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}
.gallery-load-more-wrap .btn svg {
  width: 14px; height: 14px;
}
.gallery-counter {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* Lazy-loaded images: gentle fade-in */
.gallery-item img[loading="lazy"] {
  transition: opacity 0.5s ease;
}

/* Welcome popup CTA — force single line */
.btn.welcome-cta {
  white-space: nowrap;
  padding: 1rem 1.25rem;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
@media (max-width: 380px) {
  .btn.welcome-cta { font-size: 0.72rem; padding: 0.95rem 0.85rem; }
}

/* ============== COCONUT WATER NOTIFY MODAL ============== */
.coconut-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 250;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.coconut-modal.open { display: flex; }

.coconut-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 26, 61, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  cursor: pointer;
  animation: modalFadeIn 0.3s ease;
}

.coconut-modal-panel {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  border-radius: 20px;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: coconutPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
@keyframes coconutPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.coconut-modal-header {
  background: linear-gradient(135deg, #1a5e3a 0%, #2a7d4a 50%, #1a5e3a 100%);
  color: var(--cream);
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  position: relative;
}
.coconut-modal-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.coconut-modal-header::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(201, 169, 97, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.coconut-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.35);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.coconut-modal-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
  border-color: var(--gold);
}
.coconut-modal-close svg { width: 16px; height: 16px; }

.coconut-modal-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 97, 0.4);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.coconut-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 97, 0.18);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  animation: coconutPulse 3s ease-in-out infinite;
}

.coconut-modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 0.65rem;
  position: relative;
  z-index: 1;
}
.coconut-modal-header h2 span {
  color: var(--gold);
  display: block;
  margin-top: 0.15rem;
}
.coconut-modal-header p {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.92;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.coconut-modal-form {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}

.coconut-form-field {
  display: flex; flex-direction: column;
}
.coconut-form-field label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.coconut-form-field label small {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--grey);
  margin-left: 0.3rem;
}
.coconut-form-field input {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--grey-light);
  background: var(--cream);
  border-radius: var(--radius-md);
  color: var(--charcoal);
  transition: var(--transition);
  width: 100%;
}
.coconut-form-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.coconut-form-field input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.coconut-form-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1a5e3a;
  color: var(--cream);
  border: 1.5px solid #1a5e3a;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.25rem;
}
.coconut-form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 169, 97, 0.3);
}
.coconut-form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.coconut-form-submit svg { transition: transform 0.3s; }
.coconut-form-submit:hover svg { transform: translateX(3px); }

.coconut-form-note {
  font-size: 0.75rem;
  color: var(--grey);
  text-align: center;
  margin: 0;
}

/* Validation states */
.coconut-form-field.has-error input {
  border-color: #d63638;
  background: rgba(214, 54, 56, 0.04);
}
.coconut-form-field .field-error {
  color: #d63638;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* Success state */
.coconut-modal-success {
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.coconut-modal-success[hidden] { display: none; }
.coconut-success-check {
  width: 64px; height: 64px;
  background: #1a5e3a;
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: coconutPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.coconut-modal-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
}
.coconut-modal-success p {
  font-size: 0.95rem;
  color: var(--grey);
  margin: 0;
  max-width: 320px;
}
.coconut-modal-success .coconut-form-submit {
  margin-top: 0.5rem;
  min-width: 160px;
}

/* Lock body scroll when open */
body.coconut-modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .coconut-modal-header { padding: 2rem 1.25rem 1.5rem; }
  .coconut-modal-header h2 { font-size: 1.35rem; }
  .coconut-modal-form { padding: 1.25rem 1.25rem 1.5rem; }
}

/* ============== FEATURE LIST (editorial, no card chrome) ============== */
/* Used on service pages for "What's Included" type sections.
   Clean, magazine-style list — no boxes, no rounded corners, no shadows.
   Just elegant title + body with a subtle gold divider. */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 0;
  }
}

.feature-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--grey-light);
  position: relative;
  transition: padding-left 0.3s ease;
}
.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.feature-item:hover {
  padding-left: 28px;
}
.feature-item:hover::before {
  width: 18px;
}

/* Last item in each column shouldn't have a bottom border */
@media (min-width: 760px) {
  /* In 2-col grid, items at the end of each column (last two) don't need borders */
  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 759px) {
  .feature-item:last-child {
    border-bottom: none;
  }
  .feature-item { padding: 1.5rem 0; }
}

.feature-item h3,
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
}
.feature-item:hover h3,
.feature-item:hover h4 {
  color: var(--gold-deep);
}
.feature-item p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
  max-width: 42ch;
}

/* ============== RELATED SERVICES LIST (bottom of each service page) ============== */
/* Clean navigation list — icon + title + subtitle + arrow.
   No card boxes. Editorial feel, same vibe as feature-item. */
.related-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.related-service-item {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  border-bottom: 1px solid var(--grey-light);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s ease;
  position: relative;
}
.related-service-item:last-child {
  border-bottom: none;
}
.related-service-item:hover {
  padding-left: 0.85rem;
}
.related-service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.related-service-item:hover::before {
  width: 18px;
}

.related-service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
  color: var(--gold-deep);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}
.related-service-icon svg { width: 22px; height: 22px; }
.related-service-item:hover .related-service-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.related-service-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.related-service-text strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.005em;
}
.related-service-item:hover .related-service-text strong {
  color: var(--gold-deep);
}
.related-service-text small {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 3px;
  letter-spacing: 0;
}

.related-service-arrow {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  flex-shrink: 0;
  transition: var(--transition);
}
.related-service-arrow svg { width: 18px; height: 18px; }
.related-service-item:hover .related-service-arrow {
  color: var(--gold-deep);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .related-service-item { padding: 1rem 0.25rem; gap: 0.85rem; }
  .related-service-icon { width: 40px; height: 40px; }
  .related-service-icon svg { width: 20px; height: 20px; }
  .related-service-text strong { font-size: 1.05rem; }
  .related-service-text small { font-size: 0.75rem; }
}

/* ============== REVIEWS — HONEYPOT + REVIEW CARDS ============== */
/* Honeypot: hidden from sighted users via positioning (not display:none — bots ignore that) */
.rcrev-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Dynamic review cards */
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 26, 61, 0.08);
}
.review-card.is-featured {
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
}
.review-card.is-featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.review-card-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.review-card-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  position: relative;
}
.review-card-text::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
}
.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-light);
  padding-top: 0.85rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.review-card-author {
  display: flex;
  flex-direction: column;
}
.review-card-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.review-card-loc {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2px;
}
.review-card-event {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--ivory);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Loading + empty states */
.reviews-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
  gap: 1rem;
  color: var(--grey);
}

/* Form feedback */
#review-status.is-success {
  color: #1a5e3a;
  font-weight: 600;
}
#review-status.is-error {
  color: #b32d2e;
  font-weight: 600;
}

/* ============== GOOGLE REVIEW PROMPTS ============== */
.btn-google {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--charcoal) !important;
  border: 1px solid var(--grey-light) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.btn-google:hover {
  border-color: #4285F4 !important;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.22);
  transform: translateY(-2px);
}
.btn-google svg { flex-shrink: 0; }

/* Post-submit prompt (inside the form box) */
.google-review-prompt {
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
  animation: fadeUp 0.5s ease;
}
.google-review-prompt[hidden] { display: none; }
.google-review-check {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  background: #1a5e3a;
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: coconutPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.google-review-prompt h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.google-review-prompt p {
  color: var(--grey);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}
.google-review-prompt .btn-google {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.google-review-skip {
  display: block;
  margin: 1rem auto 0;
  background: none;
  border: none;
  color: var(--grey);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.google-review-skip:hover { color: var(--navy); }

/* Standalone card below the form */
.google-review-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.google-review-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.google-review-card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.google-review-card-text strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.google-review-card-text span {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 2px;
  line-height: 1.4;
}
.google-review-card-btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
}
@media (max-width: 600px) {
  .google-review-card {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
  }
  .google-review-card-btn { width: 100%; }
}

/* ============================================================
   CROWN EVENTS — brand overrides & new components (v1)
   ============================================================ */

/* Terracotta eyebrows for warm energy against maroon headings */
.section-eyebrow,
.hero-eyebrow,
.modal-eyebrow,
.breadcrumb { color: var(--terracotta); }
.press-strip-eyebrow { color: var(--terracotta); }

/* Signature: crown/medallion divider replaces the plain dot.
   A gold diamond flanked by hairlines, with a terracotta core. */
.divider-ornament-dot {
  position: relative;
  width: 14px; height: 14px;
  background: var(--terracotta);
  transform: rotate(45deg);
  border-radius: 3px;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--gold);
}
.divider-ornament::before,
.divider-ornament::after { background: linear-gradient(90deg, transparent, var(--gold)); }

/* Buttons: keep maroon primary, but give the accent button a terracotta option */
.btn-terracotta { background: var(--terracotta); color: #fff; border-color: var(--terracotta); box-shadow: var(--shadow-sm); }
.btn-terracotta:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); color:#fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Footer logo sits on a light chip so the dark-text logo stays legible on maroon */
.footer-brand .footer-logo-chip {
  display:inline-block; background:#fff; padding:14px 18px; border-radius:14px;
  box-shadow: var(--shadow-sm); margin-bottom:1.25rem;
}
.footer-brand .footer-logo-chip img { width:200px; max-width:100%; display:block; }

/* ---------- Trust strip (home) ---------- */
.trust-strip { background: var(--navy-deep); color: var(--cream); padding: 2.75rem 0; }
.trust-strip-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1.5rem; text-align:center; }
.trust-strip-num { font-family: var(--font-serif); font-size:2.4rem; color: var(--gold); line-height:1; }
.trust-strip-label { font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; opacity:.85; margin-top:.5rem; }
@media (max-width:760px){ .trust-strip-grid{ grid-template-columns: repeat(2,1fr); gap:2rem;} }

/* ---------- Catalog ---------- */
.catalog-layout { display:grid; grid-template-columns: 240px 1fr; gap:2.5rem; align-items:start; }
.catalog-filters { position:sticky; top:96px; background:var(--white); border:1px solid var(--grey-light); border-radius:var(--radius-lg); padding:1.5rem; }
.catalog-filters h4 { margin:0 0 .75rem; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:var(--grey); }
.catalog-filter-list { list-style:none; padding:0; margin:0 0 1.5rem; }
.catalog-filter-list li { margin:.15rem 0; }
.catalog-filter-list button { width:100%; text-align:left; background:none; border:none; padding:.5rem .65rem; border-radius:8px; cursor:pointer; color:var(--charcoal); font-size:.95rem; transition:var(--transition); }
.catalog-filter-list button:hover { background:var(--ivory); }
.catalog-filter-list button.active { background:var(--navy); color:var(--cream); }
.catalog-grid-products { display:grid; grid-template-columns: repeat(3,1fr); gap:1.5rem; }
.product-card { background:var(--white); border:1px solid var(--grey-light); border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.product-card-thumb { aspect-ratio:4/3; background:var(--ivory) center/cover no-repeat; }
.product-card-body { padding:1.1rem 1.2rem 1.3rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }
.product-card-cat { font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--terracotta); }
.product-card-body h3 { font-size:1.15rem; margin:0; }
.product-card .btn { margin-top:auto; }
.catalog-empty { grid-column:1/-1; text-align:center; padding:4rem 2rem; background:var(--white); border:1px dashed var(--grey-light); border-radius:var(--radius-lg); color:var(--grey); }
@media (max-width:900px){ .catalog-layout{ grid-template-columns:1fr; } .catalog-filters{ position:static; } .catalog-grid-products{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .catalog-grid-products{ grid-template-columns:1fr;} }

/* ---------- Quote tray ---------- */
.quote-tray-table { width:100%; border-collapse:collapse; background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.quote-tray-table th { text-align:left; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--grey); padding:1rem; border-bottom:1px solid var(--grey-light); }
.quote-tray-table td { padding:1rem; border-bottom:1px solid var(--grey-light); vertical-align:middle; }
.quote-tray-thumb { width:64px; height:64px; border-radius:10px; background:var(--ivory) center/cover; }
.quote-qty { width:64px; padding:.4rem; border:1px solid var(--grey-light); border-radius:8px; }
.quote-remove { background:none; border:none; color:var(--terracotta-deep); cursor:pointer; font-size:.85rem; }
.quote-empty { text-align:center; padding:4rem 2rem; background:var(--white); border:1px dashed var(--grey-light); border-radius:var(--radius-lg); color:var(--grey); }
.quote-badge { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px; font-size:.7rem; background:var(--terracotta); color:#fff; border-radius:999px; margin-left:.35rem; vertical-align:top; }

/* ---------- Team / staff ---------- */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.team-card { background:var(--white); border:1px solid var(--grey-light); border-radius:var(--radius-lg); overflow:hidden; text-decoration:none; color:inherit; transition:var(--transition); }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.team-card-photo { aspect-ratio:1/1; background:var(--ivory) center/cover no-repeat; }
.team-card-body { padding:1.2rem 1.3rem 1.4rem; }
.team-card-body h3 { margin:0 0 .2rem; }
.team-card-role { color:var(--terracotta); font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; }
@media (max-width:820px){ .team-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .team-grid{ grid-template-columns:1fr;} }
.staff-hero { display:grid; grid-template-columns:340px 1fr; gap:3rem; align-items:start; }
.staff-hero-photo { aspect-ratio:1/1; border-radius:var(--radius-lg); background:var(--ivory) center/cover; box-shadow:var(--shadow-md); }
@media (max-width:760px){ .staff-hero{ grid-template-columns:1fr; } }

/* ---------- Policies / FAQ accordion-ish ---------- */
.policy-block { max-width:820px; margin:0 auto; }
.policy-block h3 { color:var(--navy); margin-top:2.25rem; }
.policy-block p, .policy-block li { color:var(--charcoal); }
