/* Pink visual direction: warm and approachable, with deep plum for technical trust. */
body {
  background: #fffdfd;
}

.site-header {
  border-bottom-color: rgba(217, 79, 138, 0.14);
}

.site-header .custom-logo {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 58px;
  object-fit: contain;
}

.brand-mark {
  background: linear-gradient(135deg, #e95e9a, #9b72cf);
  box-shadow: 0 8px 22px rgba(217, 79, 138, 0.24);
}

.primary-nav .nav-cta,
.button {
  box-shadow: 0 9px 24px rgba(217, 79, 138, 0.2);
}

.hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 184, 216, 0.42), transparent 25%),
    radial-gradient(circle at 72% 85%, rgba(174, 142, 221, 0.18), transparent 24%),
    linear-gradient(135deg, #fffafd 0%, #fff0f6 58%, #f7efff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: 12%;
  top: 17%;
  border: 1px solid rgba(217, 79, 138, 0.22);
  border-radius: 42% 58% 62% 38%;
  transform: rotate(18deg);
}

.hero::after {
  background-image:
    linear-gradient(rgba(217, 79, 138, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 79, 138, 0.055) 1px, transparent 1px);
}

.orb-one {
  background: linear-gradient(135deg, rgba(255, 157, 200, 0.3), rgba(155, 114, 207, 0.08));
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 22px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e95e9a, #b58adf);
}

.services {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 179, 212, 0.22), transparent 18%),
    #fff5f9;
}

.cards article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 79, 138, 0.1);
}

.cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #e95e9a, #c893df);
}

.cards article:nth-child(2)::before {
  background: linear-gradient(90deg, #c893df, #8c7fd4);
}

.cards article:nth-child(3)::before {
  background: linear-gradient(90deg, #e95e9a, #f0a3c7);
}

.cards article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(92, 49, 76, 0.15);
}

.page-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 174, 210, 0.3), transparent 26%),
    linear-gradient(135deg, #fff7fa, #f7efff);
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #382a3e, #6d3e68);
}

.cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: rgba(233, 94, 154, 0.18);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  background: #fffdfd;
}

@media (prefers-reduced-motion: no-preference) {
  .cards article {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
}

.services-more {
  margin-top: 44px;
  text-align: center;
}

.fit-section {
  background: #fffdfd;
}

.fit-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 70px;
  padding: 58px;
  border: 1px solid rgba(217, 79, 138, 0.13);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff8fb, #f9f3ff);
  box-shadow: 0 22px 65px rgba(92, 49, 76, 0.08);
}

.check-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid rgba(217, 79, 138, 0.13);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 15px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #e95e9a, #9b72cf);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-section {
  padding-top: 30px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.process-list > li > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 50px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-lead {
  background: #fffdfd;
}

.service-detail-section {
  background: #fff5f9;
}

.service-details {
  display: grid;
  gap: 26px;
}

.service-detail {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 48px;
  border: 1px solid rgba(217, 79, 138, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(92, 49, 76, 0.07);
}

.service-number {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.service-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-detail h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.service-detail p:not(.service-label) {
  color: var(--muted);
}

.service-detail ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 26px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.journal-section {
  background: #fffdfd;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

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

.journal-card {
  overflow: hidden;
  border: 1px solid rgba(217, 79, 138, 0.12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(92, 49, 76, 0.08);
}

.journal-card a {
  display: block;
  height: 100%;
}

.journal-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #e95e9a, #9b72cf);
  background-size: 24px 24px, 24px 24px, auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2rem;
  font-weight: 700;
}

.journal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-card-body {
  padding: 24px;
}

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
}

.journal-meta span,
.journal-meta a {
  padding: 2px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: #fff0f6;
  font-weight: 700;
}

.journal-card h2,
.journal-card h3 {
  margin: 14px 0 9px;
  color: var(--navy);
  font-size: 1.13rem;
  line-height: 1.55;
}

.journal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.journal-empty {
  grid-column: 1 / -1;
  padding: 54px;
  border: 1px dashed rgba(217, 79, 138, 0.3);
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #fff8fb;
}

.journal-hero {
  padding-bottom: 72px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.category-links a {
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.category-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.archive-grid {
  row-gap: 30px;
}

.pagination {
  margin-top: 50px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.pagination .current {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.journal-single .page-hero h1 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.single-visual {
  margin-top: 64px;
}

.single-visual img {
  width: 100%;
  border-radius: 22px;
}

.entry-content {
  font-size: 1rem;
}

.entry-content h2 {
  padding-bottom: 10px;
  border-bottom: 2px solid #f3d5e3;
}

.entry-content h3 {
  margin-top: 2em;
  color: var(--navy);
}

.entry-content pre,
.entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.entry-content pre {
  overflow: auto;
  padding: 20px;
  border-radius: 12px;
  color: #f8edf4;
  background: #2b202f;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.post-tags a {
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff0f6;
  color: var(--blue);
  font-size: 0.8rem;
}

.back-journal {
  margin-top: 45px;
}

@media (max-width: 780px) {
  .hero::before {
    width: 140px;
    height: 140px;
    right: -35px;
    top: 12%;
  }

  .fit-panel,
  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
  }

  .process-list h3 {
    margin-top: 22px;
  }

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

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

.company-table ruby {
  ruby-position: over;
}

.company-table rt {
  color: var(--muted);
  font-size: 0.58em;
  letter-spacing: 0.08em;
}

/* Sweeter variation: soft candy colors and playful details, grounded by plum text. */
:root {
  --blue: #e44f91;
  --cyan: #a879d6;
  --mist: #fff3f8;
  --radius: 28px;
  --shadow: 0 20px 58px rgba(132, 65, 105, 0.13);
}

body {
  background: #fffafb;
}

.site-header {
  background: rgba(255, 250, 252, 0.94);
  box-shadow: 0 5px 24px rgba(142, 72, 111, 0.06);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px 16px 16px 7px;
  background: linear-gradient(145deg, #f06aa5, #b082dc);
  box-shadow: 0 8px 22px rgba(228, 79, 145, 0.28);
}

.primary-nav .nav-cta,
.button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #e44f91, #c76bb8);
  box-shadow: 0 10px 25px rgba(228, 79, 145, 0.25);
}

.primary-nav .nav-cta:hover,
.button:hover {
  background: linear-gradient(110deg, #c93f7f, #9760bf);
}

.button::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 100%;
  top: 0;
  left: -60px;
  transform: skewX(-24deg);
  background: rgba(255, 255, 255, 0.17);
  transition: left 0.35s ease;
}

.button:hover::before {
  left: 110%;
}

.hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 151, 199, 0.4), transparent 26%),
    radial-gradient(circle at 68% 88%, rgba(202, 167, 235, 0.24), transparent 25%),
    radial-gradient(circle at 10% 92%, rgba(255, 201, 225, 0.25), transparent 18%),
    linear-gradient(140deg, #fffafd 0%, #ffebf4 55%, #f5eaff 100%);
}

.hero::before {
  border: 2px solid rgba(228, 79, 145, 0.2);
  border-radius: 64% 36% 66% 34% / 47% 58% 42% 53%;
  box-shadow:
    52px -34px 0 -48px #fff,
    -36px 58px 0 -50px #e44f91;
}

.hero h1 {
  text-shadow: 0 4px 22px rgba(107, 56, 91, 0.06);
}

.hero h1 span {
  background: linear-gradient(90deg, #e44f91 0%, #dd65aa 48%, #9c72d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  padding-left: 18px;
  border-left: 4px solid rgba(228, 79, 145, 0.28);
}

.orb-one {
  background: linear-gradient(145deg, rgba(255, 137, 191, 0.36), rgba(176, 130, 221, 0.1));
}

.orb-two {
  border-radius: 62% 38% 58% 42%;
  background: linear-gradient(135deg, rgba(255, 170, 210, 0.2), rgba(168, 121, 214, 0.13));
}

.eyebrow::before,
.section-kicker::before {
  width: 24px;
  height: 9px;
  border-radius: 9px 9px 9px 3px;
  background: linear-gradient(90deg, #ef6ca7, #a879d6);
  box-shadow: 9px -5px 0 -3px rgba(239, 108, 167, 0.25);
}

.intro,
.journal-section {
  background:
    radial-gradient(circle at 6% 10%, rgba(255, 196, 222, 0.17), transparent 16%),
    #fffdfd;
}

.services {
  background:
    radial-gradient(circle at 7% 11%, rgba(255, 164, 204, 0.25), transparent 20%),
    radial-gradient(circle at 93% 88%, rgba(183, 143, 221, 0.17), transparent 20%),
    linear-gradient(180deg, #fff1f7, #fff7fb);
}

.cards article,
.journal-card,
.service-detail {
  border-color: rgba(228, 79, 145, 0.14);
  border-radius: 28px 28px 28px 12px;
}

.cards article::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  right: -22px;
  bottom: -24px;
  border-radius: 58% 42% 62% 38%;
  background: linear-gradient(135deg, rgba(255, 171, 210, 0.17), rgba(176, 130, 221, 0.14));
}

.cards article > span,
.service-number {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #d94184;
  background: #fff0f7;
}

.fit-panel {
  border-radius: 34px 34px 34px 16px;
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 164, 204, 0.23), transparent 22%),
    linear-gradient(135deg, #fff7fb, #f8efff);
}

.check-list li::before {
  background: linear-gradient(145deg, #ee67a2, #b27bd6);
  box-shadow: 0 4px 12px rgba(228, 79, 145, 0.22);
}

.process-list li {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 24px 10px;
  box-shadow: 0 12px 38px rgba(105, 58, 91, 0.06);
}

.process-list li::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  top: -30px;
  right: -20px;
  border-radius: 50%;
  background: rgba(239, 108, 167, 0.12);
}

.page-hero {
  background:
    radial-gradient(circle at 84% 24%, rgba(255, 154, 199, 0.34), transparent 27%),
    radial-gradient(circle at 72% 90%, rgba(186, 148, 224, 0.17), transparent 24%),
    linear-gradient(138deg, #fff8fb, #f7ecff);
}

.journal-thumb {
  border-bottom: 5px solid rgba(255, 255, 255, 0.48);
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.24), transparent 19%),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #ee68a4, #aa7bd7);
  background-size: auto, 24px 24px, 24px 24px, auto;
}

.category-links a {
  background: #fff8fb;
  box-shadow: 0 5px 16px rgba(132, 65, 105, 0.05);
}

.cta {
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 128, 185, 0.22), transparent 25%),
    linear-gradient(120deg, #3f2b42, #75446e);
}

.cta::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: 7%;
  bottom: -74px;
  border: 1px solid rgba(255, 190, 221, 0.22);
  border-radius: 62% 38% 58% 42%;
}

.button-light {
  color: #4b3049;
  background: linear-gradient(110deg, #fff, #ffe8f3);
}

@media (max-width: 780px) {
  .cards article,
  .journal-card,
  .service-detail {
    border-radius: 24px 24px 24px 10px;
  }

  .site-header .custom-logo {
    max-width: 205px;
    max-height: 48px;
  }
}
