/* ============================================
   AREA STUDIO EXCELLENCE™ — Brand Stylesheet
   Midnight Navy / Orchid / Antique Gold / Ivory
   ============================================ */

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

:root {
  --navy: #0D183D;
  --navy-deep: #080f28;
  --orchid: #7C1F8C;
  --gold: #C9A24C;
  --gold-bright: #E4C374;
  --ivory: #F7F4EE;
  --ivory-soft: #FBF9F5;
  --stone: #6E6E6E;
  --stone-light: #a19b8f;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--navy);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow.on-light { color: var(--orchid); }

/* ---------- Compass Star Motif ---------- */
.star {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  background: url('images/brand/compass_star.png') center/contain no-repeat;
  vertical-align: middle;
}
.divider-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.4rem 0;
}
.divider-star .line {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-star .star { width: 1.3rem; height: 1.3rem; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw;
  background: rgba(13, 24, 61, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,76,0.25);
}
.site-nav .brand {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-nav .brand-badge {
  display: flex;
  align-items: center;
  background: var(--ivory);
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
}
.site-nav .brand-badge img {
  height: 22px;
  width: auto;
  display: block;
}
.site-nav .brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 400;
}
.site-nav .brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 400;
}
.site-nav .links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.site-nav .links a {
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.site-nav .links a:hover { opacity: 1; color: var(--gold-bright); }
.site-nav .cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  opacity: 1 !important;
}
.site-nav .cta-btn:hover { background: var(--gold-bright); }

@media (max-width: 860px) {
  .site-nav .links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: var(--ivory); border-color: rgba(247,244,238,0.5);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--ivory); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 6.5rem 4vw; }
.container { max-width: 1240px; margin: 0 auto; }
.dark-section {
  background: var(--navy);
  color: var(--ivory);
}
.dark-section .stone-text { color: rgba(247,244,238,0.7); }

.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: 0.6rem; color: var(--navy); }
.dark-section .section-head h2 { color: var(--ivory); }
.section-head p { color: var(--stone); font-size: 1.05rem; margin-top: 1rem; }
.dark-section .section-head p { color: rgba(247,244,238,0.75); }

/* ---------- Footer band curve (deck signature) ---------- */
.curve-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--ivory);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* ---------- Cards ---------- */
.card {
  background: var(--ivory-soft);
  border: 1px solid rgba(201,162,76,0.3);
  border-radius: 3px;
  padding: 2rem 1.7rem;
}
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.icon-circle.orchid {
  background: var(--orchid);
  border-color: var(--orchid);
  color: var(--ivory);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
img { max-width: 100%; display: block; }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
