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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --navy-light: #253459;
  --cream: #f9f5ef;
  --warm-white: #fdfaf6;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --red: #b83228;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e0d8cc;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26,39,68,0.98);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; }
.nav-logo-sub { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 0.77rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 400; padding: 0.5rem 0.9rem; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; border-radius: 2px; font-weight: 500 !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all 0.3s; }

/* PAGE BANNER */
.page-banner {
  height: 300px; padding-top: 72px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; padding-left: 5%; padding-right: 5%;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a96e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.6rem; }
.page-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: #fff; line-height: 1.1; }
.page-banner h1 em { font-style: italic; color: var(--gold); }
.banner-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--navy), var(--gold), var(--red), var(--gold), var(--navy)); }

/* SECTION BASE */
section { padding: 90px 5%; }
.section-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.7rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: #fff; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--navy); padding: 0.85rem 2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; text-decoration: none; border-radius: 2px; transition: all 0.3s; font-family: 'Jost', sans-serif; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 0.85rem 2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; background: transparent; cursor: pointer; text-decoration: none; border-radius: 2px; transition: all 0.3s; font-family: 'Jost', sans-serif; display: inline-block; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 0.85rem 2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; background: transparent; cursor: pointer; text-decoration: none; border-radius: 2px; transition: all 0.3s; font-family: 'Jost', sans-serif; display: inline-block; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* DIVIDER */
.divider { height: 4px; background: linear-gradient(to right, var(--navy), var(--gold), var(--red), var(--gold), var(--navy)); }

/* FOOTER */
footer { background: var(--navy); padding: 4rem 5% 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-logo-name { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.1rem; font-weight: 600; }
.footer-logo-sub { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.2rem; }
.footer-badge { display: inline-block; background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); color: var(--gold); padding: 0.35rem 0.8rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.footer-contact-item span:first-child { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-item span:last-child, .footer-contact-item a { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; font-weight: 300; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-links-bottom { display: flex; gap: 1.5rem; }
.footer-links-bottom a { color: rgba(255,255,255,0.3); font-size: 0.78rem; text-decoration: none; transition: color 0.3s; }
.footer-links-bottom a:hover { color: var(--gold); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

@media(max-width:960px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(26,39,68,0.99); padding: 1rem 5%; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
