/* ===================================================================
   RED Seven Wealth Management - shared styles
   =================================================================== */

:root {
  --red: #B5202A;
  --red-dark: #8E1820;
  --ink: #1F1F1F;
  --gray-900: #2A2A2A;
  --gray-700: #4B5563;
  --gray-600: #6B7280;
  --gray-500: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E5E5;
  --gray-100: #F3F4F4;
  --bg: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; font-weight: 500; }
.italic { font-style: italic; }
.red { color: var(--red); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ===================================================================
   Buttons
   =================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn .arrow { font-size: 14px; line-height: 1; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-red       { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline   { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--ink); }
.btn-desktop   { display: none; }
.btn-mobile    { display: none; }
.btn-white     { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,0.92); }
.btn-ghost-white { background: transparent; color:#fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { border-color:#fff; }

/* ===================================================================
   Kicker (red caps with leading dash)
   =================================================================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--red);
}

/* ===================================================================
   Section title
   =================================================================== */
.section-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  margin-bottom: 0;
}
.section-title .em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

section { padding: 110px 0; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1480px;
  margin: 0 auto;
  gap: 40px;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.site-footer .logo-img {
  filter: brightness(0) invert(1) brightness(0.95);
  opacity: 0.95;
}
.logo {
  display: flex;
  align-items: baseline;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo .seven {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  font-size: 38px;
  margin: 0 4px;
  transform: translateY(-2px);
  display: inline-block;
}
.logo-line {
  border-top: 1px solid #9CA3AF;
  margin-top: 4px;
  height: 0;
}
.logo-sub {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #B5202A;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}
.logo-sub span { padding: 0; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray-700);
  text-transform: uppercase;
}
.nav-links > a, .nav-links > .dropdown { padding: 8px 0; position: relative; transition: color .2s; }
.nav-links > a:hover, .nav-links > .dropdown:hover { color: var(--red); }
.nav-links > a.active {
  color: var(--red);
}
.nav-links > a.active::after,
.nav-links > .dropdown.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

/* dropdown menu */
.dropdown { position: relative; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; user-select: none; }
.dropdown .caret { font-size: 10px; line-height: 1; transition: transform .2s; }
.dropdown.open .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 100;
}
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gray-900);
  text-transform: none;
  text-align: right;
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover {
  color: var(--red);
  background: var(--gray-100);
}
.dropdown-menu .menu-title {
  display: block;
  padding: 6px 22px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  text-align: right;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 8px;
  color: var(--gray-900);
}

/* ===================================================================
   Hamburger Menu (Mobile)
   =================================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 51;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Desktop button visible on desktop only */
.btn-desktop {
  display: flex !important;
  margin-left: auto;
}

.mobile-contact-info {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 20px 0;
    gap: 0;
    z-index: 40;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links > a,
  .nav-links > .dropdown {
    display: block;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-links > a.active::after,
  .nav-links > .dropdown.active::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    background: var(--gray-100);
    transform: none;
  }

  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
  }

  .dropdown-menu .menu-title {
    text-align: center;
  }

  .dropdown-menu a {
    text-align: center;
    padding: 12px 20px;
  }

  .btn-desktop {
    display: none !important;
  }

  .btn-mobile {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin: 0 !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--gray-200);
  }

  .mobile-contact-info {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .mobile-contact-divider {
    border-top: 1px solid var(--gray-200);
  }

  .mobile-contact-block {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-contact-block a {
    color: var(--gray-700);
    display: block;
  }

  .mobile-contact-block a:active {
    color: var(--red);
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer.site-footer {
  background: #0E0E0E;
  color: #B5B5B5;
  padding: 80px 0 32px;
  font-size: 13px;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo-sub { color: var(--red); }
.site-footer .logo-line { border-color: #444; }
.footer-about {
  margin-top: 22px;
  color: #9A9A9A;
  font-size: 13px;
  max-width: 320px;
  line-height: 1.75;
}
.footer-about .em { font-style: italic; color: #C9C9C9; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; color: #9A9A9A; }
.footer-col ul li a { color: #9A9A9A; transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col .arrow-link::after { content: ' ›'; color: var(--red); }

.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #777;
}

/* ===================================================================
   HERO (homepage)
   =================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  min-height: 900px;
  padding: 0 0 110px 0;
}
.hero-left { padding: 0px 60px 90px 80px; display:flex; flex-direction:column; justify-content:center; max-width:760px; }
.hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(50px, 5.76vw, 86px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--gray-900);
  margin-bottom: 36px;
}
.hero h1 .em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.hero-body {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-700);
  text-transform: uppercase;
}
.pin { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  overflow: hidden;
  min-height: 900px;
}
.hero-image-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.hero-image::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

/* ===================================================================
   STATS BAR
   =================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat:last-child { border-right: none; }
.stat-icon { color: var(--red); margin: 0 auto 16px; }
.stat-icon svg { width: 30px; height: 30px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.stat-num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.1;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--gray-700);
  text-transform: uppercase;
}

/* ===================================================================
   PRINCIPLES
   =================================================================== */
.principles-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.principles-intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.85;
  max-width: 460px;
}
.principles-intro .em { font-style: italic; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle {
  border: 1px solid var(--gray-200);
  background: #fff;
  padding: 56px 40px 48px;
}
.principle-num {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 36px;
}
.principle h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--gray-900);
  line-height: 1.2;
}
.principle p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ===================================================================
   APPROACH STEPS
   =================================================================== */
.approach { background: #fff; }
.approach-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.approach-intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.85;
  max-width: 480px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
}
.step {
  padding: 40px 32px 12px 0;
  border-right: 1px solid var(--gray-200);
}
.step:last-child { border-right: none; }
.step-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--red);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.step-num::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--red);
}
.step-icon { color: var(--red); margin-bottom: 18px; }
.step-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.step h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}
.step p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ===================================================================
   AUDIENCE / WHO WE SERVE
   =================================================================== */
.audience { background: #FAFAFA; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.audience-card {
  background: #fff;
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
}
.audience-icon { color: var(--red); margin-bottom: 28px; }
.audience-icon svg { width: 44px; height: 44px; stroke: var(--red); fill: none; stroke-width: 1.4; }
.audience-card h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--gray-900);
  line-height: 1.2;
}
.audience-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 28px;
}
.audience-list { list-style: none; }
.audience-list li {
  font-size: 13px;
  color: var(--gray-900);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.audience-list li:last-child { border-bottom: none; }
.audience-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 12px;
  height: 1.5px;
  background: var(--red);
}

/* ===================================================================
   INSIGHTS
   =================================================================== */
.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 48px;
  flex-wrap: wrap;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insight-card { cursor: pointer; }
.insight-thumb {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: left center;
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
}
.insight-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}
.duration {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 2;
}
.play-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform .2s;
}
.insight-card:hover .play-btn { transform: scale(1.08); }
.insight-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.insight-meta .red { color: var(--red); }
.insight-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--gray-900);
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background:
    linear-gradient(rgba(142, 24, 32, 0.88), rgba(142, 24, 32, 0.88)),
    url('images/hero.png');
  background-size: cover;
  background-position: left center;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 56px;
  align-items: center;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}
.cta-banner h2 .em { font-style: italic; }
.cta-banner p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.95;
}
.cta-phone {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ===================================================================
   ABOUT / BIO PAGES
   =================================================================== */
.bio {
  border-bottom: 1px solid var(--gray-200);
}
.bio:last-of-type { border-bottom: none; }

.bio-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.2fr;
  align-items: stretch;
  background: #fff;
}
.bio-photo {
  min-height: 480px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #E8E2DA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #6B7280;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
.bio-meta {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bio-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bio-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.bio-creds {
  font-size: 13px;
  color: var(--gray-700);
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.bio-divider {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-bottom: 24px;
}
.bio-tagline {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--gray-900);
  margin-bottom: 22px;
}
.bio-tagline .em { font-style: italic; color: var(--red); font-weight: 500; }
.bio-intro {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 540px;
}
.bio-side-photo {
  min-height: 480px;
  background-size: cover;
  background-position: center center;
  background-color: #DCD7CD;
}

.bio-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 64px;
  padding: 80px 56px;
  border-top: 1px solid var(--gray-200);
}
.bio-block-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bio-block h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.bio-block h3 .em { font-style: italic; color: var(--red); font-weight: 500; }
.bio-block p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cred-card {
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
}
.cred-list { list-style: none; }
.cred-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li:first-child { padding-top: 0; }
.cred-list svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.4; margin-top: 2px; }
.cred-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--gray-900);
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cred-detail { font-size: 13px; color: var(--gray-700); line-height: 1.5; }

.serve-list { list-style: none; }
.serve-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  align-items: start;
  border-bottom: 1px solid var(--gray-100);
}
.serve-list li:last-child { border-bottom: none; }
.serve-list svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.4; margin-top: 2px; }
.serve-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.serve-list p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0;
}

.bio-philosophy {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 64px;
  padding: 64px 56px;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.philosophy-side-photo {
  background-size: cover;
  background-position: left center;
  background-color: #DCD7CD;
  min-height: 220px;
  align-self: stretch;
}

.bio-bottom-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  padding: 28px 56px;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  align-items: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.back-link:hover { background: var(--red); color: #fff; }
.bio-quote {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.4;
  text-align: center;
  position: relative;
  padding: 0 32px;
}
.bio-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -8px;
  font-size: 38px;
  color: var(--red);
  line-height: 1;
}
.cta-inline {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; color: var(--gray-700); letter-spacing: 0.3px;
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  padding-top: 24px;
}
.contact-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.contact-title .em { font-style: italic; color: var(--red); }
.contact-blurb {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 48px;
}

form.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 24px;
}
.form-row { display: flex; flex-direction: column; gap: 10px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray-700);
  text-transform: uppercase;
}
.form-row label .req { color: var(--red); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-900);
  border-radius: 0;
  transition: border .15s;
}
.form-row textarea { resize: vertical; min-height: 140px; font-family: inherit; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-checkbox {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.55;
  align-items: start;
}
.form-checkbox input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--red); }
.form-submit { grid-column: 1 / -1; }

.contact-side {
  border: 1px solid var(--gray-200);
  padding: 0;
  position: relative;
}
.contact-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.contact-side-inner { padding: 36px 36px 0; }
.contact-side h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--gray-900);
}
.contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.6; }
.contact-row h6 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-row p, .contact-row a { font-size: 14px; color: var(--gray-900); line-height: 1.5; }
.contact-row a:hover { color: var(--red); }

.hours-block {
  padding: 24px 0 8px;
}
.hours-block h6 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-900);
}

.contact-map {
  margin-top: 24px;
  height: 300px;
  background: #E5E5E5;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===================================================================
   MEET THE TEAM
   =================================================================== */
.meet-team { background: #F9F9F9; }
.team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.team-intro {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.85;
  max-width: 480px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  padding: 0;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.team-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #E8E2DA;
  background-size: cover;
  background-position: left center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.team-card h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gray-900);
  margin: 0;
  padding: 32px 28px 0;
  line-height: 1.2;
}
.team-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin: 10px 28px 0 !important;
  padding: 0 !important;
}
.team-image-wrap {
  position: relative;
  overflow: hidden;
}
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.team-image-wrap:hover .team-overlay {
  opacity: 1;
}
.team-bio {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  padding: 16px 28px 32px;
  margin: 0;
}
.team-link {
  display: none;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 32px; max-width: 100%; }
  .hero-image { min-height: 420px; }
  .hero-image::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--gray-200); }

  .principles-head, .approach-head, .team-head { grid-template-columns: 1fr; gap: 28px; }
  .principles, .audience-grid, .insights-grid, .team-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--gray-200); }

  .cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .bio-hero { grid-template-columns: 1fr; }
  .bio-photo { min-height: 600px; background-size: cover; background-position: center center; }
  .bio-side-photo { min-height: 550px; background-size: cover; background-position: center center; }
  .bio-meta { padding: 48px 32px; }
  .bio-body, .bio-philosophy, .bio-bottom-bar { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  form.contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero-left { padding: 48px 20px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .footer-grid { grid-template-columns: 1fr; }
  .bio-bottom-bar { padding: 24px 20px; }
}
