:root {
  --bg-rose: #fff5f7;
  --rose-100: #ffe2ea;
  --rose-200: #f7bfd0;
  --rose-300: #ee96b3;
  --rose-500: #d67093;
  --rose-700: #9f4667;
  --plum-900: #402330;
  --text-main: #4a2c39;
  --text-soft: #6c4b59;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --border-soft: rgba(214, 112, 147, 0.16);
  --shadow-soft: 0 20px 40px rgba(132, 70, 93, 0.12);
  --shadow-strong: 0 24px 60px rgba(120, 54, 81, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at bottom right, rgba(238, 150, 179, 0.25) 0, rgba(238, 150, 179, 0) 34%),
    linear-gradient(180deg, #fff9fb 0%, #ffeef3 46%, #fde0ea 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
}

body::before {
  top: -120px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(214, 112, 147, 0.16);
}

body::after {
  bottom: 100px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(247, 191, 208, 0.34);
}

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

.card-page {
  padding: 24px 16px 104px;
}

.card-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.hero-card,
.info-card,
.detail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 28px 22px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 247, 0.86)),
    linear-gradient(135deg, rgba(214, 112, 147, 0.12), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-strong);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -28px -42px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(214, 112, 147, 0.16) 0, rgba(214, 112, 147, 0) 68%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-700);
}

.brand-mark {
  display: block;
  width: min(210px, 62vw);
  height: auto;
  margin: 0 auto 12px;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--plum-900);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-align: center;
}

h2 {
  font-size: clamp(2rem, 6vw, 2.7rem);
}

.info-card h2 {
  font-size: clamp(1.9rem, 4.8vw, 2.55rem);
}

.detail-card h2 {
  font-size: clamp(1.85rem, 5vw, 2.95rem);
  padding: 10px 0;
}

.hero-copy,
.hero-note,
.detail-card p,
.info-card h2,
.info-card p {
  margin: 0;
  line-height: 1.65;
}

.hero-copy {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-main);
}

.hero-note {
  margin-top: 10px;
  font-size: 0.96rem;
  text-align: center;
  color: var(--text-soft);
}

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

.action,
.info-action,
.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.action:active,
.info-action:active,
.mobile-cta-bar a:active {
  transform: translateY(1px);
}

.action-primary {
  color: #fff;
  background: linear-gradient(135deg, #dc7194, #b85477);
  box-shadow: 0 14px 30px rgba(184, 84, 119, 0.28);
}

.action-secondary {
  color: var(--rose-700);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 112, 147, 0.24);
}

.info-card,
.detail-card {
  padding: 22px 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.info-card h2 {
  color: var(--plum-900);
}

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

.info-action {
  min-height: 118px;
  padding: 16px 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 24px rgba(154, 88, 114, 0.08);
}

.info-action span.fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(214, 112, 147, 0.12);
  color: var(--rose-700);
  font-size: 1.1rem;
}

.info-action strong {
  font-size: 0.98rem;
  color: var(--plum-900);
  overflow-wrap: anywhere;
}

.info-action small {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.details-grid {
  display: grid;
  gap: 18px;
}

.detail-card p + p {
  margin-top: 6px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(214, 112, 147, 0.08);
  border: 1px solid rgba(214, 112, 147, 0.16);
  font-weight: 600;
  color: var(--rose-700);
}

.support-note {
  margin-top: 16px !important;
  color: var(--text-soft);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(214, 112, 147, 0.15);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 700;
  color: var(--rose-700);
}

.text-link::after {
  content: "\f105";
  margin-left: 8px;
  font-family: FontAwesome;
}

.detail-card-soft {
  background: linear-gradient(180deg, rgba(255, 252, 253, 0.96), rgba(255, 240, 245, 0.85));
}

.mobile-cta-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(74, 44, 57, 0.88);
  box-shadow: 0 18px 40px rgba(54, 28, 39, 0.28);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar a {
  min-height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta-bar a:last-child {
  background: linear-gradient(135deg, #dc7194, #b85477);
}

@media (min-width: 640px) {
  .card-page {
    padding: 40px 24px 32px;
  }

  .card-shell {
    width: min(100%, 1040px);
    gap: 22px;
  }

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

  .primary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-cta-bar {
    display: none;
  }
}

@media (min-width: 900px) {
  .card-page {
    padding: 56px 24px;
  }

  .card-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    align-items: start;
  }

  .hero-card {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    position: sticky;
    top: 32px;
    padding: 34px 30px 30px;
  }

  .info-card {
    grid-column: 2 / 3;
  }

  .details-grid {
    grid-column: 2 / 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card {
    grid-column: 2 / 3;
  }

  .details-grid .detail-card {
    grid-column: auto;
  }

  .details-grid .detail-card h2 {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .action:hover,
  .info-action:hover,
  .mobile-cta-bar a:hover,
  .contact-list a:hover,
  .text-link:hover {
    transform: translateY(-2px);
  }

  .info-action:hover {
    box-shadow: 0 16px 28px rgba(154, 88, 114, 0.13);
  }

  .action-primary:hover,
  .mobile-cta-bar a:last-child:hover {
    box-shadow: 0 18px 34px rgba(184, 84, 119, 0.34);
  }
}

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

  .hero-card,
  .info-card,
  .detail-card {
    border-radius: 24px;
  }
}
