:root {
  --color-primary: #1b1b1b;
  --color-secondary: #f1f1f1;
  --color-accent: #e1c482;
  --color-orange: #e07020;
  --color-muted: #6d6d6d;
  --color-white: #ffffff;
  --color-surface: #f3f2ef;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-height: 72px;
  --container: 1200px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-primary);
  background: var(--color-white);
  line-height: 1.6;
}

body.has-mobile-cta {
  padding-bottom: 4.5rem;
}

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

svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.prose {
  max-width: 65ch;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(224, 112, 32, 0.12);
  isolation: isolate;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 0.42s ease;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(224, 112, 32, 0.18);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(224, 112, 32, 0.14);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  filter: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  height: var(--header-height);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-panel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
  }

  .nav-panel {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .btn-nav {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: block;
    background: var(--color-primary);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

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

  .nav-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-nav {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem 4rem;
  max-width: 820px;
}

.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 36ch;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-stars {
  width: 140px;
  height: auto;
  margin: 0 auto;
}

.hero-reviews {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
}

.hero-reviews:hover {
  color: var(--color-orange);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.section-light {
  background: var(--color-surface);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-intro p {
  color: var(--color-muted);
  margin: 0.5rem 0 0;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.section h2.center,
.section-intro h2 {
  text-align: center;
}

.eyebrow {
  color: var(--color-orange);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: var(--color-white);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.filter-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.gallery-item.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .gallery-item {
    flex-basis: calc((100% - 0.75rem) / 2);
    max-width: calc((100% - 0.75rem) / 2);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.gallery-item {
  position: relative;
  flex: 0 1 calc((100% - 2.25rem) / 4);
  max-width: calc((100% - 2.25rem) / 4);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-image.is-loading {
  opacity: 0.4;
}

.lightbox-caption {
  margin: 1rem 0 0;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.85;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

body.lightbox-open {
  overflow: hidden;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-accent));
  border-radius: 999px 999px 0 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
  border-color: rgba(224, 112, 32, 0.16);
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 124, 32, 0.12);
  color: var(--color-orange);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

@media (min-width: 1100px) {
  .service-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, calc((100% - 3rem) / 4));
    justify-self: center;
  }
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonials .section-intro p {
  color: rgba(255, 255, 255, 0.75);
}

.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-track {
  min-height: 220px;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
  left: 0;
}

.carousel-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-card {
  margin: 0;
  padding: 2rem 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-align: left;
}

.testimonial-card::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testimonial-name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-accent);
}

.taskrabbit-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--color-white);
  text-decoration: underline;
}

.taskrabbit-link:hover {
  color: var(--color-orange);
}

/* Calendar */
.calendar-card {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.calendar-card p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.calendar-card iframe {
  border: 0;
  width: 100%;
  height: clamp(360px, 58vw, 520px);
  min-height: 360px;
  border-radius: 6px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-primary);
}

.faq-question::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--color-orange);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--color-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(224, 112, 32, 0.16) 0%, transparent 42%),
    linear-gradient(135deg, var(--color-primary) 0%, #2a2a2a 100%);
  color: var(--color-white);
  text-align: center;
  padding: 4rem 1rem;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.045) 0,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 18px
  );
  opacity: 0.36;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}


.cta-reviews {
  position: relative;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.cta-reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0.5);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.cta-reviews:hover::after,
.cta-reviews:focus-visible::after {
  transform: scaleX(1);
}

/* Footer */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #202020 0%, var(--color-primary) 100%);
  color: var(--color-secondary);
  padding: 3rem 1rem 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 196, 130, 0.85), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.footer-brand p,
.footer-area {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-contact a {
  display: inline-block;
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.16s ease, transform 0.16s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-orange);
  transform: translateX(3px);
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-copy {
  text-align: center;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-radius: 0;
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
  }
}

/* Contact page */
.contact-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  text-align: center;
}

.contact-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: capitalize;
}

.contact-form-section {
  padding: 3rem 0 5rem;
  background: var(--color-surface);
}

.contact-form-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #e8f5e9;
  color: #1b5e20;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 1rem;
}

.form-success.visible {
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.15);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  body.has-mobile-cta {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .site-header,
  .header-inner {
    height: var(--header-height);
  }

  .logo img {
    height: 25px;
    max-width: 76vw;
  }

  .site-nav {
    top: var(--header-height);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .nav-links a {
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .hero {
    min-height: calc(82svh - var(--header-height));
  }

  .hero-content {
    padding: 2rem 0.75rem 3rem;
  }

  .hero-eyebrow {
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 30ch;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions .btn {
    min-width: min(100%, 170px);
    padding-inline: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-intro {
    margin-bottom: 1.5rem;
  }

  .section-intro p {
    font-size: 0.98rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0 0.75rem;
  }

  .gallery-item {
    width: 100%;
    max-width: none;
    flex: none;
    aspect-ratio: 1.1 / 1;
  }

  .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 0.65rem) / 2);
  }

  .gallery-item span {
    min-height: 3.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .split {
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
  }

  .split > div {
    width: 100%;
  }

  .split > div:first-child {
    text-align: center;
  }

  .split .prose {
    margin-inline: auto;
  }

  .split .btn {
    width: min(100%, 280px);
  }

  .split img {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.35rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .calendar-card {
    width: min(100% - 1rem, 960px);
    padding: 0.5rem;
  }

  .calendar-card iframe {
    min-height: 420px;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
  }

  .cta-band {
    padding: 3rem 1rem;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .mobile-cta {
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}
