:root {
  --cream: #fff8fb;
  --cream-2: #fff0f7;
  --paper: #ffffff;
  --ink: #2f2430;
  --muted: #6f6171;
  --primary: #b45ca4;
  --primary-deep: #823c78;
  --rose: #f4aacb;
  --lavender: #ebe0ff;
  --blue: #6f9fbd;
  --blue-deep: #356f8d;
  --mint: #dcf7ef;
  --peach: #ffe1cf;
  --line: rgba(130, 60, 120, 0.15);
  --shadow: 0 26px 70px rgba(73, 41, 72, 0.18);
  --soft-shadow: 0 14px 38px rgba(73, 41, 72, 0.11);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7.4vw, 6.8rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 4rem); }
h3 { font-size: 1.35rem; }

.container { width: min(100% - 36px, var(--max)); margin-inline: auto; }

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

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.12rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 760;
  color: #554653;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 160ms ease;
}
.nav-links a:hover, .nav-links a.active { background: var(--cream-2); color: var(--primary-deep); }

.nav-toggle {
  display: none;
  border: 0;
  background: var(--cream-2);
  color: var(--primary-deep);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 18px 36px rgba(180, 92, 164, 0.28); }
.btn-primary:hover { background: var(--primary-deep); }
.btn-light { background: rgba(255,255,255,0.9); color: var(--primary-deep); }
.btn-outline { background: white; border-color: var(--line); color: var(--primary-deep); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--primary-deep);
  border: 1px solid rgba(255,255,255,0.55);
  font-weight: 900;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #f8ddec;
}
.hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47,36,48,0.62), rgba(130,60,120,0.22) 42%, rgba(255,248,251,0.18)), var(--hero-img) center/cover no-repeat;
  z-index: -2;
}
.hero-stage::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -78px;
  height: 180px;
  background: var(--cream);
  transform: rotate(-2.6deg);
  transform-origin: left top;
  box-shadow: 0 -18px 48px rgba(255,255,255,0.45);
  z-index: -1;
}

.hero-content {
  padding-top: 112px;
  color: white;
  max-width: 760px;
}
.hero-content p {
  margin-top: 22px;
  max-width: 58ch;
  color: rgba(255,255,255,0.91);
  font-size: 1.14rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-overlap {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 960px;
  margin-inline: auto;
}
.info-tile {
  min-height: 230px;
  padding: 28px;
  color: white;
  background: rgba(130, 60, 120, 0.78);
  backdrop-filter: blur(8px);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.info-tile:nth-child(2) { background: rgba(53, 111, 141, 0.78); }
.info-tile:nth-child(3) { background: rgba(47, 36, 48, 0.66); border-right: 0; }
.info-tile .circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: var(--primary-deep);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.info-tile p { color: rgba(255,255,255,0.88); margin-top: 10px; }
.info-tile a { display: inline-block; margin-top: 18px; font-weight: 900; text-decoration: underline; }

.ribbon-contact {
  position: relative;
  margin-top: -12px;
  background: linear-gradient(135deg, var(--primary-deep), var(--blue-deep));
  color: white;
  padding: 40px 0;
  overflow: hidden;
}
.ribbon-contact::before {
  content: '';
  position: absolute;
  inset: -35px -10% auto -10%;
  height: 80px;
  background: var(--cream);
  transform: rotate(2deg);
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 34px;
}
.ribbon-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; }
.ribbon-item .bubble { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.9); color: var(--primary-deep); }
.ribbon-item p, .ribbon-item strong { color: white; }

.section { padding: 86px 0; }
.section.tight { padding-top: 48px; }
.section-header { max-width: 760px; margin-bottom: 34px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p { margin-top: 16px; font-size: 1.06rem; }

.story-slab {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.slab-image {
  min-height: 500px;
  background: var(--img) center/cover no-repeat;
  position: relative;
}
.slab-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 52%, rgba(255,255,255,0.92) 53%);
}
.slab-content { padding: 54px; display: grid; align-content: center; }
.slab-content p { margin-top: 18px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  right: -44px;
  top: -44px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--cream-2);
}
.card .icon { position: relative; font-size: 2rem; margin-bottom: 14px; }
.card p { position: relative; margin-top: 10px; }
.card h3 { position: relative; }

.page-hero {
  --page-img: url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?auto=format&fit=crop&w=1800&q=80');
  min-height: 430px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, rgba(47,36,48,0.66), rgba(130,60,120,0.2)), var(--page-img) center/cover no-repeat;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -72px;
  height: 150px;
  background: var(--cream);
  transform: rotate(-2.2deg);
}
.page-hero-content { position: relative; z-index: 1; max-width: 770px; padding: 74px 0 112px; }
.page-hero-content p { color: rgba(255,255,255,0.9); margin-top: 18px; font-size: 1.1rem; }

.layered-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}
.floating-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.photo-stack { position: relative; min-height: 600px; }
.photo-large, .photo-small {
  position: absolute;
  border-radius: 36px;
  background: var(--img) center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 8px solid white;
}
.photo-large { inset: 0 70px 90px 0; }
.photo-small { right: 0; bottom: 0; width: 48%; height: 260px; }

.side-card {
  background: linear-gradient(135deg, var(--primary-deep), var(--blue-deep));
  color: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.side-card p, .side-card li { color: rgba(255,255,255,0.9); }
.side-card ul { margin: 18px 0 0; padding-left: 20px; }

.service-list { display: grid; gap: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.service-row .badge {
  width: 60px;
  height: 60px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  font-size: 1.6rem;
}
.service-row p { margin-top: 8px; }

.wave-band {
  position: relative;
  background: linear-gradient(135deg, #fff, var(--cream-2));
  padding: 90px 0;
  overflow: hidden;
}
.wave-band::before, .wave-band::after {
  content: '';
  position: absolute;
  left: -7%;
  right: -7%;
  height: 80px;
  background: var(--cream);
}
.wave-band::before { top: -48px; transform: rotate(2deg); }
.wave-band::after { bottom: -48px; transform: rotate(-2deg); }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; color: #4e3e4d; font-weight: 760; }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: 1000; }

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}
.faq-list { display: grid; gap: 14px; }
.faq-item p { margin-top: 8px; }

.form-shell {
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 13px; margin-top: 18px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffafd;
  border-radius: 17px;
  padding: 15px 16px;
  font: inherit;
}
textarea { min-height: 132px; resize: vertical; }

.cta-stage {
  position: relative;
  margin: 80px 0 0;
  min-height: 400px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(130,60,120,0.82), rgba(53,111,141,0.48)), var(--img) center/cover no-repeat;
  color: white;
  overflow: hidden;
}
.cta-stage::before {
  content: '';
  position: absolute;
  inset: -70px -8% auto -8%;
  height: 130px;
  background: var(--cream);
  transform: rotate(-2deg);
}
.cta-box { position: relative; max-width: 740px; padding: 90px 0; }
.cta-box p { margin-top: 16px; color: rgba(255,255,255,0.9); }

.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 38px 0; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-weight: 800; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    display: none;
    top: 78px;
    left: 18px;
    right: 18px;
    padding: 16px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .hero-stage { min-height: auto; padding-bottom: 110px; }
  .hero-overlap, .ribbon-grid, .story-slab, .layered-grid, .card-grid { grid-template-columns: 1fr; }
  .hero-overlap { margin-top: 46px; }
  .info-tile { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .slab-image { min-height: 360px; }
  .slab-image::after { display: none; }
  .photo-stack { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 24px, var(--max)); }
  .brand { gap: 10px; font-size: 1rem; }
  .brand-mark { width: 48px; height: 48px; }
  .hero-content { padding-top: 70px; }
  .hero-stage::after, .page-hero::after { transform: rotate(-4deg); }
  .slab-content, .floating-panel, .form-shell { padding: 25px; }
  .photo-large { inset: 0 0 120px 0; }
  .photo-small { width: 68%; height: 210px; }
  .service-row { grid-template-columns: 1fr; }
  .ribbon-item { grid-template-columns: 1fr; }
}