@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

:root {
  --primary-navy: #151e2b;
  --accent-clay: #c2410c;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #334155;
  --text-light: #64748b;
  --border-subtle: #e2e8f0;
}

/* Accessible Font Imports */



/* GLOBAL RESET & ACCESSIBILITY */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Global Focus State */
:focus-visible {
  outline: 2px solid var(--accent-clay);
  outline-offset: 3px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
  /* Text Smoothing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

h1, h2, h3, h4 {
  font-family: "Merriweather", serif;
  color: var(--primary-navy);
  margin-top: 0;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* NAVIGATION + LOGO */
nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img { 
  width: 50px; 
  height: 50px; 
} 

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.85rem; 
  color: var(--primary-navy);
  line-height: 1;
}

.logo-text span {
  color: var(--accent-clay);
}

.logo-tagline {
  font-size: 0.81rem;
  color: var(--text-light);
  text-transform: capitalize; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
}

.nav-links a {
  color: var(--text-dark);
  transition: color 0.2s ease;
  padding: 0.5rem;
  font-weight: 400; /* Regular weight */
}

.nav-links a:hover {
  color: var(--accent-clay);
}

.nav-links a.active {
  color: var(--accent-clay);
  font-weight: 500; /* Medium weight */
}

/* BUTTONS */
.btn {
  background-color: var(--accent-clay);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-transform: none; 
  letter-spacing: normal;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  background-color: #9a3412;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-navy);
}

/* HERO */
.hero {
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

/* Global Kicker Style */
.hero-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-clay); /* Orange Accent */
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-secondary {
  font-size: 0.9rem;
  color: var(--primary-navy);
  font-weight: 500;
}


.hero-img {
	width: 100%;
	border-radius: 4px;
	border-top: 10px solid #94a3b8;
	border-bottom: 10px solid #94a3b8;
	min-height: 375px;
	object-fit: cover;
	display: block;
}

.hero-logo-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply; 
  opacity: 0.9;
}

/* SECTIONS UTILS */
.section {
  padding: 4rem 0;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 800px;
}

/* STATS STRIP */
.stats-strip {
  background-color: var(--primary-navy);
  padding: 3rem 0;
  margin: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-clay);
  font-family: 'Merriweather', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* SERVICES GRID */
.section-pad {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border-top: 5px solid var(--accent-clay);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* SERVICE PAGE SPECIFIC BLOCKS */
.service-block {
  margin-bottom: 2rem;
}

.service-inner {
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
}

.service-inner h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
}

.service-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-lead strong {
  font-weight: 500; 
  color: var(--primary-navy);
}

.list-intro {
  font-weight: 600; 
  color: var(--accent-clay);
  margin-bottom: 0.5rem;
}

.service-inner ul {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
}

.service-inner ul li::marker {
  color: var(--accent-clay);
}

.service-inner li {
  margin-bottom: 0.5rem;
}

.service-note {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* FOUNDER SECTION */
.founder-section { 
}

/* NEW: Founder Card (White Container) Style */
.founder-card {
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 3rem; /* Generous padding for a clean look */
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 3rem;
  align-items: flex-start;
}

.founder-photo-block {
	border-radius: 4px;
	border-top: 10px solid #94a3b8;
	border-bottom: 10px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.founder-bio p { 
  font-size: 1rem; 
  margin-bottom: 1rem; 
  color: var(--text-dark); 
}

.founder-bio h2 {
  color: var(--primary-navy);
  font-size: 2.5rem; 
  margin-bottom: 1rem;
}

/* "Meet The Founder" Kicker */
.founder-bio h2.kicker-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  color: var(--accent-clay);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.founder-bio ul li::marker {
  color: var(--accent-clay);
}

.quote-box {
  border-left: 4px solid var(--primary-navy); 
  background-color: #f1f5f9;
  padding: 2rem;
  font-style: italic;
  color: var(--primary-navy); 
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.quote-attribution {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  font-style: normal;
  color: var(--text-dark);
}

/* ABOUT VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background-color: var(--white);
  border-top: 5px solid var(--accent-clay); /* Orange Border */
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

/* PROCESS FLOW */
.process-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
}

.process-intro {
  max-width: 740px;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.flow-step {
  max-width: 200px;
}

.flow-title {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.flow-step p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.flow-arrow {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px; 
}

.flow-arrow svg {
  width: 45px; 
  height: 20px; 
  stroke: var(--accent-clay);
  stroke-width: 2.5; 
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* CTA SECTIONS */
.final-cta, .cta-section {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin-top: 2rem;
}

.final-cta h2, .cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.final-cta p, .cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #cbd5e1;
}

/* FORMS */
.schedule-layout {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.schedule-panel {
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  font-size: 0.95rem;
}

.schedule-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.helper-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* THANK YOU PAGE */
.hero-inner {
  max-width: 600px;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  margin: 0 auto;
  text-align: center;
}

.cta-link {
  color: var(--accent-clay);
  font-weight: 600;
}
.cta-link:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  padding: 3rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  background-color: var(--primary-navy);
  border-top: 1px solid #334155;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .founder-grid,
  .services-grid,
  .values-grid,
  .stats-grid,
  .schedule-layout {
    grid-template-columns: 1fr;
  }
  
  .process-flow {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flow-arrow svg {
    transform: rotate(90deg);
    width: 30px; 
    height: 30px;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  
  .nav-links { 
    display: none; 
    width: 100%; 
    flex-direction: column; 
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-subtle);
  }
  
  .nav-links.active { display: flex; }
  .nav-flex { flex-wrap: wrap; }
  
  .hero h1 { font-size: 2rem; }
  
  .hero-grid > div:last-child { order: -1; } 
}