/* Lucero's Handyman Repair */
:root {
  --ink: #17251d;
  --ink-soft: #33463b;
  --paper: #f5f2ea;
  --paper-warm: #ebe5d8;
  --white: #ffffff;
  --accent: #d7833b;
  --accent-dark: #ad6227;
  --sage: #9eae9f;
  --line: rgba(23, 37, 29, 0.14);
  --shadow: 0 24px 60px rgba(23, 37, 29, 0.14);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p {
  color: var(--ink-soft);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e7a66f;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(245, 242, 234, 0.91);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 37, 29, 0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand img {
  border-radius: 13px;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 1.08rem;
  line-height: 1.05;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.footer-links a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(23, 37, 29, 0.13);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #263a2e;
  box-shadow: 0 14px 26px rgba(23, 37, 29, 0.17);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.86rem;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button-nextdoor {
  color: var(--ink);
  border-color: rgba(23, 37, 29, 0.22);
  background: rgba(255,255,255,0.42);
  box-shadow: none;
}

.button-nextdoor:hover {
  color: var(--white);
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 110px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -130px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(215, 131, 59, 0.13);
  filter: blur(1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 70px;
  align-items: center;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: rotate(-45deg);
}

.hero-panel {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.tool-illustration {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 131, 59, 0.34), transparent 28%),
    linear-gradient(145deg, #21352a, #0e1812);
}

.tool-illustration::before,
.tool-illustration::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.tool-illustration::before {
  right: -110px;
  bottom: -90px;
  width: 340px;
  height: 340px;
}

.tool-illustration::after {
  right: -40px;
  bottom: -25px;
  width: 190px;
  height: 190px;
}

.house-line {
  position: absolute;
  top: 92px;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translateX(-50%);
}

.house-line .roof {
  position: absolute;
  top: 0;
  left: 32px;
  width: 148px;
  height: 148px;
  border-top: 5px solid rgba(255,255,255,0.9);
  border-left: 5px solid rgba(255,255,255,0.9);
  transform: rotate(45deg);
  border-radius: 5px;
}

.house-line .wall {
  position: absolute;
  left: 31px;
  bottom: 0;
  width: 150px;
  height: 128px;
  border: 5px solid rgba(255,255,255,0.9);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.house-line .door {
  position: absolute;
  bottom: 0;
  left: 82px;
  width: 50px;
  height: 83px;
  border: 4px solid var(--accent);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.house-line .door::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.house-line .window {
  position: absolute;
  right: 48px;
  bottom: 55px;
  width: 31px;
  height: 31px;
  border: 4px solid rgba(255,255,255,0.75);
}

.tool-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

.tool-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-badge-one {
  top: 50px;
  left: 25px;
}

.tool-badge-two {
  top: 202px;
  right: 18px;
}

.tool-badge-three {
  bottom: 32px;
  left: 27px;
}

.panel-bottom {
  padding: 28px 30px 32px;
}

.panel-bottom p {
  margin-bottom: 4px;
  color: rgba(255,255,255,0.65);
  font-size: 0.84rem;
}

.panel-bottom strong {
  display: block;
  max-width: 370px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.22);
}

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

.trust-grid > div {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.trust-grid > div:not(:first-child) {
  padding-left: 28px;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 3px;
  font-size: 0.94rem;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.compact-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.45);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 38px rgba(23, 37, 29, 0.08);
}

.service-card p {
  margin-bottom: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 14px;
  color: var(--accent-dark);
  background: rgba(215, 131, 59, 0.13);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.service-card-accent {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--accent-dark);
}

.service-card-accent:hover {
  background: #99541f;
}

.service-card-accent h3 {
  font-size: 1.7rem;
}

.service-card-accent p {
  color: rgba(255,255,255,0.78);
}

.service-card-accent .mini-label {
  margin-bottom: auto;
  color: rgba(255,255,255,0.68);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.large-copy {
  font-size: 1.17rem;
}

.value-list {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.value-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.value-list > div > span {
  color: #e7a66f;
  font-size: 0.79rem;
  font-weight: 800;
}

.value-list section p {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 285px;
  padding: 26px;
  border-top: 2px solid var(--ink);
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), transparent);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 60px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.area-section {
  padding-top: 0;
}

.area-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
  min-height: 470px;
  overflow: hidden;
  padding: 62px;
  border-radius: 34px;
  background: var(--paper-warm);
}

.service-area-list {
  display: grid;
  gap: 12px;
}

.service-area-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 19px 20px;
  border: 1px solid rgba(23, 37, 29, 0.11);
  border-radius: 17px;
  background: rgba(255,255,255,0.48);
}

.service-area-item > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-area-item strong,
.service-area-item small {
  display: block;
}

.service-area-item strong {
  margin-bottom: 2px;
  line-height: 1.25;
}

.service-area-item small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.contact-section {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.27);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.contact-methods a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255,255,255,0.4);
  text-decoration: none;
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-methods strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.estimate-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 37, 29, 0.08);
}

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

.estimate-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(23, 37, 29, 0.23);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.estimate-form textarea {
  min-height: 150px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(215, 131, 59, 0.13);
}

.consent-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.consent-row span {
  color: var(--ink-soft);
  font-weight: 500;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.78rem;
}

.form-note a {
  font-weight: 800;
}

.site-footer {
  padding: 40px 0;
  color: var(--white);
  background: #0c140f;
}

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

.footer-brand {
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: rgba(255,255,255,0.56);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
}

.success-page,
.privacy-page {
  min-height: 100vh;
}

.simple-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.simple-main {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  padding: 70px 0;
}

.simple-card {
  width: min(100%, 710px);
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.simple-card .icon-success {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 1.7rem;
}

.simple-card h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  margin-inline: auto;
}

.simple-card p {
  max-width: 560px;
  margin-inline: auto;
}

.simple-card .button {
  margin-top: 16px;
}

.privacy-content {
  width: min(100%, 820px);
  padding: 20px 0 70px;
}

.privacy-content h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.privacy-content h2 {
  margin-top: 44px;
  font-size: 1.65rem;
}

.privacy-content ul {
  color: var(--ink-soft);
}

@media (max-width: 1040px) {
  .header-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 36px;
  }

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

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

  .area-card {
    padding: 50px;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(23,37,29,0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .split-section,
  .area-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 480px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .split-section {
    gap: 54px;
  }

  .area-card {
    gap: 40px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .section {
    padding: 70px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
  }

  .brand img {
    width: 41px;
    height: 41px;
  }

  .hero {
    padding: 55px 0 75px;
  }

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

  .hero-checks {
    display: grid;
    gap: 10px;
  }

  .hero-panel {
    min-height: 440px;
    border-radius: 26px;
  }

  .tool-illustration {
    min-height: 345px;
  }

  .house-line {
    top: 75px;
    transform: translateX(-50%) scale(0.85);
  }

  .tool-badge-two {
    top: 180px;
  }

  .trust-grid > div,
  .trust-grid > div:not(:first-child) {
    padding: 22px 16px;
  }

  .services-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .icon-box {
    margin-bottom: 35px;
  }

  .process-grid article {
    min-height: 230px;
  }

  .step-number {
    margin-bottom: 38px;
  }

  .area-card {
    padding: 32px 24px;
    border-radius: 26px;
  }

  .service-area-item {
    grid-template-columns: 40px 1fr;
    padding: 17px 16px;
  }

  .service-area-item > span {
    width: 36px;
    height: 36px;
  }

  .estimate-form {
    padding: 24px 18px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .simple-card {
    padding: 38px 22px;
  }
}

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

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