* {
  box-sizing: border-box;
}

:root {
  --cream: #fdf9f7;
  --pink: #e99ab7;
  --pink-dark: #d9799d;
  --green: #173f34;
  --text: #26332f;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(233,154,183,.16), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(23,63,52,.08), transparent 30%),
    var(--cream);
  color: var(--text);
}

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

.card {
  width: min(900px, 100%);
  min-height: 500px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(23,63,52,.07);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(23,63,52,.10);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: linear-gradient(145deg, #f9e7ed, #fdf9f7);
}

.logo {
  width: min(100%, 330px);
  height: auto;
  mix-blend-mode: multiply;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 38px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.035em;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  padding: 16px 21px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: .01em;
  box-shadow: 0 12px 28px rgba(23,63,52,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(23,63,52,.23);
}

.phone-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 17px;
  transform: rotate(-35deg);
}

@media (max-width: 720px) {
  .page {
    padding: 16px;
  }

  .card {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .logo-wrap {
    min-height: 280px;
    padding: 32px 34px 18px;
  }

  .logo {
    width: min(260px, 72%);
  }

  .content {
    padding: 34px 28px 40px;
  }

  h1 {
    margin-bottom: 30px;
    font-size: clamp(44px, 13vw, 58px);
  }

  .phone {
    width: 100%;
    justify-content: center;
    font-size: 20px;
  }
}
