:root {
  --ink: #24124d;
  --purple: #6b35d8;
  --purple-dark: #35116f;
  --purple-soft: #efe7ff;
  --pink: #d86aa7;
  --cream: #fffaf4;
  --muted: #6f5c8f;
  --line: rgba(70, 35, 120, 0.14);
  --shadow: 0 22px 60px rgba(63, 32, 116, 0.14);
  --radius: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #38245e;
  font-size: 0.96rem;
}

.nav-links a { position: relative; opacity: 0.9; }
.nav-links a:hover { color: var(--purple); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--purple);
  transform: translateX(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 180ms ease;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #7a42e6, #4a1ca1);
  box-shadow: 0 12px 24px rgba(84, 40, 169, 0.28);
}

.button-secondary {
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(82, 34, 163, 0.25);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(84, 40, 169, 0.22);
}

.mobile-menu { display: none; font-size: 1.8rem; color: var(--purple-dark); }

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 26%, rgba(172, 124, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #fff 0%, #faf5ff 52%, #f2e6ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -170px 20%;
  height: 360px;
  border-radius: 50% 50% 0 0;
  background: rgba(129, 74, 224, 0.09);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 560px;
  padding: 84px 0 74px;
}

.eyebrow {
  color: var(--purple);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero h1, .page-hero h1, .section-title, .quote-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  margin-bottom: 28px;
}

.accent { color: var(--purple); font-style: italic; }
.accent-pink { color: var(--pink); font-style: italic; }

.hero p, .page-hero p {
  max-width: 520px;
  color: #46345f;
  font-size: 1.12rem;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.petal-art {
  min-height: 390px;
  position: relative;
  display: grid;
  place-items: center;
}

.petal {
  position: absolute;
  width: 178px;
  height: 285px;
  border-radius: 58% 42% 66% 34% / 64% 44% 56% 36%;
  filter: drop-shadow(0 24px 36px rgba(57, 24, 117, 0.16));
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.petal.one { background: linear-gradient(145deg, rgba(170, 142, 255, 0.72), rgba(107, 53, 216, 0.42)); transform: translate(-94px, -16px) rotate(-24deg); }
.petal.two { background: linear-gradient(145deg, rgba(93, 37, 188, 0.76), rgba(146, 87, 240, 0.58)); transform: translate(-10px, -26px) rotate(6deg); }
.petal.three { background: linear-gradient(145deg, rgba(237, 117, 171, 0.7), rgba(201, 80, 170, 0.46)); transform: translate(90px, 32px) rotate(46deg); }
.petal.four { background: linear-gradient(145deg, rgba(255, 177, 204, 0.75), rgba(229, 105, 181, 0.48)); transform: translate(178px, 86px) rotate(64deg); }

.feature-strip {
  margin-top: 28px;
  transform: translateY(-56px);
  position: relative;
  z-index: 3;
}

.feature-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.feature {
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--purple-soft);
  display: grid;
  place-items: center;
  color: var(--purple);
  font-size: 1.3rem;
  flex: 0 0 auto;
}

.feature h3 { font-size: 1rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 0.92rem; }

.page-hero {
  padding: 92px 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(216, 106, 167, 0.15), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f8f1ff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.page-section { padding: 96px 0; }

.split-page {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-page.reverse { grid-template-columns: 0.9fr 1fr; }

.section-centre {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-centre .section-copy { margin-inline: auto; }

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  margin-bottom: 24px;
  max-width: 580px;
}

.section-copy {
  color: #4b3b62;
  font-size: 1.06rem;
  max-width: 560px;
  margin-bottom: 26px;
}

.info-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f7f0ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-panel.soft {
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 106, 167, 0.16), transparent 34%),
    linear-gradient(145deg, #fbf7ff, #fff);
}

.info-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #4b3b62;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 235px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbf7ff);
  box-shadow: 0 14px 36px rgba(55, 24, 104, 0.08);
}

.service-card h3 { font-size: 1.26rem; margin: 16px 0 10px; }
.service-card p { color: var(--muted); }

.text-link {
  color: var(--purple);
  font-weight: 800;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.quote {
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 0%, rgba(195, 126, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #20104e, #5a2bb1 55%, #321069);
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -15%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.06);
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-size: 5rem;
  line-height: 0.7;
  color: #d6a5ff;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-card {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(55, 24, 104, 0.07);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-card strong { color: var(--ink); font-weight: 700; }

.contact-form {
  padding: 36px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(70, 35, 120, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fffafc;
  outline: none;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(107, 53, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(107, 53, 216, 0.1);
}

.footer {
  padding: 58px 0 28px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 42px;
}

.footer h4 { margin-bottom: 18px; color: var(--ink); }
.footer p, .footer li, .footer a { color: var(--muted); }
.footer ul { list-style: none; display: grid; gap: 10px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav-links, .site-header .button { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .split-page, .split-page.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 62px; }
  .petal-art { min-height: 310px; }
  .feature-card, .service-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1120px); }
  .brand-name { font-size: 1.85rem; }
  .logo-mark { width: 48px; height: 48px; }
  .feature-card, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .page-section, .page-hero { padding: 64px 0; }
}
