/*
CTC Separate Stylesheet
Updated: 2026-07-01 14:23:47
*/
/*
  Peggy Kirkou child theme base stylesheet
  Based on the current source of truth:
  https://peggy-dev-handoff.pages.dev/
*/

:root {
  --paper: #ffffff;
  --card: #ffffff;
  --greige: #f4efeb;
  --sand: #ece3dd;
  --blush: #f7e6e2;
  --ink: #2b2522;
  --ink-2: #6e635b;
  --ink-3: #8c8179;
  --coral: #de7878;
  --coral-deep: #b14f49;
  --plum: #2b2522;
  --line: #e3dad1;
  --cream: #fcefea;
  --peach: #f4c9c1;
  --rc: 18px;
  --ri: 24px;
  --chip: 15px;
  --gutter: 5em;
  --section-space: 104px;
  --shadow-lg: 0 24px 60px rgba(43, 37, 34, 0.12);
  --shadow-sm: 0 12px 32px rgba(43, 37, 34, 0.08);
  --head: "Commissioner", sans-serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--ri);
}

a {
  color: var(--coral-deep);
  text-decoration: none;
  transition: color .25s var(--ease);
}

a:hover,
a:focus-visible {
  color: #974039;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.45em;
  font-family: var(--head);
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

h4 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

p,
li,
label,
input,
select,
textarea,
button {
  font-family: var(--sans);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1.25em;
  padding-left: 1.2em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--greige);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  padding: 14px 15px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(222, 120, 120, 0.16);
  background: #fffdfc;
}

label {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-2);
}

button,
.elementor-button,
.wp-block-button__link,
.pk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--coral-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

button:hover,
button:focus-visible,
.elementor-button:hover,
.elementor-button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.pk-btn:hover,
.pk-btn:focus-visible {
  color: #fff;
  background: #974039;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pk-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.pk-btn-outline:hover,
.pk-btn-outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

.pk-btn-soft {
  background: var(--blush);
  color: var(--coral-deep);
}

.pk-btn-soft:hover,
.pk-btn-soft:focus-visible {
  background: #f3d8d1;
  color: var(--coral-deep);
}

.pk-btn-ink {
  background: var(--ink);
}

.pk-btn-ink:hover,
.pk-btn-ink:focus-visible {
  background: #000;
}

.pk-btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.pk-btn-light:hover,
.pk-btn-light:focus-visible {
  background: #fff;
  color: var(--ink);
}

.pk-shell,
.elementor-section.elementor-section-boxed > .elementor-container,
.site-main > .alignwide {
  width: 100%;
  max-width: none;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.pk-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.pk-section-greige {
  background: var(--greige);
}

.pk-section-dark {
  color: rgba(252, 239, 234, 0.92);
  background: var(--plum);
}

.pk-section-dark h1,
.pk-section-dark h2,
.pk-section-dark h3,
.pk-section-dark h4 {
  color: #fff;
}

.pk-display-name {
  font-size: clamp(46px, 6.6vw, 98px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.pk-display-page {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral-deep);
}

.pk-eyebrow::before {
  content: "✦";
  color: var(--coral);
  font-size: 13px;
}

.pk-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.pk-small {
  font-size: 14.5px;
  line-height: 1.55;
}

.pk-chip,
.pk-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--coral-deep);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pk-note-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px dashed var(--coral);
  border-radius: 999px;
  color: var(--coral-deep);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.pk-sticker {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: #4a1b0c;
  font-family: var(--head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
}

.pk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 600;
}

.pk-text-link i,
.pk-text-link svg {
  transition: transform .3s var(--ease);
}

.pk-text-link:hover i,
.pk-text-link:hover svg {
  transform: translateX(5px);
}

.pk-grid-4,
.pk-grid-3,
.pk-grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.pk-card,
.pk-service-card,
.pk-value-card,
.pk-step-card,
.pk-testimonial,
.pk-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rc);
  box-shadow: var(--shadow-sm);
}

.pk-card:hover,
.pk-service-card:hover,
.pk-value-card:hover,
.pk-step-card:hover,
.pk-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pk-service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.pk-service-card-media {
  aspect-ratio: 16 / 10;
  background: var(--sand);
  overflow: hidden;
}

.pk-service-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 28px 30px;
}

.pk-value-card {
  padding: 30px;
}

.pk-value-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: var(--chip);
  background: var(--blush);
  color: var(--coral-deep);
  font-size: 26px;
}

.pk-step-card {
  padding: 32px 26px;
  text-align: center;
}

.pk-step-card-number {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--coral-deep);
  font-family: var(--head);
  font-size: 20px;
}

.pk-testimonial {
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.pk-testimonial::before {
  content: "”";
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--head);
  font-size: 84px;
  line-height: 1;
  color: var(--coral);
  opacity: 0.16;
}

.pk-testimonial-stars {
  margin-bottom: 16px;
  color: var(--coral);
  letter-spacing: 2px;
}

.pk-form-card {
  position: relative;
  padding: 44px;
  border-top: 4px solid var(--coral-deep);
}

.pk-form-card.is-academy {
  background: #fbf6f3;
  border-top-color: var(--ink);
}

.pk-form-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--coral-deep);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pk-form-card.is-academy .pk-form-tag {
  background: var(--ink);
  color: #fcefea;
}

.pk-form-card.is-academy input,
.pk-form-card.is-academy select,
.pk-form-card.is-academy textarea {
  background: #fff;
}

.pk-band {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.05fr;
  gap: 20px;
  align-items: start;
  padding: 64px var(--gutter);
  background: var(--greige);
}

.pk-dark-band {
  position: relative;
  overflow: hidden;
  background: var(--plum);
  color: rgba(252, 239, 234, 0.92);
}

.pk-dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.pk-dark-band > * {
  position: relative;
  z-index: 1;
}

.pk-faq {
  border-bottom: 1px solid var(--line);
}

.pk-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--head);
  font-size: 18px;
  font-weight: 500;
}

.pk-faq summary::-webkit-details-marker {
  display: none;
}

.pk-faq summary i {
  color: var(--coral-deep);
  transition: transform .2s var(--ease);
}

.pk-faq[open] summary i {
  transform: rotate(45deg);
}

.pk-faq-content {
  padding: 0 0 20px;
}

.pk-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(227, 218, 209, 0.8);
}

.pk-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.pk-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pk-nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.pk-footer {
  position: relative;
  overflow: hidden;
  padding: 72px var(--gutter) 36px;
  background: var(--coral-deep);
  color: var(--cream);
}

.pk-footer h2,
.pk-footer h3,
.pk-footer h4,
.pk-footer .widget-title {
  color: var(--peach);
}

.pk-footer a {
  color: var(--cream);
}

.pk-footer a:hover,
.pk-footer a:focus-visible {
  color: #fff;
}

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

.pk-watermark {
  font-family: var(--head);
  font-size: clamp(54px, 9vw, 140px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
}

.pk-mobile-bar {
  display: none;
}

.pk-services-shortcode {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.pk-services-shortcode .wrap {
  width: 100%;
  max-width: none;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.pk-services-shortcode .scards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pk-services-shortcode .scard {
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.pk-services-shortcode .scard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #d8cbc2;
}

.pk-services-shortcode .ph {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--sand);
  overflow: hidden;
}

.pk-services-shortcode .ph img,
.pk-services-shortcode .ph-fallback {
  width: 100%;
  height: 100%;
}

.pk-services-shortcode .ph img {
  object-fit: cover;
  border-radius: 0;
  transition: transform .5s var(--ease);
}

.pk-services-shortcode .scard:hover .ph img {
  transform: scale(1.03);
}

.pk-services-shortcode .ph-fallback {
  display: block;
  background: linear-gradient(135deg, var(--sand) 0%, var(--blush) 100%);
}

.pk-services-shortcode .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 30px;
}

.pk-services-shortcode .cat {
  display: inline-flex;
  align-self: flex-start;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--coral-deep);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.pk-services-shortcode h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.pk-services-shortcode p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.pk-services-shortcode .tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-deep);
}

.pk-services-shortcode .tlink i {
  transition: transform .3s var(--ease);
}

.pk-services-shortcode .tlink:hover i,
.pk-services-shortcode .tlink:focus-visible i {
  transform: translateX(5px);
}

.pk-services-shortcode .pk-services-empty {
  margin: 0;
  color: var(--ink-2);
}

@media (max-width: 1024px) {
  :root {
    --gutter: 2em;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 39px;
  }

  .pk-display-name {
    font-size: 64px;
  }

  .pk-display-page {
    font-size: 50px;
  }

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

  .pk-services-shortcode .scards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pk-grid-2,
  .pk-band,
  .pk-footer-grid {
    grid-template-columns: 1fr;
  }

  .pk-grid-2 {
    gap: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1em;
    --section-space: 72px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .pk-display-name {
    font-size: 46px;
  }

  .pk-display-page {
    font-size: 40px;
  }

  .pk-grid-4,
  .pk-grid-3 {
    grid-template-columns: 1fr;
  }

  .pk-services-shortcode .scards {
    grid-template-columns: 1fr;
  }

  .pk-form-card,
  .pk-band,
  .pk-footer {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .pk-form-card {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .pk-mobile-bar {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(43, 37, 34, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px rgba(43, 37, 34, 0.16);
  }

  body.admin-bar .pk-mobile-bar {
    bottom: 62px;
  }
}
