:root {
  --brand: #e60000;
  --brand-dark: #b70000;
  --brand-soft: #fff2f2;
  --brand-soft-2: #ffe3e3;
  --ink: #1f2937;
  --muted: #5b6472;
  --line: #e5e7eb;
  --bg: #fffafa;
  --section: #ffffff;
  --section-soft: #f8f9fb;
  --white: #ffffff;
  --success: #0f766e;
  --shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(230, 0, 0, 0.08);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand);
}

.top-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(230, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(230, 0, 0, 0.28);
  background: #fff7f7;
}

.btn-soft {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.btn-soft:hover,
.btn-soft:focus-visible {
  background: var(--brand-soft-2);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.18);
}

.btn-large {
  min-height: 54px;
  padding-inline: 1.4rem;
}

.hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(230, 0, 0, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(230, 0, 0, 0.06), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}

.hero-grid,
.booking-layout,
.contact-grid,
.footer-grid,
.trust-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 4.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.26rem;
}

.lead,
.section-head p,
.hero-copy p,
.feature-card p,
.promo-card p,
.simple-card p,
.service-card p,
.booking-copy p,
.social-card p,
.site-footer p {
  color: var(--muted);
}

.hero-copy .lead {
  margin: 1.3rem 0 0;
  font-size: 1.12rem;
  max-width: 64ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
}

.hero-badges span,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(230, 0, 0, 0.12);
  color: var(--brand-dark);
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-actions {
  margin-top: 1.6rem;
}

.bullet-list,
.check-list,
.social-list,
.contact-stack {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list-hero {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.bullet-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--brand);
}

.card {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card .card,
.booking-card,
.social-card,
.small-card,
.service-card,
.feature-card,
.promo-card,
.simple-card {
  padding: 1.5rem;
}

.accent-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
  border-color: rgba(230, 0, 0, 0.12);
}

.card-kicker {
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.mini-contact,
.contact-stack {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.mini-contact a,
.contact-stack a,
.contact-cards a,
.site-footer a,
.social-list a {
  color: var(--brand-dark);
  font-weight: 600;
}

.trust-strip {
  padding: 0 0 1rem;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.05);
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--section-soft) 0%, #fff 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-head.narrow {
  justify-content: start;
}

.section-head p {
  max-width: 72ch;
  margin: 0.9rem 0 0;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col,
.contact-grid,
.footer-grid,
.booking-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.promo-card,
.simple-card,
.service-card,
.small-card,
.social-card {
  height: 100%;
}

.feature-card h3,
.promo-card h3,
.simple-card h3,
.service-card h3,
.social-card h3,
.small-card strong {
  margin-top: 0.9rem;
}

.compact {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.recommendation {
  margin-top: 1rem;
  font-weight: 600;
}

.highlight-red {
  background: linear-gradient(180deg, #fff 0%, #fff0f0 100%);
  border-color: rgba(230, 0, 0, 0.18);
}

.booking-copy {
  align-self: start;
  padding-top: 1rem;
}

.note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden-field {
  display: none;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.required::after {
  content: " *";
  color: var(--brand);
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #d1d5db;
  background: #fff;
  margin-bottom: 0.9rem;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(230, 0, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.1);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.pill input {
  display: none;
}

.pill span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pill input:checked + span {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.stepper {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 0.55rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fcfcfd;
}

.step .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7cdd6;
}

.step.active {
  border-color: rgba(230, 0, 0, 0.24);
  background: var(--brand-soft);
}

.step.active .dot {
  background: var(--brand);
}

.step span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.step.active span {
  color: var(--ink);
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.privacy input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item div {
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.small-card {
  display: grid;
  gap: 0.45rem;
}

.small-card strong {
  font-size: 0.94rem;
  margin-top: 0;
}

.social-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(229, 231, 235, 0.85);
  background: #fff;
}

.footer-grid {
  align-items: start;
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    justify-content: start;
  }

  .hero-grid,
  .three-col,
  .trust-grid,
  .booking-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .section-head,
  .actions,
  .contact-cards {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stepper {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .btn,
  .top-actions,
  .hero-actions {
    width: 100%;
  }

  .top-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }
}
