/* ============================================================
   AI Business with Automated Agents — style.css
   Mobile-first, WCAG AA high contrast, elderly-friendly
   Color system:
     Navy   #0A2342
     Orange #FF6B00
     White  #FFFFFF
     Text   #1A1A1A
     Light  #F5F5F5
============================================================ */

/* ---- Reset & Base ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Mobile base */
}

@media (min-width: 600px) {
  html { font-size: 18px; }
}

@media (min-width: 900px) {
  html { font-size: 20px; /* Desktop: larger for older users */ }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---- Layout Utilities ------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 700px;
}

.section-pad {
  padding: 40px 0;
}

@media (min-width: 900px) {
  .section-pad { padding: 72px 0; }
}

.bg-navy  { background: #0A2342; }
.bg-light { background: #F5F5F5; }

/* ---- Typography ------------------------------------------ */
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0A2342;
  text-align: center;
  margin-bottom: 12px;
}

.section-title.white { color: #FFFFFF; }

.section-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #444;
  text-align: center;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub.white { color: #D0DCF0; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 3px solid transparent;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: #FF6B00;
  color: #FFFFFF;
  border-color: #FF6B00;
}
.btn-orange:hover { background: #e05e00; border-color: #e05e00; }

.btn-navy {
  background: #0A2342;
  color: #FFFFFF;
  border-color: #0A2342;
}
.btn-navy:hover { background: #0d2e57; border-color: #0d2e57; }

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-lg {
  font-size: 1.1rem;
  min-height: 60px;
  padding: 16px 36px;
}

.btn-sm {
  font-size: 0.9rem;
  min-height: 44px;
  padding: 10px 20px;
}

.btn-full { width: 100%; }

/* ---- Sticky Header --------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 35, 66, 0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-name {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.header-phone-label {
  color: #A0B8D8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-phone-number {
  color: #FF6B00;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.header-cta {
  white-space: nowrap;
  font-size: 0.85rem;
  min-height: 44px;
  padding: 10px 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0A2342;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 400px;
  padding: 0 24px;
}

.mobile-nav-link {
  display: block;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  text-decoration: none;
}

.mobile-nav-link:hover { color: #FF6B00; }

.mobile-nav-phone {
  margin-top: 32px;
  color: #FF6B00;
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
}

/* ---- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A2342 url('images/hero-bg.jpg') center/cover no-repeat;
  padding: 120px 20px 48px;
  text-align: center;
}

@media (min-width: 900px) {
  .hero { min-height: 90vh; padding: 120px 20px 72px; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 35, 66, 0.78);
}

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

.hero-headline {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #C8D8EC;
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-phone-block {
  margin-bottom: 20px;
}

.hero-phone-label {
  color: #A0B8D8;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.hero-phone-number {
  display: block;
  color: #FF6B00;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.hero-phone-number:hover { color: #ffa040; }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: none;
  }
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 8px 10px;
}

.badge svg { color: #FF6B00; flex-shrink: 0; width: 18px; height: 18px; }

/* ---- Services -------------------------------------------- */
.service-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 3px solid #0A2342;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  background: #FFFFFF;
  color: #0A2342;
  border: none;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 52px;
}

.toggle-btn + .toggle-btn {
  border-left: 3px solid #0A2342;
}

.toggle-btn.active,
.toggle-btn:hover {
  background: #0A2342;
  color: #FFFFFF;
}

.service-panel { display: none; }
.service-panel.active { display: block; }

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

.service-card {
  background: #FFFFFF;
  border: 2px solid #E0E8F0;
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 0;
}

@media (min-width: 900px) {
  .service-card { padding: 28px 24px; gap: 10px; }
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(10,35,66,0.12);
  border-color: #0A2342;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #EEF3F9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: #0A2342;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A2342;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  flex: 1;
}

.service-price {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #FF6B00 !important;
}

.services-bottom-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid #E0E8F0;
}

.services-bottom-cta p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}

/* ---- Why Choose Us --------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trust-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 900px) {
  .trust-tile { padding: 32px 24px; gap: 14px; }
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: #FF6B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}

.trust-tile h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.trust-tile p {
  font-size: 0.95rem;
  color: #B8CCE4;
  line-height: 1.5;
}

/* ---- Gallery --------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #E0E8F0;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  height: 220px;
  background: #D0DCE8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5a7a9a;
}

.gallery-placeholder span {
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-placeholder small {
  font-size: 0.75rem;
  text-align: center;
  padding: 0 12px;
}

.gallery-placeholder-after {
  background: #C8E0D0;
  color: #2a6a4a;
}

.gallery-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.before-label { background: #CC2200; color: #FFFFFF; }
.after-label  { background: #007A3D; color: #FFFFFF; }

.gallery-caption {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  padding: 8px 4px 4px;
}

/* ---- Testimonials ---------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 2px solid #E0E8F0;
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(10,35,66,0.06);
}

@media (min-width: 900px) {
  .testimonial-card { padding: 32px 28px; gap: 14px; }
}

.stars span {
  color: #FF6B00;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: #2A2A2A;
  line-height: 1.65;
  font-style: italic;
}

.testimonial-card cite {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A2342;
  font-style: normal;
}

.review-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #E0E8F0;
}

.review-cta p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #333;
}

/* ---- Callback Form --------------------------------------- */
.quote-form {
  background: #FFFFFF;
  border: 2px solid #E0E8F0;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 4px 24px rgba(10,35,66,0.08);
}

@media (min-width: 900px) {
  .quote-form { padding: 40px 32px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 1rem;
  font-weight: 700;
  color: #0A2342;
  line-height: 1.4;
}

.form-group label small {
  font-weight: 400;
  color: #666;
  font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #1A1A1A;
  background: #FFFFFF;
  border: 2px solid #BCC8D8;
  border-radius: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230A2342'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 24px;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0A2342;
  box-shadow: 0 0 0 3px rgba(10,35,66,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.required { color: #CC2200; }

.form-success {
  background: #D4EDDA;
  border: 2px solid #28A745;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #155724;
}

.form-direct-call {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #E0E8F0;
}

.form-direct-call p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.form-phone-link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #FF6B00;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.form-phone-link:hover { color: #e05e00; }

/* ---- Service Area ---------------------------------------- */
.area-content {
  max-width: 900px;
  margin: 0 auto;
}

.area-counties {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.county-block {
  background: #FFFFFF;
  border: 2px solid #D0DCE8;
  border-radius: 10px;
  padding: 28px 24px;
}

.county-block h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0A2342;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E0E8F0;
}

.town-list {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}

.area-cta {
  text-align: center;
  padding: 32px;
  background: #0A2342;
  border-radius: 10px;
  color: #FFFFFF;
}

.area-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.area-cta strong { color: #FF6B00; }

/* ---- Footer ---------------------------------------------- */
.site-footer {
  background: #06172E;
  color: #FFFFFF;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-business-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #8EA8C8;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: #FF6B00;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-phone:hover { color: #ffa040; }

.footer-email {
  display: block;
  font-size: 0.95rem;
  color: #8EA8C8;
  text-decoration: none;
}

.footer-email:hover { color: #FFFFFF; }

.footer-nav h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.95rem;
  color: #8EA8C8;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover { color: #FFFFFF; }

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-cta-text {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #6080A0;
}

/* ---- Responsive: Tablet (600px+) ------------------------- */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-pair {
    display: contents;
  }

  .gallery-pair .gallery-item {
    break-inside: avoid;
  }

  .area-counties {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Responsive: Desktop (900px+) ------------------------ */
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ---- Responsive: Mobile header adjustments (under 700px) - */
@media (max-width: 700px) {
  .header-cta { display: none; }
  .hamburger  { display: flex; }
}

/* ---- Responsive: Small phone (under 400px) --------------- */
@media (max-width: 400px) {
  html { font-size: 18px; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
  }

  .service-toggle {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
    padding: 14px 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }
}

/* ---- Accessibility: Focus Styles ------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #FF6B00;
  outline-offset: 3px;
}

/* ---- Header Brand Owner Name ----------------------------- */
.brand-orange {
  color: #FF6B00;
  font-size: inherit;
  font-weight: inherit;
}

.brand-owner {
  display: block;
  color: #8EA8C8;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 1px;
}

/* ---- Veteran Badge (hero) --------------------------------- */
.badge-veteran {
  background: rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.8);
}

.badge-veteran svg { color: #FFD700; }

/* ---- Trust Grid — 5 tiles (3 + 2) ------------------------ */
@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Veteran trust icon — gold accent */
.trust-icon-veteran {
  background: #FFD700 !important;
}

.trust-icon-veteran svg {
  color: #0A2342 !important;
}

/* ---- About Section --------------------------------------- */
.about {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
  }
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-photo-col img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10,35,66,0.15);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-photo-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  background: #E8EEF5;
  border: 2px dashed #BCC8D8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #5a7a9a;
}

.about-photo-placeholder svg { opacity: 0.5; }

.about-photo-placeholder p {
  font-size: 0.8rem;
  text-align: center;
  color: #6080A0;
}

.about-vet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A2342;
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 40px;
  text-transform: uppercase;
}

.about-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FF6B00;
  margin-bottom: 6px;
}

.about-name {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #0A2342;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-tagline {
  font-size: 1.05rem;
  color: #555;
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E0E8F0;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.about-body p {
  font-size: 1rem;
  color: #2A2A2A;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A2342;
}

.about-highlight svg {
  color: #FF6B00;
  flex-shrink: 0;
}

/* ---- Footer Owner Name ----------------------------------- */
.footer-owner-name {
  color: #FFD700 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

/* ---- Print ------------------------------------------------ */
@media print {
  .site-header, .mobile-nav, .hamburger { display: none; }
  .hero { min-height: auto; padding: 32px 20px; }
  .hero-overlay { display: none; }
  .hero-headline, .hero-sub, .hero-phone-label { color: #000; }
  .hero-phone-number { color: #FF6B00; }
  body { font-size: 12pt; }
}
