/* ============================================================
   BRICK & BROWSER BRANDON — Site Styles v1.0
   Built to style guide v1.3 — May 14, 2026
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --charcoal: #1F2937;
  --coral: #FF6B47;
  --coral-hover: #E55A39;
  --bone: #F9FAFB;
  --slate: #6B7280;
  --slate-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 2px rgba(31, 41, 55, 0.05);
  --shadow-md: 0 4px 12px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(31, 41, 55, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1200px;
  --container-narrow: 880px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--coral); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--coral-hover); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1em; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.lede { font-size: clamp(1.0625rem, 1.8vw, 1.25rem); color: var(--slate); }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }
section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-divider { height: 1px; background: var(--border); }

/* ---- LOGO / WORDMARK ---- */
.wordmark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}
.wordmark__amp {
  color: var(--coral);
  font-style: italic;
  font-weight: 600;
  margin: 0 0.08em;
}
.wordmark__locator {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--slate);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  text-align: center;
}
.wordmark-block { display: inline-block; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 2rem;
}
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__link {
  color: var(--charcoal);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--charcoal); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__lang {
  color: var(--slate);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.nav__lang:hover { border-color: var(--charcoal); color: var(--charcoal); }
.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  position: absolute;
  left: 5px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle span:nth-child(1) { top: 10px; }
.nav__toggle span:nth-child(2) { top: 15px; }
.nav__toggle span:nth-child(3) { top: 20px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--coral);
  color: var(--bone);
}
.btn--primary:hover {
  background: var(--coral-hover);
  color: var(--bone);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: var(--bone);
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--bone);
}
.btn--ghost {
  color: var(--charcoal);
  padding-inline: 0.5rem;
}
.btn--ghost:hover { color: var(--coral); }
.btn--large { padding: 1.0625rem 2rem; font-size: 1rem; }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- HERO ---- */
.hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 107, 71, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(31, 41, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__headline {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  animation: rise 0.8s var(--ease) both;
}
.hero__headline em {
  color: var(--coral);
  font-style: italic;
  font-weight: 600;
}
.hero__subhead {
  max-width: 56ch;
  margin-bottom: 2.5rem;
  animation: rise 0.8s var(--ease) 0.1s both;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: rise 0.8s var(--ease) 0.2s both;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: rise 0.8s var(--ease) 0.3s both;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.hero__meta-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--charcoal);
}
.hero__meta-label {
  font-size: 0.8125rem;
  color: var(--slate);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- SECTION HEADERS ---- */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 62ch;
}
.section-header--center { margin-inline: auto; text-align: center; }
.section-header__title { margin-bottom: 1rem; }
.section-header__sub { color: var(--slate); font-size: 1.0625rem; }

/* ---- SERVICES (3-CARD GRID) ---- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 71, 0.1);
  color: var(--coral);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.service-card__title {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.service-card__desc { color: var(--slate); font-size: 0.9375rem; margin-bottom: 1rem; }
.service-card__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}
.service-card__price-from { color: var(--slate); font-weight: 400; font-size: 0.875rem; }

/* ---- PRICING TABLES ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}
.pricing-card__badge {
  position: absolute;
  top: -10px;
  left: 1.75rem;
  background: var(--coral);
  color: var(--bone);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
}
.pricing-card__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.pricing-card__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--charcoal);
  margin-block: 0.75rem 0.25rem;
}
.pricing-card__price small { font-size: 0.875rem; font-weight: 400; color: var(--slate); }
.pricing-card__meta { font-size: 0.875rem; color: var(--slate); margin-bottom: 1.5rem; }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.pricing-card__feature {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.pricing-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 3px;
}

/* ---- ADD-ONS TABLE ---- */
.addons {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.addons__row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  align-items: center;
  gap: 1rem;
}
.addons__row:last-child { border-bottom: none; }
.addons__name { color: var(--charcoal); }
.addons__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  flex-shrink: 0;
}

/* ---- WORK GRID (PLACEHOLDER SAMPLES) ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.work-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.work-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.work-card__visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FDF4F1 0%, #F9FAFB 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.work-card__visual::after {
  content: '';
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 80%;
  background: radial-gradient(ellipse at center top, rgba(255, 107, 71, 0.15) 0%, transparent 60%);
}
.work-card__mock {
  width: 70%;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  position: relative;
  z-index: 1;
}
.work-card__mock-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.work-card__mock-bar:nth-child(1) { width: 60%; background: var(--charcoal); }
.work-card__mock-bar:nth-child(2) { width: 90%; }
.work-card__mock-bar:nth-child(3) { width: 75%; }
.work-card__body { padding: 1.5rem; }
.work-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.work-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.work-card__desc {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---- FOUNDING-CLIENT BANNER ---- */
.founding-banner {
  background: var(--charcoal);
  color: var(--bone);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.founding-banner::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 71, 0.2) 0%, transparent 60%);
}
.founding-banner__content { position: relative; max-width: 50ch; }
.founding-banner__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.founding-banner__title {
  color: var(--bone);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.founding-banner__body { color: var(--slate-light); font-size: 0.9375rem; margin-bottom: 0; }
.founding-banner__cta { position: relative; }

/* ---- LEAD MAGNET ---- */
.lead-magnet {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-magnet__visual {
  aspect-ratio: 8.5 / 11;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D3849 100%);
  border-radius: var(--radius-sm);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.3s var(--ease);
}
.lead-magnet__visual:hover { transform: rotate(-1deg) translateY(-4px); }
.lead-magnet__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--coral);
}
.lead-magnet__mock {
  color: var(--bone);
  text-align: center;
  padding: 1.5rem;
}
.lead-magnet__mock-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.lead-magnet__mock-sub {
  font-size: 0.875rem;
  color: var(--slate-light);
}
.lead-magnet__title { font-size: 1.875rem; margin-bottom: 1rem; }
.lead-magnet__desc { margin-bottom: 1.5rem; color: var(--slate); }

/* ---- LEAD FORM ---- */
.lead-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lead-form__input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--bone);
  transition: border-color 0.2s;
}
.lead-form__input:focus {
  outline: none;
  border-color: var(--coral);
}
.lead-form__msg {
  font-size: 0.875rem;
  color: var(--coral);
  margin-top: 0.75rem;
  width: 100%;
  min-height: 1.5em;
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0.5rem 1.5rem 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--coral); }
.faq__plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 1rem;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: var(--coral);
  inset: 50% 0 auto 0;
  height: 2px;
  transition: transform 0.3s var(--ease);
}
.faq__plus::after { transform: rotate(90deg); }
.faq__item.is-open .faq__plus::after { transform: rotate(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq__item.is-open .faq__a { max-height: 400px; padding-bottom: 1.5rem; }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { padding-right: 1rem; }
.contact-info__title { margin-bottom: 1rem; }
.contact-info__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__item { display: flex; gap: 0.875rem; align-items: flex-start; }
.contact-info__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 71, 0.1);
  color: var(--coral);
  display: grid;
  place-items: center;
}
.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
}
.contact-info__value {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-info__value a { color: var(--charcoal); }
.contact-info__value a:hover { color: var(--coral); }

.contact-form { background: white; padding: 2.5rem; border: 1px solid var(--border); border-radius: var(--radius-md); }
.field { margin-bottom: 1.25rem; }
.field__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.field__input, .field__textarea, .field__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--bone);
  transition: border-color 0.2s;
}
.field__textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field__input:focus, .field__textarea:focus, .field__select:focus {
  outline: none;
  border-color: var(--coral);
}
.contact-form__success {
  display: none;
  padding: 1rem 1.25rem;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-sm);
  color: #065F46;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.contact-form.is-success .contact-form__success { display: block; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D3849 100%);
  border-radius: var(--radius-md);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-portrait::after {
  content: 'PHOTO HERE';
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--slate);
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-quote {
  border-left: 3px solid var(--coral);
  padding-left: 1.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  margin: 2rem 0;
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2D3849 0%, #1F2937 100%);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--slate-light);
  font-size: 0.9375rem;
  margin: 2rem 0;
  position: relative;
}
.video-placeholder::before {
  content: '';
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 71, 0.9);
  border-radius: 50%;
  position: absolute;
  display: grid;
  place-items: center;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 6px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  color: var(--slate-light);
  padding-block: 4rem 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .wordmark { color: var(--bone); }
.footer__brand .wordmark__locator { color: var(--slate-light); }
.footer__tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  color: var(--slate-light);
  margin-block: 1rem 1.5rem;
}
.footer__col-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
}
.footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__list a { color: var(--slate-light); font-size: 0.9375rem; }
.footer__list a:hover { color: var(--coral); }
.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--slate);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 880px) {
  .nav__links { gap: 1.25rem; }
  .nav__links .nav__link:not(.nav__lang) { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--border);
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav.is-open .nav__mobile { display: flex; }
  .nav__mobile a {
    padding: 0.5rem 0;
    color: var(--charcoal);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
  }
  .nav__mobile a:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lead-magnet { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
  .lead-magnet__visual { max-width: 280px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founding-banner { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem 1.5rem; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.bg-white { background: white; }
.bg-bone { background: var(--bone); }
.no-scroll { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
