/* ============================================
   SERICUS INTERNATIONAL — SHARED STYLES
   ============================================ */

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

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

:root {
  --navy: #0D1E35;
  --navy-mid: #1A3251;
  --navy-light: #243d5e;
  --gold: #C09A5A;
  --gold-light: #D4B47A;
  --gold-pale: rgba(192,154,90,0.12);
  --cream: #F7F4EE;
  --white: #ffffff;
  --text: #1A1A1A;
  --muted: #5A5A5A;
  --border: rgba(192,154,90,0.25);
  --border-light: rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  border-bottom: 1px solid rgba(192,154,90,0.3);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(192,154,90,0.2);
  border-bottom: 1px solid rgba(192,154,90,0.2);
  z-index: 99;
  flex-direction: column;
  padding: 8px 0 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-light);
  background: rgba(192,154,90,0.06);
}

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  background: var(--navy);
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(192,154,90,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner { max-width: 960px; margin: 0 auto; }
.page-eyebrow {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; font-weight: 400;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500; line-height: 1.05;
  color: #fff; letter-spacing: -0.01em;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-subtitle {
  margin-top: 20px;
  font-size: 18px; color: rgba(255,255,255,0.55);
  max-width: 600px; line-height: 1.85;
}

/* ── SECTIONS ── */
section { padding: 100px 60px; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500; line-height: 1.1;
  color: var(--navy); margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.divider {
  width: 56px; height: 1px;
  background: var(--gold); margin-bottom: 40px;
}
.divider.light { background: rgba(192,154,90,0.5); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold); color: var(--navy);
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 48px 60px 32px;
  border-top: 1px solid rgba(192,154,90,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.08em;
  text-transform: uppercase; display: block;
  margin-bottom: 14px; text-decoration: none;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.8; max-width: 240px;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s; line-height: 1.6;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 24px; }
  .page-header { padding: 120px 24px 60px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .nav-links { gap: 12px; }
  .footer-top { grid-template-columns: 1fr; }
}
