:root {
  --bg: #f7f5f3;
  --text: #1f252b;
  --muted: #4b5563;
  --primary: #d7263d;
  --secondary: #0f766e;
  --surface: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max-width: 1080px;
  --gap: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(215, 38, 61, 0.06), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(15, 118, 110, 0.05), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.page { display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__name { font-weight: 700; letter-spacing: 0.01em; }
.brand__city { font-size: 0.9rem; color: var(--muted); }

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.hero__media img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__title { margin: 0 0 0.2rem; font-size: clamp(1.9rem, 4vw, 2.4rem); }
.hero__subtitle { margin: 0 0 0.5rem; color: var(--muted); font-weight: 600; }

.nap { margin: 0 0 1rem; font-weight: 600; }
.nap__phone { color: var(--secondary); }

.hero__ctas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
  border: 2px solid transparent;
  min-height: 48px;
}

.cta--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(215, 38, 61, 0.25);
}

.cta--secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.cta--tertiary {
  background: #fff7f8;
  color: var(--primary);
  border-color: rgba(215, 38, 61, 0.35);
}

.cta:active { transform: translateY(1px) scale(0.99); }
.cta:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); }

.nav { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.nav__link {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 600;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.section__title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.section__note { color: var(--muted); margin: 0 0 1rem; }

.services {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.services li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery img {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.contact {
  display: grid;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.contact__name { margin: 0 0 0.25rem; font-weight: 700; font-size: 1.1rem; }
.contact__addr { margin: 0 0 0.5rem; color: var(--muted); }
.contact__phone { margin: 0 0 0.75rem; font-weight: 700; }
.contact__ctas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.contact__parking { margin: 0 0 0.5rem; color: var(--muted); }
.contact__reviews { margin: 0; }

.contact__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .hero__media { order: 2; }
  .hero__content { order: 1; }
  .contact { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}

@media (max-width: 520px) {
  .topbar__inner { align-items: flex-start; }
  .hero__ctas { grid-template-columns: 1fr; }
}
