:root {
  --cream: #f6f0e7;
  --cream-deep: #eadfcf;
  --paper: #fbf8f3;
  --tan: #d7c4ae;
  --blue: #9bafb9;
  --blue-deep: #7f99a6;
  --sage: #a5b4a0;
  --sage-deep: #879a82;
  --brown: #5e4d42;
  --dark: #2c2520;
  --ink: #171412;
  --white: #fffdf9;
  --line: rgba(44, 37, 32, 0.18);
  --shadow: 0 18px 50px rgba(55, 45, 38, 0.14);
  --radius: 24px;
  --container: 1180px;
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.85) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section { scroll-margin-top: 92px; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  background: var(--dark);
  color: var(--white);
  padding: .8rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

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

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p:last-child { margin-bottom: 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); margin-bottom: 1.15rem; }
h3 { line-height: 1.2; }
p { font-size: clamp(1rem, 1.3vw, 1.14rem); }

.eyebrow {
  margin-bottom: .8rem;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.84); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .85rem 1.45rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(44,37,32,.16); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}
.button-blue { background: var(--blue); color: white; }
.button-sage { background: var(--sage); color: white; }
.button-brown { background: var(--brown); color: white; }
.button-light { background: var(--white); color: var(--dark); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251,248,243,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(55,45,38,.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand img { width: 58px; height: 58px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 500; }
.brand-copy small { margin-top: .3rem; font-size: .75rem; font-weight: 600; letter-spacing: .02em; }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.7vw, 2.4rem); }
.primary-nav a { font-weight: 700; text-decoration: none; }
.primary-nav a:hover { color: var(--blue-deep); }
.nav-cta { padding: .65rem 1.1rem; border-radius: 999px; background: var(--cream-deep); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 84px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/images/bright-rental.webp') center 36% / cover no-repeat;
  transform: scale(1.02);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246,240,231,.95) 0%, rgba(246,240,231,.82) 42%, rgba(246,240,231,.28) 72%, rgba(246,240,231,.1) 100%),
    linear-gradient(0deg, rgba(246,240,231,.72), transparent 45%);
}
.hero-content { padding-block: clamp(5rem, 11vw, 9rem); }
.hero-content > * { max-width: 700px; }
.hero h1 { font-size: clamp(5.2rem, 13vw, 10rem); margin-bottom: 1rem; }
.hero h1 span { display: inline-block; margin-left: clamp(2.5rem, 10vw, 8rem); }
.hero-tagline { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; margin-bottom: .7rem; }
.hero-intro { max-width: 680px; margin-bottom: 1.8rem; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

.services-section { background: var(--tan); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.service-card { overflow: hidden; border-radius: 18px; background: rgba(255,255,255,.28); }
.service-card img { width: 100%; height: 340px; object-fit: cover; }
.service-card-copy { padding: 1.2rem 1.15rem 1.4rem; }
.service-card h3 { margin-bottom: .55rem; font-size: 1.25rem; }
.service-card p { margin-bottom: 0; font-size: .95rem; }

.trust-section { background: var(--cream); }
.trust-layout { display: grid; grid-template-columns: .9fr 1.35fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.trust-copy p:not(.eyebrow) { max-width: 570px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem 2.8rem; }
.trust-item { text-align: center; }
.round-icon {
  width: 158px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--tan);
}
.round-icon svg { width: 82px; fill: none; stroke: rgba(255,255,255,.9); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { color: var(--brown); font-size: 1.05rem; }

.why-section { padding-bottom: 0; background: var(--paper); }
.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: stretch; }
.why-copy { padding: clamp(2rem, 5vw, 5rem); display: grid; align-content: center; }
.why-copy h2 { font-size: clamp(2.5rem, 4.7vw, 4.4rem); }
.floral-divider { font-size: 1.6rem; letter-spacing: .4em; }
.why-photo-wrap { position: relative; min-height: 580px; overflow: hidden; }
.why-photo-wrap > img { width: 100%; height: 100%; object-fit: cover; }
.photo-cta {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: min(82%, 480px);
  display: grid;
  justify-items: center;
  gap: .35rem;
  padding: 1.5rem;
  text-align: center;
  color: white;
  border-radius: 22px;
  background: rgba(165,180,160,.94);
  box-shadow: var(--shadow);
}
.photo-cta strong { font-size: 1.2rem; }
.photo-cta span { font-size: .94rem; }
.photo-cta .button { margin-top: .55rem; min-height: 44px; }

.process-section { display: grid; grid-template-columns: 1fr 1.05fr; }
.process-image-panel { position: relative; min-height: 760px; overflow: hidden; background: var(--blue); }
.process-image-panel::after { content: ""; position: absolute; inset: 0; background: rgba(123,151,164,.62); }
.process-image-panel img { width: 100%; height: 100%; object-fit: cover; }
.process-image-panel > p { position: absolute; z-index: 1; left: 50%; bottom: 12%; width: min(80%, 620px); transform: translateX(-50%); color: white; text-align: center; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.process-steps-panel { display: grid; align-items: center; background: var(--blue); color: white; }
.process-inner { padding: clamp(3.5rem, 6vw, 6rem); }
.process-inner h2 { color: white; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.process-list li:last-child { border-bottom: 0; }
.process-list > li > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-family: var(--serif); font-size: 1.35rem; }
.process-list h3 { margin-bottom: .3rem; font-size: 1.05rem; }
.process-list p { margin-bottom: 0; font-size: .88rem; color: rgba(255,255,255,.88); }

.service-area { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.service-area-bg { position: absolute; inset: -20px; z-index: -2; background: url('/assets/images/dallas-skyline-blur.webp') center / cover no-repeat; filter: blur(1px); }
.service-area::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(246,240,231,.79); }
.service-area-content { max-width: 1000px; }
.service-area-content > p:not(.eyebrow) { max-width: 950px; margin-inline: auto; }
.service-area h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.service-area h3 { margin-top: 1.8rem; font-size: 1.4rem; }
.zone-grid { display: grid; grid-template-columns: repeat(2, max-content); justify-content: center; gap: 0 4rem; margin: 1rem auto 2rem; text-align: left; }
.zone-grid ul { margin: 0; padding-left: 1.2rem; }
.zone-grid li { margin-bottom: .4rem; }

.add-ons-section { background: var(--sage); }
.addon-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.addon-card { display: grid; min-height: 345px; align-content: start; justify-items: center; gap: 1rem; padding: 1rem 1rem 1.5rem; border-radius: 18px; text-align: center; background: var(--cream); }
.addon-card img { width: 100%; height: 180px; border-radius: 12px; object-fit: cover; }
.addon-card h3 { font-size: 1.2rem; }

.faq-section {
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    url('/assets/images/linen-laundry.webp') center 48% / cover no-repeat;
}
.faq-inner { max-width: 900px; }
.faq-list { display: grid; gap: 1rem; }
details { border-radius: 18px; overflow: hidden; background: rgba(94,77,66,.82); color: white; }
summary { position: relative; padding: 1.25rem 4rem 1.25rem 1.5rem; list-style: none; cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 1.45rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 1.5rem 1.5rem; font-size: .97rem; color: rgba(255,255,255,.9); }

.quote-section { background: var(--blue); color: white; }
.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.quote-copy { position: sticky; top: 120px; }
.quote-copy h2 { color: white; }
.quote-copy > img { width: min(230px, 60%); margin-top: 2rem; filter: brightness(0) invert(1); opacity: .95; }
.quote-form { display: grid; gap: 1.15rem; padding: clamp(1.5rem, 4vw, 2.4rem); border: 1px solid rgba(255,255,255,.3); border-radius: 24px; background: rgba(255,255,255,.06); }
.hidden-field { display: none; }
.form-grid { display: grid; gap: 1rem; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-form label, .quote-form legend { font-size: .88rem; font-weight: 600; }
.quote-form label { display: grid; gap: .4rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: white;
  padding: .8rem .9rem;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.68); }
.quote-form select option { color: var(--dark); }
.quote-form fieldset { margin: 0; padding: 1rem; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; }
.quote-form legend { padding: 0 .4rem; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.radio-row { display: flex; gap: 1rem; }
.quote-form .check-option { display: flex; align-items: center; gap: .55rem; min-height: 42px; padding: .65rem .75rem; border-radius: 10px; background: rgba(255,255,255,.09); }
.check-option input, .consent-option input { width: 1.1rem; height: 1.1rem; accent-color: var(--dark); }
.consent-option { grid-template-columns: auto 1fr !important; align-items: start; gap: .75rem !important; }
.submit-button { width: 100%; margin-top: .25rem; }
.form-note { margin: 0; text-align: center; font-size: .76rem; color: rgba(255,255,255,.78); }

.site-footer { padding: 4rem 0 1.3rem; background: var(--dark); color: var(--white); }
.footer-top { display: grid; grid-template-columns: .9fr 1.2fr; gap: 4rem; }
.footer-brand { display: grid; align-content: start; justify-items: start; }
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { max-width: 520px; }
.footer-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.footer-columns h2 { margin-bottom: 1rem; font-family: var(--sans); font-size: 1.25rem; text-decoration: underline; }
.footer-columns a, .footer-columns p { display: block; margin: 0 0 .4rem; font-size: .93rem; text-decoration: none; }
.footer-columns a:hover { text-decoration: underline; }
.placeholder-contact { opacity: .9; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.15); }
.footer-bottom p, .footer-bottom a { margin: 0; font-size: .78rem; }

.support-page { background: var(--paper); }
.addon-hero { padding: clamp(3rem, 7vw, 7rem) 0; background: var(--cream); }
.addon-hero-grid { display: grid; grid-template-columns: minmax(180px, .76fr) minmax(320px, 1.25fr) minmax(180px, .76fr); gap: clamp(1rem, 3vw, 3rem); align-items: center; }
.addon-hero figure { margin: 0; height: min(46vw, 560px); overflow: hidden; border-radius: 12px; background: var(--cream-deep); }
.addon-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.addon-hero figure:last-child img { object-position: 65% center; }
.addon-hero-copy { text-align: center; }
.addon-hero-copy .eyebrow { color: var(--brown); }
.addon-hero-copy h1 { font-size: clamp(3.4rem, 6vw, 6.5rem); margin-bottom: 1.3rem; }
.addon-hero-copy p:not(.eyebrow) { max-width: 570px; margin-inline: auto; }
.addon-hero-copy .button { margin-top: .8rem; }
.addon-details { background: var(--paper); }
.addon-details .container { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 9vw, 9rem); align-items: start; max-width: 1050px; }
.addon-details h2 { margin-bottom: 0; }
.addon-details p { max-width: 600px; }
.addon-details p:last-child { margin-bottom: 0; }
.addon-cta { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--sage); color: white; text-align: center; }
.addon-cta h2 { color: white; }

@media (max-width: 980px) {
  .addon-hero-grid { grid-template-columns: .7fr 1.4fr .7fr; }
  .addon-hero figure { height: 430px; }
  .addon-details .container { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-layout, .why-layout, .quote-layout, .footer-top { grid-template-columns: 1fr; }
  .process-section { grid-template-columns: 1fr; }
  .process-image-panel { min-height: 520px; }
  .why-photo-wrap { min-height: 520px; }
  .quote-copy { position: static; }
  .quote-copy > img { width: 150px; }
  .zone-grid { grid-template-columns: 1fr; max-width: 540px; gap: 0; }
  .footer-columns { gap: 1.2rem; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 74px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 1.45rem; }
  .brand-copy small { font-size: .64rem; }
  .menu-button {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--cream-deep);
  }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; background: var(--dark); }
  .primary-nav {
    position: fixed;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .primary-nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: .85rem 1rem; }
  .nav-cta { margin-top: .25rem; text-align: center; }

  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg, rgba(246,240,231,.96), rgba(246,240,231,.72)); }
  .hero-backdrop { background-position: 64% center; }
  .hero h1 { font-size: clamp(4.6rem, 23vw, 7rem); }
  .hero h1 span { margin-left: 1.5rem; }

  .trust-grid, .addon-grid { grid-template-columns: 1fr; }
  .trust-grid { max-width: 520px; margin-inline: auto; }
  .trust-item { display: grid; grid-template-columns: 100px 1fr; align-items: center; text-align: left; gap: 1rem; }
  .round-icon { width: 100px; margin: 0; }
  .round-icon svg { width: 54px; }
  .why-copy { padding-inline: 0; }
  .why-layout { width: min(calc(100% - 2rem), var(--container)); }
  .why-photo-wrap { min-height: 470px; border-radius: 20px 20px 0 0; }
  .process-inner { padding-inline: 1.25rem; }
  .service-area-content { text-align: left; }
  .service-area-content > p:not(.eyebrow) { margin-inline: 0; }
  .zone-grid { justify-content: start; }
  .addon-grid { max-width: 560px; margin-inline: auto; }
  .addon-card { min-height: 280px; }
  .addon-hero-grid { grid-template-columns: 1fr; max-width: 620px; }
  .addon-hero figure { height: 300px; }
  .addon-hero figure:last-child { display: none; }
  .addon-hero-copy { order: -1; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
}

@media (max-width: 560px) {
  .section { padding-block: 4rem; }
  h2 { font-size: 2.65rem; }
  .service-grid, .two-columns, .three-columns, .option-grid, .footer-columns { grid-template-columns: 1fr; }
  .service-card img { height: 300px; }
  .trust-item { grid-template-columns: 82px 1fr; }
  .round-icon { width: 82px; }
  .process-image-panel { min-height: 410px; }
  .process-image-panel > p { bottom: 8%; font-size: 1.4rem; }
  .photo-cta { width: calc(100% - 2rem); bottom: 1rem; }
  .radio-row { display: grid; }
  .quote-form { padding: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
