:root {
  --bg: #e6e2ee;
  --bg-card: rgba(255, 255, 255, 0.45);
  --ink: #2a2633;
  --ink-soft: #4a4458;
  --accent: #6b5b7a;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(180, 170, 210, 0.35), transparent 45%);
}

.page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.hero {
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
}

.hero__intro {
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
}

.hero__intro::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.45;
}

.hero__body {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.65;
  text-align: left;
}

.hero__body p {
  margin: 0 0 1rem;
}

.hero__body p:last-child {
  margin-bottom: 0;
}

.hero__script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}

.hero__script--small {
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1.1;
}

.hero__script--by {
  font-size: 1.75rem;
  margin-top: 0.15rem;
  opacity: 0.9;
}

.hero__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  letter-spacing: 0.02em;
  margin: 0.35rem 0 0.75rem;
  line-height: 1;
}

.hero__tag {
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.values {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.values__text {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  margin: 0;
  color: var(--accent);
  line-height: 1.4;
}

.services__intro {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact__intro {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

.services__heading,
.contact__heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.services__list {
  list-style: none;
  margin: 0 auto 2.5rem;
  padding: 0.25rem 0 0;
  max-width: 40rem;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.services__item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(107, 91, 122, 0.14);
  text-align: center;
}

.services__item:last-child {
  border-bottom: none;
  padding-bottom: 1.35rem;
}

.services__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.services__detail {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

.contact {
  text-align: center;
  padding: 1.75rem;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.contact__item {
  margin: 0.75rem 0 0;
}

.contact__item:first-of-type {
  margin-top: 0.25rem;
}

.contact__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 91, 122, 0.35);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer p {
  margin: 0;
}

.footer__legal {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.footer__legal a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 91, 122, 0.35);
}

.footer__legal a:hover {
  border-bottom-color: var(--accent);
}

.legal-page {
  padding-top: 1.5rem;
}

.legal-back {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

.legal-back a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 91, 122, 0.35);
}

.legal-back a:hover {
  border-bottom-color: var(--accent);
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 1.75rem 1.5rem 2rem;
  backdrop-filter: blur(6px);
}

.legal-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.65rem;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  margin: 0.5rem 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-content ul {
  margin: 0.5rem 0 0.5rem 1.25rem;
  padding: 0;
}

.legal-content .placeholder {
  background: rgba(107, 91, 122, 0.12);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-style: italic;
}

.legal-page .footer--after-legal {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .services__item {
    text-align: left;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
