@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-light: #122847;
  --gold: #c8a54b;
  --gold-light: #e8c97a;
  --gold-dark: #8B5E10;
  --cream: #faf7f2;
  --cream-dark: #f0ece4;
  --white: #ffffff;
  --text: #2d3748;
  --text-muted: #718096;
  --border: rgba(200,165,75,0.2);
  --shadow: 0 4px 30px rgba(11,31,58,0.08);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: all 0.3s; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,165,75,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: all 0.3s; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Page Hero */
.page-hero {
  background: var(--navy); padding: 140px 0 70px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,165,75,0.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 { font-size: clamp(34px,5vw,54px); color: var(--white); font-weight: 900; }
.page-hero .hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-top: 10px; }

/* Footer */
footer { margin-top: 80px; background: var(--cream); }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 50px; display: block; }
.footer-body { background: var(--navy); padding-bottom: 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 48px; padding: 56px 0 48px;
}
.footer-logo { width: 42px; height: 42px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.footer-logo svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 2; }
.footer-brand h3 { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all 0.2s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-links h4, .footer-contact-col h4 { font-family: var(--font-display); font-size: 15px; color: var(--gold); margin-bottom: 18px; }
.footer-links ul li { margin-bottom: 9px; }
.footer-links ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact-col ul li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13.5px; color: rgba(255,255,255,0.5); }
.footer-contact-col ul li .icon { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-col ul li a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0 26px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }
