.telmo-page {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #f7f5f1;
}

.telmo-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HERO */

.telmo-hero {
  padding: 80px 0 55px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(138, 90, 43, 0.12), transparent 35%),
    linear-gradient(180deg, #f7f5f1 0%, #ffffff 100%);
}

.telmo-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid #d8c7b4;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #8a5a2b;
  background: #fff;
}

.telmo-hero h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.telmo-subline {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.55;
  color: #555;
}

.telmo-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.telmo-trust span {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e6ded4;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

/* CARDS */

.telmo-selection {
  padding: 55px 0 65px;
  background: #fff;
}

.telmo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.telmo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e5ddd4;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.telmo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
  border-color: #c8aa8c;
}

.telmo-card-primary {
  border: 2px solid #8a5a2b;
  box-shadow: 0 18px 45px rgba(138,90,43,0.18);
}

.telmo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.telmo-card:hover img {
  transform: scale(1.035);
}

.telmo-card-body {
  padding: 26px;
}

.telmo-card-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1e7dc;
  color: #8a5a2b;
  font-size: 13px;
  font-weight: 700;
}

.telmo-card h2 {
  margin: 0 0 13px;
  font-size: 25px;
  line-height: 1.2;
}

.telmo-card p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.58;
  color: #555;
}

.telmo-card strong {
  color: #8a5a2b;
  font-size: 16px;
}

/* ABOUT */

.telmo-about {
  padding: 55px 0 75px;
  text-align: center;
  background: #f7f5f1;
}

.telmo-about h2 {
  margin: 0 0 14px;
  font-size: 32px;
}

.telmo-about p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: #555;
}

/* MOBILE */

@media (max-width: 950px) {
  .telmo-grid {
    grid-template-columns: 1fr;
  }

  .telmo-hero {
    padding: 60px 0 40px;
  }

  .telmo-hero h1 {
    font-size: 34px;
  }

  .telmo-subline {
    font-size: 18px;
  }

  .telmo-card-primary {
    transform: none;
  }
}

@media (max-width: 520px) {
  .telmo-container {
    padding: 0 16px;
  }

  .telmo-hero h1 {
    font-size: 29px;
  }

  .telmo-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .telmo-card-body {
    padding: 22px;
  }
}