* {
  box-sizing: border-box;
}

:root {
  --cream: #f5f1e8;
  --card: #fbfaf5;
  --wine: #641713;
  --wine-soft: #8e3a32;
  --gold: #c49a4a;
  --text: #214b48;
  --muted: #8c8c87;
  --border: #ddd8cc;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170,160,140,.10) 1px, transparent 1px),
    var(--cream);
  background-size: 100% 38px, 38px 100%;
}

.page {
  min-height: 100vh;
  padding: 28px 14px 34px;
  display: flex;
  justify-content: center;
}

.card {
  width: min(100%, 490px);
  min-height: calc(100vh - 62px);
  padding: 30px 22px 24px;
  border-radius: 34px;
  background: rgba(251,250,245,.94);
  box-shadow:
    0 20px 50px rgba(72,62,42,.12),
    0 0 0 1px rgba(255,255,255,.7);
  text-align: center;
}

.logo-wrap {
  width: min(76vw, 300px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 7px var(--gold),
    0 12px 30px rgba(79,55,20,.18);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1 {
  margin: 25px 0 10px;
  font-size: clamp(25px, 7vw, 34px);
  font-weight: 800;
  color: var(--text);
}

.slogan {
  margin: 0 auto 28px;
  max-width: 420px;
  padding: 26px 20px;
  border: 4px dashed var(--gold);
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  color: var(--text);
  font-size: clamp(20px, 5.4vw, 28px);
  line-height: 1.8;
  font-weight: 700;
}

.links {
  display: grid;
  gap: 18px;
}

.link {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  border: 5px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(80,70,50,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.link:hover {
  transform: translateY(-3px);
  border-color: rgba(196,154,74,.65);
  box-shadow: 0 10px 22px rgba(80,70,50,.12);
}

.link-text {
  flex: 1;
  text-align: right;
}

.link-text strong {
  display: block;
  font-size: clamp(22px, 5.5vw, 29px);
  line-height: 1.25;
  font-weight: 800;
}

.link-text span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: white;
  font-size: 38px;
  font-weight: 800;
  box-shadow: inset 0 -5px 10px rgba(0,0,0,.08);
}

.facebook { background: #287be0; }
.instagram { background: linear-gradient(135deg, #f4b14d, #d62976 55%, #5631a8); }
.tiktok { background: #171717; }
.whatsapp { background: #3bbf72; }

footer {
  margin-top: 26px;
  color: #aaa69c;
  font-size: 12px;
}

@media (max-width: 420px) {
  .card {
    padding: 25px 14px 20px;
  }

  .link {
    min-height: 88px;
    padding: 12px 14px;
    gap: 12px;
  }

  .icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .link-text span {
    font-size: 14px;
  }
}
