/* ==========================================================================
   Golden Connect In-Home Care — Brand Stylesheet
   Built around the brand colors: teal, coral, yellow, deep black
   ========================================================================== */

:root {
  /* === BRAND COLORS (from logo) === */
  --brand-teal: #73C7C7;
  --brand-teal-dark: #4FA8A8;
  --brand-teal-deep: #2D7D7D;
  --brand-coral: #FF8763;
  --brand-coral-deep: #E66C45;
  --brand-yellow: #FFDE59;
  --brand-yellow-deep: #E5C744;
  --brand-black: #0A0F0E;

  /* === FUNCTIONAL ALIASES === */
  --primary: #3FA8A8;          /* brighter teal — closer to the logo's energy while keeping white text readable */
  --primary-hover: #2D8888;
  --accent: var(--brand-coral);
  --accent-hover: var(--brand-coral-deep);
  --highlight: var(--brand-yellow);

  /* === NEUTRALS === */
  --cream: #FDF9F2;
  --cream-dark: #F5EFE2;
  --ink: #1A2120;
  --ink-soft: #4A5552;
  --ink-mute: #6B7773;
  --border: #E8DFCE;
  --white: #FFFFFF;

  /* === TYPOGRAPHY === */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* === SPACING === */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* === LAYOUT === */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 33, 32, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 33, 32, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 33, 32, 0.12);
  --shadow-brand: 0 8px 24px rgba(63, 168, 168, 0.2);
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--primary-hover); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 var(--space-md);
}
h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 var(--space-md); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}
.container-narrow { max-width: var(--max-width-narrow); }

.section { padding: var(--space-2xl) 0; }
@media (min-width: 768px) { .section { padding: var(--space-3xl) 0; } }

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--brand-black); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

/* Utility bar */
.utility-bar {
  background: var(--brand-black);
  color: var(--cream);
  font-size: 0.8125rem;
  padding: var(--space-sm) 0;
}
.utility-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  text-align: center;
}
.utility-bar a { color: var(--brand-teal); font-weight: 600; }
.utility-bar a:hover { color: var(--brand-yellow); }
.utility-bar .divider { display: none; color: var(--brand-teal-deep); opacity: 0.5; }
@media (min-width: 640px) { .utility-bar .divider { display: inline; } }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo-img { height: 44px; width: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-text .tagline {
  font-size: 0.625rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
}
.nav-menu[data-open="true"] { display: flex; }
.nav-menu a {
  padding: var(--space-md);
  color: var(--ink);
  font-weight: 500;
  border-radius: var(--radius);
  font-size: 1rem;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--cream-dark);
  color: var(--primary);
}
.nav-cta { margin-top: var(--space-sm); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: var(--space-xs);
  }
  .nav-menu a { padding: var(--space-sm) var(--space-md); font-size: 0.9375rem; }
  .nav-cta { margin-top: 0; margin-left: var(--space-md); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-brand);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-coral { background: var(--accent); color: var(--white); }
.btn-coral:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 135, 99, 0.3);
}
.btn-block { display: flex; width: 100%; }

/* Hero */
.hero {
  background: var(--cream);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: var(--space-3xl) 0; } }

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 199, 199, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 720px; position: relative; z-index: 1; }

/* Two-column hero layout — text + image. Stacks vertically on mobile. */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
  }
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* Match the landscape founder photo's natural 4:3 ratio so nothing gets cropped */
  aspect-ratio: 4 / 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle decorative accent shapes around the image — pulls the brand palette in */
.hero-image::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-yellow);
  opacity: 0.4;
  z-index: -1;
}
.hero-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--brand-coral);
  opacity: 0.25;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--white);
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-coral);
}

.hero h1 { font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem); margin-bottom: var(--space-md); }
.hero-subtitle {
  font-size: clamp(1.0625rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: var(--space-lg);
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
@media (min-width: 480px) { .hero-cta-group { flex-direction: row; flex-wrap: wrap; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.hero-trust-item strong { color: var(--ink); font-weight: 600; }
.hero-trust-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-coral);
  flex-shrink: 0;
}
.hero-trust-item:nth-child(2)::before { background: var(--brand-teal); }
.hero-trust-item:nth-child(3)::before { background: var(--brand-yellow); }
.hero-trust-item:nth-child(4)::before { background: var(--primary); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-teal);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(115, 199, 199, 0.3);
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon-coral {
  background: linear-gradient(135deg, var(--brand-coral) 0%, var(--brand-coral-deep) 100%);
  box-shadow: 0 4px 12px rgba(255, 135, 99, 0.3);
}
.card-icon-yellow {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-deep) 100%);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4);
}
.card h3 { margin-bottom: var(--space-sm); }
.card p { color: var(--ink-soft); margin-bottom: 0; }

/* Grid */
.grid { display: grid; gap: var(--space-md); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
}

/* Section heading */
.section-heading { text-align: center; margin-bottom: var(--space-xl); }
.section-heading-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.section-heading h2 { margin-bottom: var(--space-sm); }
.section-heading p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Testimonial */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--brand-coral);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--brand-yellow-deep);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--space-md);
  flex: 1;
}
.testimonial-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-teal-deep) 0%, var(--primary-hover) 100%);
  color: var(--white);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 135, 99, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto var(--space-lg);
}
.cta-banner .btn-primary { background: var(--brand-coral); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--brand-coral-deep); color: var(--white); }

/* Forms */
.form-group { margin-bottom: var(--space-md); }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--ink);
}
.form-label .required { color: var(--brand-coral); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 168, 168, 0.18);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: 0.8125rem; color: var(--ink-soft); margin-top: var(--space-xs); }

/* Founder cards */
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.founder-card .founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;  /* shift focus up to keep faces nicely framed */
  display: block;
}
.founder-card .founder-info {
  padding: var(--space-lg);
}
.founder-card h3 { margin-bottom: var(--space-xs); }
.founder-card .credentials {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.founder-card p { color: var(--ink-soft); }
.founder-card p:last-child { margin-bottom: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 var(--space-md); color: var(--ink-soft); margin: 0; }

/* Blog */
.blog-grid { display: grid; gap: var(--space-lg); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card-image {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  position: relative;
  overflow: hidden;
}
.blog-card-image-teal { background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%); }
.blog-card-image-coral { background: linear-gradient(135deg, var(--brand-coral) 0%, var(--brand-coral-deep) 100%); }
.blog-card-image-yellow {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-deep) 100%);
  color: var(--ink);
}
.blog-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.blog-card h3 { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.blog-card p { color: var(--ink-soft); font-size: 0.9375rem; flex: 1; margin-bottom: var(--space-md); }
.blog-card .read-more { font-weight: 600; font-size: 0.875rem; color: var(--primary); }

/* Footer */
.site-footer {
  background: var(--brand-black);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: var(--brand-teal); }
.footer-brand p {
  color: rgba(253, 249, 242, 0.65);
  font-size: 0.9375rem;
  margin-top: var(--space-md);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-links a { color: rgba(253, 249, 242, 0.65); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--brand-teal); }

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(253, 249, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(253, 249, 242, 0.5);
}
.footer-bottom-links { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(253, 249, 242, 0.5); }
.footer-bottom-links a:hover { color: var(--brand-teal); }

/* Page header */
.page-header {
  background: var(--cream);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 199, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.page-header h1 { margin-bottom: var(--space-md); max-width: 720px; }
.page-header p {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
}

/* Prose */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose h2 { margin-top: var(--space-xl); }
.prose h3 { margin-top: var(--space-lg); }
.prose ul, .prose ol { padding-left: var(--space-lg); margin-bottom: var(--space-md); }
.prose li { margin-bottom: var(--space-xs); }
.prose blockquote {
  border-left: 4px solid var(--brand-yellow-deep);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--ink);
  background: linear-gradient(to right, rgba(255, 222, 89, 0.08), transparent);
  padding: var(--space-md);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Decorative */
.flourish { font-family: var(--font-display); font-style: italic; color: var(--brand-coral); }

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: var(--shadow-brand);
}

/* ==========================================================================
   Video — click-to-play thumbnail
   ========================================================================== */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--brand-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}

.video-embed img,
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed img {
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.video-embed:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

/* Subtle gradient at bottom of thumbnail for caption legibility */
.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 15, 14, 0.5) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-embed.playing::after { opacity: 0; }

/* Play button overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.video-embed:hover .video-play-btn {
  background: var(--brand-coral);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--brand-teal-deep);
  margin-left: 5px;
  transition: border-color 0.2s ease;
}

.video-embed:hover .video-play-btn::before {
  border-color: transparent transparent transparent var(--white);
}

@media (min-width: 640px) {
  .video-play-btn { width: 96px; height: 96px; }
  .video-play-btn::before { border-width: 16px 0 16px 26px; }
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  color: var(--white);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-embed.playing .video-caption { opacity: 0; }
.video-caption-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: var(--space-xs);
}
.video-caption-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

/* Video block (with surrounding card/context) */
.video-block {
  max-width: 900px;
  margin: 0 auto;
}

.video-block-meta {
  margin-top: var(--space-md);
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-mute);
}

/* ==========================================================================
   Team photos
   ========================================================================== */
.team-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-member:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-dark);
}

/* Placeholder when no photo yet — shows initials on a brand-color gradient */
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.team-photo-placeholder-teal {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-deep) 100%);
}
.team-photo-placeholder-coral {
  background: linear-gradient(135deg, var(--brand-coral) 0%, var(--brand-coral-deep) 100%);
}
.team-photo-placeholder-yellow {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-deep) 100%);
  color: var(--ink);
}

.team-info {
  padding: var(--space-md) var(--space-lg);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 var(--space-xs);
  color: var(--ink);
}
.team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}
.team-bio {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Founder portrait variant — bigger, more editorial
   ========================================================================== */
.founder-card-with-photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-dark);
}

.founder-portrait-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 500;
  color: var(--white);
}

.founder-card-with-photo .founder-info {
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .founder-card-with-photo {
    flex-direction: row;
  }
  .founder-portrait,
  .founder-portrait-placeholder {
    width: 40%;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .site-footer, .nav-toggle, .utility-bar { display: none; }
}
