/* Pearland Wallpaper — local SEO site */
:root {
  --ink: #1c1612;
  --walnut: #2c241e;
  --bark: #4a3b32;
  --brass: #8d6436;
  --sand: #e7dccb;
  --plaster: #f4efe8;
  --ivory: #faf7f3;
  --card: #ffffff;
  --call: #b64028;
  --call-dark: #8c2f1c;
  --muted: #5c5148;
  --line: rgba(28, 22, 18, 0.12);
  --shadow: 0 18px 48px rgba(28, 22, 18, 0.12);
  --radius: 3px;
  --max: 1120px;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--call);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.45rem); }

p { margin: 0 0 1.05em; }

ul, ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

li { margin-bottom: 0.4em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--call);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.topbar {
  background: var(--walnut);
  color: var(--sand);
  font-size: 0.86rem;
  padding: 0.5rem 0;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.topbar a:hover { color: #f0c9a0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--walnut);
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 0.28rem;
}

.nav-toggle {
  display: none;
  background: var(--walnut);
  color: #fff;
  border: 0;
  padding: 0.55rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
}

.site-nav > a,
.nav-dropdown > summary {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
  list-style: none;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-dropdown > summary:hover { color: var(--brass); }

.nav-dropdown { position: relative; }

.nav-dropdown > summary::-webkit-details-marker { display: none; }

.nav-dropdown > summary::after {
  content: " ▾";
  font-size: 0.7em;
  opacity: 0.65;
}

.nav-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.4rem 0;
  display: none;
  z-index: 50;
  max-height: 70vh;
  overflow: auto;
}

.nav-dropdown[open] .dropdown {
  display: block;
  animation: fadeUp 0.22s var(--ease);
}

.dropdown a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
}

.dropdown a:hover {
  background: var(--plaster);
  color: var(--brass);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--call);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 750;
  font-size: 0.88rem;
  padding: 0.68rem 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--call-dark);
  color: #fff !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 750;
  font-size: 1rem;
  padding: 0.92rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

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

.btn-call { background: var(--call); color: #fff; }
.btn-call:hover { background: var(--call-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}
.btn-outline:hover { background: var(--walnut); color: #fff; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(28, 22, 18, 0.45) 0%, rgba(44, 36, 30, 0.78) 48%, rgba(28, 22, 18, 0.92) 100%),
    radial-gradient(ellipse at 80% 10%, rgba(141, 100, 54, 0.35), transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
    var(--walnut);
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
}

.hero-brand {
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 750;
  color: #f0c9a0;
  margin-bottom: 0.8rem;
}

.hero h1 { color: #fff; max-width: 16ch; }

.hero-lead {
  max-width: 40rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-phone-note { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.hero-phone-note a { color: #fff; font-weight: 750; }

.page-hero {
  background:
    linear-gradient(160deg, rgba(28,22,18,0.88), rgba(44,36,30,0.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px);
  color: #fff;
  padding: 2.6rem 0 2.2rem;
}

.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: rgba(255,255,255,0.84); max-width: 42rem; }

.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: #f0c9a0; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: -1.6rem;
  position: relative;
  z-index: 2;
}

.trust-strip div {
  background: var(--card);
  padding: 1rem 1.05rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.section { padding: 4.2rem 0; }
.section-alt { background: var(--plaster); }

.section-intro { max-width: 44rem; margin-bottom: 1.8rem; }
.section-intro p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.2rem;
  align-items: start;
}

.link-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
}

.card, .link-grid a {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.15rem 1.15rem 1.05rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.link-grid a:hover, .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.card h3, .link-grid a strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.card p, .link-grid a span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--card);
  border-top: 3px solid var(--brass);
  padding: 1.1rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brass);
  display: block;
  margin-bottom: 0.3rem;
}

.prose { max-width: 46rem; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }

.callout {
  background: var(--plaster);
  border-left: 3px solid var(--brass);
  padding: 0.9rem 1.1rem;
  margin: 0 0 1.4rem;
}

.callout p:last-child { margin-bottom: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.3rem;
  font-size: 0.95rem;
  background: var(--card);
}

.data-table th, .data-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--walnut);
  color: #fff;
  font-weight: 700;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  margin-bottom: 0.55rem;
}

.faq-list summary {
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p, .faq-list details ul {
  padding: 0 1.1rem;
}

.faq-list details p:last-child { padding-bottom: 0.9rem; }

.sticky-call {
  position: sticky;
  top: 6.2rem;
  background: var(--walnut);
  color: #fff;
  padding: 1.3rem 1.2rem 1.4rem;
}

.sticky-call h3 { color: #fff; }
.sticky-call p { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

.phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: #fff;
  text-decoration: none;
  margin: 0.4rem 0 0.8rem;
}

.phone-link:hover { color: #f0c9a0; }

.sticky-call .btn { width: 100%; }
.sticky-call .btn-ghost { margin-top: 0.5rem; }

.form-panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem 1.4rem;
}

.form-grid { display: grid; gap: 0.75rem; }

.form-grid label {
  display: block;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid var(--brass);
  border-color: var(--brass);
  background: #fff;
}

.form-grid textarea { min-height: 120px; resize: vertical; }

.form-note { font-size: 0.88rem; color: var(--muted); margin: 0.2rem 0 0; }

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2.2rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 6.2rem;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1rem;
  font-size: 0.9rem;
}

.toc strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
}

.toc a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  padding: 0.28rem 0;
}

.toc a:hover { color: var(--brass); }

.article-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.call-band {
  background: var(--walnut);
  color: #fff;
  text-align: center;
  padding: 3.4rem 0;
}

.call-band h2 { color: #fff; }
.call-band p { color: rgba(255,255,255,0.8); }

.phone-xl {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  text-decoration: none;
  margin: 0.3rem 0 0.6rem;
}

.phone-xl:hover { color: #f0c9a0; }

.site-footer {
  background: #16110e;
  color: rgba(244, 239, 232, 0.78);
  padding: 3rem 0 1.4rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.6rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.site-footer a { color: #f0c9a0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.3rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.84rem;
  color: rgba(244, 239, 232, 0.5);
}

.float-call {
  display: none;
  position: fixed;
  bottom: 0.85rem;
  right: 0.85rem;
  left: 0.85rem;
  z-index: 200;
  background: var(--call);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 0.95rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.float-call:hover { background: var(--call-dark); color: #fff; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.text-muted { color: var(--muted); }
.mt-0 { margin-top: 0; }

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.related a {
  background: var(--plaster);
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 650;
  border: 1px solid var(--line);
}

.related a:hover { background: var(--walnut); color: #fff; }

@media (max-width: 980px) {
  .trust-strip, .steps, .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .article-layout { grid-template-columns: 1fr; }
  .toc, .sticky-call { position: static; }
  .article-layout aside { order: -1; }
}

@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav > a,
  .nav-dropdown > summary {
    padding: 0.7rem 0.15rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    min-width: 0;
    max-height: none;
    padding: 0 0 0.4rem 0.6rem;
  }

  .header-cta { display: none; }
  .float-call { display: block; }
  body { padding-bottom: 4.4rem; }
}

@media (max-width: 560px) {
  .trust-strip, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 4rem 0 3.2rem; }
  .topbar .container { justify-content: center; text-align: center; }
}
