/* =========================================================================
   Toccainvest — single-page site
   Mobile-first, fast, accessible.
   ========================================================================= */

/* -------- Reset + base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #2a2a2a;
  --gray-700: #4a4a4a;
  --gray-500: #808080;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f3;
  --cream: #faf8f4;
  --white: #ffffff;
  --orange: #e8622c;
  --orange-dark: #c94f1e;
  --orange-tint: var(--orange-tint);
  --orange-tint-strong: var(--orange-tint-strong);
  --green: #0d7b3e;
  --red: #c43a31;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
}

/* -------- Skip link (a11y) -------- */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--black); color: var(--white);
  padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { top: 0; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 72px 0;
}
.section-dark {
  background: var(--cream);
}

.center { text-align: center; }

/* -------- Typography -------- */
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.7vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
h3 { font-size: 1.25rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.eyebrow.center { text-align: center; }
.section-lede {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--gray-700);
  font-size: 1.05rem;
}
.lede {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 620px;
}
.accent { color: var(--orange); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* -------- Header / Nav -------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom-color: rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: block;
}
.primary-nav {
  display: none;
  align-items: center;
  gap: 24px;
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  transition: color 0.3s, text-shadow 0.3s, font-weight 0.3s;
}
.header.scrolled .primary-nav a {
  color: var(--gray-900);
  text-shadow: none;
  font-weight: 500;
}
.primary-nav a:hover,
.primary-nav a:focus { color: var(--orange); }
.header.scrolled .primary-nav a:hover,
.header.scrolled .primary-nav a:focus { color: var(--orange); }
.brand img { transition: filter 0.3s ease; }
.header:not(.scrolled) .brand img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.btn-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: transform 0.3s, opacity 0.3s, background 0.3s, box-shadow 0.3s;
}
.header.scrolled .nav-toggle span {
  background: var(--black);
  box-shadow: none;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}

/* Mobile nav open */
.primary-nav.open {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--white);
  padding: 24px;
  gap: 0;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid var(--gray-300);
}
.primary-nav.open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  color: var(--gray-900);
  text-shadow: none;
  font-weight: 500;
}
.primary-nav.open .btn-cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: 0;
  color: var(--white) !important;
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  margin: 0;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  border-radius: 0 0 14px 14px;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 35%, rgba(10,10,10,0.25) 70%, rgba(10,10,10,0.45) 100%);
  border-radius: 0 0 14px 14px;
  z-index: -1;
}
.hero-content {
  position: relative;
  max-width: 760px;
  margin: 0;
  padding-left: clamp(8px, 4vw, 56px);
  padding-right: clamp(8px, 4vw, 40px);
}
.hero .eyebrow {
  color: var(--orange);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  font-size: 0.8rem;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
.hero-italic,
.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  display: inline-block;
}
.hero .lede {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 640px;
  font-size: 1.15rem;
}

.trust-bar {
  margin-left: 0;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 620px;
}
.trust-bar li {
  display: flex;
  flex-direction: column;
}
.trust-bar strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.trust-bar span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (min-width: 640px) {
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
}

/* -------- How It Works / Steps -------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--gray-700); margin: 0; }

/* -------- What We Buy / Cards -------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}
.card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  flex: 1 1 100%;
  max-width: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
@media (min-width: 600px) {
  .card { max-width: calc((100% - 20px) / 2); }
}
@media (min-width: 960px) {
  .card { max-width: calc((100% - 40px) / 3); }
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-700); margin: 0; font-size: 0.97rem; }

/* -------- Approach -------- */
.approach-narrow {
  max-width: 760px;
  text-align: center;
}
.approach-narrow .section-lede {
  margin-bottom: 2rem;
}
.check-list {
  margin: 20px 0;
}
.check-list--centered {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  color: var(--gray-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}
/* -------- Projects -------- */
.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.project-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.project-card--clickable:hover .project-image {
  transform: scale(1.04);
}
.project-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-300);
}
.project-image--placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.5;
}
.project-body {
  padding: 24px 26px 28px;
}
.project-city {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.project-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--black);
}
.project-card p {
  color: var(--gray-700);
  margin: 0 0 18px;
  font-size: 0.97rem;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tags li {
  padding: 6px 12px;
  background: var(--orange-tint);
  color: var(--orange-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 8px 14px;
  background: rgba(13,123,62,0.08);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.92rem;
}
.project-status svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.project-status strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.project-status--active {
  background: var(--orange-tint-strong);
  color: var(--orange-dark);
}
/* Clickable project card (enhanced by JS when photos exist) */
.project-card--clickable {
  cursor: pointer;
}
.project-card--clickable .project-image {
  position: relative;
}
.project-card--clickable .project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.project-card--clickable:hover .project-image::after,
.project-card--clickable:focus-visible .project-image::after {
  opacity: 1;
}
.project-photo-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(10,10,10,0.72);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 1;
}
.project-photo-badge svg {
  width: 14px;
  height: 14px;
}

/* Before/After toggle pill on card */
.project-toggle {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.project-toggle button {
  padding: 6px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}
.project-toggle button[aria-pressed="true"] {
  background: var(--orange);
  color: var(--white);
}
.project-toggle button:not([aria-pressed="true"]):hover {
  color: var(--white);
}

/* -------- Lightbox -------- */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  z-index: 1000;
}
.lightbox.open {
  display: flex;
  animation: lightbox-fade 0.2s ease;
}
@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  margin: auto;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 2;
  padding: 0;
}
.lightbox-close:hover,
.lightbox-nav:not(:disabled):hover,
.lightbox-close:focus-visible,
.lightbox-nav:not(:disabled):focus-visible {
  background: rgba(255,255,255,0.24);
}
.lightbox-close svg,
.lightbox-nav svg {
  width: 24px;
  height: 24px;
}
.lightbox-close {
  top: 20px;
  right: 20px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.lightbox-tabs {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px;
  border-radius: 999px;
  z-index: 3;
}
.lightbox-tabs[hidden] { display: none; }
.lightbox-tab {
  padding: 8px 20px;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lightbox-tab[aria-selected="true"] {
  background: var(--orange);
  color: var(--white);
}
.lightbox-tab:not([aria-selected="true"]):hover {
  color: var(--white);
}
.lightbox-tab-count {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 600;
}
@media (max-width: 640px) {
  .lightbox { padding: 56px 16px; }
  .lightbox-close, .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* -------- Why Us / Features -------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
.feature {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.feature h3 { color: var(--black); margin-bottom: 8px; }
.feature p { color: var(--gray-700); margin: 0; font-size: 0.95rem; }

/* -------- Founder -------- */
.founder-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .founder-grid { grid-template-columns: 280px 1fr; gap: 64px; }
}
.founder-photo {
  display: flex;
  justify-content: center;
}
.photo-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  opacity: 0.3;
}
.photo-silhouette {
  width: 96px;
  height: 96px;
  color: rgba(255,255,255,0.85);
}
.founder-photo-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  display: block;
}
.founder-title {
  color: var(--orange);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.founder-languages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1.25rem;
  padding: 4px 12px;
  background: var(--orange-tint);
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 600;
}
.founder-languages em {
  font-style: italic;
  font-weight: 500;
}
.founder-text p { color: var(--gray-700); }
.founder-text strong { color: var(--black); }
.inline-link {
  color: var(--orange-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(232,98,44,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.inline-link:hover,
.inline-link:focus {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* -------- Service Areas -------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.areas-list li {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-weight: 500;
  color: var(--gray-900);
  transition: all 0.2s;
}
.areas-list li:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* -------- Contact Form -------- */
.contact-section {
  background: var(--black);
  color: var(--white);
}
.contact-section h2,
.contact-section .eyebrow { color: var(--white); }
.contact-section .eyebrow { color: var(--orange); }
.contact-section .section-lede { color: rgba(255,255,255,0.75); }

.contact-form {
  max-width: 720px;
  margin: 40px auto 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-row { display: flex; flex-direction: column; }
.form-row-full { grid-column: 1 / -1; }
.form-row label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
}
.req { color: var(--orange); }
.optional {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  font-size: 0.82em;
  font-style: italic;
}
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-row select option {
  background: var(--black);
  color: var(--white);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-footnote {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* -------- Footer -------- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}
.footer-brand img {
  height: 96px;
  width: 96px;
  margin-bottom: 16px;
  border-radius: 50%;
  display: block;
}
.footer-brand p { color: rgba(255,255,255,0.65); margin: 0; }
.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* -------- Focus styles (a11y) -------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

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

/* -------- Print -------- */
@media print {
  .header, .footer, .hero-ctas, .contact-form, .nav-toggle { display: none; }
  body { color: black; background: white; }
}
