/* ============================================================
   {{BUSINESS_NAME}} — Laundry & Dry Cleaning
   Design language: pure, airy, precise. White / light gray
   with a single teal accent (#0891B2).
   ============================================================ */

:root {
  /* Surfaces */
  --white:      #ffffff;
  --paper:      #fafbfc;
  --gray-50:    #f5f7f8;
  --gray-100:   #eef1f3;
  --gray-150:   #e6eaec;
  --gray-200:   #dde3e6;

  /* Ink (low-saturation, teal-tinted near-black) */
  --ink:        #14242a;
  --ink-soft:   #3a4a50;
  --muted:      #66767c;
  --faint:      #97a3a8;

  /* Accent */
  --teal:       #0891b2;
  --teal-600:   #0e7d99;
  --teal-700:   #0e6a82;
  --teal-tint:  #ecf9fc;
  --teal-tint-2:#e1f4f8;

  /* System */
  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;
  --shadow-sm:  0 1px 2px rgba(20,36,42,.04), 0 8px 24px rgba(20,36,42,.05);
  --shadow-md:  0 2px 6px rgba(20,36,42,.05), 0 18px 50px rgba(20,36,42,.08);
  --ring:       0 0 0 1px var(--gray-150);

  --container:  1180px;
  --pad:        28px;

  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.08; }
p { margin: 0; }
ul, dl { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section[id] { scroll-margin-top: 84px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -.01em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(8,145,178,.22);
}
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 10px 26px rgba(8,145,178,.28); transform: translateY(-1px); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gray-200);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-700); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }
.icon-arrow { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.btn:hover .icon-arrow { transform: translate(2px, -2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--gray-100);
  background: rgba(255,255,255,.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--teal-tint);
  color: var(--teal-700);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav { display: flex; gap: 6px; }
.nav a {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--teal-700); background: var(--gray-50); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 11px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { width: 17px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px var(--pad) 22px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.mobile-nav a {
  padding: 13px 6px;
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gray-50);
}
.mobile-nav a.btn { margin-top: 12px; border-bottom: none; color: var(--white); justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(56px, 9vw, 104px); }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-tint);
  padding: 8px 16px;
  border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.hero-title {
  margin-top: 26px;
  font-weight: 600;
  font-size: clamp(46px, 8.5vw, 92px);
  letter-spacing: -.035em;
  color: var(--ink);
}
.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(17px, 2.2vw, 19.5px);
  color: var(--muted);
  line-height: 1.6;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
}
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 19px; height: 19px; fill: var(--teal); }
.stars--sm svg { width: 16px; height: 16px; }
.rating-num { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.rating-count { font-size: 15px; color: var(--faint); }
.rating-count::before { content: "·"; margin-right: 8px; color: var(--gray-200); }

.hero-cta { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }

.hero-media { margin-top: clamp(48px, 7vw, 84px); }

/* ---------- Photo / placeholder ---------- */
.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-50);
  box-shadow: var(--ring);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .6s var(--ease);
}
.photo-ph {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  background-color: var(--gray-50);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--gray-100) 0, var(--gray-100) 1px,
    transparent 1px, transparent 11px
  );
}
.photo--empty img { opacity: 0; }
.photo--empty .photo-ph { display: flex; }

.photo-wide { aspect-ratio: 16 / 8.4; box-shadow: var(--shadow-md), var(--ring); }

/* ---------- Highlights ---------- */
.highlights { padding: clamp(40px, 6vw, 64px) 0 clamp(8px, 3vw, 20px); }
.highlights-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.highlight { display: flex; align-items: center; gap: 13px; padding: 8px 12px; }
.highlight + .highlight { border-left: 1px solid var(--gray-100); }
.highlight-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--teal-tint);
  color: var(--teal-700);
}
.highlight-icon svg { width: 21px; height: 21px; }
.highlight-text { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink); letter-spacing: -.01em; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 11vw, 132px) 0; }
.section--tint { background: var(--gray-50); }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing: -.03em;
  color: var(--ink);
  text-wrap: balance;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery .photo { box-shadow: var(--ring); }
.gallery-a { grid-column: span 2; grid-row: span 2; }
.gallery-b { grid-column: span 2; grid-row: span 1; }
.gallery-c { grid-column: span 1; grid-row: span 1; }
.gallery-d { grid-column: span 1; grid-row: span 1; }
.gallery-e { grid-column: span 2; grid-row: span 1; }
.gallery [data-lightbox] { cursor: zoom-in; }
.gallery [data-lightbox]:hover img { transform: scale(1.045); }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--teal-tint);
  color: var(--teal-700);
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19.5px; margin-bottom: 10px; color: var(--ink); }
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---------- About + Hours ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.about-copy .section-eyebrow { margin-bottom: 14px; }
.about-text { margin-top: 22px; font-size: 17px; color: var(--ink-soft); line-height: 1.72; max-width: 56ch; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--teal-700);
  border-bottom: 1.5px solid var(--teal-tint-2);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 13px; border-color: var(--teal); }

.hours-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}
.hours-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; color: var(--ink);
}
.hours-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-tint); }
.hours-body { margin-top: 16px; font-size: 16px; color: var(--ink-soft); line-height: 1.85; white-space: pre-line; }
.hours-rule { border: none; border-top: 1px solid var(--gray-100); margin: 24px 0; }
.hours-meta { display: grid; gap: 18px; margin-bottom: 26px; }
.hours-meta dt { font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.hours-meta dd { margin: 0; font-size: 16px; color: var(--ink); }
.hours-meta a:hover { color: var(--teal-700); }

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 940px;
  margin-inline: auto;
}
.review-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}
.review-card blockquote {
  margin: 18px 0 26px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.review-card figcaption { display: flex; align-items: center; gap: 13px; }
.avatar {
  display: block;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0;                 /* hide the full token text */
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.avatar::first-letter { font-size: 16px; }  /* show only the initial */
.review-author { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.contact-copy .about-text { margin-top: 18px; }
.contact-list { display: grid; gap: 4px; margin: 32px 0; }
.contact-list li { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.contact-ic {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--teal-700);
  flex-shrink: 0;
}
.contact-ic svg { width: 22px; height: 22px; }
.contact-label { display: block; font-family: var(--font-display); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 2px; }
.contact-list a:hover { color: var(--teal-700); }

.map-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  max-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.map-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--gray-100) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px) 0 0 / 46px 100%,
    var(--gray-50);
}
.map-road { position: absolute; background: var(--white); box-shadow: 0 0 0 1px var(--gray-100); }
.map-road--1 { top: 32%; left: -5%; width: 110%; height: 14px; transform: rotate(-8deg); }
.map-road--2 { top: -5%; left: 60%; width: 14px; height: 110%; transform: rotate(6deg); }
.map-road--3 { top: 68%; left: -5%; width: 110%; height: 10px; background: var(--teal-tint); box-shadow: none; }
.map-pin {
  position: absolute;
  top: 44%; left: 52%;
  transform: translate(-50%, -50%);
  color: var(--teal);
  filter: drop-shadow(0 6px 10px rgba(8,145,178,.28));
}
.map-pin svg { width: 46px; height: 46px; fill: var(--white); }
.map-label {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 14px 16px;
}
.map-label-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.map-label-sub { font-size: 13.5px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c6d2d6; padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.brand--footer .brand-name { color: var(--white); }
.brand--footer .brand-mark { background: rgba(8,145,178,.18); color: #5fd0e6; }
.footer-tag { margin-top: 14px; font-size: 14.5px; color: #8c9ca1; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 15px; color: #c6d2d6; transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-phone { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--white); letter-spacing: -.01em; }
.footer-maps { font-size: 15px; color: #5fd0e6; border-bottom: 1px solid rgba(95,208,230,.3); padding-bottom: 2px; }
.footer-maps:hover { border-color: #5fd0e6; }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  font-size: 14px;
  color: #8c9ca1;
  flex-wrap: wrap;
}
.footer-rating { display: inline-flex; align-items: center; gap: 8px; }
.footer-star { width: 15px; height: 15px; fill: #5fd0e6; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(20,36,42,.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: scale(.96);
  transition: transform .4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }
.lightbox-close svg { width: 22px; height: 22px; }

/* ---------- Scroll-in animation ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-animate].is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(odd) { border-left: none; }
  .highlight:nth-child(3), .highlight:nth-child(4) { padding-top: 16px; border-top: 1px solid var(--gray-100); }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-a { grid-column: span 2; grid-row: span 2; }
  .gallery-b, .gallery-e { grid-column: span 2; }
  .gallery-c, .gallery-d { grid-column: span 1; }

  .services { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .hours-card { position: static; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-card { max-height: 380px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --pad: 20px; }

  .header-actions .btn { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .highlights-inner { grid-template-columns: 1fr; padding: 16px; }
  .highlight + .highlight { border-left: none; border-top: 1px solid var(--gray-100); padding-top: 16px; }
  .highlight:nth-child(3), .highlight:nth-child(4) { padding-top: 16px; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-a, .gallery-b, .gallery-c, .gallery-d, .gallery-e { grid-column: span 1; grid-row: span 1; }

  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
