:root {
  --purple: #563084;
  --purple-dark: #33205c;
  --purple-soft: #7d56a3;
  --gold: #ca7f2c;
  --gold-soft: #f4dfc4;
  --lavender: #f4edf8;
  --cream: #fffaf5;
  --paper: #fffefd;
  --ink: #252133;
  --muted: #5c5269;
  --line: rgba(94, 58, 118, 0.16);
  --shadow: 0 16px 38px rgba(64, 41, 78, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 21%, rgba(191, 153, 210, 0.18), transparent 18rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 54%, #fff 100%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, 0.96);
  border-bottom: 1px solid rgba(77, 45, 99, 0.08);
  box-shadow: 0 2px 20px rgba(48, 31, 55, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 48px, 1280px);
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-dark);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--purple-dark);
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: none;
  text-align: center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
}

.nav-link {
  position: relative;
  color: #1d1725;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple-soft);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.8rem 1.65rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.service-card:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.social-links a:focus-visible {
  outline: 3px solid rgba(202, 127, 44, 0.35);
  outline-offset: 4px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple) 0%, #7650a0 100%);
  box-shadow: 0 12px 22px rgba(80, 47, 123, 0.24);
}

.button-outline {
  color: #ad661d;
  background: rgba(255, 254, 253, 0.75);
  border-color: rgba(202, 127, 44, 0.64);
}

.button-light {
  color: #a35f19;
  background: linear-gradient(180deg, #fffaf2 0%, #fff2dc 100%);
  box-shadow: 0 13px 28px rgba(53, 31, 81, 0.22);
}

.button-icon {
  width: 21px;
  height: 21px;
}

.button-icon svg,
.social-links svg,
.modal-close svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 8px;
  color: var(--purple-dark);
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 86px 0 auto;
  padding: 18px 24px 28px;
  display: grid;
  gap: 12px;
  background: rgba(255, 251, 246, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  color: var(--purple-dark);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 4px;
}

.hero {
  min-height: 338px;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 73%, rgba(192, 158, 208, 0.32), transparent 13rem),
    linear-gradient(90deg, #fff9f7 0%, #fffdfa 41%, rgba(255, 250, 245, 0.92) 55%, #fff2e7 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  justify-self: end;
  padding: 34px 30px 30px 24px;
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -22%;
  bottom: -18%;
  width: 48%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 45% 44%, rgba(180, 143, 203, 0.22), transparent 58%),
    radial-gradient(circle at 60% 62%, rgba(223, 203, 235, 0.32), transparent 58%);
  border-radius: 46% 54% 38% 62%;
  pointer-events: none;
}

.moon-row {
  height: 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: var(--gold);
}

.moon-row::before,
.moon-row::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.moon-row span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.88;
}

.moon-row span:nth-child(1),
.moon-row span:nth-child(7) {
  width: 8px;
  height: 8px;
  background: transparent;
  box-shadow: 5px 0 0 currentColor;
}

.moon-row span:nth-child(2),
.moon-row span:nth-child(6) {
  background: linear-gradient(90deg, transparent 40%, currentColor 41%);
}

.moon-row span:nth-child(3),
.moon-row span:nth-child(5) {
  opacity: 0.6;
}

.moon-row span:nth-child(4) {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 30% 28%, #f7dbb7, var(--gold));
}

.hero h1 {
  max-width: 690px;
  margin: 0 auto 14px;
  color: var(--purple-dark);
  font-family: var(--serif);
  font-size: clamp(3rem, 3.3vw, 3.65rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 338px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, #fffaf7 5%, rgba(255, 250, 247, 0));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.section {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 10px 0 16px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 8px;
  color: var(--purple-dark);
}

.section-heading span {
  width: 70px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.section-heading h2,
.about h2,
.journey-copy h2,
.modal-intro h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--purple-dark);
  font-size: clamp(1.55rem, 1.8vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading.compact {
  margin-bottom: 14px;
  gap: 18px;
}

.section-heading.compact span {
  width: auto;
  height: auto;
  background: none;
}

.section-heading.compact span::before {
  content: "*";
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

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

.service-card {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(58, 42, 70, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 127, 44, 0.38);
  box-shadow: 0 18px 34px rgba(58, 42, 70, 0.13);
}

.service-icon {
  width: 62px;
  height: 62px;
  color: #8054aa;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-copy {
  display: grid;
  gap: 9px;
}

.service-title {
  color: var(--purple-dark);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.08;
}

.service-text {
  color: #211b2b;
  font-size: 0.78rem;
  line-height: 1.42;
  font-weight: 500;
}

.service-arrow {
  display: none;
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.service-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-soft {
  padding: 10px 0 14px;
  background:
    radial-gradient(circle at 7% 82%, rgba(245, 222, 189, 0.34), transparent 18rem),
    linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  border-top: 1px solid rgba(92, 50, 122, 0.07);
}

.split-layout {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
}

.about {
  min-height: 155px;
  display: grid;
  grid-template-columns: 144px 1fr;
  align-items: center;
  gap: 26px;
  padding-right: 42px;
  border-right: 1px solid rgba(71, 45, 91, 0.2);
}

.portrait-wrap {
  position: relative;
  width: 144px;
  height: 144px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  padding: 6px;
  background: #fffaf6;
  box-shadow: 0 10px 26px rgba(57, 34, 74, 0.12);
}

.portrait-wrap::before,
.portrait-wrap::after {
  content: "*";
  position: absolute;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.portrait-wrap::before {
  right: -12px;
  top: 16px;
}

.portrait-wrap::after {
  left: -12px;
  bottom: 18px;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about p {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.about a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}

.about a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonials {
  padding-left: 42px;
}

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

.testimonial-card {
  position: relative;
  min-height: 112px;
  margin: 0;
  padding: 17px 22px 14px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 9px 22px rgba(58, 42, 70, 0.08);
}

.quote-mark {
  position: absolute;
  top: 15px;
  left: 21px;
  color: rgba(128, 84, 170, 0.28);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 0 0 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 600;
}

.testimonial-card cite {
  display: block;
  color: var(--ink);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
}

.stars {
  margin-top: 9px;
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.journey-cta {
  position: relative;
  min-height: 86px;
  padding: 14px 8vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 209, 155, 0.15), transparent 11rem),
    radial-gradient(circle at 81% 100%, rgba(233, 202, 244, 0.13), transparent 12rem),
    linear-gradient(90deg, #4a2a74 0%, #6c4291 50%, #4a2a74 100%);
}

.journey-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 240, 201, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px);
  background-position: 24px 30px, 86px 62px;
  background-size: 170px 72px, 230px 86px;
  opacity: 0.45;
  pointer-events: none;
}

.crystal-deco,
.moon-medallion,
.journey-copy,
.journey-cta .button {
  position: relative;
  z-index: 1;
}

.crystal-deco {
  width: 150px;
  color: rgba(230, 164, 91, 0.56);
}

.crystal-deco.left {
  justify-self: end;
}

.crystal-deco.right {
  justify-self: start;
}

.crystal-deco svg {
  width: 100%;
  height: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.moon-medallion {
  width: 66px;
  height: 66px;
  color: var(--gold-soft);
}

.moon-medallion svg {
  width: 100%;
  height: 100%;
}

.moon-medallion circle {
  fill: rgba(255, 246, 229, 0.13);
  stroke: rgba(255, 245, 230, 0.25);
}

.moon-medallion path:first-of-type {
  fill: #f8d299;
}

.moon-medallion path:last-of-type {
  fill: #fff5df;
}

.journey-copy {
  text-align: center;
}

.journey-copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  white-space: nowrap;
}

.journey-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer {
  background: rgba(255, 253, 250, 0.98);
}

.footer-inner {
  width: min(100% - 48px, 1220px);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-brand .brand-name {
  font-size: 1.45rem;
}

.footer-brand .brand-subtitle {
  font-size: 0.68rem;
}

.footer-nav {
  display: none;
}

.copyright {
  margin: 0;
  color: #7b7184;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.social-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(63, 38, 95, 0.18);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.contact-detail-modal {
  width: min(92vw, 780px);
  max-height: min(90vh, 900px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 28px 80px rgba(36, 24, 44, 0.32);
  overflow: auto;
}

.contact-detail-modal::backdrop {
  background: rgba(34, 23, 45, 0.5);
  backdrop-filter: blur(4px);
}

.contact-detail-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 127, 44, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 223, 196, 0.72), transparent 13rem),
    radial-gradient(circle at 100% 0%, rgba(244, 237, 248, 0.9), transparent 16rem),
    #fffdfb;
}

.contact-detail-layout {
  display: grid;
  gap: 24px;
  padding: 42px;
}

.contact-detail-intro {
  max-width: 620px;
  padding-right: 36px;
}

.contact-detail-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-detail-intro h2 {
  margin: 0;
  color: var(--purple-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-detail-lede {
  margin: 14px 0 0;
  color: var(--purple);
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 700;
}

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

.contact-method {
  min-width: 0;
  border: 1px solid rgba(128, 84, 170, 0.16);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(58, 42, 70, 0.08);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: rgba(202, 127, 44, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(58, 42, 70, 0.13);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8054aa;
  background: rgba(244, 237, 248, 0.95);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-label,
.contact-method-value {
  display: block;
}

.contact-method-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-method-value {
  margin-top: 4px;
  color: var(--purple-dark);
  font-size: 0.96rem;
  line-height: 1.3;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(63, 38, 95, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(202, 127, 44, 0.23);
}

.contact-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-detail-modal {
  width: min(92vw, 840px);
  max-height: min(90vh, 900px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 28px 80px rgba(36, 24, 44, 0.32);
  overflow: auto;
}

.about-detail-modal::backdrop {
  background: rgba(34, 23, 45, 0.5);
  backdrop-filter: blur(4px);
}

.about-detail-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 127, 44, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 223, 196, 0.78), transparent 13rem),
    radial-gradient(circle at 94% 4%, rgba(244, 237, 248, 0.92), transparent 16rem),
    #fffdfb;
}

.about-detail-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  padding: 42px;
}

.about-detail-portrait {
  width: 220px;
  height: 220px;
  align-self: start;
  border: 2px solid var(--gold);
  border-radius: 50%;
  padding: 8px;
  background: #fffaf6;
  box-shadow: 0 18px 42px rgba(57, 34, 74, 0.14);
}

.about-detail-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-detail-content {
  min-width: 0;
  padding-right: 34px;
}

.about-detail-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-detail-content h2 {
  margin: 0;
  color: var(--purple-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-detail-lede {
  margin: 14px 0 16px;
  color: var(--purple);
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 700;
}

.about-detail-body {
  display: grid;
  gap: 12px;
}

.about-detail-body p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
}

.about-detail-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.about-detail-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.about-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 127, 44, 0.13);
}

.about-detail-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-detail-modal {
  width: min(92vw, 860px);
  max-height: min(90vh, 900px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 28px 80px rgba(36, 24, 44, 0.32);
  overflow: auto;
}

.service-detail-modal::backdrop {
  background: rgba(34, 23, 45, 0.5);
  backdrop-filter: blur(4px);
}

.service-detail-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 127, 44, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 223, 196, 0.72), transparent 13rem),
    radial-gradient(circle at 100% 0%, rgba(244, 237, 248, 0.9), transparent 16rem),
    #fffdfb;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  padding: 42px;
}

.service-detail-icon {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(128, 84, 170, 0.18);
  border-radius: 18px;
  display: grid;
  place-items: center;
  align-self: start;
  color: #8054aa;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(58, 42, 70, 0.11);
}

.service-detail-icon svg {
  width: 122px;
  height: 122px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-content {
  min-width: 0;
  padding-right: 34px;
}

.service-detail-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-detail-content h2 {
  margin: 0;
  color: var(--purple-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-detail-lede {
  margin: 14px 0 16px;
  color: var(--purple);
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 700;
}

.service-detail-body {
  display: grid;
  gap: 12px;
}

.service-detail-body p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
}

.service-detail-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 127, 44, 0.13);
}

.service-detail-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-modal {
  width: min(92vw, 520px);
  max-height: min(90vh, 900px);
  border: 0;
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: #fffdfb;
  box-shadow: 0 28px 80px rgba(36, 24, 44, 0.32);
  overflow: auto;
}

.booking-modal::backdrop {
  background: rgba(34, 23, 45, 0.5);
  backdrop-filter: blur(4px);
}

.booking-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple-dark);
  background: var(--lavender);
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-intro {
  padding-right: 36px;
}

.modal-icon {
  width: 44px;
  height: 44px;
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.modal-intro p {
  margin: 9px 0 2px;
  color: var(--muted);
  line-height: 1.5;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--purple-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(86, 48, 132, 0.22);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.booking-form textarea {
  resize: vertical;
  min-height: 104px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(202, 127, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(202, 127, 44, 0.12);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--purple);
  font-weight: 800;
  line-height: 1.35;
}

.submit-button {
  width: 100%;
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 32px, 1120px);
    gap: 24px;
  }

  .main-nav {
    gap: 26px;
  }

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

  .journey-cta {
    grid-template-columns: auto auto 1fr auto auto;
    padding-inline: 5vw;
  }

  .crystal-deco {
    width: 118px;
  }
}

@media (max-width: 1000px) {
  .header-inner {
    height: 100px;
    grid-template-columns: auto 1fr auto;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-name {
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .main-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .mobile-menu {
    inset: 100px 0 auto;
  }

  .hero {
    min-height: 420px;
    grid-template-columns: 52% 48%;
  }

  .hero-copy {
    justify-self: auto;
    padding: 42px 0 42px 8vw;
    text-align: left;
  }

  .hero-copy::before {
    left: -28%;
    bottom: 3%;
    width: 72%;
  }

  .moon-row {
    margin-left: 4px;
  }

  .hero h1,
  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    max-width: 420px;
    font-size: clamp(2.55rem, 7.6vw, 3.6rem);
    line-height: 1.04;
  }

  .hero p {
    max-width: 430px;
    font-size: 1.16rem;
  }

  .hero-actions {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: min(100%, 265px);
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual img {
    object-position: 18% center;
  }

  .section {
    width: min(100% - 64px, 760px);
    padding-top: 28px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 10px;
  }

  .section-heading span {
    width: auto;
    height: auto;
    background: none;
  }

  .section-heading span::before {
    content: "*";
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 108px;
    grid-template-columns: 142px 1fr 34px;
    gap: 18px;
    padding: 12px 34px 12px 44px;
    border-radius: 14px;
  }

  .service-icon {
    width: 96px;
    height: 96px;
    justify-self: center;
  }

  .service-title {
    font-size: 1.55rem;
  }

  .service-text {
    font-size: 1rem;
    line-height: 1.42;
  }

  .service-arrow {
    display: block;
  }

  .split-layout {
    width: min(100% - 64px, 760px);
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 28px 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(71, 45, 91, 0.16);
  }

  .portrait-wrap {
    width: 200px;
    height: 200px;
  }

  .about h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .testimonials {
    padding: 18px 0 8px;
  }

  .testimonial-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 22px 22px 16px 54px;
  }

  .journey-cta {
    min-height: 148px;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 22px 8vw 24px;
  }

  .crystal-deco {
    width: 138px;
  }

  .crystal-deco.left {
    justify-self: start;
  }

  .crystal-deco.right {
    justify-self: end;
  }

  .moon-medallion {
    display: none;
  }

  .journey-copy {
    grid-column: 2;
  }

  .journey-copy h2 {
    white-space: normal;
  }

  .journey-cta .button {
    grid-column: 2;
    justify-self: center;
  }

  .site-footer {
    padding: 14px 0 20px;
  }

  .footer-inner {
    width: min(100% - 64px, 760px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 5vw, 50px);
    flex-wrap: wrap;
  }

  .footer-nav a {
    color: var(--purple-dark);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
  }

  .social-links {
    justify-self: center;
    order: 2;
  }

  .copyright {
    order: 3;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 28px, 560px);
    height: 84px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.42em;
  }

  .mobile-menu {
    inset: 84px 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 34px 24px 18px;
    text-align: center;
  }

  .moon-row {
    margin-left: 0;
    gap: 9px;
  }

  .moon-row::before,
  .moon-row::after {
    width: 24px;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(2.2rem, 11vw, 3.05rem);
  }

  .hero p {
    margin-inline: auto;
    font-size: 1.02rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .button {
    width: min(100%, 300px);
  }

  .hero-visual {
    min-height: 250px;
  }

  .hero-visual::before {
    inset: 0 0 auto;
    width: 100%;
    height: 36%;
    background: linear-gradient(180deg, #fffaf7 0%, rgba(255, 250, 247, 0));
  }

  .hero-visual img {
    object-position: left center;
  }

  .section,
  .split-layout,
  .footer-inner {
    width: min(100% - 32px, 520px);
  }

  .service-card {
    grid-template-columns: 82px 1fr 28px;
    padding: 16px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-title {
    font-size: 1.28rem;
  }

  .service-text {
    font-size: 0.92rem;
  }

  .about {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .portrait-wrap {
    width: 168px;
    height: 168px;
  }

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

  .journey-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 18px;
  }

  .crystal-deco {
    display: none;
  }

  .journey-copy,
  .journey-cta .button {
    grid-column: auto;
  }

  .footer-nav {
    gap: 16px 24px;
  }

  .booking-form {
    padding: 30px 22px 24px;
  }

  .contact-detail-modal,
  .about-detail-modal,
  .service-detail-modal,
  .booking-modal {
    max-height: calc(100dvh - 32px);
  }

  .contact-detail-layout {
    gap: 20px;
    padding: 30px 22px 24px;
  }

  .contact-detail-intro {
    padding-right: 34px;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    gap: 10px;
    padding: 14px;
  }

  .contact-method-icon {
    width: 36px;
    height: 36px;
  }

  .contact-method-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact-method-value {
    font-size: 0.9rem;
  }

  .contact-detail-actions .button {
    width: 100%;
  }

  .about-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 22px 24px;
  }

  .about-detail-portrait {
    width: 132px;
    height: 132px;
  }

  .about-detail-content {
    padding-right: 0;
  }

  .about-detail-actions .button {
    width: 100%;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 22px 24px;
  }

  .service-detail-icon {
    width: 108px;
    height: 108px;
  }

  .service-detail-icon svg {
    width: 76px;
    height: 76px;
  }

  .service-detail-content {
    padding-right: 0;
  }

  .service-detail-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
