/* Fonts loaded via link tags in HTML */

:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-pale:  #F5EDD6;
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --text:       #1A2535;
  --muted:      #64748B;
  --border:     rgba(201, 168, 76, 0.22);
  --border-dark:rgba(201, 168, 76, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 68px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem; font-weight: 600; color: var(--white);
  text-decoration: none; letter-spacing: 0.03em;
}
.logo span { color: var(--gold); }

nav { display: flex; gap: 36px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.25s; position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
}
nav a:hover { color: var(--gold-light); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 22px !important; border-radius: 2px; font-weight: 500 !important;
  letter-spacing: 0.07em !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 110px 64px 80px;
}

/* Diagonal geometric slice */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: -5%; bottom: 0;
  width: 45%;
  background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
  border-left: 1px solid rgba(201,168,76,0.18);
  transform: skewX(-4deg);
  transform-origin: top right;
}

.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Gold glow orb top-right */
.hero-glow {
  position: absolute;
  top: -120px; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 640px; animation: fadeUp 0.85s ease both; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500; margin-bottom: 30px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem); font-weight: 300;
  line-height: 1.1; color: var(--white); margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem; font-weight: 300;
  max-width: 440px; margin-bottom: 48px; line-height: 1.85;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 14px 32px; border-radius: 2px; text-decoration: none;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.09em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* Stats — bottom right of hero */
.hero-stats {
  position: absolute; z-index: 1;
  right: 64px; bottom: 72px;
  display: flex; flex-direction: column; gap: 28px;
  animation: fadeUp 1s 0.2s ease both;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem; font-weight: 300; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}

/* ─── SECTION BASE ─────────────────────────────── */
.section { padding: 100px 64px; }
.section-inner { max-width: 1120px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.5vw, 3.1rem); font-weight: 300;
  color: var(--navy); line-height: 1.18; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  color: var(--muted); font-size: 1rem; max-width: 500px;
  line-height: 1.85; margin-bottom: 56px;
}

/* ─── SERVICE CARDS ─────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: rgba(0,0,0,0.06);
}
.card {
  background: var(--white); padding: 40px 32px;
  position: relative; overflow: hidden; transition: background 0.25s, transform 0.25s;
}
.card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.card:hover .card-accent { transform: scaleX(1); }
.card:hover { background: var(--off-white); }
.card-icon { font-size: 1.5rem; margin-bottom: 18px; display: block; }
.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.88rem; line-height: 1.78; }

/* ─── ABOUT SPLIT ───────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 420px; }
.about-visual-box {
  position: absolute; inset: 0; background: var(--navy-mid); border-radius: 2px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
/* Gold corner accent */
.about-visual-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, transparent 60%);
}
.about-visual-box::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: linear-gradient(315deg, rgba(201,168,76,0.2) 0%, transparent 60%);
}
.about-monogram {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11rem; font-weight: 300;
  color: rgba(255,255,255,0.05); line-height: 1; user-select: none;
}
.about-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--gold); color: var(--navy);
  width: 104px; height: 104px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; text-align: center; line-height: 1.5;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.about-detail { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 0.9rem; line-height: 1.5;
}
.about-item::before { content: '◆'; color: var(--gold); font-size: 0.45rem; flex-shrink: 0; }

/* ─── CTA STRIP ───────────────────────────────── */
.cta-strip {
  background: linear-gradient(100deg, var(--navy) 60%, var(--navy-mid) 100%);
  padding: 80px 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 300;
  color: var(--white); line-height: 1.25; position: relative;
}
.cta-strip-text em { font-style: italic; color: var(--gold-light); }

/* ─── PRESS CARDS ─────────────────────────────── */
.press-featured {
  background: var(--navy); padding: 52px;
  border-radius: 2px; height: 100%; display: flex;
  flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(10,22,40,0.15);
}
.press-featured:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.25); }

.press-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  padding: 40px; border-radius: 2px; height: 100%; display: flex;
  flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.press-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }

.press-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 1px; margin-bottom: 26px;
}
.press-tag-outline {
  display: inline-block; background: transparent;
  border: 1px solid var(--border-dark); color: var(--gold);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 1px; margin-bottom: 26px;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: #060E1A; color: rgba(255,255,255,0.38);
  padding: 48px 64px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-logo { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; color: rgba(255,255,255,0.85); }
.footer-logo span { color: var(--gold); }
footer p { font-size: 0.78rem; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ─── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: var(--navy); padding: 140px 64px 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(201,168,76,0.2);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 120% at 95% 50%, rgba(201,168,76,0.09) 0%, transparent 65%),
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
}
.page-hero-inner { position: relative; max-width: 1120px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem); font-weight: 300;
  color: var(--white); line-height: 1.15; margin-top: 14px; letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.5); margin-top: 18px; font-size: 1rem; max-width: 480px; line-height: 1.85; }

/* ─── QUALIFICATIONS ─────────────────────────── */
.quals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 56px; }
.qual-card {
  background: var(--white); padding: 36px 30px; border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.07); position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.qual-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.qual-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.qual-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.qual-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.qual-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; }

/* ─── CONTACT ────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-item h4 {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px; font-weight: 600;
}
.contact-item p, .contact-item a {
  color: var(--navy); text-decoration: none; font-size: 1rem;
  line-height: 1.65; font-weight: 300; display: block; transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }
.contact-form {
  background: var(--white); padding: 48px 44px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--off-white); border: 1px solid rgba(0,0,0,0.09); border-radius: 2px;
  padding: 12px 16px; font-family: 'DM Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.value-list { display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.07); border-radius: 2px; overflow: hidden; }
.value-item {
  padding: 28px 30px; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.2s;
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: var(--gold-pale); }
.value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; color: var(--gold); font-weight: 300;
  min-width: 32px; line-height: 1; margin-top: 2px;
}
.value-item h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.value-item p { color: var(--muted); font-size: 0.875rem; line-height: 1.72; }

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

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 960px) {
  header { padding: 0 24px; }
  .section { padding: 72px 24px; }
  .hero { padding: 110px 24px 200px; }
  .hero-stats { right: 24px; bottom: 36px; flex-direction: row; gap: 28px; }
  .about-split, .about-page-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { padding: 60px 24px; flex-direction: column; text-align: center; }
  footer { padding: 36px 24px; flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  nav { gap: 20px; }
}
@media (max-width: 600px) {
  .nav-cta { display: none !important; }
  .hero-stats { flex-direction: column; gap: 16px; }
  nav a { font-size: 0.72rem; letter-spacing: 0.06em; }
}
