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

:root {
  --navy: #1A5EA8;
  --navy-dark: #0F3D72;
  --navy-deeper: #0A2744;
  --gold: #F2C14E;
  --gold-dark: #D4A017;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --light-gray: #EFEFEF;
  --text-dark: #1A1A2E;
  --text-mid: #3D4A5C;
  --text-light: #7A8799;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 39, 68, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(242, 193, 78, 0.2);
}
.nav-logo { height: 46px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-firm-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.hero-firm-sub {
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deeper) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy-dark) 50%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(242,193,78,0.08) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-logo { height: 110px; width: auto; margin-bottom: 32px; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3)); }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero p:not(.hero-firm-name):not(.hero-firm-sub):not(.hero-tagline) {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy-deeper);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── THREE POINTS ── */
.three-points {
  background: var(--white);
  padding: 80px 6%;
}
.three-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.point-card {
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 0 6px 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.point-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.point-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.point-card p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--navy-deeper);
  padding: 80px 6%;
  text-align: center;
}
.about-strip-inner { max-width: 680px; margin: 0 auto; }
.about-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-strip p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  font-weight: 300;
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}

/* ── EXCLUSIVE CALLOUT ── */
.exclusive {
  background: var(--off-white);
  padding: 80px 6%;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}
.exclusive-inner { max-width: 640px; margin: 0 auto; }
.exclusive p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy-dark);
  line-height: 1.5;
  margin-bottom: 36px;
}
.exclusive p strong { color: var(--navy-deeper); }
.exclusive p em { color: var(--gold-dark); font-style: normal; }

/* ── SERVICES ── */
.services {
  background: var(--white);
  padding: 80px 6%;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-deeper);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 18px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(242,193,78,0.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(242,193,78,0.15);
  padding: 48px 6%;
  text-align: center;
}
.footer-logo { height: 40px; margin-bottom: 16px; }
footer p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── ABOUT PAGE ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
  padding: 140px 6% 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 6%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-placeholder {
  background: var(--light-gray);
  border-radius: 8px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(0,0,0,0.1);
}
.about-photo-placeholder span { font-size: 2.5rem; margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-deeper);
  margin-bottom: 8px;
}
.about-text .subtitle {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.values-section {
  background: var(--navy-deeper);
  padding: 80px 6%;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.value-card { text-align: center; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── SERVICES PAGE ── */
.services-page { padding: 80px 6%; max-width: 1100px; margin: 0 auto; }
.service-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: start;
}
.service-full:last-child { border-bottom: none; }
.service-full-icon { font-size: 3rem; color: var(--navy); }
.service-full h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy-deeper);
  margin-bottom: 16px;
}
.service-full p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.service-includes { list-style: none; margin-top: 16px; }
.service-includes li {
  padding: 6px 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-includes li::before { content: '→'; color: var(--gold-dark); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 80px 6%; max-width: 800px; margin: 0 auto; }
.contact-intro { margin-bottom: 48px; }
.contact-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-deeper);
  margin-bottom: 16px;
}
.contact-intro p { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.pricing-note {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.8);
  padding: 20px 28px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  font-size: 0.97rem;
  margin: 28px 0 40px;
  line-height: 1.7;
}
.calendly-wrapper {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
}
.calendly-wrapper p { color: var(--text-mid); margin-bottom: 28px; font-size: 1rem; }

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

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-deeper); padding: 24px 6%; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .three-points-grid, .services-grid, .values-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
