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

:root {
  --gold: #D4AF37;
  --gold-light: #E8CC6A;
  --gold-muted: #B8962E;
  --ivory: #FAF7F0;
  --espresso: #1A1A1A;
  --nude: #CBB79C;
  --sand: #E9E2D3;
  --sand-dark: #D4C9B4;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--espresso);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Jost', sans-serif; border: none; background: none; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--espresso);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}
.ann-text {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.8);
  white-space: nowrap;
}
.ann-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0.6; flex-shrink: 0; }

/* ── NAVIGATION ── */
nav {
  background: var(--espresso);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo em { font-style: italic; font-weight: 300; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.65);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-actions a {
  color: rgba(250,247,240,0.65);
  font-size: 18px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-actions a:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: rgba(250,247,240,0.7); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  transition: background 0.25s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ivory);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(212,175,55,0.35);
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-muted);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(212,175,55,0.5);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(212,175,55,0.06); border-color: var(--gold); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; padding: 64px 24px 40px; }
.section-eyebrow {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(184,150,46,0.35);
}
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow.left::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-muted); }
.section-title.light { color: var(--ivory); }
.section-title.light em { color: var(--gold); }

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  background: linear-gradient(145deg, #d4c4ae 0%, #c2ae96 50%, #b8a48a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.img-placeholder i { font-size: 28px; color: rgba(26,26,26,0.18); position: relative; z-index: 1; }
.img-placeholder span {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.3);
  position: relative;
  z-index: 1;
}
.img-placeholder.dark {
  background: linear-gradient(145deg, #2d2416 0%, #3d3020 50%, #1a1a1a 100%);
}
.img-placeholder.dark i { color: rgba(212,175,55,0.2); }
.img-placeholder.dark span { color: rgba(212,175,55,0.3); }

/* ── TICKER ── */
.ticker {
  background: var(--espresso);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 52px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  width: max-content;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.45);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.7; }

/* ── EXPERIENCE STRIP ── */
.experience-strip {
  background: var(--sand);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(203,183,156,0.5);
  border-bottom: 1px solid rgba(203,183,156,0.5);
}
.exp-item {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--sand);
}
.exp-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,150,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-icon i { font-size: 20px; color: var(--gold-muted); }
.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--espresso);
}
.exp-desc { font-size: 11px; font-weight: 300; color: #8a7a6a; line-height: 1.8; letter-spacing: 0.03em; }

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
}
.footer-logo em { font-style: italic; }
.footer-tagline {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.25);
  margin-bottom: 20px;
}
.footer-desc { font-size: 11px; font-weight: 300; color: rgba(250,247,240,0.38); line-height: 1.9; }
.footer-col h4 {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,247,240,0.38);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col li a:hover { color: rgba(250,247,240,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(212,175,55,0.07);
}
.footer-copy { font-size: 10px; font-weight: 300; color: rgba(250,247,240,0.22); letter-spacing: 0.08em; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); }
.social-link i { font-size: 15px; color: rgba(250,247,240,0.45); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--espresso);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    z-index: 999;
  }
  .nav-links.open a { font-size: 13px; }
  .section-title { font-size: 28px; }
  .experience-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
