:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #555;
  --color-accent: #2563eb;
  --color-border: #ccc;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

a { color: var(--color-accent); }

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

header nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

main section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.85rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.hero {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero p {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
}

.card p { color: var(--color-muted); }

#location p { margin-bottom: 0.5rem; }

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
}

#contact-form label {
  font-weight: 500;
  font-size: 0.9rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.6rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
}

#contact-form textarea { min-height: 120px; resize: vertical; }

/* Honeypot: hidden from sighted users and screen readers, but still present
   in the DOM/tab order-free so naive bots that fill every input trip it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#contact-form button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

#contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#form-status { font-size: 0.9rem; }

.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.whatsapp-button img { display: block; }

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

footer a { color: inherit; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.12);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  font: inherit;
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 { font-size: 4rem; }

.legal main section {
  max-width: 760px;
}

.legal h2 { margin-top: 2rem; font-size: 1.3rem; }
.legal p { margin-bottom: 1rem; }
