/* ============================================================
   EXECUTIVE EDGE GROUP — styles.css
   Edit brand tokens in :root. Each page section has a comment
   label so you can find and edit content without touching layout.
   ============================================================ */

/* ── BRAND TOKENS ── */
:root {
  --navy:       #0D1B3E;
  --navy-mid:   #1B2E5E;
  --emerald:    #1A6B5A;
  --teal:       #2DA882;
  --cloud:      #F7F8FB;
  --soft-gray:  #EDEEF2;
  --mid-gray:   #4B5563;
  --light-gray: #9CA3AF;
  --white:      #FFFFFF;
  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(13,27,62,0.08);
  --shadow-md:  0 6px 24px rgba(13,27,62,0.13);
  --trans:      all 0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--mid-gray); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPE ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.2rem,5vw,3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem,2vw,1.55rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; color: var(--mid-gray); }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 72px 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.85rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--soft-gray);
  transition: var(--trans);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: var(--trans); }
.nav-links a:hover { color: var(--teal); }
.nav-cta { font-size: 0.85rem !important; padding: 0.55rem 1.25rem !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--trans); border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--emerald); border-color: var(--emerald); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.82rem; border-radius: 6px; }

/* ── HERO (Home) ── */
.hero {
  background: var(--navy);
  padding: 120px 0 56px;
  position: relative; overflow: hidden;
}
.hero-geo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42);
  font-style: italic; margin-bottom: 1.1rem; display: block;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.76); max-width: 460px;
  margin-bottom: 1.6rem; line-height: 1.78;
}
.hero-bottom { display: flex; align-items: center; justify-content: space-between; max-width: 600px; }
.hero-tagline {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); font-style: italic;
}

/* ── PAGE HERO (interior) ── */
.page-hero { background: var(--soft-gray); padding: 132px 0 64px; text-align: center; }
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero-sub { font-size: 1.05rem; color: var(--mid-gray); max-width: 620px; margin: 0 auto; line-height: 1.8; }

/* ── POSITION STATEMENT ── */
.position-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem,2.2vw,1.5rem);
  font-style: italic; font-weight: 500;
  color: var(--navy); line-height: 1.65;
  border-left: 3px solid var(--teal); padding-left: 1.75rem;
  max-width: 720px;
}

/* ── PRACTICE AREA CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem;
  border-left: 4px solid var(--teal); box-shadow: var(--shadow-sm);
  transition: var(--trans); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.4; }
.card p  { font-size: 0.9rem; flex: 1; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); margin-top: 1rem; display: inline-block; }

/* section-level learn more link */
.section-learn-more { text-align: center; margin-top: 1.5rem; }
.section-learn-more a { font-size: 0.9rem; font-weight: 600; color: var(--teal); }

/* ── PERSPECTIVE CARDS ── */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
.pcard { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border-top: 3px solid var(--soft-gray); box-shadow: var(--shadow-sm); transition: var(--trans); }
.pcard:hover { border-top-color: var(--teal); }
.pcard h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.pcard p  { font-size: 0.9rem; }

/* ── PULL QUOTE ── */
.pull-quote { text-align: center; padding: 2.5rem 2rem; }
.pull-quote-line { width: 44px; height: 2px; background: var(--teal); margin: 0 auto 1.25rem; }
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem,2vw,1.45rem); font-style: italic; font-weight: 500;
  color: var(--navy); max-width: 640px; margin: 0 auto 0.6rem; line-height: 1.65;
}
.pull-quote cite { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-style: normal; }

/* ── MEET JULIA (Home) ── */
.meet-grid { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center; }
.headshot { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; box-shadow: var(--shadow-md); flex-shrink: 0; }
.headshot-lg { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: center top; box-shadow: var(--shadow-md); flex-shrink: 0; }
.meet-name { font-size: 1.35rem; margin-bottom: 0.15rem; }
.meet-tagline { font-size: 0.85rem; font-style: italic; color: var(--teal); display: block; margin-bottom: 0.75rem; }
.meet-text p { font-size: 0.93rem; margin-bottom: 0.85rem; }
.text-link { font-size: 0.88rem; font-weight: 600; color: var(--teal); transition: var(--trans); }
.text-link:hover { color: var(--emerald); }

/* ── ENGAGE CARDS ── */
.engage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 1.5rem; }
.ecard { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); text-align: center; transition: var(--trans); }
.ecard:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.eicon { width: 52px; height: 52px; background: var(--soft-gray); border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }
.eicon img { width: 28px; height: 28px; }
.ecard h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.ecard p  { font-size: 0.88rem; }

/* section header row for "Learn More" right-aligned */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 0.25rem; }
.section-header h2 { margin-bottom: 0; }
.section-header-link { font-size: 0.88rem; font-weight: 600; color: var(--teal); white-space: nowrap; padding-bottom: 4px; }

/* ── SERVICES PAGE ── */
.service-block { padding: 52px 0; border-bottom: 1px solid var(--soft-gray); }
.service-block:last-of-type { border-bottom: none; }
.service-intro { font-style: italic; font-size: 1rem; max-width: 680px; margin: 0.6rem 0 1.75rem; }
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.service-col h4 { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.85rem; }
.service-col ul { padding: 0; }
.service-col ul li { font-size: 0.93rem; padding: 0.3rem 0 0.3rem 1rem; position: relative; line-height: 1.6; }
.service-col ul li::before { content: '–'; position: absolute; left: 0; color: var(--teal); font-weight: 600; }

/* engage expanded (services page) */
.ecard-expanded { text-align: left; }
.ecard-expanded h3 { text-align: left; }
.ecard-expanded .eicon { margin: 0 0 1rem; }

/* ── HOW WE WORK PAGE ── */
.familiar-intro { font-style: italic; font-size: 1rem; margin-bottom: 1.5rem; }
.familiar-list { padding: 0; margin-bottom: 1.75rem; }
.familiar-list li { background: var(--white); border-radius: 8px; border-left: 3px solid var(--teal); padding: 0.85rem 1.25rem; margin-bottom: 0.6rem; font-size: 0.95rem; box-shadow: var(--shadow-sm); line-height: 1.65; }
.familiar-close { font-size: 1rem; color: var(--navy); font-weight: 500; }

.approach-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 2.5rem; }
.step { padding: 1.75rem 1.5rem; border-left: 1px solid var(--soft-gray); }
.step:first-child { border-left: none; }
.step-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.5rem; font-weight: 600; color: var(--soft-gray); line-height: 1; margin-bottom: 0.5rem; }
.step h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; }

.first-call-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.75rem; }
.first-call-item { display: flex; gap: 1rem; align-items: flex-start; }
.first-call-icon { width: 36px; height: 36px; background: var(--soft-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.first-call-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.first-call-item p { font-size: 0.93rem; padding-top: 0.3rem; }

/* ── ABOUT PAGE ── */
.profile-block { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; padding: 56px 0; border-bottom: 1px solid var(--soft-gray); }
.profile-block:last-of-type { border-bottom: none; }
.profile-photo { text-align: center; }
.profile-title-label { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-top: 0.6rem; display: block; }
.profile-name { margin-bottom: 0.25rem; }
.profile-tagline { font-style: italic; color: var(--teal); font-size: 0.93rem; display: block; margin-bottom: 1.25rem; }
.profile-text p { font-size: 0.95rem; margin-bottom: 0.9rem; }
.profile-links { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; margin-top: 1.25rem; }
.profile-links span { font-size: 0.85rem; color: var(--light-gray); }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.why-block h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.why-block p { font-size: 0.93rem; margin-bottom: 0.65rem; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.contact-tagline { font-style: italic; color: var(--teal); font-size: 0.93rem; display: block; margin-bottom: 1.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; font-size: 0.95rem; }
.contact-item svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
.calendly-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; min-height: 620px; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 36px 0; text-align: center; }
.cta-strip h2 { font-style: italic; color: var(--white); font-size: clamp(1rem,2.2vw,1.35rem); font-weight: 500; margin-bottom: 1.25rem; white-space: nowrap; }

/* ── FOOTER ── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-nav { display: flex; gap: 1.6rem; justify-content: flex-end; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.48); font-weight: 500; transition: var(--trans); }
.footer-nav a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 16px; padding: 10px 0; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ── BG HELPERS ── */
.bg-white { background: var(--white); }
.bg-gray  { background: var(--soft-gray); }
.bg-navy  { background: var(--navy); }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .cards-grid      { grid-template-columns: 1fr; }
  .pgrid           { grid-template-columns: 1fr; }
  .engage-grid     { grid-template-columns: 1fr; }
  .approach-steps  { grid-template-columns: 1fr 1fr; }
  .step            { border-left: none; border-top: 1px solid var(--soft-gray); }
  .service-cols    { grid-template-columns: 1fr; gap: 1.75rem; }
  .why-grid        { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .profile-block   { grid-template-columns: 1fr; }
  .meet-grid       { grid-template-columns: 1fr; text-align: center; }
  .first-call-grid { grid-template-columns: 1fr; }
  .footer-inner    { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-nav      { justify-content: center; flex-wrap: wrap; }
  .cta-strip h2    { white-space: normal; font-size: 1rem; }
  .section-header  { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media(max-width:680px){
  section { padding: 52px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.25rem 2rem; gap: 1rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--soft-gray); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .approach-steps { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 40px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
