/* ── CYGNUS LEGACY GROUP — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #1C1C1C;
  --offwhite: #F5F5F5;
  --gold: #C6A75E;
  --slate: #6B7280;
  --maroon: #5B1A1A;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198,167,94,0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--charcoal);
  padding: 160px 60px 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(198,167,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 820px;
  position: relative;
}

.page-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 620px;
}

/* ── SECTIONS ── */
.section { padding: 90px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-dark { background: var(--charcoal); }
.section-white { background: var(--white); }
.section-offwhite { background: var(--offwhite); }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading-light { color: var(--offwhite); }

.section-body {
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.85;
  max-width: 660px;
}

.section-body-light {
  color: rgba(245,245,245,0.72);
}

/* ── DIVIDER ── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #d4b870; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid rgba(198,167,94,0.4);
  color: var(--offwhite);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARDS ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,167,94,0.12);
  padding: 40px 32px;
  transition: background 0.2s, border-color 0.2s;
}

.card-dark:hover {
  background: rgba(198,167,94,0.05);
  border-color: rgba(198,167,94,0.28);
}

.card-light {
  background: var(--white);
  border: 1px solid rgba(28,28,28,0.08);
  padding: 36px;
  transition: box-shadow 0.2s;
}

.card-light:hover {
  box-shadow: 0 6px 32px rgba(28,28,28,0.08);
}

.card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(198,167,94,0.16);
  line-height: 1;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-title-light { color: var(--offwhite); }
.card-title-dark { color: var(--charcoal); }

.card-body {
  font-size: 0.87rem;
  line-height: 1.75;
}

.card-body-light { color: var(--slate); }
.card-body-dark { color: var(--slate); }

.card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.3);
  padding: 3px 10px;
  margin-bottom: 16px;
}

/* ── COMPLIANCE BOX ── */
.compliance-box {
  background: rgba(198,167,94,0.06);
  border: 1px solid rgba(198,167,94,0.2);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  margin-top: 52px;
}

.compliance-box-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compliance-list li {
  font-size: 0.88rem;
  color: var(--slate);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.compliance-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.two-col-center { align-items: center; }

/* ── CONTACT FORM ── */
.contact-form-group { margin-bottom: 20px; }

.contact-form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid rgba(28,28,28,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus { border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 52px 60px;
  border-top: 1px solid rgba(198,167,94,0.12);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 10px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(107,114,128,0.6);
  margin-top: 28px;
}

.footer-right {
  text-align: right;
}

.footer-contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-contact-value {
  font-size: 0.85rem;
  color: var(--slate);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links { gap: 18px; }
  .page-hero { padding: 140px 24px 72px; }
  .section { padding: 72px 24px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
}

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

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
