/* Cai Sheng Tailoring and Cleaning — landing
   Standalone styles. Does NOT inherit richardhearn.com styles. */

:root {
  --bg: #f7f1e6;          /* parchment */
  --bg-deep: #efe7d4;     /* deeper parchment */
  --ink: #1a1a1a;         /* charcoal text */
  --ink-soft: #4a4540;    /* muted body */
  --rule: #d9cdb5;        /* hairline */
  --accent: #5b1a1a;      /* oxblood */
  --accent-deep: #3f1212; /* darker oxblood */
  --gold: #a07b3a;        /* warm brass */
  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-1: 0 1px 2px rgba(26, 18, 14, 0.06), 0 8px 24px rgba(26, 18, 14, 0.08);
  --max: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(91, 26, 26, 0.25); }
a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* Top bar */
.topbar {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  border: 0;
}
.brand b { font-weight: 700; }
.topbar .kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  padding: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 540px;
}
.hero-copy {
  padding: 72px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-title {
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 32em;
  margin-bottom: 28px;
}
.hero-meta {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  max-width: 28em;
}
.hero-meta div { margin-bottom: 4px; }
.hero-meta .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-right: 8px;
}
.hero-photo {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* Section base */
section {
  padding: 88px 0;
  border-bottom: 1px solid var(--rule);
}
.section-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  margin-bottom: 14px;
}
.section-intro {
  max-width: 38em;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

/* Services grid */
.services {
  background: var(--bg-deep);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 28px 26px 24px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service .icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}
.service h3 {
  font-family: var(--serif);
  margin: 4px 0 0;
  font-size: 1.18rem;
}
.service .lede {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
.service p { margin: 0; font-size: 0.96rem; }

/* About */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.about-photos > div {
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.about-photos > div:nth-child(1) { grid-row: 1 / 3; }
.about-prose p {
  font-size: 1.05rem;
}
.about-prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.6em;
  line-height: 0.85;
  float: left;
  margin: 6px 10px 0 -2px;
  color: var(--accent);
  font-weight: 700;
}

/* Visit / hours */
.visit {
  background: var(--bg-deep);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.address-block {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
}
.address-block .street { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.address-block .neighborhood {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 0;
}
.hours-table {
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--rule); }
.hours-table td {
  padding: 12px 0;
  font-size: 0.98rem;
  color: var(--ink);
}
.hours-table td:first-child {
  font-family: var(--serif);
  font-weight: 600;
}
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table .closed { color: var(--accent); font-style: italic; }
.map-frame {
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  background: #e8dfca;
  position: relative;
}
.map-frame img { width: 100%; height: auto; display: block; }
.map-frame iframe { width: 100%; display: block; border: 0; }
.map-caption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
  font-style: italic;
}

/* Contact / footer */
.contact {
  background: var(--accent);
  color: #f3e6d2;
  border-bottom: 0;
  padding: 72px 0;
}
.contact .section-eyebrow { color: #d9b97e; }
.contact h2 { color: #f8eed8; }
.contact p { color: #ead8b8; }
.contact a { color: #f6e0a8; border-bottom-color: rgba(246, 224, 168, 0.4); }
.contact a:hover { color: #fff5d8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
.contact-channels {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
}
.contact-channels .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d9b97e;
  margin-right: 10px;
  font-weight: 600;
}
.contact-note {
  font-size: 0.95rem;
  border-left: 2px solid #d9b97e;
  padding-left: 18px;
}

footer.colophon {
  background: var(--accent-deep);
  color: #c9b79a;
  font-size: 0.82rem;
  padding: 22px 0;
  text-align: center;
}
footer.colophon a { color: #e6cf9d; border: 0; }

/* Responsive */
@media (max-width: 880px) {
  body { font-size: 16px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 56px 24px 44px; }
  .hero-photo { min-height: 280px; }
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photos { grid-template-rows: 180px 180px; }
  .wrap { padding: 0 22px; }
}
