:root {
  --bg: #fbf7ef;
  --surface: #ffffff;
  --navy: #173152;
  --text: #27364a;
  --muted: #778291;
  --gold: #cda653;
  --green: #1fb866;
  --line: #ece5da;
  --shadow: 0 14px 38px rgba(23, 49, 82, .07);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
}

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

.shell {
  width: min(760px, calc(100% - 28px));
  margin-inline: auto;
}

.hero {
  padding: 48px 0 26px;
  text-align: center;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.logo-wrap img {
  width: 94px;
  height: 94px;
}

.logo-wrap span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .34em;
}

h1 {
  margin: 26px 0 4px;
  color: var(--navy);
  font-size: clamp(38px, 10vw, 60px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.subtitle {
  margin: 0;
  color: #555f6d;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 600;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 800;
}

.location::before {
  content: "⌖";
  color: var(--gold);
  font-size: 20px;
}

.intro {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 15px;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 800;
  transition: transform .18s ease;
}

.btn:active { transform: scale(.985); }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 184, 102, .2);
}

.btn-call {
  border: 1.5px solid var(--navy);
  background: rgba(255,255,255,.72);
  color: var(--navy);
}

.section {
  padding-top: 62px;
}

.section-title {
  margin-bottom: 22px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
}

.section-title::after {
  content: "";
  width: 34px;
  height: 2px;
  display: block;
  margin: 10px auto 0;
  background: var(--gold);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.card {
  min-height: 224px;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  text-align: center;
  box-shadow: var(--shadow);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.card.compact {
  min-height: 200px;
}

.contact {
  padding: 64px 0 36px;
}

.contact-card {
  padding: 28px 20px 32px;
  border: 1px solid #dbc99e;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: -50px auto 12px;
  border: 1px solid #dbc99e;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold);
  font-size: 21px;
}

.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
}

.contact-card p {
  margin: 3px 0 5px;
  color: var(--muted);
}

.phone {
  display: block;
  width: fit-content;
  margin: 0 auto;
  direction: ltr;
  color: var(--navy);
  font-size: clamp(34px, 9vw, 50px);
  font-weight: 900;
  letter-spacing: .03em;
}

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

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

  .card {
    min-height: 194px;
  }
}

@media (max-width: 390px) {
  .shell {
    width: min(100% - 20px, 760px);
  }

  .card {
    padding-inline: 10px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }
}
