/* ============ PlanningDivorce.com — Custom Styles ============ */
/* Based on the original design system, adapted for US Core shortcodes */

.pd-section {
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
}

.pd-linen {
  background-color: #F2EBDF;
}

/* ---------- Hero ---------- */
.pd-hero {
  background: linear-gradient(180deg, #FAF6EF 0%, #F6E9CD 55%, #F5DFCB 82%, #FAF6EF 100%);
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  display: flex;
  align-items: center;
}

.pd-hero .vc_column {
  position: relative;
  z-index: 2;
}

/* ---------- Buttons ---------- */
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: #2F5240;
  color: #FFFDF8;
  border-radius: 999px;
  padding: .95rem 1.9rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .16s cubic-bezier(0.22, 1, 0.36, 1), background .16s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .16s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1.5px solid #2F5240;
}

.pd-btn:hover {
  background: #22402F;
  border-color: #22402F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47, 82, 64, .25);
}

.pd-btn:active {
  transform: translateY(0);
}

.pd-btn-ghost {
  background: transparent;
  color: #2F5240!important;
  border: 1.5px solid #2F5240;
}

.pd-btn-ghost:hover {
  background: rgba(47, 82, 64, .07);
  box-shadow: none;
}

.pd-btn-primary {
  background: #2F5240;
  color: #FFFDF8;
}

/* ---------- Stats ---------- */
.pd-stats .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 460;
  color: #A0552F;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}

.pd-stats .stat-label {
  font-size: 0.875rem;
  color: #5A5248;
  max-width: 24ch;
}

.pd-stats .pivot {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.4rem);
  line-height: 1.3;
  color: #2F5240;
  max-width: 26ch;
  margin: 0 auto;
}

/* ---------- Empathy ---------- */
.pd-empathy .epigraph {
  border-top: 1px solid #E7DCC9;
  border-bottom: 1px solid #E7DCC9;
  padding-block: 2rem;
  margin-top: 3rem;
}

.pd-empathy .epigraph p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.4rem);
  color: #2F5240;
  line-height: 1.3;
}

.pd-empathy .epigraph cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  font-size: 0.875rem;
  color: #5A5248;
}

/* ---------- Neutral ---------- */
.pd-neutral .callout {
  background: #FAF6EF;
  border-left: 3px solid #2F5240;
  border-radius: 0 14px 14px 0;
  padding: 1.6rem 1.8rem;
  margin-block: 1.8rem;
  max-width: 70ch;
}

.pd-neutral .callout p {
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.3rem);
  line-height: 1.55;
}

.pd-neutral .compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  font-size: .95rem;
  background: #FAF6EF;
  border-radius: 14px;
  overflow: hidden;
}

.pd-neutral .compare th,
.pd-neutral .compare td {
  padding: .9rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #E7DCC9;
}

.pd-neutral .compare thead th {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  background: #F2EBDF;
}

.pd-neutral .compare tbody tr:last-child td {
  border-bottom: none;
}

.pd-neutral .compare td:first-child,
.pd-neutral .compare th:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.pd-neutral .compare .you {
  background: rgba(228, 234, 224, .5);
}

/* ---------- Process ---------- */
.pd-process .steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .pd-process .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-process .steps::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: #2F5240;
    opacity: .35;
  }
}

.pd-process .step {
  background: #FAF6EF;
  border: 1px solid #E7DCC9;
  border-radius: 14px;
  padding: 2rem 1.8rem;
  position: relative;
  z-index: 1;
}

.pd-process .step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 460;
  color: #A0552F;
  line-height: 1;
  margin-bottom: 1rem;
}

.pd-process .step p {
  color: #5A5248;
  font-size: .975rem;
}

.pd-process .step .takeaway {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #3E5C46;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.pd-process .reassure {
  margin-top: 2.2rem;
  color: #5A5248;
  font-size: .975rem;
}

/* ---------- Services ---------- */
.pd-services .svc {
  background: #FAF6EF;
  border: 1px solid #E7DCC9;
  border-radius: 16px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.pd-services .svc p {
  color: #5A5248;
  font-size: .975rem;
  flex: 1;
}

.pd-services .svc .tag {
  align-self: flex-start;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #A0552F;
  border: 1px solid #A0552F;
  border-radius: 999px;
  padding: .25rem .7rem;
}

/* ---------- House ---------- */
.pd-house .house-card {
  border-top: 2px solid #2F5240;
  padding-top: 1.4rem;
}

.pd-house .house-card p {
  color: #5A5248;
  font-size: .975rem;
}

.pd-house .house-card .big {
  font-family: 'Fraunces', Georgia, serif;
  color: #A0552F;
  font-size: 1.6rem;
  font-weight: 460;
  display: block;
  margin-bottom: .4rem;
}

/* ---------- Founder ---------- */
.pd-founder .portrait {
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  background: linear-gradient(180deg, #F6E9CD, #F5DFCB);
  border: 1px solid #E7DCC9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-founder .portrait .monogram {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5.5rem;
  color: #2F5240;
  font-weight: 340;
  font-style: italic;
}

.pd-founder .portrait-caption {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.875rem;
  color: #5A5248;
}

.pd-founder blockquote {
  margin-block: 1.8rem;
  border-left: 3px solid #D9A648;
  padding-left: 1.4rem;
}

.pd-founder blockquote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 380;
  line-height: 1.45;
  color: #26211A;
}

.pd-founder blockquote cite {
  display: block;
  margin-top: .7rem;
  font-style: normal;
  font-size: 0.875rem;
  color: #5A5248;
}

.pd-founder .principles {
  list-style: none;
  margin-block: 2rem;
  display: grid;
  gap: 1.1rem;
  padding: 0;
}

.pd-founder .principles li {
  display: flex;
  gap: 1.1rem;
  align-items: baseline;
}

.pd-founder .principles .p-num {
  font-family: 'Fraunces', Georgia, serif;
  color: #A0552F;
  font-size: 1.1rem;
  font-weight: 460;
  flex: none;
}

.pd-founder .principles .p-text {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 340;
  color: #2F5240;
  line-height: 1.35;
}

.pd-founder .chip {
  border: 1px solid #E7DCC9;
  border-radius: 999px;
  padding: .4rem .95rem;
  font-size: 0.875rem;
  color: #5A5248;
  background: #FAF6EF;
}

/* ---------- Pricing ---------- */
.pd-pricing .reversal {
  background: #FAF6EF;
  border: 1px solid #E7DCC9;
  border-radius: 18px;
  padding: 2rem;
}

.pd-pricing .reversal ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.pd-pricing .reversal li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-weight: 500;
}

/* ---------- Quotes ---------- */
.pd-quotes .quote {
  background: #FAF6EF;
  border: 1px solid #E7DCC9;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-quotes .quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 380;
  line-height: 1.5;
  flex: 1;
}

.pd-quotes .quote footer {
  font-size: 0.875rem;
  color: #5A5248;
}

/* ---------- FAQ ---------- */
.pd-faq .vc_tta_section .vc_tta-panel-heading {
  padding: 1.35rem 0;
}

.pd-faq .vc_tta_section .vc_tta-panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 460;
  line-height: 1.3;
}

.pd-faq .vc_tta_section .vc_tta-panel-body {
  color: #5A5248;
}

/* ---------- Finale ---------- */
.pd-finale {
  background: linear-gradient(180deg, #FAF6EF 0%, #F6E9CD 60%, #F5DFCB 100%);
}

.pd-finale .reassure-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: center;
  margin-top: 1.8rem;
  color: #5A5248;
  font-size: 0.875rem;
}

.pd-finale .reassure-row span {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
}

.pd-finale .alt-contact {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #5A5248;
}

.pd-finale .alt-contact a {
  color: #2F5240;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .pd-section {
    padding-block: clamp(3rem, 8vw, 4.5rem);
  }

  .pd-hero {
    min-height: auto;
  }

  .pd-hero .hero-ctas .pd-btn {
    width: 100%;
  }

  .pd-founder .portrait {
    max-width: 200px;
  }

  .pd-neutral .compare {
    min-width: 480px;
    font-size: .85rem;
  }

  .pd-neutral .compare th,
  .pd-neutral .compare td {
    padding: .6rem .8rem;
  }
}

@media (max-width: 639px) {
  .pd-stats .stat-num {
    font-size: 2.2rem;
  }

  .pd-process .steps {
    gap: 1rem;
  }

  .pd-process .step {
    padding: 1.5rem 1.2rem;
  }

  .pd-services .svc {
    padding: 1.5rem;
  }

  .pd-quotes .quote {
    padding: 1.5rem;
  }

  .pd-founder .principles .p-text {
    font-size: 1.1rem;
  }
}

@media (min-width: 1080px) {
  .pd-founder .founder-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: start;
  }
}

.h1t1 em {
    color: #2f5240;
}

.h1t1 {
    /*line-height: 1!important;*/
}
.tbx1 {
    padding: 0.9rem 1.1rem !important;
}
.tbx1bold { font-weight: 600!important; }

div#pd-assessment a.pd-btn.pd-btn-primary:hover {
    color: #fff!important;
}
.nopadding {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
}
.txtroundx1 {
		border: 1px solid #E7DCC9 !important;
    border-radius: 999px !important;
    padding: 0.4rem 0.95rem !important;
    font-size: 0.875rem !important;
    color: #5A5248 !important;
    background: #FAF6EF !important;
}
div#pd-result-today h3, #pd-result-today p, .pd-result-card h3, .pd-result-card p, .pd-result-card ul li {
    color: #fff!important;
}
.pd-result-card {
    background: #2f5241 !important;
		border-color: #2f5241 !important;
}