/* ============================================================
   Cathie's Dry Cleaners — Design System
   ============================================================ */
:root {
  /* Brand palette */
  --red:        #C9272D;
  --red-deep:   #9F1F26;
  --red-darker: #7E171D;
  --cream-y:    #FFDE59;   /* brand yellow */
  --cream-bg:   #FBF0E4;   /* soft page background (cream) */
  --cream-card: #FFFDF4;
  --ink:        #1F1F1F;
  --ink-soft:   #494644;
  --white:      #FFFFFF;
  --line:       #EFE7C8;   /* hairline on cream */
  --line-soft:  #F2ECD4;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Radii + shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(31,31,31,.06);
  --shadow:    0 12px 30px -12px rgba(31,31,31,.22);
  --shadow-red: 0 14px 30px -10px rgba(159,31,38,.45);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 800; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* Section rhythm */
section { padding-block: clamp(56px, 8vw, 104px); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 52px; line-height: 1; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--red-deep); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #000; transform: translateY(-2px); }
.btn-cream { background: var(--cream-y); color: var(--red-darker); }
.btn-cream:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; min-height: 60px; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,240,228,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(251,240,228,.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; }
@media (max-width: 540px) { .brand-logo { height: 42px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 9px 14px; border-radius: var(--r-pill); font-weight: 600; font-size: .96rem; color: var(--ink-soft); transition: color .15s, background .15s; }
.nav a:hover { color: var(--red-deep); background: rgba(201,39,45,.07); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--white); cursor: pointer; align-items: center; justify-content: center; flex: none;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav-toggle .ic-close { display: none; }
body.menu-open .nav-toggle .ic-open { display: none; }
body.menu-open .nav-toggle .ic-close { display: block; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: var(--cream-bg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--gutter) 40px; overflow-y: auto;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a.m-link { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-nav a.m-link:active { color: var(--red); }
.mobile-nav .m-cta { margin-top: 28px; display: grid; gap: 12px; }
.mobile-nav .m-cta .btn { justify-content: center; width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
.hero h1 .hl { color: var(--red); }
.hero .lede { margin-top: 22px; font-size: 1.18rem; color: var(--ink-soft); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; color: var(--red); flex: none; }

/* Hero photo */
.hero-photo { position: relative; }
.hero-photo .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 6px solid var(--white); aspect-ratio: 4/3; background: var(--line);
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .deco { position: absolute; inset: 0; border-radius: var(--r-lg); border: 2px solid var(--cream-y); transform: rotate(-2.2deg); z-index: -1; }

/* Offer badge */
.offer-badge {
  position: absolute; left: -14px; bottom: -22px; z-index: 3;
  background: var(--cream-y); color: var(--red-darker);
  border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow);
  border: 2px solid var(--white); max-width: 230px; transform: rotate(-3deg);
}
.offer-badge .price { font-family: var(--serif); font-weight: 900; font-size: 2.1rem; line-height: 1; display: block; }
.offer-badge .label { font-weight: 800; font-size: .96rem; margin-top: 4px; display: block; }
.offer-badge .fine { font-size: .68rem; color: var(--red-deep); margin-top: 6px; display: block; opacity: .85; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { background: var(--white); border-block: 1px solid var(--line); padding-block: clamp(40px, 6vw, 64px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card { display: flex; gap: 14px; align-items: flex-start; padding: 6px 4px; }
.trust-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--cream-bg); display: grid; place-items: center; flex: none; }
.trust-card .ic svg { width: 24px; height: 24px; color: var(--red); }
.trust-card h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 800; }
.trust-card p { font-size: .92rem; color: var(--ink-soft); margin-top: 3px; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--cream-bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.svc-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 22px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--cream-y); }
.svc-card .ic { width: 52px; height: 52px; border-radius: 13px; background: var(--red); display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-red); }
.svc-card .ic svg { width: 28px; height: 28px; color: var(--white); }
.svc-card h3 { font-family: var(--sans); font-size: 1.12rem; font-weight: 800; }
.svc-card p { margin-top: 7px; color: var(--ink-soft); font-size: .94rem; }

/* ============================================================
   Offer band
   ============================================================ */
.offer {
  background: var(--red);
  background-image: radial-gradient(circle at 18% 120%, var(--red-deep), transparent 55%),
                    radial-gradient(circle at 95% -10%, var(--red-darker), transparent 45%);
  color: var(--white); position: relative; overflow: hidden;
}
.offer .wrap { position: relative; z-index: 2; }
.offer-card {
  background: var(--cream-y); color: var(--red-darker); border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 60px); display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center; box-shadow: var(--shadow);
  border: 3px solid var(--white);
}
.offer-card .tag { font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; color: var(--red); }
.offer-card h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-top: 12px; color: var(--red-deep); }
.offer-card .support { margin-top: 16px; font-size: 1.1rem; color: var(--red-darker); max-width: 42ch; }
.offer-card .fine { margin-top: 16px; font-size: .85rem; opacity: .8; max-width: 46ch; }
.offer-card .cta { margin-top: 26px; }
.offer-price {
  text-align: center; background: var(--white); border-radius: var(--r);
  padding: 34px 20px; box-shadow: var(--shadow-sm); border: 2px dashed var(--red);
}
.offer-price .big { font-family: var(--serif); font-weight: 900; font-size: clamp(4rem, 9vw, 6rem); line-height: .9; color: var(--ink); }
.offer-price .big sup { font-size: .35em; vertical-align: super; }
.offer-price .num { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: var(--red); display: block; margin-bottom: 4px; }
.offer-price .small { font-weight: 700; color: var(--ink-soft); margin-top: 8px; font-size: .95rem; }

/* ============================================================
   Local / Visit
   ============================================================ */
.local { background: var(--white); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: stretch; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--white); min-height: 360px; background: var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.address-col { display: flex; flex-direction: column; justify-content: center; }
.address-card {
  background: var(--cream-bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; margin-top: 26px;
}
.address-card .row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.address-card .row:last-child { border-bottom: 0; }
.address-card .row svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 3px; }
.address-card .row .k { font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.address-card .row .v { font-size: 1.08rem; font-weight: 600; }
.address-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ============================================================
   Why choose
   ============================================================ */
.why { background: var(--cream-bg); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.why-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; }
.why-card .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-y); display: grid; place-items: center; margin-bottom: 16px; }
.why-card .ic svg { width: 22px; height: 22px; color: var(--red-deep); }
.why-card h3 { font-family: var(--sans); font-size: 1.08rem; font-weight: 800; }
.why-card p { margin-top: 6px; color: var(--ink-soft); font-size: .94rem; }
.quality-banner {
  margin-top: 40px; background: var(--ink); color: var(--white);
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 46px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.quality-banner .qmark { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 5vw, 3rem); color: var(--cream-y); }
.quality-banner p { color: rgba(255,255,255,.8); max-width: 52ch; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--red); background-image: radial-gradient(circle at 90% 110%, var(--red-deep), transparent 50%); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.contact h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.contact .lede { margin-top: 16px; font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 40ch; }
.contact-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-card { background: var(--white); color: var(--ink); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow); }
.contact-card .ci { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-card .ci:first-child { padding-top: 0; }
.contact-card .ci:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card .ci .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--cream-bg); display: grid; place-items: center; flex: none; }
.contact-card .ci .ic svg { width: 22px; height: 22px; color: var(--red); }
.contact-card .ci .k { font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.contact-card .ci .v { font-size: 1.1rem; font-weight: 600; }
.contact-card .ci .v a:hover { color: var(--red); }
.contact-card .ci .note { font-size: .9rem; color: var(--ink-soft); }
.contact-card .hours { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 0; }
.contact-card .hours li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.contact-card .hours li:last-child { border-bottom: 0; }
.contact-card .hours li span { color: var(--ink-soft); font-weight: 600; }
.contact-card .hours li b { font-weight: 700; color: var(--ink); }
.contact-card .hours li.closed b { color: var(--red); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding-block: 56px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer .brand-footer .brand-logo { height: 78px; }
.footer .tag { margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.footer h4 { font-family: var(--sans); color: var(--white); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a:hover, .footer ul li:hover { color: var(--white); }
.footer .fb-link { display: inline-flex; align-items: center; gap: 9px; }
.footer .fb-link svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .85rem; }
.footer-bottom .credit { color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .credit b { color: var(--cream-y); font-weight: 700; }
.footer-bottom .credit a { display: inline-flex; align-items: center; }
.footer-bottom .credit .nod-logo { width: auto; height: 18px; display: inline-block; }

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; gap: 10px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(251,240,228,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(31,31,31,.4);
}
.call-bar .btn { flex: 1; justify-content: center; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav, .header-cta .btn-red { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 520px; }
  .hero .lede { max-width: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .offer-card { grid-template-columns: 1fr; gap: 30px; }
  .local-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .call-bar { display: flex; }
  body { padding-bottom: 84px; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .offer-badge { left: 50%; transform: translateX(-50%) rotate(-3deg); bottom: -28px; }
  .hero-actions .btn, .contact-actions .btn { flex: 1; justify-content: center; }
}
