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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9B7A2E;
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3460;
  --cream: #F8F4ED;
  --cream-dark: #EDE5D5;
  --white: #FFFFFF;
  --text-light: #B8C5D6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--navy); color: var(--cream); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold); letter-spacing: 2px; text-decoration: none;
}
.nav-logo span { color: var(--cream); font-weight: 300; font-size: 1.1rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.83rem; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 0.6rem 1.5rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(10,22,40,0.98); backdrop-filter: blur(20px);
  padding: 2rem 5%; flex-direction: column; gap: 1.5rem; z-index: 999;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); text-decoration: none; font-size: 1rem;
  font-weight: 400; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.mobile-menu a:hover { color: var(--gold); }

/* PAGE HERO (non-home pages) */
.page-hero {
  padding: 8rem 5% 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-tag {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
}
.page-title em { color: var(--gold); font-style: italic; }
.page-desc { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-top: 1rem; font-weight: 300; }

/* SECTION COMMON */
section { padding: 5rem 5%; }
.section-tag {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.2;
  color: var(--white); margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--text-light); font-size: 1rem; line-height: 1.8; max-width: 600px; font-weight: 300; }
.gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 1.2rem 0; }

/* BUTTONS */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  transition: all 0.3s; border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; display: inline-block;
  transition: all 0.3s; background: transparent; cursor: pointer; font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* FORMS */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.78rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
input, select, textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream); padding: 0.9rem 1.1rem; border-radius: 4px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s; outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select option { background: var(--navy-mid); }
textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  grid-column: 1 / -1; background: var(--gold); color: var(--navy);
  padding: 1rem 2rem; border: none; border-radius: 4px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; width: 100%;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.footer-heading { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1); padding-top: 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-light); }
.footer-socials { display: flex; gap: 1rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.85rem; text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeUp 0.8s ease forwards; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .submit-btn { grid-column: auto; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
