/* ===========================
   HERNDON BUSINESS SERVICES
   Global Stylesheet
   =========================== */

/* --- Variables --- */
:root {
  --navy: #1e3a5f;
  --navy-dark: #152c4a;
  --navy-light: #2a4f7c;
  --gold: #d4a574;
  --gold-light: #e8c49a;
  --gray-bg: #f5f5f5;
  --gray-mid: #e8e8e8;
  --gray-text: #6b7280;
  --dark: #1a1a2e;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(30, 58, 95, 0.10);
  --shadow-hover: 0 8px 32px rgba(30, 58, 95, 0.18);
  --radius: 12px;
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 1rem; color: var(--gray-text); }
.lead { font-size: 1.125rem; color: var(--gray-text); }

/* --- Layout Utilities --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-bg); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-sub { max-width: 600px; margin: 0 auto 3rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-dark); box-shadow: var(--shadow-hover); }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.nav__logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active { color: var(--navy); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-mid);
  gap: 0.5rem;
}
.nav__mobile a {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-mid);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 0.5rem; width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

/* ===========================
   ABOUT STRIP (Homepage)
   =========================== */
.about-strip { padding: 5rem 0; }
.about-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-strip__img-wrap {
  position: relative;
}
.about-strip__img {
  border-radius: var(--radius);
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 40%;
}
.about-strip__img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.about-strip__img-badge span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.about-strip__body p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-strip__body p:last-of-type { margin-bottom: 2rem; }

@media (max-width: 768px) {
  .about-strip__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-strip__img { height: 480px; }
  .about-strip__img-badge { right: 0.5rem; }
}

/* ===========================
   VALUE PROPS
   =========================== */
.value-props { padding: 5rem 0; background: var(--gray-bg); }
.value-props__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.value-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card__icon svg { width: 26px; height: 26px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.94rem; }

@media (max-width: 768px) {
  .value-props__grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .value-props__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   SERVICES
   =========================== */
.services-intro { padding: 5rem 0 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 0 0 5rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.pricing-card--featured p,
.pricing-card--featured li,
.pricing-card--featured .pricing-card__price-sub { color: rgba(255,255,255,0.7); }
.pricing-card--featured h3, .pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pricing-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card__price sup { font-size: 1.1rem; font-weight: 600; }
.pricing-card__price-sub { font-size: 0.82rem; color: var(--gray-text); margin-bottom: 1.5rem; }
.pricing-card__divider { height: 1px; background: var(--gray-mid); margin: 1.5rem 0; }
.pricing-card--featured .pricing-card__divider { background: rgba(255,255,255,0.15); }
.pricing-card__features { margin-bottom: 2rem; }
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-text);
  padding: 0.4rem 0;
}
.pricing-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-note {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  margin: 0 0 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.pricing-note h3 { color: var(--white); margin-bottom: 0.5rem; }
.pricing-note p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.pricing-note__example {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}
.pricing-note__example p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; }
.pricing-note__example strong { color: var(--gold); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-note { grid-template-columns: 1fr; }
}

/* ===========================
   HOW IT WORKS
   =========================== */
.process { padding: 5rem 0; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--navy-light));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.process-step__num svg { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h3 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1rem; }
.process-step p { font-size: 0.88rem; }

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ===========================
   PORTFOLIO / CASE STUDIES
   =========================== */
.portfolio { padding: 5rem 0; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.portfolio-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.portfolio-card__img {
  height: 220px;
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
}
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  gap: 0.5rem;
}
.portfolio-card__placeholder svg { width: 36px; height: 36px; opacity: 0.4; }
.portfolio-card__coming-soon {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(212, 165, 116, 0.9);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.portfolio-card__body { padding: 1.5rem; }
.portfolio-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.portfolio-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.portfolio-card p { font-size: 0.88rem; }

@media (max-width: 768px) { .portfolio__grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================
   PERFORMANCE TRACKING
   =========================== */
.performance-intro { padding: 5rem 0 3rem; }
.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
.perf-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
}
.perf-card h3 { color: var(--navy); margin-bottom: 1rem; }
.perf-card ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-bg);
}
.perf-card ul li:last-child { border-bottom: none; }
.perf-card ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.perf-mockup {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 5rem;
}
.perf-mockup h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1rem; letter-spacing: 0.05em; }
.perf-report {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
}
.perf-report__header { font-size: 0.75rem; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.perf-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.perf-stat { text-align: center; }
.perf-stat-num { font-size: 2rem; font-weight: 700; color: var(--navy); display: block; }
.perf-stat-up { color: #16a34a; font-size: 0.75rem; font-weight: 600; }
.perf-stat-label { font-size: 0.78rem; color: var(--gray-text); }
.perf-report__summary {
  background: var(--gray-bg);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .perf-grid { grid-template-columns: 1fr; }
  .perf-stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-hero {
  padding-top: 68px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding-bottom: 5rem;
  padding-top: calc(68px + 5rem);
}
.about-hero h1 { color: var(--white); margin-bottom: 1rem; }
.about-hero .lead { color: rgba(255,255,255,0.7); }
.about-bio {
  padding: 5rem 0;
}
.about-bio__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-bio__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-bio__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 25%;
}
.about-bio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.about-bio__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-text);
  background: var(--gray-bg);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}
.about-bio__meta-item svg { width: 14px; height: 14px; fill: none; stroke: var(--navy); stroke-width: 2; }
.about-bio__body p { margin-bottom: 1.1rem; font-size: 1rem; }
.philosophy {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.philosophy h2 { color: var(--white); margin-bottom: 1.5rem; }
.philosophy blockquote {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
}
.philosophy blockquote::before { content: '\201C'; color: var(--gold); font-size: 3rem; line-height: 0.5; vertical-align: -0.5rem; }

@media (max-width: 768px) {
  .about-bio__grid { grid-template-columns: 1fr; }
  .about-bio__photo img { height: 360px; }
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-hero {
  padding-top: calc(68px + 5rem);
  padding-bottom: 5rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.contact-hero h1 { color: var(--white); margin-bottom: 1rem; }
.contact-hero .lead { color: rgba(255,255,255,0.7); }
.contact-body { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-mid);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}
textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  color: #16a34a;
}
.form-success svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
.form-success h3 { color: #16a34a; margin-bottom: 0.5rem; }
.contact-info { }
.contact-info__card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-info__card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info__item:last-child { margin-bottom: 0; }
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info__label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-info__value { color: var(--white); font-weight: 500; font-size: 0.95rem; }
.contact-promise {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
}
.contact-promise p { font-size: 0.9rem; color: var(--dark); }
.contact-promise strong { color: var(--navy); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin: 0 0.5rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo-main { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.footer__logo-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer__col h4 { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--white); }
.footer__divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: var(--gold); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   PAGE HEADERS (inner pages)
   =========================== */
.page-header {
  padding-top: calc(68px + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header .lead { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===========================
   TESTIMONIAL PLACEHOLDER
   =========================== */
.testimonial-strip {
  background: var(--gray-bg);
  padding: 5rem 0;
}
.testimonial-strip__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-strip__quote {
  font-size: 1.15rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial-strip__quote::before { content: '\201C'; color: var(--gold); font-size: 4rem; line-height: 0.3; vertical-align: -0.6rem; margin-right: 0.1rem; }
.testimonial-strip__quote::after { content: '\201D'; color: var(--gold); font-size: 4rem; line-height: 0.3; vertical-align: -0.8rem; margin-left: 0.1rem; }
.testimonial-strip__name { font-weight: 700; color: var(--navy); }
.testimonial-strip__biz { font-size: 0.85rem; color: var(--gray-text); }

/* ===========================
   UTILITY
   =========================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
