:root {
  --bg: #ffffff;
  --ink: #1a1529;
  --muted: #6b6380;
  --soft: #f5f3fb;
  --line: #e4dff0;
  --purple: #4a3580;
  --purple-dark: #2d1f54;
  --purple-light: #6b52b8;
  --purple-tint: #ede9f8;
  --gold: #c49a4a;
  --gold-light: #f9f3e6;
  --charcoal: #171320;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--purple);
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #364047;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.nav-cta {
  border: 1px solid var(--purple);
  color: var(--purple) !important;
  padding: 9px 14px !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--purple);
  color: white !important;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 4px;
  position: relative;
}

.menu-button::before,
.menu-button::after,
.menu-button span {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
}

.menu-button::before {
  top: 13px;
}

.menu-button span {
  top: 20px;
}

.menu-button::after {
  top: 27px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.86), rgba(255,255,255,0.7)),
    linear-gradient(135deg, transparent 0 24%, rgba(74,53,128,0.08) 24% 25%, transparent 25% 49%, rgba(196,154,74,0.08) 49% 50%, transparent 50% 74%, rgba(74,53,128,0.06) 74% 75%, transparent 75%);
  background-size: auto, 240px 240px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero-simple {
  grid-template-columns: minmax(0, 0.95fr);
  min-height: 560px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  color: #22282c;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 640px;
  color: #4e5961;
  font-size: 20px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: white;
  font-weight: 700;
}

.button:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.button.secondary {
  background: white;
  color: var(--purple);
}

.button.secondary:hover {
  background: var(--purple-tint);
}

.evidence-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-top: 4px solid var(--purple);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(27, 42, 50, 0.08);
}

.panel-title {
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--purple-dark);
}

.pathway {
  display: grid;
  gap: 14px;
}

.pathway-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}

.pathway-item strong {
  display: block;
  margin-bottom: 2px;
}

.pathway-item span {
  color: var(--muted);
  font-size: 14px;
}

.number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple-dark);
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 28px;
}

.section.compact {
  padding-top: 52px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2,
.page-title h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.portfolio-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.portfolio-card,
.testimonial {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 24px;
}

.service-card h3,
.portfolio-card h3,
.testimonial h3,
.insight-row h2,
.brief-content h2 {
  font-family: "Source Serif 4", Georgia, serif;
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.service-card p,
.portfolio-card p,
.testimonial p {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.brief-content ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: #4d575e;
}

.service-card li + li,
.brief-content li + li {
  margin-top: 6px;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 0 24%, transparent 24% 50%, rgba(255,255,255,0.04) 50% 51%, transparent 51%),
    var(--charcoal);
  background-size: 190px 190px, auto;
  color: white;
  border: 0;
}

.dark-band .cta-band h2 {
  color: white;
}

.dark-band .cta-band p {
  color: #d8d2e8;
}

.dark-band .button {
  background: white;
  border-color: white;
  color: var(--purple-dark);
}

.dark-band .button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.portfolio-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-meta {
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--purple);
  font-weight: 800;
}

.text-link:hover {
  color: var(--purple-dark);
}

.testimonial {
  background: #fbfcfc;
}

.testimonial blockquote {
  margin: 0;
  color: #3f484f;
  font-size: 17px;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credential-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--purple);
  border-radius: 8px;
  background: white;
  padding: 28px 24px;
}

.credential-label {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}

.credential-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
}

.tag-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gold-tag {
  display: inline-block;
  background: #f9f3e6;
  color: #7a5c1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.cta-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.cta-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 28px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--purple);
  font-weight: 700;
}

.footer-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple);
  background: white;
  font-size: 0;
}

.footer-icon:hover {
  color: white;
  background: var(--purple);
  border-color: var(--purple);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-icon:not(:has(svg))::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
}

.footer-icon:not(:has(svg))[aria-label="WhatsApp"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.5 3.5A11.8 11.8 0 0 0 12.1 0C5.6 0 .3 5.3.3 11.8c0 2.1.6 4.2 1.6 6L0 24l6.4-1.7a11.9 11.9 0 0 0 5.7 1.5h.1c6.5 0 11.8-5.3 11.8-11.8 0-3.1-1.2-6.1-3.5-8.5ZM12.2 21.8h-.1a9.8 9.8 0 0 1-5-1.4l-.4-.2-3.8 1 1-3.7-.2-.4a9.8 9.8 0 1 1 8.5 4.7Zm5.4-7.3c-.3-.1-1.8-.9-2.1-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.8-.8-1.4-1.7-1.6-2-.2-.3 0-.4.1-.6l.5-.5c.1-.2.2-.3.3-.5.1-.2.1-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.8-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.1-.3-.2-.6-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.5 3.5A11.8 11.8 0 0 0 12.1 0C5.6 0 .3 5.3.3 11.8c0 2.1.6 4.2 1.6 6L0 24l6.4-1.7a11.9 11.9 0 0 0 5.7 1.5h.1c6.5 0 11.8-5.3 11.8-11.8 0-3.1-1.2-6.1-3.5-8.5ZM12.2 21.8h-.1a9.8 9.8 0 0 1-5-1.4l-.4-.2-3.8 1 1-3.7-.2-.4a9.8 9.8 0 1 1 8.5 4.7Zm5.4-7.3c-.3-.1-1.8-.9-2.1-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.8-.8-1.4-1.7-1.6-2-.2-.3 0-.4.1-.6l.5-.5c.1-.2.2-.3.3-.5.1-.2.1-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.1 3.2 5.1 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.8-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.1-.3-.2-.6-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-icon:not(:has(svg))[aria-label="LinkedIn"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4 20.5h-3.6v-5.6c0-1.3 0-3.1-1.9-3.1s-2.2 1.5-2.2 3v5.7H9.1V8.9h3.4v1.6h.1c.5-.9 1.6-1.9 3.4-1.9 3.7 0 4.4 2.4 4.4 5.5v6.4ZM5.1 7.3a2.1 2.1 0 1 1 0-4.2 2.1 2.1 0 0 1 0 4.2Zm1.8 13.2H3.3V8.9h3.6v11.6ZM22.2 0H1.8C.8 0 0 .8 0 1.8v20.4C0 23.2.8 24 1.8 24h20.4c1 0 1.8-.8 1.8-1.8V1.8c0-1-.8-1.8-1.8-1.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4 20.5h-3.6v-5.6c0-1.3 0-3.1-1.9-3.1s-2.2 1.5-2.2 3v5.7H9.1V8.9h3.4v1.6h.1c.5-.9 1.6-1.9 3.4-1.9 3.7 0 4.4 2.4 4.4 5.5v6.4ZM5.1 7.3a2.1 2.1 0 1 1 0-4.2 2.1 2.1 0 0 1 0 4.2Zm1.8 13.2H3.3V8.9h3.6v11.6ZM22.2 0H1.8C.8 0 0 .8 0 1.8v20.4C0 23.2.8 24 1.8 24h20.4c1 0 1.8-.8 1.8-1.8V1.8c0-1-.8-1.8-1.8-1.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 28px 46px;
}

.page-title p {
  max-width: 760px;
  margin-top: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 54px;
  align-items: start;
}

.body-copy {
  color: #445058;
  font-size: 18px;
}

.body-copy p {
  margin-top: 0;
}

.side-note {
  border-left: 4px solid var(--purple);
  background: var(--purple-tint);
  padding: 22px;
  color: #405059;
}

.insight-list {
  display: grid;
  gap: 16px;
}

.insight-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.insight-row:last-child {
  border-bottom: 1px solid var(--line);
}

.brief-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 28px 82px;
  color: #39444c;
  font-size: 18px;
}

.brief-content h2 {
  margin: 44px 0 14px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
}

.brief-content h3 {
  margin: 28px 0 8px;
  font-size: 22px;
}

.brief-box {
  margin: 28px 0;
  border: 1px solid var(--line);
  border-left: 5px solid var(--purple);
  border-radius: 6px;
  padding: 22px;
  background: #fbfcfc;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a {
  color: var(--purple);
  font-weight: 800;
}

.contact-title {
  border-bottom: 1px solid var(--line);
}

.contact-company {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 500;
}

.contact-actions {
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 800;
  color: var(--purple-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--purple);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}

.form-success {
  padding: 18px 22px;
  background: var(--purple-tint);
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  border-radius: 6px;
  color: var(--purple-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    padding: 16px 28px 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-inner,
  .section-head,
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 70px;
    gap: 38px;
  }

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

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

  .cta-band {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    font-size: 14px;
  }

  .hero-inner,
  .section,
  .page-title,
  .brief-content,
  .cta-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .insight-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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