*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f0ec;
  --card: #faf8f6;
  --accent: #d4a9b8;
  --accent-light: #f0e4ea;
  --accent-dark: #7a5070;
  --text: #2e2e2e;
  --text-muted: #5a5550;
  --border: #e8e4e0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
}

.card {
  background-color: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  width: 100%;
  max-width: 420px;
}


/* Logo */

.logo {
  width: 170px;
  height: auto;
  border-radius: 50%;
}

/* Tagline */

.tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* CTA */

.book-btn {
  display: inline-block;
  padding: 0.85rem 2.6rem;
  background: linear-gradient(135deg, var(--accent-dark), #8a6080);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(122, 80, 112, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.book-btn:hover,
.book-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 80, 112, 0.4);
  outline: none;
}

/* Contact links */

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 400;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.link-pill:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background-color: var(--accent-light);
}

.pill-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Divider */

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--accent);
  border: none;
  margin: 0;
}

/* Reviews */

.reviews {
  width: 100%;
  text-align: center;
}

.reviews-header {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.stars {
  color: #d4a843;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 0.15rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.review {
  background-color: var(--bg);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.8rem;
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  border: none;
  text-align: left;
  position: relative;
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 0.3rem;
  left: 0.6rem;
  opacity: 0.6;
}

.review p {
  position: relative;
  padding-left: 0.8rem;
}

.review cite {
  display: block;
  margin-top: 0.4rem;
  padding-left: 0.8rem;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Location */

.location {
  width: 100%;
  text-align: center;
}

.address {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  height: 120px;
  border: 1px solid var(--border);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer */

footer {
  margin-top: 0.2rem;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: 0.05em;
}

@media (min-width: 600px) {
  .card {
    max-width: 500px;
    padding: 2.5rem 2.5rem 2.2rem;
  }

  .logo {
    width: 190px;
  }

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

  .map {
    height: 140px;
  }
}
