:root {
  --p-ink: #111927;
  --p-navy: #07111d;
  --p-navy-2: #0c1827;
  --p-paper: #f4f1ea;
  --p-white: #ffffff;
  --p-gold: #c9a45c;
  --p-gold-dark: #8d6a28;
  --p-muted: #667184;
  --p-line: #dcd7ce;
}

.home-page {
  background: var(--p-white);
  color: var(--p-ink);
}

.home-page main {
  overflow: hidden;
}

.home-page .nav {
  border-bottom: 1px solid rgba(201, 164, 92, .2);
  background: rgba(7, 17, 29, .97);
  backdrop-filter: blur(14px);
}

.home-page .nav-inner {
  min-height: 76px;
}

.home-page .nav-links {
  gap: 24px;
}

.home-page .nav-links a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.home-page .brand-title,
.home-page .brand-sub {
  letter-spacing: 0;
}

.home-page .nav .btn {
  border-radius: 5px;
}

.p-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  background: var(--p-navy);
  color: var(--p-white);
}

.p-hero::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 1px;
  height: 84%;
  background: rgba(201, 164, 92, .22);
  content: "";
}

.p-hero-emblem {
  position: absolute;
  top: 50%;
  right: 7%;
  width: 470px;
  max-width: 38vw;
  opacity: .13;
  transform: translateY(-50%);
}

.p-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 78px;
  padding-bottom: 78px;
}

.p-kicker {
  margin: 0 0 18px;
  color: var(--p-gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-hero .p-kicker,
.p-services .p-kicker,
.p-contact .p-kicker {
  color: var(--p-gold);
}

.p-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--p-white);
  font-family: 'Playfair Display', serif;
  font-size: 78px;
  font-weight: 600;
  line-height: .98;
  letter-spacing: 0;
}

.p-hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.75;
}

.p-hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.p-hero-actions > a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 164, 92, .5);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  transition: color .18s ease, border-color .18s ease;
}

.p-hero-actions > a:hover {
  border-color: var(--p-gold);
  color: var(--p-white);
}

.p-button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.p-button:hover {
  transform: translateY(-2px);
}

.p-button-gold {
  background: var(--p-gold);
  color: var(--p-navy);
  box-shadow: 0 14px 34px rgba(201, 164, 92, .18);
}

.p-button-gold:hover {
  background: #d7b66e;
  box-shadow: 0 18px 40px rgba(201, 164, 92, .26);
}

.p-button-dark {
  background: var(--p-navy);
  color: var(--p-white);
}

.p-button-outline {
  border-color: rgba(201, 164, 92, .5);
  color: var(--p-white);
}

.p-proof {
  border-bottom: 1px solid var(--p-line);
  background: var(--p-white);
}

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

.p-proof-grid > div {
  min-height: 132px;
  padding: 30px 34px;
  border-left: 1px solid var(--p-line);
}

.p-proof-grid > div:last-child {
  border-right: 1px solid var(--p-line);
}

.p-proof-grid strong,
.p-proof-grid span {
  display: block;
}

.p-proof-grid strong {
  color: var(--p-ink);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

.p-proof-grid span {
  margin-top: 8px;
  color: var(--p-muted);
  font-size: 13px;
  line-height: 1.6;
}

.p-section {
  padding: 108px 0;
}

.p-split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 84px;
  align-items: start;
}

.p-heading h2,
.p-section-head h2,
.p-profile-copy h2,
.p-contact-copy h2 {
  margin: 0;
  color: var(--p-ink);
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.p-heading > p:not(.p-kicker),
.p-section-head > p:not(.p-kicker),
.p-contact-copy > p:not(.p-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--p-muted);
  font-size: 16px;
  line-height: 1.75;
}

.p-heading-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.p-heading-actions > a,
.p-all-link {
  padding: 9px 0;
  border-bottom: 1px solid var(--p-gold);
  color: var(--p-ink);
  font-size: 13px;
  font-weight: 900;
}

.p-application {
  background: var(--p-paper);
}

.p-flow {
  border-top: 1px solid #cbc4b8;
}

.p-flow > div {
  display: grid;
  padding: 25px 0;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  border-bottom: 1px solid #cbc4b8;
}

.p-flow strong {
  color: var(--p-ink);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.p-flow span {
  color: var(--p-muted);
  font-size: 14px;
  line-height: 1.65;
}

.p-services {
  background: var(--p-navy);
  color: var(--p-white);
}

.p-services .p-section-head h2 {
  color: var(--p-white);
}

.p-services .p-section-head > p:not(.p-kicker) {
  color: rgba(255, 255, 255, .62);
}

.p-section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.p-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 164, 92, .28);
}

.p-service {
  display: flex;
  min-height: 240px;
  padding: 32px 32px 30px 0;
  flex-direction: column;
  border-bottom: 1px solid rgba(201, 164, 92, .28);
  color: var(--p-white);
  transition: padding .2s ease, background .2s ease;
}

.p-service:nth-child(3n+2),
.p-service:nth-child(3n+3) {
  padding-left: 32px;
  border-left: 1px solid rgba(201, 164, 92, .28);
}

.p-service:hover {
  background: rgba(255, 255, 255, .035);
  padding-right: 24px;
  padding-left: 24px;
}

.p-service h3 {
  max-width: 300px;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}

.p-service p {
  margin: 14px 0 auto;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.65;
}

.p-service > span,
.p-journal-grid a > span {
  margin-top: 28px;
  color: var(--p-gold);
  font-size: 12px;
  font-weight: 900;
}

.p-service b,
.p-journal-grid b {
  display: inline-block;
  margin-left: 8px;
  transition: transform .18s ease;
}

.p-service:hover b,
.p-journal-grid a:hover b {
  transform: translateX(4px);
}

.p-intake {
  background: var(--p-white);
}

.p-intake-list {
  border-top: 1px solid var(--p-line);
}

.p-intake-list button {
  display: flex;
  width: 100%;
  min-height: 105px;
  padding: 22px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--p-line);
  border-radius: 0;
  background: transparent;
  color: var(--p-ink);
  cursor: pointer;
  text-align: left;
  transition: padding .18s ease, color .18s ease, border-color .18s ease;
}

.p-intake-list button:hover {
  padding-right: 14px;
  padding-left: 14px;
  border-color: var(--p-gold);
  color: var(--p-gold-dark);
}

.p-intake-list small,
.p-intake-list strong {
  display: block;
}

.p-intake-list small {
  margin-bottom: 7px;
  color: var(--p-gold-dark);
  font-size: 10px;
  font-weight: 900;
}

.p-intake-list strong {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
}

.p-intake-list button > b {
  font-size: 24px;
  font-weight: 400;
}

.p-profile {
  position: relative;
  background: var(--p-paper);
}

.p-anchor {
  position: absolute;
  top: -80px;
}

.p-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid #cbc4b8;
  border-radius: 8px;
  background: var(--p-white);
}

.p-monogram-panel {
  display: flex;
  min-height: 560px;
  padding: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--p-navy);
  color: var(--p-white);
}

.p-monogram {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, .65);
  border-radius: 50%;
  color: var(--p-gold);
}

.p-monogram::before,
.p-monogram::after {
  position: absolute;
  border: 1px solid rgba(201, 164, 92, .2);
  border-radius: 50%;
  content: "";
  inset: 10px;
}

.p-monogram::after {
  border-style: dotted;
  inset: -12px;
}

.p-monogram > span {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  line-height: 1;
}

.p-monogram > small {
  position: absolute;
  bottom: 45px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.p-monogram-panel > p {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.p-profile-copy {
  padding: 62px 66px;
}

.p-profile-meta {
  display: flex;
  margin-top: 16px;
  gap: 22px;
  color: var(--p-gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.p-profile-lead {
  margin: 28px 0 0;
  color: #2b374a;
  font-size: 18px;
  line-height: 1.75;
}

.p-official-line {
  margin: 26px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  color: #2b374a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.p-profile-copy > p:not(.p-kicker):not(.p-profile-lead):not(.p-official-line) {
  margin: 24px 0 0;
  color: var(--p-muted);
  font-size: 14px;
  line-height: 1.75;
}

.p-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.p-tags span {
  padding: 7px 11px;
  border: 1px solid var(--p-line);
  border-radius: 5px;
  color: #354155;
  font-size: 11px;
  font-weight: 800;
}

.p-testimonials {
  background: var(--p-white);
}

.p-testimonial-grid {
  align-items: center;
}

.p-testimonial {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  background: var(--p-white);
  box-shadow: 0 28px 70px rgba(7, 17, 29, .09);
}

.p-quote {
  position: absolute;
  top: 18px;
  left: 50px;
  z-index: 2;
  color: rgba(201, 164, 92, .22);
  font-family: 'Playfair Display', serif;
  font-size: 112px;
  line-height: 1;
}

.p-testimonial .review-track {
  display: flex;
  transition: transform .38s ease;
}

.p-testimonial .review-slide {
  display: flex;
  min-width: 100%;
  min-height: 360px;
  padding: 104px 66px 52px;
  flex-direction: column;
  justify-content: center;
  background: var(--p-white);
}

.p-testimonial .review-slide::after {
  display: none;
}

.p-testimonial .review-slide p {
  max-width: 680px;
  color: #243146;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.65;
}

.p-testimonial .review-slide strong {
  margin-top: 28px;
  color: var(--p-gold-dark);
  font-size: 12px;
}

.p-slider-footer {
  display: flex;
  min-height: 72px;
  padding: 14px 18px 14px 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--p-line);
  background: #faf9f6;
}

.p-slider-footer > span {
  color: var(--p-muted);
  font-size: 12px;
  font-weight: 800;
}

.p-slider-footer > div {
  display: flex;
  gap: 8px;
}

.p-slider-footer button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid #cfc8bb;
  border-radius: 5px;
  background: var(--p-white);
  color: var(--p-ink);
  font-size: 18px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.p-slider-footer button:hover {
  border-color: var(--p-gold);
  color: var(--p-gold-dark);
  transform: translateY(-1px);
}

.p-journal {
  background: var(--p-paper);
}

.p-journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  background: var(--p-line);
}

.p-journal-grid a {
  display: flex;
  min-height: 230px;
  padding: 34px;
  flex-direction: column;
  background: var(--p-white);
  color: var(--p-ink);
  transition: background .18s ease;
}

.p-journal-grid a:first-child {
  min-height: 461px;
  padding: 48px;
  grid-row: 1 / 3;
}

.p-journal-grid a:hover {
  background: #fffaf0;
}

.p-journal-grid small {
  color: var(--p-gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.p-journal-grid h3 {
  margin: 20px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1.25;
}

.p-journal-grid a:first-child h3 {
  max-width: 520px;
  font-size: 39px;
}

.p-journal-grid p {
  margin: 16px 0 auto;
  color: var(--p-muted);
  font-size: 14px;
  line-height: 1.7;
}

.p-all-link {
  display: inline-flex;
  margin-top: 28px;
}

.p-faq {
  background: var(--p-white);
}

.p-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 84px;
}

.p-faq-list {
  border-top: 1px solid var(--p-line);
}

.p-faq .faq-item {
  border: 0;
  border-bottom: 1px solid var(--p-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.p-faq .faq-q {
  padding: 24px 0;
  background: transparent;
  color: var(--p-ink);
  font-size: 16px;
  letter-spacing: 0;
}

.p-faq .faq-q > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid #cfc8bb;
  border-radius: 50%;
  color: var(--p-gold-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform .18s ease, background .18s ease;
}

.p-faq .faq-item.open .faq-q > span {
  background: #f4efe5;
  transform: rotate(45deg);
}

.p-faq .faq-a {
  max-width: 720px;
  padding: 0 52px 26px 0;
  color: var(--p-muted);
  font-size: 14px;
  line-height: 1.75;
}

.p-contact {
  padding: 112px 0;
  background: var(--p-navy);
  color: var(--p-white);
}

.p-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 68px;
  align-items: start;
}

.p-contact-copy h2 {
  color: var(--p-white);
}

.p-contact-copy > p:not(.p-kicker) {
  color: rgba(255, 255, 255, .62);
}

.p-contact-methods {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.p-contact-methods > a {
  display: grid;
  padding: 16px 0;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: var(--p-white);
  transition: padding .18s ease, border-color .18s ease;
}

.p-contact-methods > a:hover {
  padding-left: 8px;
  border-color: rgba(201, 164, 92, .65);
}

.p-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, .36);
  border-radius: 5px;
  color: var(--p-gold);
}

.p-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p-contact-methods small,
.p-contact-methods strong {
  display: block;
  overflow-wrap: anywhere;
}

.p-contact-methods small {
  margin-bottom: 3px;
  color: var(--p-gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.p-contact-methods strong {
  font-size: 14px;
}

.p-form {
  padding: 48px;
  border: 1px solid rgba(201, 164, 92, .4);
  border-radius: 8px;
  background: var(--p-white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}

.p-form > h3 {
  margin: 0;
  color: var(--p-ink);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.18;
}

.p-form > p:not(.p-kicker) {
  margin: 14px 0 0;
  color: var(--p-muted);
  font-size: 13px;
  line-height: 1.7;
}

.p-form .form-grid {
  margin-top: 28px;
  gap: 16px;
}

.p-form .field label {
  color: #313d50;
  font-size: 11px;
  letter-spacing: 0;
}

.p-form .field label > span {
  margin-left: 5px;
  color: #979185;
  font-size: 9px;
  font-weight: 700;
  text-transform: none;
}

.p-form .field input,
.p-form .field select,
.p-form .field textarea {
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid #d6d1c7;
  border-radius: 5px;
  background: #fafafa;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.p-form .field textarea {
  min-height: 112px;
}

.p-form .field input:hover,
.p-form .field select:hover,
.p-form .field textarea:hover {
  border-color: #bdb5a8;
  background: var(--p-white);
}

.p-form .field input:focus,
.p-form .field select:focus,
.p-form .field textarea:focus {
  border-color: var(--p-gold);
  background: var(--p-white);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, .13);
}

.p-form .consent {
  margin: 16px 0;
}

.p-submit {
  width: 100%;
}

.p-map {
  display: grid;
  margin-top: 76px;
  padding-top: 76px;
  grid-template-columns: minmax(0, .66fr) minmax(0, 1.34fr);
  gap: 50px;
  align-items: center;
  border-top: 1px solid rgba(201, 164, 92, .25);
}

.p-map h3 {
  margin: 0;
  color: var(--p-white);
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.2;
}

.p-map > div > p:not(.p-kicker) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.7;
}

.p-map .p-button {
  margin-top: 28px;
}

.p-map iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(201, 164, 92, .35);
  border-radius: 8px;
  filter: saturate(.8) contrast(.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}

.home-page .footer {
  padding: 48px 0;
  border-top: 1px solid rgba(201, 164, 92, .2);
  background: #050c15;
}

.home-page :is(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--p-gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .p-hero h1 {
    font-size: 64px;
  }

  .p-split,
  .p-profile-grid,
  .p-faq-grid,
  .p-contact-grid,
  .p-map {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .p-service:nth-child(3n+2),
  .p-service:nth-child(3n+3) {
    padding-left: 0;
    border-left: 0;
  }

  .p-service:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid rgba(201, 164, 92, .28);
  }

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

  .p-journal-grid a:first-child {
    min-height: 300px;
    grid-row: auto;
  }

  .p-monogram-panel {
    min-height: 430px;
  }

  .p-profile-copy {
    padding: 48px;
  }
}

@media (max-width: 640px) {
  .home-page {
    padding-bottom: 62px;
  }

  .p-hero {
    min-height: 600px;
  }

  .p-hero::after {
    display: none;
  }

  .p-hero-emblem {
    top: auto;
    right: -70px;
    bottom: 24px;
    width: 280px;
    max-width: none;
    opacity: .1;
    transform: none;
  }

  .p-hero-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .p-hero h1 {
    font-size: 48px;
  }

  .p-hero-lead {
    font-size: 16px;
  }

  .p-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .p-hero-actions > a {
    align-self: flex-start;
  }

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

  .p-proof-grid > div {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--p-line);
    border-left: 0;
  }

  .p-proof-grid > div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .p-section,
  .p-contact {
    padding: 76px 0;
  }

  .p-split,
  .p-faq-grid {
    gap: 34px;
  }

  .p-heading h2,
  .p-section-head h2,
  .p-profile-copy h2,
  .p-contact-copy h2 {
    font-size: 35px;
  }

  .p-flow > div {
    padding: 21px 0;
    grid-template-columns: 116px 1fr;
    gap: 16px;
  }

  .p-heading-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .p-heading-actions > a {
    align-self: flex-start;
  }

  .p-service,
  .p-service:nth-child(even) {
    min-height: 190px;
    padding: 28px 0;
    border-left: 0;
  }

  .p-intake-list button {
    min-height: 92px;
  }

  .p-monogram-panel {
    min-height: 360px;
    padding: 38px 24px;
  }

  .p-monogram {
    width: 160px;
    height: 160px;
  }

  .p-monogram > span {
    font-size: 48px;
  }

  .p-monogram > small {
    bottom: 34px;
  }

  .p-profile-copy,
  .p-form {
    padding: 30px 22px;
  }

  .p-testimonial .review-slide {
    min-height: 330px;
    padding: 88px 24px 38px;
  }

  .p-quote {
    left: 24px;
    font-size: 88px;
  }

  .p-testimonial .review-slide p {
    font-size: 20px;
  }

  .p-journal-grid a,
  .p-journal-grid a:first-child {
    min-height: 260px;
    padding: 28px 24px;
  }

  .p-journal-grid a:first-child h3 {
    font-size: 30px;
  }

  .p-faq .faq-a {
    padding-right: 42px;
  }

  .p-form > h3,
  .p-map h3 {
    font-size: 30px;
  }

  .p-map {
    margin-top: 54px;
    padding-top: 54px;
  }

  .p-map iframe {
    min-height: 290px;
  }
}
