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

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --silver: #c0c8d4;
  --silver-light: #e0e5ec;
  --silver-bright: #f0f3f7;
  --accent: #8fa8c8;
  --white: #ffffff;
  --text-muted: #8a9bb0;
}

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

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--navy);
  color: var(--silver-light);
  min-height: 100vh;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 200, 212, 0.1);
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--accent));
  border: 1.5px solid var(--silver);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--silver-light); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2;
}
.nav-logo-text span {
  display: block; font-size: 0.56rem; font-family: 'Raleway', sans-serif;
  font-weight: 400; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase;
}
.nav-logo-img {
  height: 48px; width: auto; display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 9999;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
#navClose { display: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--silver); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--silver-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  font-family: 'Raleway', sans-serif; font-size: 0.73rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--silver);
  color: var(--silver-light); background: transparent; transition: all 0.3s; cursor: pointer;
}
.btn:hover { background: var(--silver); color: var(--navy); }
.btn-primary { background: var(--silver); color: var(--navy); }
.btn-primary:hover { background: var(--silver-bright); border-color: var(--silver-bright); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 6rem 2.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(143,168,200,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(36,59,85,0.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #0a1520 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,200,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,200,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-split {
  position: relative; width: 100%; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
  animation: fadeUp 1s ease both;
}
.hero-photo { display: flex; align-items: center; justify-content: center; }
.hero-photo img {
  width: 100%; max-width: 420px; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border: 1px solid rgba(192,200,212,0.15); display: block;
}
.hero-photo-placeholder {
  width: 100%; max-width: 420px; aspect-ratio: 3/4;
  background: var(--navy-mid); border: 1px solid rgba(192,200,212,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-content { position: relative; }
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--accent); opacity: 0.5;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300;
  line-height: 1.1; color: var(--white); margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--silver); }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1rem); font-weight: 300; color: var(--text-muted);
  max-width: 480px; margin: 0 0 2rem; line-height: 1.85;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(192,200,212,0.1);
  border-bottom: 1px solid rgba(192,200,212,0.1);
  padding: 2rem 2.5rem;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--silver-light); line-height: 1; margin-bottom: 0.35rem;
}
.trust-item-label {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── SECTIONS ── */
.section { padding: 4rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--silver); }
.divider { width: 50px; height: 1px; background: var(--accent); margin-bottom: 2rem; opacity: 0.6; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(192,200,212,0.1);
  border: 1px solid rgba(192,200,212,0.1);
}
.service-card { background: var(--navy); padding: 2.5rem 2rem; transition: background 0.3s; }
.service-card:hover { background: var(--navy-mid); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: rgba(192,200,212,0.18);
  line-height: 1; margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(192,200,212,0.08);
  border-bottom: 1px solid rgba(192,200,212,0.08);
  padding: 4rem 2.5rem;
  max-width: 100%;
}
.about-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(192,200,212,0.08);
}
.contact-info-label {
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; color: var(--white);
}
.contact-info-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
.contact-info-value a:hover { color: var(--silver); }

/* ── PAGE HEADER ── */
.page-header { padding: 9rem 2.5rem 4rem; text-align: center; position: relative; }
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(143,168,200,0.06) 0%, transparent 70%);
}
.page-header-content { position: relative; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-photo-placeholder {
  aspect-ratio: 3/4; background: var(--navy-mid);
  border: 1px solid rgba(192,200,212,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.about-text p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.9; }
.about-text p strong { color: var(--silver-light); font-weight: 500; }
.credential-list { list-style: none; margin-top: 2rem; border-top: 1px solid rgba(192,200,212,0.1); padding-top: 2rem; }
.credential-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.7rem 0; font-size: 0.85rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(192,200,212,0.06);
}
.credential-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ── VIDEOS PAGE ── */
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.video-placeholder {
  aspect-ratio: 16/9; background: var(--navy-mid);
  border: 1px solid rgba(192,200,212,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; transition: border-color 0.3s;
}
.video-placeholder:hover { border-color: rgba(192,200,212,0.25); }
.video-play {
  width: 50px; height: 50px; border: 1px solid rgba(192,200,212,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--silver); opacity: 0.5;
}

/* ── SERVICE DETAIL (services page) ── */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.service-tag {
  font-size: 0.72rem; padding: 0.4rem 1rem;
  border: 1px solid rgba(192,200,212,0.2);
  color: var(--text-muted); letter-spacing: 0.08em;
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-note { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; }
.contact-note p { margin-bottom: 1.2rem; }

/* ── FOOTER ── */
footer { border-top: 1px solid rgba(192,200,212,0.08); padding: 2rem 2.5rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
footer p { font-size: 0.73rem; color: var(--text-muted); }

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

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 36px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #0d1b2a;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 9999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-top: 3.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block; padding: 0.85rem 2rem;
    font-size: 1.2rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--silver-light);
    border-bottom: 1px solid rgba(192,200,212,0.1);
    background: transparent;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(192,200,212,0.06); }
  .nav-links a::after { display: none; }

  /* Hero */
  .hero { padding: 6.5rem 1.25rem 3.5rem; min-height: auto; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-photo { order: -1; }
  .hero-photo-placeholder { max-width: 100%; aspect-ratio: 4/3; margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-sub { font-size: 0.93rem; margin: 0 auto 2rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Trust bar */
  .trust-bar { padding: 1.75rem 1.25rem; }
  .trust-bar-inner { gap: 1.75rem; }
  .trust-item-number { font-size: 1.7rem; }

  /* Sections */
  .section { padding: 3rem 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Services page */
  .service-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* About strip */
  .about-strip { padding: 3rem 1.25rem; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* About page */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-placeholder { aspect-ratio: 4/3; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Page header */
  .page-header { padding: 7rem 1.25rem 3rem; }

  /* Footer */
  footer { padding: 1.75rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.9rem; }
  .trust-bar-inner { flex-direction: column; gap: 1.25rem; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── MENU OPEN STATE ── */
body.menu-open { overflow: hidden; }
body.menu-open .hero-split { animation: none; transform: none; }
