:root {
  color-scheme: light;
  --ink: #1A222A;
  --muted: #5F6C75;
  --line: #DDE4E2;
  --paper: #F3F6F5;
  --white: #FFFFFF;
  --brand: #7E273E;
  --brand-dark: #56172A;
  --accent: #D6A84B;
  --accent-soft: #FBF3DF;
  --shadow: 0 20px 50px rgba(26, 34, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 20;
}

.skip-link:focus {
  left: 8px;
}

.wrap {
  width: min(100% - 24px, 1120px);
  margin: 0 auto;
}

.topbar {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 228, 226, 0.9);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.nav .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;
  padding: 7px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  text-decoration: none;
  font-weight: 900;
}

.logo img {
  width: 46px;
  flex: 0 0 auto;
}

.logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.95rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.menu-toggle {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  font-size: 0.9rem;
}

.menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  grid-column: 1 / -1;
  display: none;
  color: var(--ink);
  font-weight: 850;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(26, 34, 42, 0.08);
  overflow: hidden;
  z-index: 20;
}

.menu.is-open {
  display: grid;
}

.menu a {
  text-decoration: none;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.menu a:last-child {
  border-bottom: 0;
}

.button,
.button-secondary,
.phone-reveal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(26, 34, 42, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(126, 39, 62, 0.28);
}

.nav-quote {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 0.9rem;
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(86, 23, 42, 0.3);
}

.button-secondary,
.phone-reveal {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(126, 39, 62, 0.3);
}

.button-secondary:hover,
.phone-reveal:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(26, 34, 42, 0.16);
}

.phone-reveal-light {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 0.85rem;
  box-shadow: none;
}

.contact-choice {
  display: inline-grid;
  gap: 7px;
  width: min(100%, 250px);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-choice strong {
  padding: 0 4px;
  font-size: 0.88rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
}

.contact-call {
  background: var(--paper);
  color: var(--ink);
}

.contact-text {
  background: var(--brand);
  color: var(--white);
}

.topbar .contact-choice {
  width: auto;
  min-width: 190px;
  padding: 5px;
}

.topbar .contact-choice strong {
  display: none;
}

.topbar .contact-action {
  min-height: 30px;
  padding: 5px 8px;
  font-size: 0.85rem;
}

.actions .contact-choice {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.actions .contact-choice strong {
  display: none;
}

.actions .contact-actions {
  display: flex;
  gap: 10px;
}

.actions .contact-action {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 999px;
}

.footer-phone,
.footer .contact-choice {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  margin-top: 7px;
}

.footer .contact-choice {
  width: min(100%, 260px);
  box-shadow: none;
}

.footer .contact-call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero {
  background: radial-gradient(circle at 82% 8%, rgba(214, 168, 75, 0.24), transparent 28rem), linear-gradient(90deg, rgba(26, 34, 42, 0.96), rgba(86, 23, 42, 0.74)), url("assets/handyman-basement-remodel-greenwood.jpg") center / cover;
  color: var(--white);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: 24px;
  padding: 42px 0 34px;
}

.owner-panel {
  display: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 13vw, 4.9rem);
}

h2 {
  font-size: clamp(1.85rem, 9vw, 3rem);
}

h3 {
  font-size: 1.16rem;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 56px 0;
}

.section.white {
  background: var(--white);
}

.section.teal {
  background: var(--paper);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-head p,
.content p,
.quote-intro p,
.service p,
.area-link span,
.form-note {
  color: var(--muted);
}

.grid,
.services,
.areas,
.faq,
.price-grid {
  display: grid;
  gap: 14px;
}

.service,
.area-link,
details,
.price-card,
.quote-form {
  background: var(--white);
  border: 2px solid rgba(126, 39, 62, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(26, 34, 42, 0.11);
}

.service,
.area-link,
.price-card {
  padding: 20px;
}

.service strong,
.price-card strong {
  display: block;
  color: var(--brand);
  margin-bottom: 8px;
}

.service-link {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-link:hover {
  border-color: rgba(126, 39, 62, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(26, 34, 42, 0.15);
}

.service-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 4px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.9rem;
}

.service-directory {
  align-items: stretch;
}

.section-link {
  margin: 22px 0 0;
}

.section-link a {
  color: var(--brand);
  font-weight: 900;
}

.split {
  display: grid;
  gap: 26px;
}

.photo-grid {
  display: grid;
  gap: 12px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
}

.area-link {
  text-decoration: none;
  font-weight: 900;
}

.area-link span {
  display: block;
  margin-top: 6px;
  font-weight: 400;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.quote-wrap {
  display: grid;
  gap: 22px;
}

.quote-intro {
  max-width: 640px;
}

.quote-form {
  display: grid;
  gap: 13px;
  padding: 16px;
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.form-top {
  display: grid;
  gap: 2px;
  padding-bottom: 4px;
}

.form-top strong {
  font-size: 1.35rem;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #CBD5D2;
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

.quote-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(214, 168, 75, 0.28);
  border-color: var(--brand);
}

.quote-form .button {
  width: 100%;
}

.quote-form button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.93rem;
}

.form-status.is-success {
  color: #236245;
}

.form-status.is-error {
  color: var(--brand);
}

.company-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}

.cta {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}

.footer .wrap {
  display: grid;
  gap: 24px;
}

.footer a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-top: 7px;
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}

.page-hero .wrap {
  padding: 48px 0;
}

.content {
  max-width: 840px;
}

.content-wide {
  max-width: none;
}

.ad-body {
  padding-bottom: 78px;
}

.ad-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.ad-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 7px 0;
}

.ad-nav .logo img {
  width: 50px;
}

.ad-nav .logo span {
  font-size: 0.92rem;
}

.ad-nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ad-nav-actions .button,
.ad-nav-actions .phone-reveal {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.ad-nav-actions .contact-choice {
  width: auto;
  min-width: 146px;
  padding: 5px;
  box-shadow: none;
}

.ad-nav-actions .contact-choice strong {
  display: none;
}

.ad-nav-actions .contact-action {
  min-height: 32px;
  padding: 5px 8px;
  font-size: 0.84rem;
}

.ad-hero {
  background: radial-gradient(circle at 82% 2%, rgba(214, 168, 75, 0.18), transparent 22rem), linear-gradient(135deg, var(--ink), var(--brand-dark));
  color: var(--white);
  overflow: hidden;
}

.ad-hero .wrap {
  display: grid;
  gap: 22px;
  padding: 30px 0 36px;
}

.ad-hero-copy {
  display: grid;
  gap: 14px;
}

.ad-hero h1 {
  max-width: 780px;
  font-size: clamp(2.05rem, 7vw, 3.45rem);
  overflow-wrap: anywhere;
}

.ad-hero .lead {
  margin: 0;
  font-size: 1.04rem;
}

.ad-actions {
  display: grid;
  gap: 10px;
}

.ad-actions .button,
.ad-actions .phone-reveal {
  width: 100%;
}

.ad-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.ad-form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.ad-form-card .quote-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.ad-form-card .quote-form input,
.ad-form-card .quote-form select,
.ad-form-card .quote-form textarea {
  min-height: 44px;
  border-radius: 10px;
  padding: 10px 12px;
}

.ad-form-card .quote-form label {
  gap: 5px;
  font-size: 0.94rem;
}

.jotform-embed {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.jotform-embed iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 539px;
  border: 0;
}

.quote-wrap .jotform-embed,
.ad-form-card .jotform-embed {
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(26, 34, 42, 0.08);
}

.ad-form-card .jotform-embed {
  border: 0;
  box-shadow: none;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.guide-card {
  display: block;
  padding: 22px;
  border: 2px solid rgba(126, 39, 62, 0.16);
  border-radius: 16px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(26, 34, 42, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  border-color: rgba(126, 39, 62, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(26, 34, 42, 0.15);
}

.guide-card strong {
  display: block;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 8px 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-index-actions {
  margin-top: 22px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.guide-hero {
  padding-top: 34px;
}

.guide-hero-grid {
  display: grid;
  gap: 22px;
}

.guide-hero-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.guide-layout {
  display: grid;
  gap: 24px;
}

.guide-main {
  min-width: 0;
}

.direct-answer {
  margin: 0 0 26px;
  padding: 18px;
  border-left: 5px solid var(--brand);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.05rem;
}

.article-section {
  margin-top: 34px;
}

.article-section h2,
.guide-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.article-section h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
}

.article-section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.guide-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.guide-price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
}

.guide-price-table th,
.guide-price-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.guide-price-table th {
  background: var(--paper);
  color: var(--ink);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.guide-price-table tr:last-child td {
  border-bottom: 0;
}

.guide-faq {
  margin-top: 16px;
}

.guide-cta {
  margin-top: 38px;
  padding: 22px;
  border-radius: 16px;
  background: var(--brand-dark);
  color: var(--white);
}

.guide-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.guide-cta .eyebrow {
  color: var(--accent);
}

.related-guides {
  display: grid;
  gap: 10px;
}

.related-guides a,
.guide-side-link {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand);
  font-weight: 850;
  text-decoration: none;
}

.guide-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.guide-sidebar strong {
  font-size: 1.1rem;
}

.guide-sidebar p {
  margin: 0;
  color: var(--muted);
}

.simple-ad-form {
  grid-template-columns: 1fr;
  gap: 12px;
}

.simple-ad-form .form-top,
.simple-ad-form label,
.simple-ad-form .upload-box,
.simple-ad-form .review-message,
.simple-ad-form .form-status,
.simple-ad-form .button {
  grid-column: 1 / -1;
}

.ad-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ad-trust span {
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.ad-section {
  padding: 46px 0;
}

.ad-section.white {
  background: var(--white);
}

.ad-section.paper {
  background: var(--paper);
}

.ad-section.dark {
  background: var(--ink);
  color: var(--white);
}

.ad-section.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.ad-cards,
.ad-steps,
.ad-faq,
.ad-areas {
  display: grid;
  gap: 12px;
}

.ad-card,
.ad-step {
  padding: 20px;
  border: 2px solid rgba(126, 39, 62, 0.14);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(26, 34, 42, 0.09);
}

.ad-card strong,
.ad-step strong {
  display: block;
  color: var(--brand);
  margin-bottom: 6px;
}

.ad-card h3,
.ad-step h3 {
  margin-bottom: 8px;
}

.ad-card p,
.ad-step p,
.ad-section .section-head p {
  margin: 0;
  color: var(--muted);
}

.ad-areas a {
  color: var(--brand);
  font-weight: 900;
}

.ad-final {
  display: grid;
  gap: 16px;
}

.ad-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(26, 34, 42, 0.12);
}

.ad-mobile-cta .button,
.ad-mobile-cta .phone-reveal {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.92rem;
}

.ad-mobile-cta .contact-choice {
  width: 100%;
  padding: 4px;
  box-shadow: none;
}

.ad-mobile-cta .contact-choice strong {
  display: none;
}

.ad-mobile-cta .contact-actions {
  gap: 5px;
}

.ad-mobile-cta .contact-action {
  min-height: 34px;
  padding: 6px 7px;
  font-size: 0.82rem;
}

.drywall-hero {
  background: radial-gradient(circle at 82% 2%, rgba(214, 168, 75, 0.2), transparent 22rem), linear-gradient(135deg, var(--brand-dark), var(--ink));
}

.price-callout {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(214, 168, 75, 0.46);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.price-callout strong {
  color: var(--white);
  font-size: 1.16rem;
}

.price-callout span,
.local-note {
  color: rgba(255, 255, 255, 0.82);
}

.drywall-form .upload-box {
  padding: 14px;
  border: 2px dashed rgba(126, 39, 62, 0.35);
  border-radius: 14px;
  background: var(--accent-soft);
}

.drywall-form .upload-box input {
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.drywall-form .upload-box span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.featured-price {
  border-color: rgba(126, 39, 62, 0.28);
  background: linear-gradient(180deg, var(--accent-soft), var(--white));
}

.featured-price h3 {
  color: var(--brand);
  font-size: 1.55rem;
}

.drywall-price-grid {
  margin-bottom: 16px;
}

.photo-prompt {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: var(--white);
  box-shadow: var(--shadow);
}

.photo-prompt strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.photo-prompt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.photo-prompt .button {
  background: var(--white);
  color: var(--brand);
}

.lvp-hero {
  background: radial-gradient(circle at 84% 4%, rgba(214, 168, 75, 0.22), transparent 22rem), linear-gradient(135deg, var(--ink), var(--brand-dark));
}

.lighting-hero {
  background: radial-gradient(circle at 82% 4%, rgba(214, 168, 75, 0.22), transparent 22rem), linear-gradient(135deg, var(--brand-dark), var(--ink));
}

.selling-hero {
  background: radial-gradient(circle at 84% 4%, rgba(214, 168, 75, 0.2), transparent 22rem), linear-gradient(135deg, var(--ink), var(--brand-dark));
}

.calculator-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.calculator-card label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.calculator-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #CBD5D2;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}

.calculator-card input:focus {
  outline: 3px solid rgba(214, 168, 75, 0.28);
  border-color: var(--brand);
}

.calculator-result {
  display: block;
  min-height: 62px;
  padding: 14px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.2;
}

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

.lvp-form .upload-box {
  padding: 14px;
  border: 2px dashed rgba(126, 39, 62, 0.35);
  border-radius: 14px;
  background: var(--accent-soft);
}

.lvp-form .upload-box input {
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.lvp-form .upload-box span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.lighting-form .upload-box {
  padding: 14px;
  border: 2px dashed rgba(126, 39, 62, 0.35);
  border-radius: 14px;
  background: var(--accent-soft);
}

.lighting-form .upload-box input {
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
}

.lighting-form .upload-box span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-message {
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  border: 1px solid rgba(214, 168, 75, 0.5);
  font-weight: 850;
}

.lvp-examples {
  display: grid;
  gap: 10px;
}

.lvp-examples div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.lvp-examples strong {
  color: var(--brand);
}

.lvp-examples span {
  color: var(--muted);
}

.lvp-examples b {
  color: var(--ink);
  font-size: 1.1rem;
}

.lvp-page #quote {
  padding-top: 58px;
  padding-bottom: 64px;
}

.lvp-page #quote .quote-wrap {
  align-items: start;
  gap: 28px;
}

.lvp-page #quote .quote-intro {
  max-width: 560px;
}

.quoted-list .ad-card {
  box-shadow: none;
}

.landing-footer {
  padding: 22px 0 94px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.landing-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.landing-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (min-width: 620px) {
  .actions,
  .trust-row,
  .photo-grid,
  .services,
  .areas,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-row {
    display: grid;
  }

  .quote-form {
    padding: 24px;
  }

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

  .quote-form .form-top,
  .quote-form label:nth-of-type(4),
  .quote-form label:nth-of-type(5),
  .quote-form label:nth-of-type(6),
  .quote-form .form-status,
  .quote-form .button {
    grid-column: 1 / -1;
  }

  .ad-actions,
  .ad-trust,
  .ad-cards,
  .ad-steps,
  .ad-areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-actions {
    display: flex;
  }

  .ad-actions .button,
  .ad-actions .phone-reveal {
    width: auto;
  }

  .ad-hero-copy .ad-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .drywall-form .upload-box {
    grid-column: 1 / -1;
  }

  .lvp-form .upload-box,
  .lvp-form label:nth-of-type(11),
  .lvp-form label:nth-of-type(12) {
    grid-column: 1 / -1;
  }

  .lighting-form .upload-box,
  .lighting-form label:nth-of-type(13),
  .lighting-form label:nth-of-type(14),
  .lighting-form .review-message {
    grid-column: 1 / -1;
  }

  .lvp-examples div {
    grid-template-columns: 1fr 0.8fr 0.9fr;
    align-items: center;
  }
}

@media (min-width: 880px) {
  .wrap {
    width: min(100% - 40px, 1120px);
  }

  .nav .wrap {
    display: flex;
    min-height: 76px;
    gap: 22px;
    padding: 0;
  }

  .nav {
    position: sticky;
    top: 0;
  }

  .logo img {
    width: 78px;
  }

  .nav-actions {
    order: 3;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    grid-column: auto;
    order: 2;
    display: flex;
    align-items: center;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    gap: 10px;
  }

  .menu a {
    padding: 8px 4px;
    border-bottom: 0;
    color: var(--muted);
  }

  .hero {
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  .hero .wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    gap: 42px;
    align-items: end;
    padding: 76px 0 46px;
  }

  .owner-panel {
    align-self: stretch;
    display: flex;
    align-items: end;
    justify-content: center;
  }

  .owner-panel img {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    grid-template-columns: 1fr minmax(260px, 540px);
    align-items: end;
    gap: 28px;
  }

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

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

  .guide-card:first-child {
    grid-column: 1 / -1;
  }

  .guide-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
  }

  .guide-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
  }

  .guide-sidebar {
    position: sticky;
    top: 98px;
  }

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

  .split,
  .quote-wrap {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 38px;
  }

  .footer .wrap {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
  }

  .ad-body {
    padding-bottom: 0;
  }

  .ad-nav {
    position: static;
  }

  .ad-nav .wrap {
    min-height: 70px;
  }

  .ad-nav .logo img {
    width: 68px;
  }

  .ad-hero .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    align-items: center;
    gap: 36px;
    padding: 54px 0;
  }

  .ad-hero h1 {
    font-size: clamp(2.55rem, 5vw, 4rem);
  }

  .ad-hero-copy {
    align-content: center;
  }

  .ad-form-card {
    padding: 20px;
  }

  .ad-section {
    padding: 64px 0;
  }

  .simple-ad-form {
    max-width: 540px;
    margin-left: auto;
  }

  .ad-form-card .simple-ad-form {
    max-width: none;
    margin-left: 0;
  }

  .lvp-page #quote {
    padding-top: 72px;
    padding-bottom: 78px;
  }

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

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

  .ad-faq {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-final {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .ad-mobile-cta {
    display: none;
  }

  .landing-footer {
    padding-bottom: 22px;
  }
}
