@font-face {
  font-family: "Amsterdam Four";
  src: url("fonts/AmsterdamFour.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --lavender: #d8d1f0;
  --lavender-deep: #cfc6e8;
  --purple: #8b7fb3;
  --purple-heading: #a698c7;
  --ink: #4a4a5a;
  --ink-soft: #6b6d8e;
  --cream: #f7f4fc;
  --white: #fdfcff;
  --max: 42rem;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-script: "Amsterdam Four", "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #ebe6f8 0%, transparent 55%),
    linear-gradient(180deg, var(--lavender) 0%, var(--cream) 38%, var(--white) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ink);
}

.site-header {
  display: flex;
  justify-content: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0.5rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--ink);
}

.nav a.nav-account {
  color: var(--ink);
}

.nav a.nav-account.is-signed-in {
  color: var(--purple-heading, var(--purple, #6b5b95));
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(12rem, 42vw, 17rem);
  height: auto;
  margin: 0 auto 1.75rem;
}

.section-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.lede {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 0;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-ghost {
  background: transparent;
  color: var(--ink-soft);
}

.button-ghost:hover {
  background: var(--lavender-deep);
  border-color: var(--purple);
  color: var(--ink);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-soft {
  background: color-mix(in srgb, var(--lavender) 45%, transparent);
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-soft > * {
  width: 100%;
  max-width: var(--max);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.script {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.45em 0 0.15em;
  font-family: var(--font-script);
  font-size: clamp(2.75rem, 7vw, 3.75rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

.script::before,
.script::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--purple-heading);
}

.prose p {
  margin: 0 0 1.1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.prose p:last-child {
  margin-bottom: 0;
}

.benefit-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 28rem;
  text-align: center;
}

.benefit-list li {
  position: relative;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.benefit-list li + li {
  border-top: 1px solid color-mix(in srgb, var(--purple) 35%, transparent);
}

.price-block {
  margin-bottom: 2.25rem;
}

.price-block:last-child {
  margin-bottom: 0;
}

.price-block h3 {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-heading);
}

.price-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-block li {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-top: 1px solid color-mix(in srgb, var(--purple) 30%, transparent);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.price-block li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--purple) 30%, transparent);
}

.price-block li span:last-child {
  font-weight: 500;
  white-space: nowrap;
}

.contact-blurb .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.studio-address {
  display: block;
  margin: 1.75rem 0 0.75rem;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-blurb .note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: none;
}

.map-wrap {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--purple) 40%, transparent);
  background: var(--lavender-deep);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) saturate(0.9);
}

.map-link {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-footer p {
  margin: 0;
}

.site-footer-copy {
  margin: 0;
}

.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  padding: 0.15rem 0;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-badge img {
  display: block;
  width: auto;
  height: 2.35rem;
  max-width: 8.5rem;
  object-fit: contain;
}

.site-footer-links {
  margin: 0;
}

.site-footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--lavender-deep, #8b7fb3);
}

.site-footer-links span {
  margin: 0 0.4rem;
  opacity: 0.55;
}

.legal-page {
  max-width: 40rem;
  margin-inline: auto;
}

.legal-meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: none;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-serif, Georgia, serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink, #4a4a5a);
}

.legal-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-prose li {
  margin: 0.35rem 0;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .script::before,
  .script::after {
    flex-basis: 1.25rem;
  }

  .price-block li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    text-align: center;
  }
}
