/* ============================================================
   SITELY DEMO — "Perfectly Pressed Cleaners LLC" prospect mockup.
   Sample marketing site built to pitch a real, owner-run
   Lake Havasu City, AZ dry cleaner (DBA Modern Dry Cleaners).
   Not affiliated. Photos are licensed stock placeholders; the
   three review quotes are real published Google reviews (4.6★/15
   aggregate is real). Not indexed.
   Midnight-plum / ivory / orchid atelier — Fraunces serif,
   modern "expensive" garment-care boutique.
   ============================================================ */
:root {
  --ink: #1d1626;           /* midnight plum-black — topbar, panels, footer */
  --ink-2: #271e33;         /* raised panels on ink */
  --ink-3: #352a46;         /* hovers on dark */
  --plum: #7a4a9c;          /* primary accent */
  --plum-d: #5f3579;        /* accent hover / eyebrow text on light */
  --plum-l: #c9a6e8;        /* accent text on dark backgrounds */
  --paper: #fbfaf7;         /* warm ivory white */
  --pearl: #f4f1f7;         /* plum-tinted alt section background */
  --body: #5f5a6b;          /* body copy on light */
  --heading: #221a2e;
  --line: #e6e1ec;  --line-dk: #3a2f4d;
  --shadow: 0 18px 44px rgba(29, 22, 38, .16);
  --shadow-sm: 0 8px 22px rgba(29, 22, 38, .10);
  --radius: 14px;  --radius-sm: 8px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--paper);
       line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); font-weight: 600;
                 line-height: 1.12; letter-spacing: -.01em; }
section { scroll-margin-top: 84px; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; text-align: center;
  padding: .88rem 1.8rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: background .16s ease, transform .14s ease, color .16s ease,
              border-color .16s ease, box-shadow .16s ease;
}
.btn-block { width: 100%; }
.btn-plum { background: var(--plum); color: #fff; }
.btn-plum:hover { background: var(--plum-d); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(29,22,38,.4); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }

/* ---------- topbar ---------- */
.topbar { background: var(--ink); color: rgba(251,250,247,.82); font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center;
                gap: 12px 24px; flex-wrap: wrap; padding: 8px 0;
                border-bottom: 1px solid var(--line-dk); }
.topbar .hl { color: var(--plum-l); }
.topbar a { color: var(--plum-l); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--paper);
               border-bottom: 3px solid var(--plum); box-shadow: 0 6px 24px rgba(29,22,38,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 0; }
.brand { text-decoration: none; line-height: 1; flex: none; display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; flex: none; background: var(--plum); color: #fff;
  display: grid; place-items: center; border-radius: 12px; font-family: var(--font-head);
  font-weight: 600; font-size: 1.28rem; box-shadow: inset 0 0 0 3px rgba(255,255,255,.16);
}
.brand-txt .brand-top { display: block; font-family: var(--font-head); font-weight: 600;
                        font-size: 1.34rem; color: var(--heading); letter-spacing: -.01em; }
.brand-txt .brand-sub { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .26em;
                        text-transform: uppercase; color: var(--plum-d); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { position: relative; color: var(--ink-2); font-size: .92rem; font-weight: 500;
         text-decoration: none; padding: 8px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
                background: var(--plum); transition: right .2s ease; }
.nav a:hover::after { right: 0; }
.header-btns { display: flex; gap: 14px; align-items: center; flex: none; }
.header-call { text-decoration: none; color: var(--heading); text-align: right; line-height: 1.15; }
.header-call small { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .18em;
                     text-transform: uppercase; color: var(--plum-d); }
.header-call b { font-family: var(--font-head); font-size: 1.12rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(102deg, rgba(24,17,33,.94) 0%, rgba(24,17,33,.82) 44%, rgba(24,17,33,.45) 100%);
}
.hero-inner { padding: 92px 0 100px; max-width: 730px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; background: rgba(122,74,156,.85); border: 1px solid rgba(255,255,255,.22);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); color: #fff; font-weight: 600;
           margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.hero h1 .hl { color: var(--plum-l); font-style: italic; }
.hero-sub { color: #d9d4e0; font-size: 1.06rem; max-width: 600px; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badges span {
  font-size: .84rem; font-weight: 600; color: #f1edf6;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 7px 15px; display: inline-flex; align-items: center; gap: 8px;
}
.hero-badges .stars { color: var(--plum-l); letter-spacing: 2px; }
.hero-badges .hot { background: rgba(122,74,156,.4); border-color: rgba(201,166,232,.5); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- stats strip ---------- */
.stats { background: var(--plum); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 26px 14px; border-left: 1px solid rgba(255,255,255,.26); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 2.1rem; line-height: 1.1; }
.stat span { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .92; }

/* ---------- section shell ---------- */
.sec { padding: 80px 0 86px; }
.sec.alt { background: var(--pearl); }
.sec-head { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.eyebrow { font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
           color: var(--plum-d); margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.sec-head p { color: var(--body); font-size: 1rem; margin-top: 14px; }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
            overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
            transition: box-shadow .2s ease, transform .2s ease; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-card figure { position: relative; overflow: hidden; }
.svc-card img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover img { transform: scale(1.05); }
.svc-card figure b {
  position: absolute; left: 14px; bottom: 14px; background: var(--plum); color: #fff;
  font-weight: 600; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.svc-body { padding: 22px 24px 26px; flex: 1; }
.svc-body h3 { font-size: 1.24rem; margin-bottom: 8px; }
.svc-body p { font-size: .92rem; color: var(--body); }

/* ---------- split (photo + dark panel) ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; }
.split-media { min-height: 520px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-panel { background: var(--ink); color: #fff; padding: 76px 7% 76px 6%; }
.split-panel .eyebrow { color: var(--plum-l); }
.split-panel h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 18px; }
.split-panel > p { color: #c9c3d4; font-size: .98rem; margin-bottom: 16px; }
.tick { list-style: none; display: grid; gap: 14px; margin: 24px 0 32px; }
.tick li { position: relative; padding-left: 36px; font-size: .96rem; color: #e6e1ee; }
.tick li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px;
                   background: var(--plum); color: #fff; border-radius: 50%;
                   display: grid; place-items: center; font-size: .78rem; font-weight: 700; }
.tick li b { color: #fff; }

/* ---------- about band ---------- */
.about { text-align: center; }
.about-inner { max-width: 860px; margin: 0 auto; }
.about h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 8px; }
.about .sig { font-family: var(--font-head); font-style: italic; color: var(--plum-d);
              margin-bottom: 22px; font-size: 1.05rem; }
.about p { color: var(--body); font-size: 1.02rem; margin-bottom: 16px; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
        padding: 28px 24px 26px; box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-head); font-weight: 600; font-size: 2.4rem;
             color: var(--plum); line-height: 1; display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--body); }

/* ---------- reviews ---------- */
.rev-head { display: flex; justify-content: space-between; align-items: center; gap: 18px;
            flex-wrap: wrap; margin-bottom: 32px; }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score .big { font-family: var(--font-head); font-weight: 600; font-size: 3rem; line-height: 1; color: var(--heading); }
.rev-score .stars { color: var(--plum); font-size: 1.2rem; letter-spacing: 3px; }
.rev-score .star-empty { color: #cfc8da; }
.rev-score small { display: block; color: var(--body); font-size: .84rem; }
.rev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--plum);
            border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
            display: flex; flex-direction: column; }
.rev-tag { align-self: flex-start; font-size: .62rem; font-weight: 700; letter-spacing: .12em;
           text-transform: uppercase; color: var(--plum-d); background: var(--pearl);
           border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
.rev-card .stars { color: var(--plum); letter-spacing: 2px; font-size: .95rem; margin-bottom: 10px; }
.rev-card p { font-size: .94rem; color: #474153; flex: 1; }
.rev-user { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid;
              place-items: center; color: #fff; font-family: var(--font-head); font-weight: 600;
              font-size: .95rem; background: var(--plum); }
.rev-user b { font-size: .88rem; display: block; line-height: 1.2; }
.rev-user span { font-size: .74rem; color: var(--body); }
.rev-note { text-align: center; margin-top: 24px; font-size: .82rem; color: var(--body); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
            padding: 0 22px; box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between;
                    align-items: center; gap: 14px; padding: 18px 0;
                    font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--heading); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.4rem;
                           color: var(--plum); line-height: 1; flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--body); font-size: .94rem; padding: 0 0 18px; }

/* ---------- CTA band ---------- */
.cta { background: linear-gradient(120deg, var(--plum-d), var(--plum)); color: #fff;
       text-align: center; padding: 70px 0 74px; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 12px; }
.cta p { font-size: 1.05rem; max-width: 620px; margin: 0 auto 28px; color: rgba(255,255,255,.92); }
.cta .hero-btns { justify-content: center; }
.cta .fine { font-size: .82rem; margin-top: 20px; color: rgba(255,255,255,.75); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 6px; }
.contact-info > p { color: var(--body); font-size: .95rem; }
.info-rows { display: grid; gap: 18px; margin: 24px 0 26px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ic { width: 42px; height: 42px; flex: none; background: var(--ink); color: var(--plum-l);
                display: grid; place-items: center; border-radius: 12px; font-size: 1rem; }
.info-row b { font-size: .98rem; display: block; color: var(--heading); }
.info-row span, .info-row a { font-size: .92rem; color: var(--body); text-decoration: none; }
.info-row a:hover { color: var(--plum-d); }
.hours-h { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; display: block; margin-bottom: 8px; }
.hours-table { list-style: none; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours-table li { display: flex; justify-content: space-between; padding: 10px 16px; font-size: .9rem; background: #fff; }
.hours-table li:nth-child(odd) { background: var(--pearl); }
.hours-table li b { font-weight: 600; }
.hours-table .closed { color: var(--plum-d); font-weight: 600; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; background: var(--ink);
             color: #fff; border-radius: 12px; text-decoration: none; font-weight: 700;
             font-size: .85rem; transition: background .15s; }
.socials a:hover { background: var(--plum); }
.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); margin-top: 26px; }

.quote-form { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--plum);
              border-radius: var(--radius); padding: 34px 32px 36px; box-shadow: var(--shadow-sm); }
.quote-form h3 { font-size: 1.5rem; margin-bottom: 4px; }
.quote-form > p { font-size: .9rem; color: var(--body); margin-bottom: 20px; }
.fld { margin-bottom: 14px; }
.fld label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em;
             text-transform: uppercase; margin-bottom: 6px; color: var(--heading); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: .74rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: var(--pearl); color: var(--ink);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: 2px solid var(--plum); border-color: var(--plum); background: #fff;
}
.fld-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-status { margin-top: 12px; font-size: .9rem; font-weight: 600; color: var(--plum-d); min-height: 1.2em; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #bdb6c9; padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 40px; }
.footer-brand .brand-top { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: #fff; }
.footer-brand .brand-sub { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .26em;
                           text-transform: uppercase; color: var(--plum-l); margin: 3px 0 14px; }
.footer-brand p { font-size: .9rem; color: #aaa2b8; max-width: 340px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: #bdb6c9; text-decoration: none; font-size: .9rem; }
.site-footer a:hover { color: var(--plum-l); }
.footer-contact li { font-size: .9rem; margin-bottom: 9px; color: #bdb6c9; }
.footer-contact b { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dk); margin-top: 44px; padding-top: 22px;
                 text-align: center; font-size: .82rem; color: #8d859c; }
.footer-bottom a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--plum-l); }

/* ---------- Sitely demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; align-items: center; gap: 8px;
  background: #fff; color: #101828; text-decoration: none; border-radius: 999px; padding: .55rem 1rem .55rem .7rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600; box-shadow: 0 10px 30px rgba(2,8,20,.35);
  border: 1px solid #e4e9f0; transition: transform .16s ease;
}
.demo-chip:hover { transform: translateY(-2px); }
.demo-chip svg { flex: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rev-cards { grid-template-columns: 1fr; }
  .header-call { display: none; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px;
         background: var(--paper); padding: 78px 7vw 24px; display: none;
         box-shadow: 0 20px 40px rgba(29,22,38,.22); border-bottom: 3px solid var(--plum); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .header-btns .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.26); }
  .svc-grid, .steps, .footer-grid, .fld-2 { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 0 72px; }
  .rev-head { flex-direction: column; align-items: flex-start; }
}
