:root {
  --bg: #f6f4f1;
  --card: #fff;
  --line: #e8e2da;
  --text: #1c1917;
  --muted: #5c564e;
  --accent: #b45a2a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(246,244,241,.94);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; justify-content: flex-start; gap: 1rem; padding: 1rem 0 1.05rem; }
.aside { text-align: right; line-height: 1.3; }
.aside strong { display: block; font-size: .88rem; }
.aside span { display: block; color: var(--muted); font-size: .8rem; }
.aside .maps { display: inline-block; margin-top: .28rem; color: var(--accent); font-size: .8rem; font-weight: 700; }
.brand { font-weight: 800; font-size: clamp(1.35rem, 3.4vw, 2rem); letter-spacing: .01em; line-height: 1.2; }
.phone { color: var(--accent); font-weight: 750; white-space: nowrap; }
.hero { padding: 1.6rem 0 1.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-copy h1 { max-width: 18ch; }
.tagline {
  margin: 0;
  color: var(--accent);
  border-top: 3px solid var(--accent);
  padding: .75rem 0 0;
  line-height: 1.15;
}
.tagline .q {
  display: block;
  font-size: 1.35rem;
  font-weight: 750;
}
.tagline .y {
  display: block;
  margin-top: .25rem;
  font-size: 1.75rem;
  font-weight: 800;
}
.kicker { color: var(--muted); font-size: .85rem; margin-bottom: .45rem; }
.lede { margin: .7rem 0 1rem; color: var(--muted); max-width: 48ch; }
.chip {
  display: inline-block; padding: .25rem .7rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-size: .85rem; color: var(--muted);
}
.cta-row { display: block; margin-top: .15rem; }
.cta { color: var(--muted); font-size: .98rem; margin: 0 0 .7rem; max-width: none; }
.actions { margin-top: 0; display: flex; gap: .55rem; flex-wrap: wrap; }
.btn {
  padding: .68rem 1.05rem; border-radius: 999px; font-weight: 750;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
}
.btn.ghost { background: #fff; color: var(--text); border-color: var(--line); }
.btn.wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.btn.wa svg { display: block; flex-shrink: 0; }
.btn.mail { background: #fff; color: var(--text); border-color: var(--line); }
h2 { font-size: 1.1rem; margin: 0 0 .85rem; }
.note { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; }
.grid { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); padding-bottom: 2.4rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.card img { width: 100%; height: 148px; object-fit: cover; display: block; background: #ddd; }
.card .txt { padding: .8rem .9rem 1rem; }
.card h3 { font-size: .98rem; margin-bottom: .25rem; }
.card p { color: var(--muted); font-size: .88rem; }
footer {
  margin-top: .4rem;
  background: #e07030;
  color: #fff8f3;
  padding: 1.55rem 0 1.85rem;
}
.foot {
  display: block;
  text-align: center;
  font-size: .95rem;
  line-height: 1.55;
}
.foot-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: .35rem;
}
.foot p { margin: 0; }
.foot strong { font-weight: 800; letter-spacing: .02em; }
.foot a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 2.4rem;
  }
  .tagline {
    border-top: none;
    border-left: 4px solid var(--accent);
    padding: .2rem 0 .2rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tagline .q { font-size: clamp(1.55rem, 3.4vw, 2.35rem); }
  .tagline .y { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-top: .45rem; }
}
@media (max-width: 899px) {
  .tagline {
    display: block;
    border-top: 3px solid var(--accent);
    padding-top: .75rem;
    white-space: normal;
  }
  .tagline .q,
  .tagline .y {
    display: inline;
    font-size: 1.28rem;
    line-height: 1.3;
    font-weight: 750;
    margin: 0;
  }
  .tagline .y { font-weight: 800; }
}
@media (max-width: 640px) {
  .card img { height: 170px; }
  .brand { font-size: 1.2rem; }
}
