/* ─── CRESTPOINT SERVICES — SHARED STYLES ─── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --stone-50:   #ffffff;
  --stone-100:  #f0f4f8;
  --stone-200:  #dce6ef;
  --stone-400:  #9ab0c4;
  --stone-600:  #5a7a96;
  --stone-800:  #2d3748;
  --stone-900:  #1a202c;
  --amber:      #2563eb;
  --amber-light:#4f86f7;
  --amber-muted:#dbeafe;
  --charcoal:   #2d3748;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--stone-50);
  color: var(--stone-800);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--stone-50);
  border-bottom: 1px solid var(--stone-200);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px; width: auto;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--stone-600);
  text-decoration: none; transition: color 0.2s;
}

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

.nav-cta {
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  background: var(--charcoal); color: var(--stone-50);
  border: none; padding: 10px 22px; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--amber); }

/* ─── SHARED SECTION ─── */
section { padding: 100px 10vw; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500; color: var(--charcoal);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px; font-weight: 300; color: var(--stone-600);
  max-width: 560px; line-height: 1.75; margin-bottom: 60px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--charcoal); color: var(--stone-50);
  padding: 14px 32px; font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--charcoal); cursor: pointer;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--amber); border-color: var(--amber); }

.btn-ghost {
  background: transparent; color: var(--stone-800);
  padding: 14px 32px; font-size: 14px; font-weight: 400;
  border: 1.5px solid var(--stone-400); cursor: pointer;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }

.book-btn {
  display: inline-block;
  background: var(--amber); color: var(--stone-50);
  padding: 16px 36px; font-size: 14px; font-weight: 500;
  text-decoration: none; margin-top: 8px;
  transition: background 0.2s; letter-spacing: 0.02em;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.book-btn:hover { background: var(--charcoal); }

/* ─── FOOTER ─── */
footer {
  background: var(--stone-900); color: var(--stone-400);
  padding: 60px 10vw 40px;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; color: var(--stone-50);
}
.footer-logo span { color: var(--amber); }

.footer-links {
  display: flex; gap: 28px; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px; color: var(--stone-400); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber-light); }

.footer-copy {
  text-align: center; font-size: 12px; color: var(--stone-600);
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  section { padding: 70px 6vw; }
}
