/* ══════════════════════════════════════════════════════
   ANGELUS FUNERAL HOME — THE GOLDEN CORRIDOR
   Egyptian/Palace luxury aesthetic · WCAG 2.1 AA
   ══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96E;
  --gold-pale: #F5E9C6;
  --gold-dark: #8B6914;
  --gold-deep: #6B4F0A;
  --black: #080808;
  --charcoal: #0F0F0F;
  --charcoal-mid: #181818;
  --charcoal-light: #222222;
  --charcoal-warm: #1A1714;
  --off-white: #F0EAD6;
  --cream: #FAF6EE;
  --text-body: #C8C0B4;
  --text-muted: #9A9488;
  --dusty-rose: #D88A8B;
  --sage: #8B9E7E;
  --nav-height: 80px;
  --focus-color: #E8C96E;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }

body {
  background: var(--charcoal);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Marble noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

::selection { background: rgba(201,168,76,0.3); color: var(--cream); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ══════════════ WCAG: SKIP LINK ══════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--focus-color);
  outline-offset: 2px;
}

/* ══════════════ WCAG: FOCUS STYLES ══════════════ */
*:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 3px;
}
/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ══════════════ WCAG: REDUCED MOTION ══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ══════════════ UTILITY ══════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
  white-space: nowrap;
}

/* ══════════════ ORNAMENTAL SYSTEM ══════════════ */
.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem auto;
  width: fit-content;
}
.lotus-divider::before,
.lotus-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.lotus-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lotus-divider .lotus {
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Section typography */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.8rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}
.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* ══════════════ LUCIDE ICONS ══════════════ */
.service-icon .lucide,
.service-detail-icon .lucide,
.card-icon .lucide,
.success-icon .lucide {
  stroke: var(--gold);
  stroke-width: 1.5;
}
.service-icon .lucide {
  width: 32px;
  height: 32px;
}
.service-detail-icon .lucide {
  width: 40px;
  height: 40px;
}
.card-icon .lucide {
  width: 28px;
  height: 28px;
}
.success-icon .lucide {
  width: 48px;
  height: 48px;
}

/* Buttons */
.btn-gold {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #1a1000;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-gold:hover,
.btn-gold:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
.btn-gold:hover::before,
.btn-gold:focus-visible::before { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
  border: 1.5px solid rgba(201,168,76,0.6);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold-light);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
}

/* ══════════════ REVEAL ANIMATIONS ══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.92) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  height: 64px;
  background: rgba(8,8,8,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.4s;
}
.nav.scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,168,76,0.5);
  padding: 10px 20px;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-phone .lucide {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2;
}
.nav-phone:hover,
.nav-phone:focus-visible {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  display: block;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav[aria-hidden="false"] { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .nav-phone {
  font-size: 0.7rem;
  padding: 12px 24px;
}

/* ══════════════════════════════════════════════════════
   HERO (Home)
   ══════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Assets/Images/live-site/Angelus-Funeral-Home.jpg');
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,8,8,0.82) 0%,
      rgba(8,8,8,0.6) 30%,
      rgba(8,8,8,0.55) 50%,
      rgba(8,8,8,0.7) 70%,
      rgba(8,8,8,0.92) 100%),
    linear-gradient(135deg,
      rgba(201,168,76,0.08) 0%,
      transparent 50%);
}

/* Decorative pillars */
.hero-pillar {
  position: absolute;
  width: 1px;
  top: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 5%, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.15) 70%, transparent 95%);
  z-index: 1;
}
.hero-pillar.left { left: 7%; }
.hero-pillar.right { right: 7%; }
.hero-pillar::before,
.hero-pillar::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid rgba(201,168,76,0.4);
  transform: rotate(45deg);
  left: -4px;
}
.hero-pillar::before { top: 18%; }
.hero-pillar::after { bottom: 18%; }

/* Corner ornaments */
.hero-corner {
  position: absolute;
  width: 60px; height: 60px;
  z-index: 2;
  opacity: 0.3;
}
.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.hero-corner.tl { top: 100px; left: 5%; }
.hero-corner.tl::before { top: 0; left: 0; width: 40px; height: 1px; }
.hero-corner.tl::after { top: 0; left: 0; width: 1px; height: 40px; }
.hero-corner.tr { top: 100px; right: 5%; }
.hero-corner.tr::before { top: 0; right: 0; width: 40px; height: 1px; }
.hero-corner.tr::after { top: 0; right: 0; width: 1px; height: 40px; }
.hero-corner.bl { bottom: 40px; left: 5%; }
.hero-corner.bl::before { bottom: 0; left: 0; width: 40px; height: 1px; }
.hero-corner.bl::after { bottom: 0; left: 0; width: 1px; height: 40px; }
.hero-corner.br { bottom: 40px; right: 5%; }
.hero-corner.br::before { bottom: 0; right: 0; width: 40px; height: 1px; }
.hero-corner.br::after { bottom: 0; right: 0; width: 1px; height: 40px; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 24px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-badge .badge-diamond {
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════ SERVICES STRIP ══════════════ */
.services-strip {
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.services-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: 0.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-box {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
  transition: background 0.4s;
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-box:last-child { border-right: none; }
.service-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.service-box:hover,
.service-box:focus-visible { background: rgba(201,168,76,0.04); }
.service-box:hover::before,
.service-box:focus-visible::before { transform: scaleX(1); }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.service-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.service-box p {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-box .svc-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  transition: gap 0.3s;
}
.service-box:hover .svc-link,
.service-box:focus-visible .svc-link { gap: 12px; }

/* ══════════════ ABOUT PREVIEW ══════════════ */
.about-preview {
  padding: 130px 5%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-preview-img { position: relative; }
.about-preview-img .img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.about-preview-img .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-preview-img:hover .img-frame img { transform: scale(1.04); }
.about-preview-img .img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%, rgba(201,168,76,0.04) 100%);
  pointer-events: none;
}
.about-preview-img .year-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(201,168,76,0.25);
  background: var(--charcoal-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 2;
}
.year-accent .year-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.year-accent .year-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-preview-text .section-heading { margin-bottom: 1.5rem; }
.about-preview-text .body-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.about-preview-text .body-text strong { color: var(--gold-light); font-weight: 500; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

/* ══════════════ TESTIMONIAL BANNER ══════════════ */
.testimonial-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 90px 5%;
  text-align: center;
  position: relative;
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: -1.5rem;
}
.testimonial-banner blockquote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.testimonial-banner cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

/* ══════════════ FAQ SECTION ══════════════ */
.faq-section {
  padding: 100px 5%;
  background: rgba(201,168,76,0.02);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.faq-inner .section-heading {
  margin-bottom: 3rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item[open] {
  border-color: rgba(201,168,76,0.25);
}
.faq-item summary {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-item summary:hover {
  background: rgba(201,168,76,0.04);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
  padding: 0 20px 18px;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ══════════════ HOME CONTACT SECTION ══════════════ */
.home-contact {
  padding: 120px 5%;
  max-width: 1100px;
  margin: 0 auto;
}
.home-contact-header { text-align: center; margin-bottom: 3.5rem; }

/* ══════════════ CONTACT FORM (shared) ══════════════ */
.contact-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-selector { margin-bottom: 2.5rem; padding-bottom: 1rem; }
.service-selector-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.service-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.service-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(201,168,76,0.04);
  border-radius: 4px;
}
.service-chip:hover,
.service-chip:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}
.service-chip[aria-pressed="true"] {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  outline: 2px solid var(--focus-color);
  outline-offset: 1px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,148,136,0.6); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--charcoal-mid); color: var(--cream); }
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] { border-color: var(--dusty-rose); }
.form-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--dusty-rose);
  display: none;
}
.form-error.show { display: block; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
.form-note {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; animation: fadeUp 0.6s ease; }
.form-success .success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
   PAGE HEROES (About, Services, Contact)
   ══════════════════════════════════════════════════════ */

.page-hero {
  padding: 160px 5% 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.7) 40%, rgba(8,8,8,0.9) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--off-white);
  margin-top: 0.8rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* ══════════════ TIMELINE (About) ══════════════ */
.timeline-section {
  padding: 100px 5%;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-section .section-heading { text-align: center; margin-bottom: 4rem; }

.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 2rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 8px;
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  transition: all 0.4s;
}
.timeline-item.visible::before { box-shadow: 0 0 20px rgba(201,168,76,0.4); }

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.timeline-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.timeline-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ══════════════ PRESIDENT (About) ══════════════ */
.president-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-warm) 50%, var(--charcoal) 100%);
}
.president-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.president-photo { position: relative; }
.president-photo .photo-frame {
  border: 1px solid rgba(201,168,76,0.25);
  overflow: hidden;
  position: relative;
}
.president-photo .photo-frame img { width: 100%; display: block; }
.president-photo .photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,0.4) 100%);
  pointer-events: none;
}
.president-photo .photo-name {
  text-align: center;
  padding: 1.2rem 0;
}
.president-photo .photo-name h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.president-photo .photo-name span {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.president-photo .frame-corner {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 2;
}
.president-photo .frame-corner::before,
.president-photo .frame-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.president-photo .fc-tl { top: -6px; left: -6px; }
.president-photo .fc-tl::before { top: 0; left: 0; width: 20px; height: 1px; }
.president-photo .fc-tl::after { top: 0; left: 0; width: 1px; height: 20px; }
.president-photo .fc-tr { top: -6px; right: -6px; }
.president-photo .fc-tr::before { top: 0; right: 0; width: 20px; height: 1px; }
.president-photo .fc-tr::after { top: 0; right: 0; width: 1px; height: 20px; }
.president-photo .fc-bl { bottom: 30px; left: -6px; }
.president-photo .fc-bl::before { bottom: 0; left: 0; width: 20px; height: 1px; }
.president-photo .fc-bl::after { bottom: 0; left: 0; width: 1px; height: 20px; }
.president-photo .fc-br { bottom: 30px; right: -6px; }
.president-photo .fc-br::before { bottom: 0; right: 0; width: 20px; height: 1px; }
.president-photo .fc-br::after { bottom: 0; right: 0; width: 1px; height: 20px; }

.president-text .section-heading { margin-bottom: 1.5rem; }
.president-text .body-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.president-text .body-text strong { color: var(--gold-light); font-weight: 500; }
.president-text .signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 2rem;
}

/* ══════════════ GALLERY (About) ══════════════ */
.gallery-section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-section .section-heading { text-align: center; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
  z-index: 2;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom { opacity: 1; transform: translateY(0); }

/* ══════════════ LIGHTBOX ══════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s;
  background: none;
  border: none;
}
.lightbox-close:hover,
.lightbox-close:focus-visible { transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s;
  user-select: none;
  background: none;
  border: none;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible { color: var(--gold-light); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* ══════════════ SERVICES PAGE ══════════════ */
.services-intro {
  padding: 0 5% 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.services-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.8;
}

.service-detail {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.service-detail h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.service-detail .body-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.service-includes {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.service-includes h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.service-includes ul li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.service-includes ul li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.4rem;
  top: 0.55rem;
}

.service-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.services-cta-band {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 5%;
  text-align: center;
}
.services-cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.services-cta-band h2 em { font-style: italic; color: var(--gold-light); }
.services-cta-band p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ══════════════ PRICING CTA (Services page) ══════════════ */
.pricing-cta-band {
  padding: 80px 5%;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.pricing-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.pricing-cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.pricing-cta-text h2 em { font-style: italic; color: var(--gold-light); }
.pricing-cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════ PRICING PAGE ══════════════ */

/* Two-column layout */
.pricing-layout {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2%;
  gap: 0;
}

/* Sticky sidebar */
.pricing-sidebar {
  width: 240px;
  min-width: 240px;
  position: sticky;
  top: var(--nav-height);
  height: fit-content;
  max-height: calc(100vh - var(--nav-height) - 40px);
  padding: 2rem 0 2rem 1rem;
  overflow-y: auto;
  z-index: 10;
}
.pricing-sidebar-nav h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.pricing-sidebar-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.25s;
  border-left: 2px solid transparent;
}
.pricing-sidebar-link:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}
.pricing-sidebar-link.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  border-left-color: var(--gold);
}
.pricing-sidebar-link .lucide {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Download button */
.pricing-sidebar-download {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.pricing-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pricing-download-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.pricing-download-btn .lucide {
  width: 15px;
  height: 15px;
  stroke: var(--black);
  stroke-width: 2;
}
.pricing-download-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Main content column */
.pricing-main-content {
  flex: 1;
  min-width: 0;
}

/* Letter */
.pricing-letter {
  padding: 80px 5%;
  text-align: center;
}
.pricing-letter-inner {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}
.pricing-letter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
}
.pricing-letter p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.pricing-letter-sign {
  margin-top: 2rem;
  font-style: italic;
  color: var(--cream);
}
.pricing-letter-sign strong {
  color: var(--gold-light);
}

/* Disclosure */
.pricing-disclosure {
  padding: 40px 5%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pricing-disclosure p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  font-style: italic;
}

/* Section */
.pricing-section {
  padding: 80px 5%;
}
.pricing-section-alt {
  background: rgba(201,168,76,0.04);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.pricing-section-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}

/* Category */
.pricing-category {
  margin-bottom: 3rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 10px;
  padding: 2rem;
}
.pricing-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(201,168,76,0.2);
}
.pricing-category-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pricing-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  margin: 2rem 0 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--gold-dark);
}

/* Table rows */
.pricing-table {
  display: flex;
  flex-direction: column;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 12px;
  gap: 1rem;
  border-radius: 4px;
}
.pricing-row:nth-child(odd) {
  background: rgba(201,168,76,0.04);
}
.pricing-row:nth-child(even) {
  background: transparent;
}
.pricing-row-highlight {
  background: rgba(201,168,76,0.08) !important;
  padding: 14px 16px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.pricing-row-total {
  background: rgba(201,168,76,0.1) !important;
  border-top: 2px solid rgba(201,168,76,0.3);
  margin-top: 6px;
  padding: 14px 12px;
  border-radius: 6px;
}
.pricing-row-total .pricing-item,
.pricing-row-total .pricing-price {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}
.pricing-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.5;
  flex: 1;
}
.pricing-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  text-align: right;
}

/* Package cards */
.pricing-package {
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}
.pricing-package:hover {
  border-color: rgba(201,168,76,0.3);
}
.pricing-package h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.pricing-package-price {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1.1em;
}
.pricing-package-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pricing-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  padding: 8px 12px;
  background: rgba(201,168,76,0.04);
  border-radius: 4px;
  border-left: 3px solid var(--gold-dark);
}

/* Print styles */
@media print {
  .nav, .mobile-nav, .mobile-call-bar, .site-footer,
  .pricing-sidebar, .services-cta-band, .page-hero,
  .pricing-letter, .pricing-disclosure, .skip-link { display: none !important; }
  .pricing-layout { display: block; }
  .pricing-main-content { width: 100%; }
  .pricing-section, .pricing-section-alt {
    padding: 20px 0;
    background: none !important;
    border: none !important;
  }
  .pricing-category {
    background: none !important;
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }
  .pricing-package { break-inside: avoid; }
  .pricing-row { background: none !important; }
  .pricing-row:nth-child(odd) { background: #f5f5f5 !important; }
  .pricing-item, .pricing-price, .pricing-category h3,
  .pricing-section-title { color: #000 !important; }
  .pricing-price { color: #333 !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
}

/* Responsive — tablet */
@media (max-width: 1024px) {
  .pricing-sidebar {
    width: 200px;
    min-width: 200px;
  }
}

/* Responsive — mobile */
@media (max-width: 768px) {
  .pricing-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .pricing-layout {
    flex-direction: column;
  }
  .pricing-sidebar {
    position: relative;
    top: auto;
    width: 100%;
    min-width: unset;
    max-height: none;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    background: rgba(201,168,76,0.02);
  }
  .pricing-sidebar-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pricing-sidebar-link {
    padding: 8px 14px;
    font-size: 0.72rem;
    border-left: none;
    border: 1px solid rgba(201,168,76,0.2);
  }
  .pricing-sidebar-link.active {
    border-color: var(--gold);
    border-left-color: var(--gold);
  }
  .pricing-sidebar-download {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .pricing-download-btn {
    max-width: 220px;
    margin: 0 auto;
  }
  .pricing-row {
    flex-direction: column;
    gap: 0.25rem;
  }
  .pricing-price {
    text-align: left;
  }
  .pricing-package {
    padding: 1.5rem;
  }
  .pricing-category {
    padding: 1.2rem;
  }
  .pricing-letter-inner {
    padding: 2rem 1.5rem;
  }
}

/* ══════════════ FAMILIES (Coming Soon) ══════════════ */
.families-coming-soon {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 5% 100px;
  text-align: center;
  position: relative;
}
.families-coming-soon .bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}
.families-coming-soon .content-wrap { position: relative; z-index: 2; }
.families-coming-soon h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.families-coming-soon h1 em { font-style: italic; color: var(--gold-light); }
.families-coming-soon .subtitle {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.families-coming-soon .email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  width: 100%;
}
.families-coming-soon .email-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  padding: 14px 20px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}
.families-coming-soon .email-form input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  outline: 2px solid var(--focus-color);
  outline-offset: 1px;
}
.families-coming-soon .email-form button { padding: 14px 28px; }

/* ══════════════ CONTACT PAGE ══════════════ */
.contact-info-section {
  padding: 0 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-info-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-info-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-info-card:hover::before { opacity: 1; }
.contact-info-card .card-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.contact-info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-info-card a { color: var(--gold-light); transition: color 0.3s; }
.contact-info-card a:hover { color: var(--gold); }

.contact-map {
  margin-bottom: 4rem;
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  height: 350px;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.1);
}

.contact-hours-table {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}
.contact-hours-table h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.hours-grid .day {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--off-white);
  text-transform: uppercase;
  text-align: right;
}
.hours-grid .time {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  text-align: left;
}
.hours-emergency {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ══════════════ FOOTER ══════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 80px 5% 40px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
}
.footer-brand-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #9A9488;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover,
.footer-col ul li a:focus-visible { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #8A8070;
}
.footer-bottom .footer-license {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: #7A6A2E;
  text-transform: uppercase;
}
.footer-bottom .footer-credit {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #6A5A4A;
  font-style: italic;
}

/* ══════════════ MOBILE CALL BAR ══════════════ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 14px 5%;
  text-align: center;
}
.mobile-call-bar a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
}
.mobile-call-bar .lucide {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  stroke: var(--black);
  stroke-width: 2;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-box:nth-child(2) { border-right: none; }
  .about-preview { gap: 4rem; }
  .president-inner { grid-template-columns: 300px 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links, .nav > .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-call-bar { display: block; }

  body { padding-bottom: 52px; }

  .hero { min-height: 100svh; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-pillar, .hero-corner { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-box { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .service-box:last-child { border-bottom: none; }

  .about-preview { grid-template-columns: 1fr; gap: 3rem; padding: 80px 5%; }
  .about-preview-img .year-accent { width: 120px; height: 120px; bottom: -16px; right: -16px; }

  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.8rem; }

  .president-inner { grid-template-columns: 1fr; gap: 3rem; }
  .president-photo { max-width: 340px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }

  .contact-info-grid { grid-template-columns: 1fr; }

  .contact-card { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .form-submit-row .btn-gold { text-align: center; }
  .form-note { text-align: center; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .page-hero { padding: 130px 5% 70px; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 12px; }
  .timeline-item::before { left: -34px; }

  .families-coming-soon .email-form { flex-direction: column; }
  .families-coming-soon .email-form input { border-right: 1px solid rgba(201,168,76,0.3); }

  .hours-grid { gap: 0.4rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-badge { padding: 8px 14px; gap: 0.6rem; }
  .hero-badge span { font-size: 0.48rem; letter-spacing: 0.2em; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; max-width: 280px; }
  .service-chips { gap: 0.5rem; }
  .service-chip { font-size: 0.85rem; padding: 7px 16px; }
  .stat-num { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════════ BACK TO TOP ══════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.back-to-top .lucide {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 70px;
    left: 16px;
    width: 40px;
    height: 40px;
  }
}
@media print {
  .back-to-top { display: none !important; }
}

/* ══════════════ GLOBAL FOCUS & INTERACTION POLISH ══════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
a, button, input, textarea, select, details summary {
  transition-property: color, background, border-color, box-shadow, transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

/* ══════════════════════════════════════════════════════
   CHAT ASSISTANT
   ══════════════════════════════════════════════════════ */

/* Toggle button */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}
.chat-toggle.active {
  background: var(--charcoal-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.chat-toggle .lucide {
  width: 26px;
  height: 26px;
  stroke: var(--black);
  stroke-width: 2;
}
.chat-toggle.active .lucide {
  stroke: var(--gold);
}
.chat-toggle-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

/* Panel */
.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 1001;
  width: 380px;
  max-height: 560px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.chat-header-info { flex: 1; }
.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.chat-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
}
.chat-header-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.chat-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.chat-close:hover { color: var(--cream); }
.chat-close .lucide {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Body */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  max-height: 320px;
}
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 4px; }

/* Messages */
.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}
.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; }

.chat-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  line-height: 1.65;
}
.chat-msg-bot .chat-bubble {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  color: var(--text-body);
  border-top-left-radius: 4px;
}
.chat-msg-bot .chat-bubble strong { color: var(--gold-light); }
.chat-msg-bot .chat-bubble em { color: var(--text-muted); }

.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1000;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

/* CTAs */
.chat-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.chat-cta-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  color: var(--gold-light);
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.chat-cta-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--cream);
}

/* Quick questions */
.chat-quick {
  padding: 0 16px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chat-quick-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  padding: 6px 12px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.chat-quick-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Input row */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: rgba(0,0,0,0.15);
}
.chat-input {
  flex: 1;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.chat-input::placeholder { color: var(--text-muted); }
.chat-input:focus { border-color: var(--gold); }

.chat-send {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}
.chat-send .lucide {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  stroke-width: 2;
}

/* Typing indicator */
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px !important;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  animation: chatTyping 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .chat-panel {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 80px;
    max-height: 70vh;
    border-radius: 12px;
  }
  .chat-toggle {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}
