:root {
  --bg: #f8f6f6;
  --surface: #ffffff;
  --surface-muted: #f3eeee;
  --text: #2a1d1d;
  --muted: #645151;
  --primary: #d40000;
  --primary-dark: #a00000;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  max-width: 100%;
}

img,
iframe,
table {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eadfdf;
}

.nav-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  min-width: 0;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-title {
  font-weight: 700;
}

.logo-red {
  color: var(--primary);
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-list a:hover {
  color: var(--primary);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex: 0 0 42px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 60;
  display: none;
  padding: 0;
}

.mobile-overlay.is-open {
  display: block;
}

.mobile-panel {
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  overflow-y: auto;
}

.mobile-panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.mobile-panel-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
}

.menu-close {
  border: 0;
  background: transparent;
  padding: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.mobile-nav-list a {
  display: block;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0d7d7;
  font-weight: 600;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}

h1 {
  line-height: 1.2;
  margin: 0;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
}

.lead {
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid #e4c9c9;
  background: #fff;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.3rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.contact-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.info-table th,
.info-table td {
  padding: 0.45rem 0;
  vertical-align: top;
  border-bottom: 1px solid #f0d7d7;
  text-align: left;
  overflow-wrap: anywhere;
}

.info-table th {
  width: 145px;
  font-weight: 700;
  color: var(--text);
  padding-right: 1.4rem;
  white-space: nowrap;
}

.info-table td {
  padding-left: 0.6rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.section-muted {
  background: var(--surface-muted);
}

.cards-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.service-image-box {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5ebeb;
  border: 1px solid #f0d7d7;
  margin-bottom: 0.8rem;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-image-box-empty {
  background: repeating-linear-gradient(
    45deg,
    #f8eded,
    #f8eded 10px,
    #f3e3e3 10px,
    #f3e3e3 20px
  );
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.services-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: #fff6f6;
  border: 1px solid #f0d7d7;
  color: var(--muted);
}

.partners-grid {
  display: grid;
  gap: 1rem;
}

.partner-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f0d7d7;
  padding: 1.1rem;
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 132px;
}

.partner-card:hover {
  transform: translateY(-1px);
}

.partner-logo {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.partner-icon {
  width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.partner-content {
  display: grid;
  gap: 0.3rem;
  align-content: center;
  min-width: 0;
}

.partner-desc {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .partner-card {
    padding: 0.9rem;
    gap: 0.7rem;
  }

  .partner-icon {
    width: 100%;
    height: 44px;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    border-bottom: 1px solid #f0d7d7;
    padding: 0.35rem 0;
  }

  .info-table th,
  .info-table td {
    border-bottom: 0;
    padding: 0.2rem 0;
  }

  .info-table th {
    width: auto;
    padding-right: 0;
    white-space: normal;
  }

  .info-table tr:last-child {
    border-bottom: 0;
  }
}

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

.company-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid #f0d7d7;
}

.company-panel h2 {
  margin-top: 0;
}

.company-panel h3 {
  margin: 1rem 0 0.4rem;
}

.company-panel .info-table {
  width: 100%;
  max-width: none;
}

.company-panel p:last-child {
  margin-bottom: 0;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: #2a1414;
  color: #f7eeee;
  padding: 2rem 0 5rem;
}

.footer-grid {
  display: grid;
  gap: 0.6rem 1.5rem;
}

.site-footer a {
  color: #fff;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.whatsapp-fab:hover {
  filter: brightness(0.95);
}

@media (min-width: 780px) {
  .menu-toggle,
  .mobile-overlay {
    display: none !important;
  }

  .nav-list {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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