@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --gold: #c9a45a;
  --gold-light: #e8c685;
  --cream: #f5f1e9;
  --gray: #888;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 22px 0;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,164,90,0.15);
}
nav.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; letter-spacing: 8px; color: var(--gold); }
.logo span { font-weight: 300; color: var(--cream); }
.nav-links { display: flex; gap: 38px; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,245,245,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { border: 1px solid var(--gold); color: var(--gold); padding: 10px 24px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* SHARED TYPO */
section.block { padding: 120px 0; }
.section-head { text-align: center; margin-bottom: 80px; }
.section-eyebrow { color: var(--gold); font-size: 13px; letter-spacing: 6px; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 400; line-height: 1.1; letter-spacing: -1px; color: var(--cream); margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: rgba(245,245,245,0.55); font-size: 17px; max-width: 580px; margin: 0 auto; line-height: 1.6; }

/* BUTTONS */
.btn-gold { display: inline-block; background: var(--gold); color: var(--black); padding: 16px 32px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 16px 32px; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* PAGE BANNER (alternative to hero on subpages) */
.page-banner {
  padding-top: 200px; padding-bottom: 80px;
  text-align: center;
  background: var(--black-2);
  border-bottom: 1px solid rgba(201,164,90,0.1);
}
.page-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 88px); font-weight: 400; line-height: 1; color: var(--cream); margin-bottom: 18px; letter-spacing: -1px; }
.page-banner h1 em { font-style: italic; color: var(--gold); }
.page-banner p { color: rgba(245,245,245,0.6); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* FOOTER */
footer.site-footer { background: #050505; padding: 80px 0 40px; border-top: 1px solid rgba(201,164,90,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 28px; }
.footer-brand p { color: rgba(245,245,245,0.5); font-size: 14px; line-height: 1.7; margin-top: 22px; max-width: 320px; }
.footer-col h5 { color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.footer-col a, .footer-col p { display: block; color: rgba(245,245,245,0.55); font-size: 14px; line-height: 2; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(245,245,245,0.08); text-align: center; color: rgba(245,245,245,0.3); font-size: 12px; letter-spacing: 1px; }

/* CHAT WIDGET */
.chat-fab { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--black); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(201,164,90,0.4); cursor: pointer; transition: transform 0.3s; }
.chat-fab:hover { transform: scale(1.05) rotate(-8deg); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-fab .badge { position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; background: #e74c3c; color: white; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--black); }

.chat-panel { position: fixed; bottom: 110px; right: 28px; width: 380px; max-width: calc(100vw - 56px); height: 520px; z-index: 91; background: var(--black-2); border: 1px solid rgba(201,164,90,0.25); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.5); transform: translateY(20px); opacity: 0; pointer-events: none; transition: all 0.3s; }
.chat-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.chat-header { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); padding: 18px 22px; border-bottom: 1px solid rgba(201,164,90,0.15); display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; font-family: 'Cormorant Garamond', serif; }
.chat-status-name { color: var(--cream); font-weight: 600; font-size: 14px; }
.chat-status-online { color: #4ade80; font-size: 11px; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.chat-status-online::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.chat-messages { flex: 1; padding: 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 78%; padding: 11px 16px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.chat-msg.agent { background: rgba(201,164,90,0.1); color: var(--cream); border: 1px solid rgba(201,164,90,0.2); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--gold); color: var(--black); align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }
.chat-time { font-size: 10px; color: rgba(245,245,245,0.4); text-align: center; margin: 4px 0; letter-spacing: 1px; }
.chat-quick { display: flex; gap: 8px; padding: 0 18px 12px; flex-wrap: wrap; }
.chat-quick button { background: transparent; border: 1px solid rgba(201,164,90,0.3); color: var(--gold); padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.chat-quick button:hover { background: var(--gold); color: var(--black); }
.chat-input { border-top: 1px solid rgba(245,245,245,0.06); padding: 14px 18px; display: flex; gap: 10px; }
.chat-input input { flex: 1; background: rgba(245,245,245,0.04); border: 1px solid rgba(245,245,245,0.1); color: var(--cream); padding: 10px 14px; border-radius: 100px; font-size: 13px; outline: none; font-family: inherit; }
.chat-input input:focus { border-color: var(--gold); }
.chat-input button { background: var(--gold); color: var(--black); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-input button svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
