/* Ritter's Cleaners — concept redesign
   Palette PIL-sampled from their oval logo emblem:
     ink #261e26 (Ritter's / CLEANERS letters) · terracotta #8d5f58 (concentric rings)
     · cream #ead8c8 (emblem fill). Heritage garment-care register.
   Display: Aleo (warm slab serif — the emblem's bold slab "CLEANERS" caps grown up).
   UI/body: Instrument Sans. Signature: HERITAGE RING-SEAL (their concentric-ring emblem).
   Deliberately unlike the sibling Fibison dry-cleaner build (navy/Bodoni/pressed-sheen). */

:root{
  --ink:#261e26;
  --ink-2:#191319;
  --terra:#8d5f58;
  --terra-deep:#734740;   /* AA-safe on cream/paper for text + CTAs */
  --terra-soft:#a97a70;
  --cream:#ead8c8;
  --paper:#f7f1e7;
  --paper-2:#f1e8da;
  --line:#d8c7b4;
  --white:#fffdf9;
  --shadow:0 18px 44px -22px rgba(38,30,38,.42);
  --shadow-sm:0 8px 22px -14px rgba(38,30,38,.40);
  --maxw:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
img{max-width:100%;height:auto;display:block}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Instrument Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  font-size:17px;line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.display{font-family:"Aleo",Georgia,"Times New Roman",serif;font-weight:600;line-height:1.02;letter-spacing:.005em}

h1,h2,h3{font-family:"Aleo",Georgia,serif;font-weight:600;line-height:1.06;margin:0 0 .4em}
h1{font-size:clamp(2.5rem,6.4vw,4.6rem);letter-spacing:.004em}
h2{font-size:clamp(1.85rem,3.9vw,2.9rem)}
h3{font-size:1.28rem;letter-spacing:.006em}
p{margin:0 0 1.05em}
a{color:var(--terra-deep);text-decoration-thickness:1px;text-underline-offset:2px}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 clamp(20px,4.5vw,52px)}
.section{padding:clamp(58px,8vw,110px) 0}
.section--paper{background:var(--paper)}
.section--cream{background:var(--cream)}
.section--ink{background:var(--ink);color:var(--paper)}
.section--ink h1,.section--ink h2,.section--ink h3{color:var(--white)}
.section--ink a{color:#e6c3b8}

.kicker{
  font-family:"Instrument Sans",sans-serif;font-weight:600;
  text-transform:uppercase;letter-spacing:.24em;font-size:.72rem;
  color:var(--terra-deep);margin:0 0 1.1rem;display:inline-flex;align-items:center;gap:.7rem;
}
.section--ink .kicker{color:var(--terra-soft)}
/* crease tick before kicker — echoes the emblem's concentric ring / a pressed seam */
.kicker::before{content:"";width:34px;height:0;border-top:2px solid currentColor;
  border-bottom:2px solid currentColor;height:5px;opacity:.75}

.lead{font-size:1.18rem;max-width:60ch;color:var(--ink)}
.section--ink .lead{color:#efe4d7}
.muted{color:#6a5d5a}
.center{text-align:center}
.center .kicker,.center .crease-h{justify-content:center}
.center .lead{margin-inline:auto}

/* ---------- heritage ring-seal heading rule (signature motif) ----------
   Double concentric rule that draws in — echoes the emblem's concentric rings,
   a seal of quality (NOT a garment crease; distinct from the sibling Fibison build). */
.crease-h{position:relative;display:inline-block;padding-bottom:.42em}
.crease-h::after{
  content:"";position:absolute;left:0;bottom:0;height:7px;width:100%;
  background:
    linear-gradient(var(--terra),var(--terra)) left bottom/100% 2px no-repeat,
    linear-gradient(var(--terra-soft),var(--terra-soft)) left calc(100% - 5px)/60% 2px no-repeat;
  transform-origin:left center;transform:scaleX(0);
  transition:transform .7s cubic-bezier(.2,.8,.2,1);
}
.seated .crease-h::after,.no-js .crease-h::after{transform:scaleX(1)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:"Instrument Sans",sans-serif;font-weight:600;font-size:.98rem;letter-spacing:.01em;
  padding:.85rem 1.5rem;border-radius:2px;border:2px solid transparent;cursor:pointer;
  text-decoration:none;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--terra-deep);color:var(--white);box-shadow:var(--shadow-sm)}
.btn-primary:hover{background:var(--ink)}
.btn-outline{background:transparent;border-color:var(--ink);color:var(--ink)}
.btn-outline:hover{background:var(--ink);color:var(--paper)}
.section--ink .btn-outline{border-color:#e6c3b8;color:#f4e7db}
.section--ink .btn-outline:hover{background:var(--paper);color:var(--ink)}
.btn-lg{padding:1rem 1.9rem;font-size:1.05rem}

/* ---------- header / nav ---------- */
.header{position:sticky;top:0;z-index:60;background:rgba(247,241,231,.92);
  backdrop-filter:saturate(1.1) blur(8px);border-bottom:1px solid var(--line)}
.nav{max-width:var(--maxw);margin:0 auto;padding:.6rem clamp(20px,4.5vw,52px);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;position:relative}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:var(--ink)}
.brand img{height:52px;width:auto}
.brand-txt{display:flex;flex-direction:column;line-height:1}
.brand-txt b{font-family:"Aleo",serif;font-weight:600;font-size:1.2rem;letter-spacing:.01em}
.brand-txt span{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--terra-deep);margin-top:3px}
.nav-links{display:flex;align-items:center;gap:.4rem}
.nav-links a{font-family:"Instrument Sans",sans-serif;font-weight:500;font-size:.96rem;
  color:var(--ink);text-decoration:none;padding:.5rem .8rem;border-radius:2px}
.nav-links a:hover,.nav-links a.active{color:var(--terra-deep)}
.nav-call{background:var(--ink);color:var(--paper)!important;padding:.55rem 1.05rem!important;border-radius:2px;font-weight:600!important}
.nav-call:hover{background:var(--terra-deep)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:.4rem;color:var(--ink)}
.nav-toggle svg{width:26px;height:26px}

/* ---------- open-now chip ---------- */
.openchip{display:inline-flex;align-items:center;gap:.5rem;font-family:"Instrument Sans",sans-serif;
  font-weight:600;font-size:.82rem;letter-spacing:.04em;color:#1c5a34;background:#e4efe0;
  border:1px solid #bcd8b8;border-radius:999px;padding:.32rem .85rem}
.openchip .dot{width:9px;height:9px;border-radius:50%;background:#2f9e57;box-shadow:0 0 0 4px rgba(47,158,87,.18)}
.openchip.closed{color:#7c4f48;background:#f0e2dd;border-color:#e2c8c1}
.openchip.closed .dot{background:var(--terra);box-shadow:0 0 0 4px rgba(141,95,88,.18)}

/* ---------- hero ---------- */
.hero{position:relative;background:
  radial-gradient(120% 90% at 78% 12%, #f3ecdf 0%, var(--paper) 46%, var(--paper-2) 100%);
  overflow:hidden;border-bottom:1px solid var(--line)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(24px,4vw,60px);
  align-items:center;padding:clamp(46px,6.5vw,86px) 0 clamp(40px,5vw,70px)}
.hero-eyebrow{display:flex;align-items:center;gap:.9rem;flex-wrap:wrap;margin-bottom:1.1rem}
.est-badge{font-family:"Instrument Sans",sans-serif;font-weight:600;font-size:.72rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--terra-deep);border:1px solid var(--terra-soft);
  border-radius:2px;padding:.3rem .7rem}
.hero h1{margin-bottom:.35em}
.hero .tagline{font-family:"Aleo",serif;font-style:italic;font-weight:500;
  font-size:clamp(1.3rem,2.6vw,1.75rem);color:var(--terra-deep);margin:0 0 1rem}
.hero p.lead{margin-bottom:1.7rem}
.hero-cta{display:flex;flex-wrap:wrap;gap:.7rem;align-items:center}
.hero-media{position:relative;display:flex;align-items:center;justify-content:center}
/* emblem seal-in + storefront */
.emblem{position:relative;width:min(100%,520px)}
.emblem .ring{position:absolute;left:50%;top:46%;transform:translate(-50%,-50%);
  border:2px solid var(--terra);border-radius:50%;opacity:.16;pointer-events:none}
.emblem .r1{width:96%;aspect-ratio:1/.74}
.emblem .r2{width:78%;aspect-ratio:1/.74}
.emblem-logo{position:relative;z-index:2;filter:drop-shadow(0 14px 30px rgba(38,30,38,.24))}
.hero-store{margin-top:-6%;position:relative;z-index:1;width:82%;margin-inline:auto;
  filter:drop-shadow(0 22px 34px rgba(38,30,38,.28))}

/* ---------- quick action strip ---------- */
.quickbar{background:var(--ink);color:var(--paper)}
.quickbar .wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;padding:0}
.qb-item{display:flex;flex-direction:column;gap:.15rem;padding:1.15rem clamp(16px,2.4vw,28px);
  text-decoration:none;color:var(--paper);position:relative;transition:background .2s}
.qb-item + .qb-item{box-shadow:-1px 0 0 rgba(255,253,249,.14)}
.qb-item:hover{background:var(--ink-2)}
.qb-item .lab{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--terra-soft)}
.qb-item .val{font-family:"Aleo",serif;font-size:1.18rem;font-weight:600}
.qb-item small{color:#cdbcb2;font-size:.82rem}

/* ---------- services ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.3rem;margin-top:2.6rem}
.svc-card{background:var(--white);border:1px solid var(--line);border-radius:4px;padding:1.9rem 1.7rem;
  box-shadow:var(--shadow-sm);position:relative;overflow:hidden}
.svc-card::before{content:"";position:absolute;left:0;top:0;height:100%;width:4px;background:var(--terra)}
.svc-card .num{font-family:"Aleo",serif;font-style:italic;color:var(--terra-soft);font-size:1.1rem}
.svc-card h3{margin:.5rem 0 .45rem}
.svc-card p{margin:0;color:#5c4f4c;font-size:.98rem}
.svc-card.feature{background:var(--ink);color:var(--paper);border-color:var(--ink)}
.svc-card.feature::before{background:var(--terra-soft)}
.svc-card.feature h3{color:var(--white)}
.svc-card.feature p{color:#e6dad0}
.svc-card.feature .num{color:var(--terra-soft)}

/* ---------- wedding-gown feature band ---------- */
.feature-band{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,60px);align-items:center}
.feature-band .fb-media img{border-radius:5px;box-shadow:var(--shadow);width:100%}
.feature-band .fb-media figcaption{font-size:.82rem;color:#8a7d79;margin-top:.6rem;font-style:italic}
.gown-note{background:var(--paper);border:1px solid var(--line);border-left:4px solid var(--terra);
  border-radius:4px;padding:1.1rem 1.3rem;margin-top:1.4rem}
.gown-note b{font-family:"Aleo",serif}

/* ---------- pull quote ---------- */
.pullquote{max-width:52rem;margin:0 auto;text-align:center}
.pullquote q{font-family:"Aleo",serif;font-style:italic;font-size:clamp(1.35rem,3vw,2.05rem);
  line-height:1.32;quotes:"\201C""\201D"}
.pullquote .cite{display:block;margin-top:1.3rem;font-family:"Instrument Sans",sans-serif;
  font-weight:600;letter-spacing:.16em;text-transform:uppercase;font-size:.74rem;color:var(--terra-soft)}

/* ---------- info / hours ---------- */
.info-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(26px,4vw,56px);align-items:start}
.hours-table{width:100%;border-collapse:collapse;margin:.4rem 0 1.2rem}
.hours-row{display:flex;justify-content:space-between;gap:1rem;padding:.6rem .2rem;
  border-bottom:1px solid var(--line);font-size:1rem}
.hours-row .d{font-weight:600}
.hours-row.today{background:var(--cream);margin:0 -.6rem;padding-inline:.6rem;border-radius:3px;border-bottom-color:transparent}
.hours-row.today .d::after{content:"Today";margin-left:.6rem;font-size:.66rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--terra-deep);font-weight:600;vertical-align:middle}
.info-card{background:var(--white);border:1px solid var(--line);border-radius:5px;padding:1.9rem;box-shadow:var(--shadow-sm)}
.addr{font-style:normal;line-height:1.7}
.addr .big{font-family:"Aleo",serif;font-size:1.25rem;font-weight:600}
.addr .near{color:var(--terra-deep);font-size:.94rem}
.holiday{font-size:.9rem;color:#6a5d5a;margin-top:1rem;border-top:1px dashed var(--line);padding-top:1rem}

/* ---------- news / articles ---------- */
.article{max-width:74ch;margin:0 auto}
.article + .article{margin-top:clamp(48px,7vw,84px);border-top:1px solid var(--line);padding-top:clamp(40px,6vw,70px)}
.article h2{margin-bottom:.3em}
.article .byline{font-family:"Instrument Sans",sans-serif;font-size:.85rem;color:#7a6d69;
  letter-spacing:.03em;margin-bottom:1.4rem}
.article figure{margin:1.6rem 0}
.article figure img{border-radius:5px;box-shadow:var(--shadow-sm);width:100%}
.article figcaption{font-size:.82rem;color:#8a7d79;margin-top:.5rem;font-style:italic}
.article p{color:#3f3532}

/* ---------- contact form ---------- */
.form{display:grid;gap:1rem;margin-top:1.4rem}
.form label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.3rem}
.form input,.form textarea{width:100%;font:inherit;font-size:1rem;padding:.7rem .85rem;
  background:var(--white);border:1px solid var(--line);border-radius:3px;color:var(--ink)}
.form input:focus,.form textarea:focus{outline:2px solid var(--terra);border-color:var(--terra)}
.form-msg{display:none;background:var(--cream);border-radius:3px;padding:.8rem 1rem;font-size:.95rem}

/* ---------- footer ---------- */
.footer{background:var(--ink-2);color:#d7c9be;padding:clamp(46px,6vw,72px) 0 2.2rem}
.footer a{color:#e6c3b8;text-decoration:none}
.footer a:hover{text-decoration:underline}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:2.4rem;margin-bottom:2.4rem}
.footer h4{font-family:"Aleo",serif;color:var(--white);font-size:1.15rem;margin:0 0 .9rem}
.footer .flogo{height:64px;width:auto;margin-bottom:1rem}
.footer p,.footer li{font-size:.94rem;color:#c9bab0}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:.45rem}
.footer .tagline-s{font-family:"Aleo",serif;font-style:italic;color:var(--terra-soft)}
.footer-base{border-top:1px solid rgba(255,253,249,.13);padding-top:1.5rem;font-size:.84rem;color:#a89a90;
  display:flex;flex-wrap:wrap;gap:.6rem 1.4rem;justify-content:space-between}

/* ---------- reveal (press-settle) ---------- */
.reveal{opacity:0;transform:translateY(16px) scaleY(1.015);transform-origin:top center}
.reveal.seated{opacity:1;transform:none;transition:opacity .6s ease,transform .6s cubic-bezier(.2,.85,.25,1)}
.no-js .reveal{opacity:1;transform:none}

/* ---------- skip link ---------- */
.skip{position:absolute;left:-999px;top:0;background:var(--ink);color:var(--paper);padding:.7rem 1rem;z-index:100}
.skip:focus{left:8px;top:8px}

/* ---------- responsive ---------- */
@media(max-width:860px){
  .hero-grid{grid-template-columns:1fr;gap:1.5rem}
  .hero-media{order:-1;max-width:420px;margin:0 auto}
  .info-grid,.feature-band{grid-template-columns:1fr}
  .feature-band .fb-media{order:-1}
  .footer-grid{grid-template-columns:1fr 1fr}
  .quickbar .wrap{grid-template-columns:1fr}
  .qb-item + .qb-item{box-shadow:0 -1px 0 rgba(255,253,249,.14)}
}
@media(max-width:680px){
  .nav-links{position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;
    gap:0;background:var(--paper);border-bottom:1px solid var(--line);
    opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .2s,transform .2s;
    box-shadow:var(--shadow-sm);padding:.4rem}
  .nav.open .nav-links{opacity:1;visibility:visible;transform:none}
  .nav-links a{padding:.85rem 1rem;border-radius:2px}
  .nav-toggle{display:inline-flex}
  .footer-grid{grid-template-columns:1fr}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1!important;transform:none!important}
  .crease-h::after{transform:scaleX(1)!important;transition:none}
  *{animation:none!important}
}
