/* ── Tokens ─────────────────────────────────────────── */
:root {
  --purple:      #5f367d;
  --purple-dark: #2e1245;
  --lav:         #D7BDED;
  --lav-light:   #ede2f8;
  --lime:        #E1F011;
  --sky:         #AEE9F3;
  --pink:        #FD60C7;
  --peach:       #FFBE8A;
  --cream:       #FDFCF7;
  --text:        #1e0a2e;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg, img { display: block; }

/* ── Nav ────────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(253,252,247,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--lav);
  height: 66px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo img { width: 32px; height: auto; }
.nav-wordmark { display: flex; flex-direction: row; align-items: baseline; gap: 0.25em; }
.w-odd,
.w-studio { font-family: 'Barriecito', cursive; font-size: 1.5rem; font-weight: 400; color: var(--purple); opacity: 0.8; }
.w-berry  { font-family: 'Barriecito', cursive; font-size: 1.9rem; font-weight: 400; color: var(--purple); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links .nav-cta {
  background: var(--pink);
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  border: 2.5px solid var(--purple);
  transition: background 0.18s, transform 0.18s;
}
.nav-links .nav-cta:hover { background: var(--purple); transform: translateY(-2px); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding: calc(66px + 4rem) clamp(1.25rem, 6vw, 5rem) 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-text { position: relative; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lav);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 2px solid var(--purple);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.1s forwards;
}

.hero-h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}
.hero-h1 .line-script {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  color: var(--purple);
  line-height: 1.1;
}
.hero-h1 .line-block {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-h1 .line-block .highlight {
  color: var(--pink);
  position: relative;
}
.hero-h1 .line-small {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  color: var(--purple);
  line-height: 1.2;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  max-width: 400px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.55s forwards;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-white {
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  padding: 0.8rem 2rem;
  border: 2.5px solid var(--purple);
}
.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--purple);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  padding: 0.8rem 1.75rem;
  border: 2.5px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--purple);
  color: #fff;
  padding: 0.85rem 2rem;
  border: 2.5px solid var(--text);
  white-space: nowrap;
}
.btn-dark:hover {
  background: var(--text);
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}
.btn-white {
  background: #fff;
  color: var(--purple);
  padding: 0.85rem 2rem;
  border: 2.5px solid var(--text);
}
.btn-white:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.15);
}

/* ── Sparkles ───────────────────────────────────────── */
.sparkle {
  position: absolute;
  font-size: 1.4rem;
  color: var(--pink);
  animation: twinkle 2.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.sp1 { top: -10px; right: 20px; animation-delay: 0s; font-size: 1.8rem; }
.sp2 { top: 60px; right: -10px; animation-delay: 0.8s; font-size: 1rem; color: var(--lime); }
.sp3 { bottom: 80px; left: -20px; animation-delay: 1.4s; font-size: 1.2rem; color: var(--purple); }

/* ── Hero visual ────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}
.hv-wrap { position: relative; width: 380px; height: 420px; }
.hv-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hv-h1 { width: 220px; height: 248px; background: var(--lav);  top: 30px;  left: 70px;  animation: floatA 7s ease-in-out infinite; }
.hv-h2 { width: 165px; height: 186px; background: var(--lime);  top: 170px; left: 0;     animation: floatB 8s ease-in-out 0.8s infinite; }
.hv-h3 { width: 120px; height: 136px; background: var(--sky);  top: 200px; left: 210px; animation: floatC 6s ease-in-out 0.4s infinite; }
.hv-h4 { width: 80px;  height: 90px;  background: var(--pink); top: 15px;  left: 270px; animation: floatA 9s ease-in-out 1.6s infinite; }
.hv-h5 { width: 52px;  height: 59px;  background: var(--peach); top: 330px; left: 80px;  animation: floatB 7s ease-in-out 2s infinite; opacity: 0.7; }

.hv-sparkle {
  position: absolute;
  color: var(--purple);
  font-size: 1.5rem;
  animation: twinkle 3s ease-in-out infinite;
}
.hs1 { top: 0;      left: 40px;  animation-delay: 0s;   color: var(--pink); font-size: 2rem; }
.hs2 { top: 100px;  right: 10px; animation-delay: 1s;   font-size: 1rem; }
.hs3 { bottom: 50px; right: 30px; animation-delay: 1.8s; color: var(--lime); font-size: 1.3rem; }


/* ── Section dividers ───────────────────────────────── */
.divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

/* ── Section shared ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.6;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--pink); }

/* ── About ──────────────────────────────────────────── */
.about {
  background: var(--lav-light);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 5rem);
}
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-left .section-label {
  margin-bottom: 0.75rem;
}
.about-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.05;
}
.about-role {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--purple);
  opacity: 0.6;
}
.about-hex-stack { margin-top: 1.5rem; display: flex; gap: 6px; align-items: flex-end; }
.about-hex-stack .mini-hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.mh1 { width: 32px; height: 36px; background: var(--pink); }
.mh2 { width: 24px; height: 27px; background: var(--lime); }
.mh3 { width: 18px; height: 20px; background: var(--sky); }

.about-body p { font-size: 1.05rem; font-weight: 500; line-height: 1.8; color: var(--text); }
.about-body p + p { margin-top: 1rem; }
.about-body strong { font-weight: 800; color: var(--purple); }

/* ── Photos ─────────────────────────────────────────── */
.photos {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 5rem);
}
.photos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
.photo-thumb {
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid var(--purple);
  aspect-ratio: 4 / 3;
}
.photo-feature img,
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--lav-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  opacity: 0.5;
  min-height: 160px;
}
@media (max-width: 960px) {
  .photos-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .photos-row { grid-template-columns: 1fr; }
}

/* ── Services ───────────────────────────────────────── */
.services {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 5rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
.services-cta { text-align: center; margin-top: 2.5rem; }
.service-card {
  border-radius: 20px;
  border: 2.5px solid var(--purple);
  padding: 1.75rem 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 6px 6px 0 var(--purple);
}
.sc-1, .sc-2, .sc-3, .sc-4 { background: #fff; }
.sc-1 .service-icon { background: var(--lime); }
.sc-2 .service-icon { background: var(--sky); }
.sc-3 .service-icon { background: var(--lav); }
.sc-4 .service-icon { background: var(--pink); }

.service-icon {
  width: 46px; height: 52px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.service-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.82rem; font-weight: 500; line-height: 1.6; color: var(--text); opacity: 0.8; }
.card-sparkle { position: absolute; bottom: 12px; right: 16px; font-size: 1.2rem; }
.sc-1 .card-sparkle { color: var(--lime); }
.sc-2 .card-sparkle { color: var(--sky); }
.sc-3 .card-sparkle { color: var(--lav); }
.sc-4 .card-sparkle { color: var(--pink); }

/* ── Services (lime variant) ─────────────────────────── */
.services--lime {
  background: var(--lime);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
}
.services--lime .section-label { color: var(--purple); opacity: 0.7; }

/* ── Pricing ────────────────────────────────────────── */
.pricing {
  background: var(--lime);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.pricing .section-label { color: var(--purple); opacity: 0.7; }
.pricing-rate {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-rate .per { font-size: 0.35em; font-weight: 700; opacity: 0.7; vertical-align: middle; }
.pricing-notes { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.pricing-notes .note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.note-dot { width: 8px; height: 8px; background: var(--purple); border-radius: 50%; flex-shrink: 0; }
.pricing-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.pricing-hex-deco { display: flex; gap: 8px; justify-content: flex-end; align-items: center; }
.phd  { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.phd1 { width: 40px; height: 45px; background: var(--purple); opacity: 0.25; }
.phd2 { width: 28px; height: 32px; background: var(--pink);   opacity: 0.35; }

/* ── Contact ────────────────────────────────────────── */
.contact {
  background: var(--pink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
  text-align: center;
  border-bottom: 3px solid var(--text);
}
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact .section-label { color: #fff; opacity: 0.75; }
.contact-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0.5rem 0 1.25rem;
}
.contact p { font-size: 1rem; font-weight: 500; line-height: 1.7; color: #fff; opacity: 0.9; margin-bottom: 2.25rem; }
.contact-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.email-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.18s, opacity 0.18s;
}
.email-link:hover { border-color: #fff; opacity: 0.8; }

/* ── Contact page ───────────────────────────────────── */
.contact-page {
  background: var(--cream);
  padding: calc(66px + 4rem) clamp(1.25rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
}
.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-page-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
}
.contact-page-title .line-script {
  display: block;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--purple);
}
.contact-page-title .line-block {
  display: block;
  font-style: normal;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text);
}
.contact-page-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cd-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--purple);
  opacity: 0.6;
}
.contact-details a,
.contact-details span:not(.cd-label) {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.contact-details a {
  color: var(--purple);
  border-bottom: 2px solid var(--lav);
  transition: border-color 0.18s;
}
.contact-details a:hover { border-color: var(--purple); }
.contact-page-form {
  background: #fff;
  border: 2px solid var(--lav);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 2px solid var(--lav);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--lav);
  opacity: 0.7;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 75, 175, 0.12);
}
.contact-form .btn-primary {
  align-self: flex-start;
}
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-hex {
  width: 56px;
  height: 56px;
  background: var(--lav-light);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 0 auto 1.5rem;
}
.form-success h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.form-success p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}
.form-success a {
  color: var(--purple);
  font-weight: 700;
  border-bottom: 2px solid var(--lav);
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: var(--purple);
  padding: 2.25rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { width: 22px; height: auto; opacity: 0.6; filter: brightness(0) invert(1) sepia(1) hue-rotate(220deg) saturate(0.45) brightness(1.6); }
.footer-brand-text { font-family: 'Barriecito', cursive; font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,0.8); }
footer p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
footer a { color: var(--lav); font-size: 0.75rem; opacity: 0.65; transition: opacity 0.18s; }
footer a:hover { opacity: 1; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ── Keyframes ───────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes floatA { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-14px); } }
@keyframes floatB { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-10px) translateX(7px); } }
@keyframes floatC { 0%,100% { transform: translateY(0); }          50% { transform: translateY(-8px) translateX(-5px); } }
@keyframes twinkle { 0%,100% { opacity: 1; transform: scale(1) rotate(0deg); } 50% { opacity: 0.25; transform: scale(0.65) rotate(25deg); } }

/* ── Nav active state ───────────────────────────────── */
.nav-active {
  color: var(--pink) !important;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 2px;
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  min-height: 70vh;
  padding: calc(66px + 3.5rem) clamp(1.25rem, 6vw, 5rem) 3rem;
  background: var(--cream);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}
.phv-wrap { position: relative; width: 340px; height: 380px; }
.phv-hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.phv-h1 { width: 200px; height: 226px; background: var(--sky);  top: 20px;  left: 60px;  animation: floatA 7s ease-in-out infinite; }
.phv-h2 { width: 148px; height: 167px; background: var(--lav);  top: 165px; left: 0;     animation: floatB 8s ease-in-out 0.8s infinite; }
.phv-h3 { width: 108px; height: 122px; background: var(--lime); top: 185px; left: 200px; animation: floatC 6s ease-in-out 0.4s infinite; }
.phv-h4 { width: 70px;  height: 79px;  background: var(--pink); top: 8px;   left: 255px; animation: floatA 9s ease-in-out 1.6s infinite; }
.phv-h5 { width: 44px;  height: 50px;  background: var(--lime); top: 320px; left: 75px;  animation: floatB 7s ease-in-out 2s infinite; opacity: 0.7; }

/* ── Page Hero: centered variant (services page) ─────── */
.page-hero--centered {
  background: var(--cream);
  min-height: auto;
  padding: calc(66px + 3.5rem) clamp(1.25rem, 6vw, 5rem) 4rem;
  text-align: center;
}
.page-hero-centered-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.page-hero--centered .hero-tag {
  justify-content: center;
}
.services-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--purple-dark);
  margin-bottom: 1.25rem;
  font-weight: 900;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}
.services-hero-h1 em {
  color: var(--purple);
  font-style: italic;
}
.page-hero--centered .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.page-hero--centered .hero-actions {
  justify-content: center;
}

/* ── Services Detail ─────────────────────────────────── */
.services-detail {
  background: var(--lav-light);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 6vw, 5rem);
}
.sd-inner {
  max-width: 900px;
  margin: 0 auto;
}
.sd-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 2px solid rgba(95, 54, 125, 0.12);
}
.sd-row:last-child { border-bottom: none; }
.sd-icon-wrap {
  width: 90px;
  height: 102px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-emoji { font-size: 2rem; }
.sd-lime  { background: var(--lime); }
.sd-sky   { background: var(--sky); }
.sd-lav   { background: var(--lav); }
.sd-pink  { background: var(--pink); }
.sd-peach { background: var(--peach); }
.sd-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.sd-desc {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 560px;
}
.sd-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sd-features li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.feat-dot { color: var(--pink); font-size: 0.6rem; flex-shrink: 0; }

/* ── Process / How It Works ─────────────────────────── */
.process {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 5rem);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.step-num {
  width: 54px;
  height: 61px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--purple);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--purple);
  line-height: 1.25;
}
.step-desc {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.8;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(66px + 3rem); text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 280px; }
  .hv-wrap { transform: scale(0.68); }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-inner { grid-template-columns: 1fr; text-align: center; }
  .pricing-cta-wrap { align-items: center; }
  .pricing-hex-deco { justify-content: center; }
  .nav-links { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { height: 240px; }
  .phv-wrap { transform: scale(0.65); }
  .contact-page-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pr-row-binding { gap: 0.75rem; }
  .pr-tiers { width: 100%; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .sd-row { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .sd-icon-wrap { width: 70px; height: 79px; }
  .process-steps { grid-template-columns: 1fr; }
  .pr-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .pr-price-col { text-align: left; }
  .pr-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Pricing Full (services page) ───────────────────── */
.pricing-full-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pr-table {
  background: rgba(255,255,255,0.5);
  border: 2.5px solid var(--text);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.pr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem 1.75rem;
  border-bottom: 2px solid rgba(30,10,46,0.1);
}
.pr-row:last-child { border-bottom: none; }
.pr-row-binding {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.pr-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 0.2rem;
}
.pr-note,
.pr-unit {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.55;
}
.pr-price-col {
  text-align: right;
  flex-shrink: 0;
}
.pr-amount {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.pr-tiers {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.pr-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.45rem 0;
  border-top: 1.5px solid rgba(30,10,46,0.07);
}
.pr-tier:first-child { border-top: none; }
.pr-tier-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.pr-tier-sub {
  font-weight: 500;
  opacity: 0.55;
  font-size: 0.85em;
}
.pr-tier-price {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--purple);
  flex-shrink: 0;
}
.pr-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.pr-footer-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.65;
}

/* ── Article ─────────────────────────────────────────── */
.article-page {
  padding: calc(66px + 3.5rem) clamp(1.25rem, 6vw, 5rem) 5rem;
}
.article-container {
  max-width: 680px;
  margin: 0 auto;
}
.article-back {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.6;
  margin-bottom: 2rem;
  transition: opacity 0.18s;
}
.article-back:hover { opacity: 1; color: var(--pink); }

.article-header {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--lav);
}
.article-header::before,
.article-header::after {
  content: '';
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  pointer-events: none;
}
.article-header::before {
  width: 120px;
  height: 120px;
  background: var(--pink);
  opacity: 0.2;
  top: -30px;
  right: -30px;
}
.article-header::after {
  width: 70px;
  height: 70px;
  background: var(--lime);
  opacity: 0.55;
  top: 40px;
  right: 60px;
}
.article-header .section-label { display: block; margin-bottom: 0.75rem; }
.article-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.article-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0.4;
  letter-spacing: 0.04em;
}

.article-body p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.article-body p.article-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
  border-left: 4px solid var(--lav);
  background: var(--lav-light);
  border-radius: 0 8px 8px 0;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.75rem;
}
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple);
  margin: 2rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-body h2::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--pink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.article-footer-cta {
  margin-top: 3rem;
}

/* ── Contact form: honeypot + errors ────────────────────── */
.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-errors {
  background: #fde8ef;
  border: 2px solid var(--pink);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}
.form-errors ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-errors li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a0004a;
}
