:root {
  --ink: oklch(18% 0.035 248);
  --muted: oklch(43% 0.04 248);
  --bg: oklch(98% 0.006 248);
  --surface: oklch(100% 0 0);
  --line: oklch(88% 0.018 248);
  --brand: oklch(55% 0.16 156);
  --brand-dark: oklch(29% 0.08 164);
  --accent: oklch(72% 0.16 63);
  --soft: oklch(94% 0.035 156);
  --radius: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: oklch(98% 0.006 248 / 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 900;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.whatsapp,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  padding: 11px 18px;
  text-decoration: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(16px, 4vw, 42px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
  min-height: 78svh;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 900;
  padding: 7px 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 10vw, 5.6rem);
}

h2 {
  max-width: 14ch;
  margin-bottom: 26px;
  font-size: clamp(2.1rem, 6vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.35;
}

.hero-panel,
.map-panel,
.final-cta {
  border-radius: 18px;
  background: var(--brand-dark);
  color: white;
  padding: clamp(24px, 4vw, 36px);
}

.hero-panel p,
.map-panel p,
.final-cta p {
  color: oklch(92% 0.02 164);
}

.hero-photo {
  display: grid;
  min-height: 340px;
  align-content: end;
  border-radius: 18px;
  background:
    linear-gradient(180deg, oklch(18% 0.035 248 / 0.08), oklch(18% 0.035 248 / 0.72)),
    var(--photo, linear-gradient(135deg, var(--brand), var(--accent)));
  background-position: center;
  background-size: cover;
  color: white;
  padding: 24px;
}

.grid,
.cards,
.gallery,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
}

.card p,
.faq-item p,
.seo-list,
.location-list {
  color: var(--muted);
}

.gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface);
}

.photo-slot {
  display: grid;
  min-height: 220px;
  align-content: end;
  background:
    linear-gradient(180deg, transparent, oklch(18% 0.035 248 / 0.62)),
    var(--photo, linear-gradient(135deg, var(--brand), var(--accent)));
  background-position: center;
  background-size: cover;
  color: white;
  padding: 18px;
  font-weight: 900;
}

figcaption {
  color: var(--muted);
  padding: 12px 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.location-list,
.seo-list {
  margin: 0;
  padding-left: 20px;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  box-shadow: 0 8px 18px oklch(18% 0.035 248 / 0.18);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px clamp(16px, 4vw, 42px);
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .final-cta {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
  }
}

@media (max-width: 520px) {
  .button,
  .whatsapp {
    width: 100%;
  }

  .topbar .whatsapp {
    width: auto;
  }
}
