:root {
  color-scheme: light;
  font-family: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  background: #f4faf9;
  color: #173b3c;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(34, 182, 169, 0.19), transparent 32rem),
    linear-gradient(145deg, #eef9f7 0%, #ffffff 48%, #e8f5f2 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.business-card {
  width: min(100%, 680px);
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(9, 113, 117, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(19, 72, 72, 0.14);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 20px;
  background: #e6f6f3;
}

.eyebrow {
  margin: 0 0 5px;
  color: #097175;
  font-size: 0.95rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  color: #123f41;
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  line-height: 1.25;
}

.business-image {
  width: 100%;
  max-height: 330px;
  margin-top: 24px;
  border-radius: 20px;
  object-fit: cover;
  background: #e6f6f3;
}

.meta {
  margin: 16px 0 0;
  color: #4c6e6f;
  font-weight: 700;
}

.description {
  margin: 22px 0 0;
  color: #405f60;
  font-size: 1.08rem;
  line-height: 1.85;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: #097175;
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(9, 113, 117, 0.35);
  background: #eef9f7;
  color: #075e61;
}

.hint {
  margin: 18px 0 0;
  color: #6b8586;
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px;
  }

  .business-card {
    border-radius: 22px;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  .actions {
    grid-template-columns: 1fr;
  }
}
