:root {
  --ink: #10251f;
  --ink-deep: #091a16;
  --cream: #f4efe5;
  --paper: #fbf9f4;
  --white: #fffefa;
  --gold: #e2a449;
  --gold-dark: #b97822;
  --rust: #a54d2d;
  --sage: #aabaaa;
  --muted: #617069;
  --line: rgba(16, 37, 31, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 80px rgba(18, 32, 27, 0.12);
  --radius: 3px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

button,
summary,
label {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  color: white;
  background: var(--ink);
  border-radius: 2px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 80px, 1440px);
  height: 92px;
  transform: translateX(-50%);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-type {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.brand-type strong {
  font-size: 14px;
  font-weight: 700;
}

.brand-type > span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  position: relative;
  opacity: 0.9;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: width 180ms ease;
  background: var(--gold);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  border: 0;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 19px;
  margin-left: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 10px;
}

.button-dark {
  justify-self: end;
  color: white;
  background: rgba(10, 28, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.button-primary {
  color: var(--ink-deep);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(9, 24, 20, 0.18);
}

.button-primary:hover {
  background: #ecb560;
  box-shadow: 0 15px 38px rgba(9, 24, 20, 0.25);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  height: min(91vh, 900px);
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/tampa-handyman-hero-v2.jpg");
  background-position: 50% center;
  background-size: cover;
  animation: hero-scale 1.4s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 24, 19, 0.94) 0%, rgba(7, 26, 21, 0.8) 35%, rgba(7, 26, 21, 0.18) 63%, rgba(7, 26, 21, 0.06) 100%),
    linear-gradient(0deg, rgba(8, 24, 20, 0.5) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1440px);
  margin: 70px auto 0;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 25px 0 23px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.3vw, 98px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.insured-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.insured-note svg {
  width: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76px;
  color: var(--ink);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border: 0;
}

.trust-item svg,
.quote-assurances svg,
.price-benefit svg,
.footer-credentials svg {
  width: 18px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell {
  width: min(100% - 80px, 1260px);
  margin-inline: auto;
}

.intro {
  padding-block: 105px 118px;
}

.section-label span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label span::after {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 95px;
  margin-top: 40px;
}

.intro h2,
.services h2,
.process h2,
.pricing h2,
.quote-intro h2,
.service-area h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.1vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

h2 em {
  color: var(--rust);
  font-weight: 400;
}

.intro-copy {
  max-width: 530px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.intro-copy p {
  margin: 0 0 20px;
}

.intro-copy p:first-child {
  color: #32453e;
  font-size: 19px;
}

.services {
  width: 100%;
  max-width: none;
  padding: 110px max(40px, calc((100% - 1260px) / 2)) 85px;
  color: white;
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.section-label-light {
  margin-bottom: 30px;
  color: var(--gold);
}

.services h2 em,
.pricing h2 em,
.service-area h2 em,
.final-cta h2 em {
  color: var(--gold);
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 15px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 42px 38px 38px;
  overflow: hidden;
  background: var(--ink);
}

.service-card::after {
  position: absolute;
  right: -65px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  content: "";
  transition: transform 300ms ease;
  opacity: 0.1;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-card-featured {
  background: #17352c;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-number {
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--serif);
  font-size: 12px;
}

.service-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 43px 0 30px;
  place-items: center;
  color: var(--gold);
  background: rgba(226, 164, 73, 0.08);
  border: 1px solid rgba(226, 164, 73, 0.22);
  border-radius: 50%;
}

.service-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.service-card p {
  min-height: 76px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-note {
  margin: 33px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  text-align: center;
}

.process {
  padding-block: 112px 125px;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 80px;
  margin-top: 38px;
}

.process-heading > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.75;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 68px;
  margin-top: 78px;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: 38px;
  left: 70px;
  right: 70px;
  height: 1px;
  content: "";
  background: var(--line);
}

.step {
  position: relative;
  z-index: 1;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82px;
  height: 82px;
  margin-bottom: 27px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.step-top > span {
  position: absolute;
  top: -8px;
  left: -5px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.step-top svg {
  width: 38px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  color: var(--ink);
  font-size: 23px;
}

.step p {
  max-width: 315px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 25, 20, 0.95), rgba(8, 25, 20, 0.78)),
    url("assets/tampa-handyman-hero-v2.jpg") center 38% / cover;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 100px;
  min-height: 650px;
  padding-block: 90px;
}

.pricing-copy {
  max-width: 640px;
}

.pricing-copy p {
  max-width: 530px;
  margin: 28px 0 28px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  color: var(--gold);
  border-bottom: 1px solid rgba(226, 164, 73, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card {
  padding: 42px 42px 39px;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.quote-mark {
  height: 43px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 70px;
  line-height: 1;
}

blockquote {
  margin: 14px 0 33px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.price-rule {
  height: 1px;
  margin-bottom: 22px;
  background: var(--line);
}

.price-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #52625c;
  font-size: 12px;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-block: 120px 130px;
}

.quote-intro {
  position: sticky;
  top: 42px;
  align-self: start;
}

.quote-intro .section-label {
  margin-bottom: 35px;
}

.quote-intro p {
  max-width: 410px;
  margin: 28px 0;
  color: var(--muted);
}

.quote-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.quote-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52635c;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.quote-form-wrap {
  min-height: 630px;
  padding: 38px 44px 43px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(26, 42, 36, 0.09);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #7a857f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-label strong {
  color: var(--ink);
}

.progress-track {
  height: 2px;
  margin-top: 13px;
  overflow: hidden;
  background: #e9ece8;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  transition: width 250ms ease;
  background: var(--gold-dark);
}

.quote-form {
  margin-top: 34px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.is-active {
  display: block;
  animation: step-in 300ms ease both;
}

.form-step legend {
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
  font-family: var(--serif);
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.form-step legend .optional-note {
  color: #87928c;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-hint {
  margin: 0 0 27px;
  color: #77827d;
  font-size: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  align-items: center;
  gap: 11px;
  min-height: 94px;
  padding: 15px;
  cursor: pointer;
  transition:
    border 160ms ease,
    background 160ms ease,
    transform 160ms ease;
  background: #fdfcf9;
  border: 1px solid #dfe3df;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: #a5b2ac;
}

.choice-card:has(input:checked) {
  background: #f2f6f2;
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--rust);
  background: rgba(165, 77, 45, 0.08);
  border-radius: 50%;
}

.choice-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.3;
}

.choice-card small {
  display: block;
  margin-top: 2px;
  color: #7f8a85;
  font-size: 9px;
  line-height: 1.35;
}

.choice-check {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #b9c1bd;
  border-radius: 50%;
}

.choice-card input:checked ~ .choice-check {
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: inset 0 0 0 2px white;
}

.choice-card:has(input:focus-visible),
.pill-options label:has(input:focus-visible) span,
.upload-zone:has(input:focus-visible) {
  outline: 3px solid var(--gold-dark);
  outline-offset: 3px;
}

.field-group {
  margin-bottom: 23px;
}

.field-group label,
.field-label {
  display: block;
  margin-bottom: 7px;
  color: #41524b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group label span {
  color: #8e9893;
  font-weight: 500;
  text-transform: none;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  outline: 0;
  background: #fdfcf9;
  border: 1px solid #d8ded9;
  border-radius: 1px;
}

.field-group textarea {
  min-height: 115px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(226, 164, 73, 0.12);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #a4ada8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 15px;
}

.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-options label {
  cursor: pointer;
}

.pill-options input {
  position: absolute;
  opacity: 0;
}

.pill-options span {
  display: inline-flex;
  padding: 9px 13px;
  color: #596760;
  border: 1px solid #d7ddd9;
  border-radius: 30px;
  font-size: 11px;
}

.pill-options input:checked + span {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 30px;
  cursor: pointer;
  transition:
    background 160ms ease,
    border 160ms ease;
  text-align: center;
  background: #fbfaf6;
  border: 1px dashed #aeb9b3;
}

.upload-zone:hover,
.upload-zone.is-dragging {
  background: #f4f7f3;
  border-color: var(--gold-dark);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 17px;
  place-items: center;
  color: var(--rust);
  background: rgba(165, 77, 45, 0.08);
  border-radius: 50%;
}

.upload-icon svg {
  width: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-zone strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.upload-zone small {
  margin-top: 5px;
  color: #8b9590;
  font-size: 10px;
}

.consent-check {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 9px;
  align-items: start;
  color: #6f7b75;
  font-size: 10px;
  line-height: 1.5;
}

.consent-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ink);
}

.form-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 54px;
  margin-top: 30px;
}

.button-back {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  padding: 8px 0;
  cursor: pointer;
  color: #68766f;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-back svg {
  width: 18px;
  margin-right: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-next,
.button-submit {
  min-width: 175px;
}

.form-error {
  min-height: 18px;
  margin-top: 15px;
  color: #a33d25;
  font-size: 11px;
  font-weight: 600;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 530px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  color: var(--gold-dark);
}

.success-icon svg {
  width: 80px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  margin: 25px 0 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.form-success p {
  max-width: 430px;
  color: var(--muted);
}

.service-area {
  color: white;
  background: var(--ink);
}

.service-area-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
  min-height: 510px;
  padding-block: 80px;
}

.area-copy p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.56);
}

.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neighborhoods span {
  padding: 13px 17px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 16px;
}

.neighborhoods span:nth-child(2),
.neighborhoods span:nth-child(5),
.neighborhoods span:nth-child(8) {
  color: var(--gold);
  border-color: rgba(226, 164, 73, 0.33);
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  padding-block: 115px 130px;
}

.faq-heading h2 {
  margin-top: 38px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 18px;
}

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

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 1px;
  content: "";
  transition: transform 180ms ease;
  background: var(--rust);
}

.faq summary span::after {
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 660px;
  margin: -4px 50px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 515px;
  overflow: hidden;
  place-items: center;
  color: white;
  background:
    linear-gradient(rgba(8, 27, 21, 0.9), rgba(8, 27, 21, 0.93)),
    url("assets/tampa-handyman-hero-v2.jpg") center 55% / cover;
}

.final-cta::before {
  position: absolute;
  width: 440px;
  height: 440px;
  content: "";
  opacity: 0.25;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.final-cta::after {
  position: absolute;
  width: 540px;
  height: 540px;
  content: "";
  opacity: 0.12;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow-light {
  display: block;
  margin-bottom: 23px;
}

.final-cta h2 {
  margin-bottom: 35px;
}

.site-footer {
  padding: 67px max(40px, calc((100% - 1260px) / 2)) 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #071712;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 45px;
}

.brand-footer {
  color: white;
}

.footer-top > p {
  max-width: 320px;
  margin: 0;
  font-size: 12px;
}

.footer-quote {
  padding-bottom: 4px;
  color: var(--gold);
  border-bottom: 1px solid rgba(226, 164, 73, 0.45);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-quote span {
  margin-left: 8px;
}

.footer-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-credentials span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credentials span:last-child {
  border: 0;
}

.footer-legal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 27px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  line-height: 1.6;
}

.footer-legal p {
  max-width: 840px;
  margin: 0;
}

.footer-legal > span {
  white-space: nowrap;
}

.mobile-cta {
  display: none;
}

.reveal {
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  opacity: 0;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

@keyframes hero-scale {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes step-in {
  from {
    transform: translateX(12px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .site-header,
  .hero-content {
    width: min(100% - 48px, 1440px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .section-shell {
    width: min(100% - 48px, 1260px);
  }

  .intro-grid,
  .section-heading,
  .process-heading,
  .pricing-inner,
  .quote-section,
  .service-area-inner,
  .faq {
    gap: 55px;
  }

  .service-card {
    min-height: 515px;
    padding-inline: 25px;
  }

  .quote-section {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .quote-form-wrap {
    padding-inline: 30px;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(67px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    width: calc(100% - 36px);
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-mark svg {
    width: 27px;
  }

  .hero {
    min-height: 720px;
    height: 92svh;
    align-items: center;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(6, 23, 18, 0.98) 8%, rgba(7, 25, 20, 0.73) 58%, rgba(7, 25, 20, 0.1) 100%),
      linear-gradient(90deg, rgba(6, 23, 18, 0.6), transparent);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 76px auto 0;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(46px, 13vw, 66px);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 26px;
  }

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

  .insured-note {
    display: none;
  }

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

  .trust-item {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .intro,
  .process,
  .quote-section,
  .faq {
    padding-block: 78px 85px;
  }

  .intro-grid,
  .section-heading,
  .process-heading,
  .pricing-inner,
  .quote-section,
  .service-area-inner,
  .faq {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-grid {
    margin-top: 31px;
  }

  .intro h2,
  .services h2,
  .process h2,
  .pricing h2,
  .quote-intro h2,
  .service-area h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .intro-copy {
    padding: 0;
  }

  .services {
    padding: 79px 20px 65px;
  }

  .section-heading > p {
    margin: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card {
    min-height: 0;
    padding: 35px 28px 36px;
  }

  .service-icon {
    margin: 30px 0 24px;
  }

  .service-card p {
    min-height: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 45px;
  }

  .steps::before {
    top: 45px;
    right: auto;
    bottom: 45px;
    left: 41px;
    width: 1px;
    height: auto;
  }

  .step {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 23px;
  }

  .step-top {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step h3 {
    align-self: end;
    margin: 0;
  }

  .step p {
    align-self: start;
  }

  .pricing-inner,
  .service-area-inner {
    min-height: 0;
    padding-block: 78px;
  }

  .price-card {
    padding: 34px 27px;
  }

  blockquote {
    font-size: 22px;
  }

  .quote-intro {
    position: static;
  }

  .quote-form-wrap {
    min-height: 0;
    margin-inline: -10px;
    padding: 28px 20px 30px;
  }

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

  .choice-card {
    min-height: 79px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-step legend {
    font-size: 27px;
  }

  .button-submit {
    min-width: 0;
    padding-inline: 18px;
    font-size: 9px;
  }

  .service-area-inner {
    gap: 40px;
  }

  .faq {
    gap: 45px;
  }

  .faq-heading h2 {
    margin-top: 27px;
  }

  .final-cta {
    min-height: 480px;
    padding: 70px 20px;
  }

  .site-footer {
    padding: 55px 20px 27px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-credentials {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .footer-credentials span {
    justify-content: flex-start;
    border: 0;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 3px;
    box-shadow: 0 7px 30px rgba(6, 20, 16, 0.3);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-cta.is-hidden {
    transform: translateY(calc(140% + env(safe-area-inset-bottom, 0px)));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 42px;
  }

  .trust-item {
    padding-inline: 8px;
    font-size: 10px;
  }

  .section-shell {
    width: calc(100% - 30px);
  }

  .services {
    padding-inline: 15px;
  }

  .quote-form-wrap {
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

.success-page {
  min-height: 100vh;
  padding: 0;
  color: white;
  background:
    linear-gradient(rgba(7, 24, 19, 0.93), rgba(7, 24, 19, 0.95)),
    url("assets/tampa-handyman-hero-v2.jpg") center / cover;
}

.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.success-screen > .brand {
  margin-bottom: 35px;
}

.success-card {
  width: min(100%, 620px);
  padding: 60px 45px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.success-card .success-icon {
  display: flex;
  justify-content: center;
}

.success-card .eyebrow {
  display: block;
  margin-top: 20px;
}

.success-card h1 {
  margin: 15px 0 20px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.success-card h1 em {
  color: var(--rust);
  font-weight: 400;
}

.success-card p {
  max-width: 440px;
  margin: 0 auto 30px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .success-card {
    padding: 42px 24px;
  }
}
