/* Camejo's Plumbing — matches React site design */
:root {
  --radius: 0.625rem;
  --brand-navy: #1A3A6B;
  --brand-navy-dark: #0f2347;
  --brand-red: #C0181F;
  --brand-red-dark: #a01218;
  --brand-gold: #F5A623;
  --brand-gray: #F5F5F5;
  --brand-dark: #1C1C1C;
  --brand-muted: #5A5A6A;
  --border: #ebebeb;
  --font-display: "Oswald", "Barlow Condensed", system-ui, sans-serif;
  --font-sans: "Inter", "Open Sans", system-ui, sans-serif;
  --container: 1200px;
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brand-dark);
  background: #fff;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.c-container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .c-container { padding: 0 1.5rem; } }

.c-display { font-family: var(--font-display); }
.c-section { padding: 3rem 0; }
@media (min-width: 768px) { .c-section { padding: 5rem 0; } }
.c-section--sm { padding: 2.5rem 0; }
@media (min-width: 768px) { .c-section--sm { padding: 4rem 0; } }
.c-bg-gray { background: var(--brand-gray); }
.c-bg-white { background: #fff; }
.c-bg-navy { background: var(--brand-navy); color: #fff; }
.c-bg-red { background: var(--brand-red); color: #fff; }

.c-eyebrow {
  color: var(--brand-red);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.c-heading-xl { font-size: clamp(2.25rem, 6vw, 4rem); font-weight: 800; line-height: 1.05; }
.c-heading-lg { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800; line-height: 1.1; }
.c-heading-md { font-size: clamp(1.5rem, 4vw, 2.75rem); font-weight: 800; }
.c-text-muted { color: rgba(28,28,28,.55); }
.c-text-white-75 { color: rgba(255,255,255,.75); }
.c-text-white-65 { color: rgba(255,255,255,.65); }
.c-text-center { text-align: center; }

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.c-btn--red {
  background: var(--brand-red);
  color: #fff;
  padding: 1rem 1.75rem;
  box-shadow: 0 4px 24px rgba(192,24,31,.35);
}
.c-btn--red:hover { background: var(--brand-red-dark); }
.c-btn--navy { background: var(--brand-navy); color: #fff; padding: 0.75rem 1.5rem; font-weight: 700; }
.c-btn--navy:hover { background: var(--brand-navy-dark); }
.c-btn--ghost-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 1rem 1.5rem;
  font-weight: 700;
}
.c-btn--ghost-white:hover { background: rgba(255,255,255,.2); }
.c-btn--gold { background: var(--brand-gold); color: var(--brand-navy); padding: 1rem 1.75rem; font-weight: 800; }
.c-btn--gold:hover { filter: brightness(1.05); }
.c-btn--white {
  background: #fff;
  color: var(--brand-red);
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 640px) { .c-btn--white { padding: 1rem 2rem; font-size: 1.125rem; } }
.c-btn--white:hover { filter: brightness(0.97); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.c-btn--full { width: 100%; }
.c-btn:disabled { opacity: .7; cursor: not-allowed; }

.c-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.c-feature-card__icon .c-icon,
.c-info-card__icon .c-icon { width: 1.5rem; height: 1.5rem; }
.c-service-card__icon svg { width: 1.25rem; height: 1.25rem; }

/* Header */
.c-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.c-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
@media (min-width: 640px) { .c-header__inner { padding: 0 1.5rem; height: 96px; } }
.c-logo img { height: 64px; width: auto; }
@media (min-width: 640px) { .c-logo img { height: 100px; } }

.c-nav { display: none; }
@media (min-width: 1024px) {
  .c-nav { display: flex; align-items: center; gap: 1.75rem; }
}
.c-nav-link {
  color: var(--brand-dark);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color .2s;
}
.c-nav-link:hover, .c-nav-link.is-active { color: var(--brand-red); }

.c-header__actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .c-header__actions { gap: 0.75rem; } }
.c-header__phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 0.875rem;
}
.c-header__phone:hover { color: var(--brand-red); }
@media (min-width: 768px) { .c-header__phone { display: flex; } }
.c-header__estimate { display: none; }
@media (min-width: 640px) { .c-header__estimate { display: inline-flex; padding: 0.625rem 1.25rem; font-size: 0.875rem; } }

.c-lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(26,58,107,.3);
  border-radius: 9999px;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
}
.c-lang-toggle button {
  border: none;
  background: transparent;
  color: var(--brand-navy);
  padding: 0.375rem 0.75rem;
  cursor: pointer;
}
.c-lang-toggle button.is-active { background: var(--brand-navy); color: #fff; }
.c-lang-toggle--mobile { display: inline-flex; }
.c-lang-toggle--desktop { display: none; }
@media (min-width: 640px) {
  .c-lang-toggle--mobile { display: none; }
  .c-lang-toggle--desktop { display: inline-flex; }
}

.c-menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--brand-navy);
  cursor: pointer;
}
@media (min-width: 1024px) { .c-menu-toggle { display: none; } }

.c-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 1rem;
}
.c-mobile-nav.is-open { display: block; }
.c-mobile-nav a, .c-mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: none;
  border: none;
  cursor: pointer;
}
.c-mobile-nav a:hover { background: var(--brand-gray); }

/* Hero */
.c-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--brand-navy);
}
@media (min-width: 768px) { .c-hero { min-height: 90vh; } }
.c-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark), var(--brand-dark));
}
.c-hero__glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(192,24,31,.2);
  filter: blur(90px);
  pointer-events: none;
}
.c-hero__dots {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.c-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}
@media (min-width: 768px) { .c-hero__inner { padding: 4rem 0; gap: 3rem; } }
@media (min-width: 1024px) { .c-hero__inner { grid-template-columns: 1fr 1fr; } }
.c-hero__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.c-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.c-badge--glass { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.c-badge--green { background: #16a34a; color: #fff; }
.c-hero h1 { color: #fff; font-weight: 800; }
.c-hero h1 em { color: var(--brand-gold); font-style: italic; }
.c-hero__logo { display: none; justify-content: center; }
@media (min-width: 1024px) { .c-hero__logo { display: flex; } }
.c-hero__logo img { width: 420px; filter: drop-shadow(0 20px 50px rgba(0,0,0,.5)); }
.c-stars { display: flex; gap: 0; color: var(--brand-gold); }
.c-stars svg { width: 1rem; height: 1rem; fill: var(--brand-gold); }
.c-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.c-hero__phone-line { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: rgba(255,255,255,.6); font-size: 0.875rem; }
.c-hero__phone-line a { color: #fff; font-weight: 700; }
.c-hero__phone-line a:hover { color: var(--brand-gold); }

/* Trust strip */
.c-trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.c-trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
@media (min-width: 640px) { .c-trust-strip__inner { gap: 0.75rem 2rem; } }
.c-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(28,28,28,.7);
}
@media (min-width: 640px) { .c-trust-item { font-size: 0.875rem; } }

/* Services grid */
.c-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .c-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .c-services-grid { grid-template-columns: repeat(3, 1fr); } }

.c-service-card {
  text-align: left;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .3s;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.c-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.c-service-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--brand-gray);
}
.c-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.c-service-card:hover .c-service-card__img img { transform: scale(1.05); }
.c-service-card__body { padding: 1.25rem; }
.c-service-card__body h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.375rem; }
.c-service-card__body p { font-size: 0.875rem; color: rgba(28,28,28,.6); line-height: 1.6; margin: 0; }
.c-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.875rem;
}
.c-service-card--detailed .c-service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.c-service-card--detailed { display: flex; flex-direction: column; }
.c-service-card__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.c-service-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(26,58,107,.1);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature cards */
.c-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .c-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .c-features-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.c-feature-card {
  background: var(--brand-gray);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all .3s;
}
.c-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.c-feature-card--white { background: #fff; border: 1px solid var(--border); }
.c-feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26,58,107,.1);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.c-feature-card__icon--red {
  background: rgba(192,24,31,.1);
  color: var(--brand-red);
}
.c-feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.c-feature-card p { font-size: 0.875rem; color: rgba(28,28,28,.6); line-height: 1.6; margin: 0; }

/* Emergency */
.c-emergency { position: relative; overflow: hidden; padding: 2.5rem 0; }
@media (min-width: 768px) { .c-emergency { padding: 4rem 0; } }
.c-emergency__glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  filter: blur(80px);
}
.c-emergency__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .c-emergency__inner { grid-template-columns: 1fr 1fr; } }
.c-emergency__actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* Testimonials */
.c-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .c-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.c-testimonial {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all .2s;
}
.c-testimonial:hover { border-color: rgba(26,58,107,.3); box-shadow: 0 10px 15px rgba(0,0,0,.08); }
.c-testimonial__quote { font-size: 0.875rem; font-weight: 500; line-height: 1.6; margin: 1rem 0 1.25rem; }
.c-testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.c-testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Service areas */
.c-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  align-content: center;
}
@media (min-width: 640px) { .c-areas-grid { grid-template-columns: repeat(3, 1fr); } }
.c-area-pill {
  background: var(--brand-gray);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.4375rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: all .2s;
}
.c-area-pill svg { flex-shrink: 0; }
.c-area-pill:hover { border-color: var(--brand-navy); color: var(--brand-navy); }

/* Page hero */
.c-page-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--brand-navy);
  color: #fff;
}
@media (min-width: 768px) { .c-page-hero { padding: 5rem 0; } }
.c-page-hero--lg { padding: 3rem 0 4rem; }
@media (min-width: 768px) { .c-page-hero--lg { padding: 5rem 0 7rem; } }
.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.c-breadcrumb a:hover { color: #fff; }

/* CTA */
.c-cta { position: relative; overflow: hidden; padding: 2.5rem 0; }
@media (min-width: 768px) { .c-cta { padding: 4rem 0; } }
.c-cta__glow {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(245,166,35,.2);
  filter: blur(80px);
}
.c-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) { .c-cta__inner { flex-direction: row; } }
.c-cta__inner--center { text-align: center; }
@media (min-width: 768px) { .c-cta__inner--center { flex-direction: column; } }

/* Footer */
.c-footer {
  background: var(--brand-navy);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 640px) { .c-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .c-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.c-footer__logo { height: 140px; width: auto; margin-bottom: 0.75rem; }
.c-footer__brand { font-weight: 800; font-size: 1.125rem; font-family: var(--font-display); }
.c-footer__meta { color: rgba(255,255,255,.55); font-size: 0.875rem; margin-top: 0.25rem; }
.c-footer__contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,.7); }
.c-footer__contact a:hover { color: #fff; }
.c-footer__col h4 {
  color: rgba(255,255,255,.4);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.c-footer__col li { margin-bottom: 0.5rem; }
.c-footer__col a { color: rgba(255,255,255,.6); font-size: 0.875rem; }
.c-footer__col a:hover { color: #fff; }
.c-footer__bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
}
@media (min-width: 640px) {
  .c-footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* Floating buttons */
.c-float-call, .c-float-estimate { display: flex; }
@media (min-width: 640px) { .c-float-call, .c-float-estimate { display: none; } }
.c-float-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(192,24,31,.4);
  animation: pulseRing 2s infinite;
}
.c-float-estimate {
  position: fixed;
  bottom: 6rem;
  right: 1.25rem;
  z-index: 50;
  background: var(--brand-navy);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 0 1rem;
  height: 3rem;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,58,107,.4);
}

/* Modals */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  animation: fadeIn .25s ease;
}
.c-modal.is-open { display: flex; }
.c-modal--estimate { z-index: 110; background: rgba(0,0,0,.6); }
.c-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  animation: fadeInUp .35s ease;
}
.c-modal__panel--form { max-width: 480px; padding: 1.5rem 2rem; }
@media (min-width: 640px) { .c-modal__panel--form { padding: 2rem; } }
.c-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: var(--brand-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.c-modal__close:hover { background: var(--brand-red-dark); }
.c-modal__img { width: 100%; height: 14rem; object-fit: cover; border-radius: 1.5rem 1.5rem 0 0; }
@media (min-width: 640px) { .c-modal__img { height: 16rem; } }
.c-modal__content { padding: 1.5rem 2rem; }
.c-modal__content h3 { color: var(--brand-navy); font-size: 1.75rem; font-weight: 800; }
.c-modal__content p { color: rgba(28,28,28,.75); font-size: 0.9375rem; line-height: 1.6; margin-top: 0.75rem; }
.c-modal__features { margin-top: 1.25rem; }
.c-modal__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.c-modal__features svg { color: var(--brand-red); flex-shrink: 0; margin-top: 0.125rem; }
.c-modal__logo { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.c-modal__logo img { height: 3rem; width: auto; }

/* Forms */
.c-form { display: flex; flex-direction: column; gap: 0.75rem; }
.c-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .c-form-row { grid-template-columns: 1fr 1fr; } }
.c-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}
.c-field input, .c-field select, .c-field textarea {
  width: 100%;
  background: var(--brand-gray);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  font-size: 0.875rem;
  color: var(--brand-dark);
}
.c-field input:focus, .c-field select:focus, .c-field textarea:focus {
  outline: none;
  border-color: var(--brand-navy);
}
.c-form-success { text-align: center; padding: 1.5rem 0; }
.c-form-success__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.c-form-error { color: #dc2626; font-size: 0.75rem; text-align: center; display: none; }
.c-form-notice { color: #15803d; font-size: 0.875rem; font-weight: 700; text-align: center; display: none; align-items: center; justify-content: center; gap: 0.5rem; }

/* Contact */
.c-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .c-contact-grid { grid-template-columns: 3fr 2fr; } }
.c-contact-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.25rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  scroll-margin-top: 7rem;
}
@media (min-width: 640px) { .c-contact-form-card { padding: 1.75rem 2.5rem; } }
.c-info-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.c-info-card__head { display: flex; align-items: center; gap: 0.5rem; color: var(--brand-navy); font-weight: 700; font-size: 0.875rem; }
.c-info-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(26,58,107,.1);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-map { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); }
.c-map iframe { width: 100%; height: 200px; border: 0; display: block; }

/* FAQ */
.c-faq-item { background: #fff; border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; margin-bottom: 0.75rem; }
.c-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  color: var(--brand-dark);
  cursor: pointer;
}
.c-faq-item__answer { padding: 0 1.25rem 1.25rem; color: rgba(28,28,28,.7); font-size: 0.875rem; line-height: 1.6; display: none; }
.c-faq-item.is-open .c-faq-item__answer { display: block; }

/* Gallery */
.c-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .c-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .c-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.c-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.c-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.c-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,107,.8);
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.c-gallery-item:hover .c-gallery-item__overlay { opacity: 1; }
.c-gallery-item__cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-gold); font-weight: 700; }
.c-gallery-item__title { margin-top: 0.25rem; font-weight: 700; }
.c-gallery-item__loc { font-size: 0.75rem; color: rgba(255,255,255,.7); margin-top: 0.125rem; }

/* Lightbox */
.c-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.9);
}
.c-lightbox.is-open { display: flex; }
.c-lightbox__nav, .c-lightbox__close {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.c-lightbox__close { top: 1rem; right: 1rem; }
.c-lightbox__nav { top: 50%; transform: translateY(-50%); }
.c-lightbox__nav--prev { left: 1rem; }
.c-lightbox__nav--next { right: 1rem; }
.c-lightbox__content { max-width: 1100px; max-height: 88vh; text-align: center; }
.c-lightbox__content img { max-height: 78vh; width: auto; object-fit: contain; border-radius: 0.75rem; margin: 0 auto; }
.c-lightbox__caption { color: #fff; margin-top: 0.75rem; }

/* Stats & owner */
.c-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 1024px) { .c-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.c-stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.c-stat-card__value { color: var(--brand-red); font-size: 2rem; font-weight: 800; font-family: var(--font-display); }
.c-stat-card__label { color: rgba(28,28,28,.6); font-size: 0.8125rem; margin-top: 0.5rem; }
.c-owner-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .c-owner-grid { grid-template-columns: 1fr 2fr; } }
.c-owner-photo {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: var(--brand-navy);
  border: 4px solid rgba(245,166,35,.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px rgba(0,0,0,.15);
  margin: 0 auto;
}
.c-owner-photo img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; }

.c-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(192,24,31,.6); }
  70% { box-shadow: 0 0 0 16px rgba(192,24,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,24,31,0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.fade-in-up { animation: fadeInUp .65s ease-out forwards; opacity: 0; }

.c-grid-2-lg { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .c-grid-2-lg { grid-template-columns: 2fr 3fr; gap: 2.5rem; } }
.c-emergency-banner {
  padding: 2rem 0;
}
.c-emergency-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.c-emergency-banner__content { text-align: center; }
.c-emergency-banner__title {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .c-emergency-banner {
    padding: 3rem 0;
  }
  .c-emergency-banner__inner {
    flex-direction: row;
    align-items: center;
  }
  .c-emergency-banner__content {
    text-align: left;
    flex: 1;
  }
}
.c-mb-14 { margin-bottom: 2rem; }
@media (min-width: 768px) { .c-mb-14 { margin-bottom: 3.5rem; } }
.c-mb-12 { margin-bottom: 3rem; }
.c-mb-8 { margin-bottom: 2rem; }
.c-mb-6 { margin-bottom: 1.5rem; }
.c-mb-4 { margin-bottom: 1rem; }
.c-mt-12 { margin-top: 3rem; }
.c-mt-8 { margin-top: 2rem; }
.c-mt-6 { margin-top: 1.5rem; }
.c-mt-4 { margin-top: 1rem; }
.c-mt-3 { margin-top: 0.75rem; }
.c-max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.c-max-w-2xl { max-width: 42rem; }
.c-mx-auto { margin-left: auto; margin-right: auto; }
