:root {
  --bg: #FDF2ED;
  --surface: #ffffff;
  --text: #3A3A3A;
  --muted: #6b6662;
  --primary: #FF6F3C;
  --accent: #E9C46A;
  --secondary: #1CA7A6;
  --line: #f1d8cf;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: var(--secondary);
}

.wrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 1.5rem) 2rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 242, 0.95);
  backdrop-filter: blur(5px);
  margin-bottom: 2rem;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

header > p:first-child {
  margin: 0.25rem 0 0.1rem;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0.2rem 0 0.2rem;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 60px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

header nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.23rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

nav a {
  text-decoration: none;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #3A3A3A;
}

nav > ul > li > a:not(.nav-cta) {
  position: relative;
  padding-bottom: 0.2rem;
}

nav > ul > li > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav > ul > li > a:hover:not(.nav-cta)::after,
nav > ul > li > a:focus-visible:not(.nav-cta)::after {
  transform: scaleX(1);
}

.nav-item-services {
  position: relative;
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.35rem 0.35rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.08);
  z-index: 30;
}

.nav-submenu li {
  margin: 0;
}

.nav-submenu a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: #f7fffd;
  color: var(--secondary);
}

.nav-item-services:hover .nav-submenu,
.nav-item-services:focus-within .nav-submenu,
.nav-item-services.is-open .nav-submenu {
  display: flex;
}

.nav-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Lato", sans-serif;
  line-height: 1.2;
  color: #3A3A3A;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0.4rem 0 1rem;
}

h2 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  margin-top: 0.2rem;
}

.tagline {
  color: var(--muted);
  margin: 0 0 0.35rem;
  font-style: italic;
  flex-basis: 100%;
  order: 3;
}

main > p {
  max-width: 70ch;
}

.card {
  border: 1px solid var(--line);
  padding: 1.35rem;
  margin: 1rem 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
}

.home-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
  align-items: center;
  margin: 0.2rem 0 1.4rem;
}

.home-hero > div {
  max-width: 62ch;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.05rem;
  flex-wrap: wrap;
}

.hero-rotator {
  margin: 0.1rem 0 0.6rem;
  font-family: "Poppins", "Lato", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -0.01em;
}

#hero-rotate-text {
  display: inline-block;
  min-width: 8ch;
  transition: opacity 0.18s ease;
}

#hero-rotate-text.is-changing {
  opacity: 0.2;
}

.hero-link {
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  text-decoration: none;
}

.hero-link:hover,
.hero-link:focus-visible {
  border-color: var(--secondary);
  color: var(--secondary);
}

.hero-note {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(81, 42, 12, 0.1);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.image-placeholder {
  width: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed var(--secondary);
  color: var(--secondary);
  background: linear-gradient(135deg, #fff 0%, #f5fffd 100%);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.8rem;
}

.hero-image-placeholder {
  aspect-ratio: 4 / 3;
}

.owner-image-placeholder {
  aspect-ratio: 4 / 3;
}

.coverage-image-placeholder {
  aspect-ratio: 16 / 9;
}

.hero-contact {
  margin: 0;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--secondary);
  font-weight: 700;
  text-align: center;
}

.coverage-section {
  margin-top: 1.1rem;
}

.coverage-map {
  margin: 0.85rem auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  max-width: 760px;
}

.coverage-map img {
  display: block;
  width: 100%;
  height: auto;
}

.coverage-form {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.coverage-form h3 {
  margin: 0 0 0.45rem;
  color: var(--primary);
}

.coverage-form p {
  margin: 0.4rem 0 0.7rem;
}

.coverage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.8rem;
}

.coverage-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.coverage-form input[type="text"],
.coverage-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.65rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.coverage-form-optin label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 400;
}

.coverage-form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.coverage-form-status {
  min-height: 1.2rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0.4rem 0 1.2rem;
}

.trust-strip p {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
}

.trust-strip strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", "Lato", sans-serif;
  margin-bottom: 0.08rem;
}

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

.steps-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  background: #fff;
}

.steps-grid h3 {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 1.05rem;
}

.steps-grid p {
  margin: 0;
}

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

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
}

.testimonial-quote {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-pricing p {
  margin: 0.35rem 0;
}

.home-services {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%);
  border-color: var(--line);
  color: var(--text);
}

.home-services h2 {
  color: var(--text);
}

.home-services > p {
  margin: 0.2rem 0 0.95rem;
  color: var(--muted);
}

.home-services a {
  color: var(--secondary);
}

.home-services .service-option {
  background: #fff;
  border-color: var(--line);
}

.home-services .service-option h3 {
  color: var(--primary);
}

.home-services .service-option p {
  color: var(--text);
}

.service-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-option {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fff;
}

.service-option h3 {
  margin: 0 0 0.3rem;
  color: var(--primary);
  font-size: 1.05rem;
}

.service-option p {
  margin: 0;
}

.local-owner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
}

.local-owner h2 {
  margin-bottom: 0.4rem;
}

.local-owner p {
  margin-top: 0.35rem;
}

.local-owner figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.local-owner img {
  width: 100%;
  height: auto;
  display: block;
}

.owner-photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px dashed var(--secondary);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  font-weight: 700;
  margin: 0.95rem 0 0.75rem;
  background: #f7fffd;
}

.owner-photo-shared {
  max-width: 360px;
  margin: 0.95rem auto 0.75rem;
}

.owner-photo-shared img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(81, 42, 12, 0.08);
}

.owner-bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.owner-bio {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
}

.owner-bio h3 {
  margin: 0 0 0.35rem;
  color: var(--primary);
}

.owner-bio p {
  margin: 0;
}

.final-cta {
  border-color: var(--secondary);
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%);
}

.final-cta h2 {
  margin-bottom: 0.45rem;
}

.final-cta p {
  margin-top: 0.3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
  text-align: left;
}

.pricing-card h2 {
  color: var(--primary);
  margin: 0 0 0.8rem;
}

.pricing-rate {
  color: var(--secondary);
  font-family: "Poppins", "Lato", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}

.pricing-subhead {
  color: var(--secondary);
  font-family: "Poppins", "Lato", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.pricing-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  color: var(--secondary);
  font-size: 1rem;
}

.pricing-card ul li {
  margin-bottom: 0.65rem;
}

.pricing-card p a {
  color: var(--secondary);
  font-weight: 700;
}

.pud-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: stretch;
  margin: 0.2rem 0 1.1rem;
}

.pud-hero-content {
  max-width: 62ch;
}

.pud-eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.pud-lead {
  margin: 0.35rem 0 0.75rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.pud-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.pud-price {
  margin: 0;
  color: var(--secondary);
  font-family: "Poppins", "Lato", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.08;
}

.pud-min {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.pud-points {
  margin: 0.75rem 0 0.9rem;
  padding-left: 1.15rem;
}

.pud-points li {
  margin-bottom: 0.45rem;
}

.pud-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0;
}

.pud-hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(81, 42, 12, 0.1);
  align-self: stretch;
  justify-self: end;
  height: 100%;
  display: grid;
  place-items: center;
}

.pud-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pud-hero-media.no-crop img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pud-hero-media.no-crop {
  overflow: visible;
  padding: 0.5rem;
}

.dropoff-hero-media {
  background: transparent;
  border: 0;
  box-shadow: none;
  place-items: stretch;
}

.dropoff-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pud-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0.4rem 0 1.1rem;
}

.pud-proof-strip p {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 8px 20px rgba(81, 42, 12, 0.06);
}

.pud-proof-strip strong {
  display: block;
  color: var(--primary);
  font-family: "Poppins", "Lato", sans-serif;
}

.pud-proof-strip span {
  color: var(--muted);
}

.pud-steps {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.pud-steps li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem 0.85rem;
}

.pud-steps h3 {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 1.03rem;
}

.pud-steps p {
  margin: 0;
}

.pud-final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%);
  border-color: var(--secondary);
}

.how-it-works-showcase {
  position: relative;
  margin: 1.1rem 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8e4d4;
  min-height: 400px;
}

.how-it-works-showcase > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.how-it-works-panel {
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: min(420px, calc(100% - 2rem));
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 1rem 0.95rem;
  box-shadow: 0 16px 30px rgba(40, 30, 20, 0.12);
}

.how-it-works-panel h2 {
  margin: 0 0 0.85rem;
}

.how-it-works-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.how-it-works-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.7rem;
  align-items: start;
}

.how-step-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Poppins", "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f3120;
  background: #dcefe2;
}

.how-it-works-list li:nth-child(2) .how-step-number {
  background: #f2efd6;
}

.how-it-works-list li:nth-child(3) .how-step-number {
  background: #d9e8f8;
}

.how-it-works-list li:nth-child(4) .how-step-number {
  background: #eadff6;
}

.how-it-works-list li:nth-child(5) .how-step-number {
  background: #f6e3d7;
}

.how-it-works-list p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.24;
  color: var(--text);
}

.how-it-works-list li > div p + p {
  margin-top: 0.45rem;
}

.self-serve-panel {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
}

.self-serve-collage {
  margin: 1rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.8rem;
}

.self-serve-hero .pud-hero-content {
  align-self: center;
}

.self-serve-collage-right {
  margin: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-self: stretch;
}

.self-serve-collage figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
  background: var(--surface);
}

.self-serve-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.self-serve-collage-main {
  min-height: 360px;
}

.self-serve-collage-tiles {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
}

.self-serve-collage-right .self-serve-collage-main {
  min-height: 250px;
}

.self-serve-collage-right .self-serve-collage-tiles {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: none;
}

.self-serve-panel h2 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0.5rem;
  text-align: left;
}

.pricing-table th {
  color: var(--primary);
  font-family: "Poppins", "Lato", sans-serif;
  font-size: 0.95rem;
}

.addons-section {
  margin-top: 1.1rem;
}

.services-addons-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(81, 42, 12, 0.06);
}

.addons-section h2 {
  color: var(--primary);
}

.pickup-addons-section h2 {
  color: var(--text);
}

.pickup-addons-section > h3 {
  color: var(--primary);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.self-serve-addon-grid {
  grid-template-columns: 1fr;
}

.addons-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
  text-align: left;
  position: relative;
}

.addons-card h3 {
  margin: 0 0 0.8rem;
  color: var(--primary);
}

.addons-rate {
  margin: 0.25rem 0 0.55rem;
  color: var(--secondary);
  font-family: "Poppins", "Lato", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 700;
  line-height: 1.1;
}

.addons-card ul {
  list-style: disc;
  text-align: left;
  padding-left: 1.15rem;
  color: var(--secondary);
}

.addons-note {
  margin-top: 0.65rem;
  color: var(--secondary);
  font-weight: 700;
}

.addons-footnote {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  margin: 0;
  font-size: 0.64rem;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.faq-item {
  margin: 0.8rem 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-family: "Poppins", "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 0.95rem 1.1rem 1rem;
}

.faq-answer h4 {
  margin: 1rem 0 0.45rem;
  color: var(--primary);
  font-family: "Poppins", "Lato", sans-serif;
}

.faq-answer p,
.faq-answer li {
  color: var(--text);
}

.faq-link-card {
  margin: 0.8rem 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(81, 42, 12, 0.06);
  padding: 1rem 1.1rem;
  font-family: "Poppins", "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.faq-link-card a {
  color: var(--secondary);
  font-weight: 600;
  font-style: italic;
}

.holiday-schedule {
  margin-left: 1rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.45;
}

.holiday-heading {
  margin: 0.45rem 0 0.55rem;
  font-weight: 700;
}

.holiday-group-title {
  margin: 1.15rem 0 0.3rem;
  font-family: "Poppins", "Lato", sans-serif;
  font-weight: 700;
}

.holiday-schedule ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.holiday-schedule li {
  margin: 0.18rem 0;
}

.contact-form {
  margin-top: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

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

.form-field {
  margin: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.form-help {
  margin: 0.15rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--secondary) 50%),
    linear-gradient(135deg, var(--secondary) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 10px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(28, 167, 166, 0.18);
}

.contact-form-actions {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-form-actions .nav-cta {
  min-width: 170px;
}

.contact-form-actions .form-help {
  margin: 0;
}

.contact-form-status {
  min-height: 1.2rem;
  margin: 0.6rem 0 0;
  font-weight: 700;
}

.cta {
  font-weight: 700;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 2.2rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.footer-social span {
  color: var(--text);
  font-weight: 700;
}

.footer-social a {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
}

.footer-social a svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--secondary);
  border-color: var(--secondary);
}

@media (max-width: 720px) {
  .wrap {
    padding: 0 1rem 1.2rem;
  }

  header.has-mobile-toggle {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  header.has-mobile-toggle nav {
    display: none;
    width: 100%;
    margin-left: 0;
  }

  header.has-mobile-toggle.menu-open nav {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem 0.8rem;
    padding: 0.45rem 0 0.75rem;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0.15rem 0 0.1rem 0.75rem;
    margin-top: 0.25rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 0.2rem;
  }

  .nav-item-services:hover .nav-submenu,
  .nav-item-services:focus-within .nav-submenu {
    display: none;
  }

  .nav-item-services.is-open .nav-submenu {
    display: flex;
  }

  .nav-submenu a {
    padding: 0.15rem 0;
  }

  .nav-cta {
    padding: 0.45rem 0.8rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-media {
    margin-top: 0.35rem;
  }

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

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

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

  .service-options-grid {
    grid-template-columns: 1fr;
  }

  .owner-bio-grid {
    grid-template-columns: 1fr;
  }

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

  .pud-hero {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pud-hero-media {
    order: -1;
    width: 75%;
    margin: 0 auto;
    max-width: none;
    justify-self: stretch;
  }

  .pud-hero-media img {
    height: auto;
  }

  .pud-proof-strip {
    grid-template-columns: 1fr;
  }

  .pud-steps li {
    padding: 0.75rem;
  }

  .how-it-works-showcase {
    min-height: 0;
  }

  .how-it-works-showcase > img {
    min-height: 220px;
  }

  .how-it-works-panel {
    position: static;
    width: auto;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    border-top: 1px solid var(--line);
    padding: 0.95rem 0.9rem;
  }

  .how-it-works-list p {
    font-size: 1.02rem;
  }

  .local-owner {
    grid-template-columns: 1fr;
  }

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

  .coverage-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 0.85rem;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 1.3rem 1rem 1rem;
  }

  .self-serve-panel {
    padding: 1rem;
  }

  .self-serve-collage {
    grid-template-columns: 1fr;
  }

  .self-serve-collage-main {
    min-height: 240px;
  }

  .self-serve-collage-tiles {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .self-serve-collage-right {
    order: -1;
    width: 56.25%;
    justify-self: center;
    grid-template-rows: none;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.65rem 0.4rem;
    font-size: 0.95rem;
  }
}
