@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Sans+3:wght@400;600&display=swap");

:root {
  --red-deep: #b71c1c;
  --red-bright: #e53935;
  --black: #000000;
  --dark: #111111;
  --dark-2: #222222;
  --light: #f4f4f4;
  --muted: #c9c9c9;
  --max-width: 1120px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--black);
  color: var(--light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

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

h1,
h2,
h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  letter-spacing: 0.5px;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading p {
  color: var(--muted);
  max-width: 720px;
  margin: 0.5rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: var(--red-bright);
  color: #fff;
  border: 2px solid var(--red-bright);
}

.btn-primary:hover {
  background-color: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--black);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.brand img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.brand-logo {
  max-width: 920px;
}

.site-nav {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.site-nav ul {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-social img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-social a:hover img,
.nav-social a:focus img {
  transform: scale(1.1);
  opacity: 0.85;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 2.75rem 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.95), rgba(0, 0, 0, 0.95));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 8px
    );
  background-size: 28px 28px;
  opacity: 0.5;
}

.hero-mark {
  position: absolute;
  top: 2.2rem;
  left: clamp(1rem, 6vw, 4rem);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  letter-spacing: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-rail {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.hero-rail-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--muted);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 0.8rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.6rem 0 0.6rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.hero-subhead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.8rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.hero-panel {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-panel ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.hero-panel li {
  margin-bottom: 0.6rem;
}

/* Offerings */
.offerings {
  position: relative;
  z-index: 1;
  padding: 3.4rem 0;
  background: radial-gradient(circle at 15% 18%, rgba(229, 57, 53, 0.28), transparent 50%),
    radial-gradient(circle at 82% 74%, rgba(183, 28, 28, 0.28), transparent 56%),
    linear-gradient(180deg, #080808, #180808 46%, #0f0f0f);
  border-top: 1px solid rgba(229, 57, 53, 0.35);
  border-bottom: 1px solid rgba(229, 57, 53, 0.3);
  overflow: hidden;
}

.offerings::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 10px
    );
  opacity: 0.38;
  pointer-events: none;
}

.offerings-shell {
  position: relative;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.9), rgba(34, 5, 5, 0.86));
  border: 1px solid rgba(229, 57, 53, 0.45);
  border-radius: 16px;
  padding: clamp(1.3rem, 2vw, 2.1rem);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(229, 57, 53, 0.08) inset;
  z-index: 1;
}

.offerings-shell::before {
  content: "";
  position: absolute;
  inset: -42% auto auto -22%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.22);
  filter: blur(34px);
  pointer-events: none;
}

.offerings-kicker {
  display: table;
  margin: 0 auto 0.5rem;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.72rem;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: linear-gradient(120deg, var(--red-deep), var(--red-bright));
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.44);
  animation: offerings-pulse 2.2s ease-in-out infinite;
}

.offerings-shell h2 {
  text-align: center;
  margin-bottom: 1.35rem;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  text-shadow: 0 2px 14px rgba(183, 28, 28, 0.3);
}

.offerings-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.offerings-viewport {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(229, 57, 53, 0.34);
  background: linear-gradient(140deg, rgba(19, 19, 19, 0.98), rgba(39, 9, 9, 0.96));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.offerings-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: transform 0.45s ease;
}

.offering-slide {
  min-width: 100%;
  padding: 1rem;
}

.offering-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(229, 57, 53, 0.28);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(33, 8, 8, 0.96));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offering-link:hover,
.offering-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(183, 28, 28, 0.3);
  border-color: rgba(229, 57, 53, 0.72);
  outline: none;
}

.offering-image {
  width: 100%;
  height: clamp(250px, 48vw, 410px);
  object-fit: contain;
  object-position: top center;
  background: #0a0a0a;
}

.offering-copy {
  width: 100%;
  padding: 1rem 1rem 1.1rem;
  text-align: center;
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

.offering-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.offering-description {
  margin: 0;
  color: #efefef;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  letter-spacing: 0.01rem;
  line-height: 1.4;
}

@media (min-width: 960px) {
  .offering-slide {
    padding: 0;
  }

  .offering-image {
    height: 360px;
  }

  .offering-copy {
    padding: 1.15rem 1.2rem 1.3rem;
  }

  .offering-copy h3 {
    font-size: clamp(1.42rem, 2.2vw, 1.95rem);
  }

  .offering-description {
    font-size: 1.05rem;
  }
}

.carousel-control {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(229, 57, 53, 0.5);
  background: linear-gradient(150deg, rgba(18, 18, 18, 0.95), rgba(62, 12, 12, 0.95));
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus {
  background: linear-gradient(145deg, rgba(48, 10, 10, 0.95), rgba(115, 15, 15, 0.95));
  border-color: rgba(229, 57, 53, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(183, 28, 28, 0.38);
  outline: none;
}

.carousel-dots {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.58rem;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dots button:hover,
.carousel-dots button:focus {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.15);
  outline: none;
}

.carousel-dots button.is-active {
  background: var(--red-bright);
  transform: scale(1.18);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.2);
}

@keyframes offerings-pulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.44);
  }
  50% {
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.65);
  }
}

/* About */
.about {
  padding: 4rem 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about-content p {
  line-height: 1.6;
}

.about-photo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.about-family-photo {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.split {
  display: grid;
  gap: 2.5rem;
}

.about-card {
  background-color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.about-card li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.about-card li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--red-bright);
}

/* Services */
.services {
  padding: 4.5rem 0;
  background: var(--black);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-2);
  padding: 1.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.service-card.full-span {
  grid-column: 1 / -1;
  text-align: center;
}

.warning-card {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.2), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(229, 57, 53, 0.7);
  box-shadow: 0 18px 40px rgba(183, 28, 28, 0.3);
  position: relative;
}

.warning-card::before {
  content: "Warning";
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--red-bright);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
}

.service-card .tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(229, 57, 53, 0.18);
  border: 1px solid rgba(229, 57, 53, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* How It Works */
.how {
  padding: 4.5rem 0;
  background: var(--dark);
}

.steps {
  display: grid;
  gap: 2rem;
}

.step {
  background: var(--black);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-bright);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step p {
  color: var(--muted);
}

/* Service Area */
.area {
  padding: 4.5rem 0;
  background: var(--black);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.area-list span {
  background: var(--dark-2);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.area-map {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  background: var(--dark-2);
}

.area-map span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  padding: 4.5rem 0;
  background: var(--dark);
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  background: var(--black);
  padding: 1.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 4.5rem 0;
  background: var(--black);
}

.contact-wrap {
  display: grid;
  gap: 2.5rem;
}

.contact-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta p {
  color: var(--muted);
}

.contact-details {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.contact-details p {
  margin-bottom: 0.4rem;
}

.contact-form {
  background: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1.2rem;
}

.service-request {
  margin-top: 3rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
}

.autocomplete {
  position: relative;
  width: 100%;
}

.autocomplete input {
  width: 100%;
  display: block;
}

.autocomplete-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  z-index: 5;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.autocomplete-results.is-open {
  display: block;
}

.autocomplete-item {
  display: block;
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.autocomplete-item:hover,
.autocomplete-item:focus {
  background: rgba(229, 57, 53, 0.15);
  outline: none;
}

fieldset.field {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1rem;
  margin: 0;
}

fieldset.field legend {
  padding: 0 0.4rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
}

.checkbox-group {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: none;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
  accent-color: var(--red-bright);
}

.checkbox-other {
  flex-wrap: wrap;
}

.inline-input {
  flex: 1 1 180px;
  margin-left: 0.4rem;
}

.terms-field .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: none;
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.terms-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  color: var(--muted);
}

.terms-box ol {
  margin: 0;
  padding-left: 1.2rem;
}

.terms-box li {
  margin-bottom: 0.6rem;
}

input,
textarea {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.75rem;
  color: #fff;
  font-family: inherit;
}

input[type="file"] {
  padding: 0.45rem;
}

.field-hint {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(229, 57, 53, 0.6);
  border-color: rgba(229, 57, 53, 0.6);
}

.form-message {
  min-height: 1.2rem;
  color: var(--muted);
}

.form-message.success {
  color: #fff;
  background: rgba(183, 28, 28, 0.22);
  border: 1px solid rgba(229, 57, 53, 0.6);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Partnerships */
.partnerships {
  padding: 0 0 4.5rem;
  background: var(--black);
}

.partnerships-card {
  background: var(--dark);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: min(100%, 520px);
  margin: 0 auto;
}

.partnerships-photo {
  width: 100%;
  border-radius: 8px;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.footer-brand img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.footer-google-link img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-google-link:hover,
.footer-google-link:focus {
  text-decoration: underline;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-social a:hover img,
.footer-social a:focus img {
  transform: scale(1.08);
  opacity: 0.85;
}

.footer-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-wrap {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: left;
    align-items: center;
  }

  .footer-brand {
    justify-items: start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin-top: 0.6rem;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-social {
    justify-content: flex-start;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-logo {
    max-width: 320px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-photo-wrapper {
    order: 2;
    margin-bottom: 1.5rem;
  }

  .about-content {
    order: 1;
  }

  .about-family-photo {
    max-width: 100%;
  }

  .about-card {
    margin-top: 1.5rem;
  }

  .hero-logo {
    max-width: 300px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .hero-rail-inner {
    border-radius: 14px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand span {
    font-size: 0.85rem;
  }

  .offering-slide {
    padding: 0.9rem;
  }

  .offering-image {
    height: 270px;
  }

  .offering-copy h3 {
    font-size: 1.22rem;
  }

  .offering-description {
    font-size: 0.92rem;
  }

  .carousel-control {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

.submit-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 9999;
}

.submit-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.submit-overlay__card {
  width: min(92vw, 420px);
  background: #ffffff;
  color: #111111;
  border-radius: 22px;
  padding: 2rem 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.submit-overlay__spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 6px solid #e6e6e6;
  border-top-color: #b71c1c;
  animation: submit-spin 1s linear infinite;
}

.submit-overlay__check {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem;
  display: none;
}

.submit-overlay__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.submit-overlay__check-circle {
  fill: none;
  stroke: #1b8f3b;
  stroke-width: 4;
  opacity: 0.2;
}

.submit-overlay__check-mark {
  fill: none;
  stroke: #1b8f3b;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.submit-overlay__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.submit-overlay__message {
  margin: 0;
  color: #4a4a4a;
}

.submit-overlay.is-success .submit-overlay__spinner {
  display: none;
}

.submit-overlay.is-success .submit-overlay__check {
  display: block;
}

.submit-overlay.is-success .submit-overlay__check-mark {
  animation: submit-check 0.7s ease forwards;
}

body.is-overlay-open {
  overflow: hidden;
}

@keyframes submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes submit-check {
  to {
    stroke-dashoffset: 0;
  }
}
