/* No custom CSS */
/* Oval portrait with gently moving decorative rings */
.voice-portrait {
    position: relative;
    box-sizing: border-box;
    padding: 16px;
    isolation: isolate;
    overflow: visible;
}

.voice-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.voice-portrait::before,
.voice-portrait::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.voice-portrait::before {
    inset: 2px -8px;
    border: 2px solid rgba(196, 158, 82, 0.75);
    border-left-color: transparent;
    animation: portrait-ring-clockwise 16s linear infinite;
}

.voice-portrait::after {
    inset: -7px 3px;
    border: 1px solid rgba(70, 106, 130, 0.55);
    border-right-color: transparent;
    animation: portrait-ring-counterclockwise 22s linear infinite;
}

@keyframes portrait-ring-clockwise {
    to {
        transform: rotate(360deg);
    }
}

@keyframes portrait-ring-counterclockwise {
    to {
        transform: rotate(-360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .voice-portrait::before,
    .voice-portrait::after {
        animation: none;
    }
}
/* =========================================
   MELISSA BAGWELL CONTACT PAGE — PAGE 163
   Matches Voice Lessons visual style
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&family=DM+Serif+Display:ital@0;1&family=Roboto+Slab:wght@300;400;500&display=swap');

/* CONTACT PAGE ONLY */
.page-id-163 {
  --sky:#cadff6;
  --sky-light:#e8f2fc;
  --ink:#424242;
  --deep:#243747;
  --paper:#f8fbff;
  --sage:#5e776d;
  --gold:#d4b96c;
}

/* Page background */
.page-id-163 .site-content,
.page-id-163 .content-area,
.page-id-163 main {
  background:var(--sky-light);
}

/* Main content area */
.page-id-163 .entry-content {
  max-width:900px;
  margin:0 auto;
  padding:80px 40px 110px;
  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace;
  color:var(--ink);
}

/* CONTACT heading */
.page-id-163 .entry-title,
.page-id-163 .page-title {
  max-width:900px;
  margin:0 auto;
  padding:90px 40px 15px;
  color:var(--ink) !important;
  font-family:'DM Serif Display', Georgia, serif !important;
  font-size:clamp(64px,8vw,110px) !important;
  font-weight:400 !important;
  line-height:.95 !important;
  letter-spacing:-.035em !important;
  text-transform:none !important;
}

/* Small decorative line beneath title */
.page-id-163 .entry-title:after,
.page-id-163 .page-title:after {
  content:"Let's start a conversation.";
  display:block;
  margin-top:28px;
  color:var(--sage);
  font-family:'DM Serif Display', Georgia, serif;
  font-size:clamp(25px,3vw,38px);
  font-style:italic;
  letter-spacing:0;
  line-height:1.2;
}

/* Jetpack shortcode form */
.page-id-163 .contact-form {
  margin-top:20px;
  padding:50px 55px 58px;
  background:var(--paper);
  border-top:3px solid var(--gold);
  box-shadow:0 18px 55px rgba(36,55,71,.10);
}

/* Field spacing */
.page-id-163 .contact-form > div,
.page-id-163 .contact-form .grunion-field-wrap {
  margin-bottom:32px !important;
}

/* Labels */
.page-id-163 .contact-form label,
.page-id-163 .contact-form .grunion-field-label {
  display:block;
  margin-bottom:9px;
  color:var(--ink) !important;
  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
}

/* Text fields */
.page-id-163 .contact-form input[type="text"],
.page-id-163 .contact-form input[type="email"],
.page-id-163 .contact-form input[type="tel"],
.page-id-163 .contact-form input[type="url"],
.page-id-163 .contact-form textarea {
  width:100% !important;
  max-width:100% !important;
  padding:14px 4px !important;
  border:0 !important;
  border-bottom:1px solid var(--ink) !important;
  border-radius:0 !important;
  background:transparent !important;
  color:var(--ink) !important;
  box-shadow:none !important;
  font-family:'Roboto Slab', Georgia, serif !important;
  font-size:17px !important;
  line-height:1.5 !important;
}

/* Message box */
.page-id-163 .contact-form textarea {
  min-height:180px !important;
  resize:vertical;
}

/* Focus */
.page-id-163 .contact-form input:focus,
.page-id-163 .contact-form textarea:focus {
  outline:none !important;
  border-bottom-color:var(--gold) !important;
  box-shadow:0 1px 0 var(--gold) !important;
}

/* Submit */
.page-id-163 .contact-form input[type="submit"],
.page-id-163 .contact-form button[type="submit"] {
  margin-top:15px !important;
  padding:17px 24px !important;
  border:0 !important;
  border-radius:0 !important;
  background:var(--deep) !important;
  color:#fff !important;
  box-shadow:none !important;
  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace !important;
  font-size:12px !important;
  letter-spacing:.13em !important;
  text-transform:uppercase !important;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
}

.page-id-163 .contact-form input[type="submit"]:hover,
.page-id-163 .contact-form button[type="submit"]:hover {
  background:var(--ink) !important;
  transform:translateY(-2px);
}

/* Melissa's signature/contact details below form */
.page-id-163 .entry-content > p {
  margin-top:35px;
  color:var(--ink);
  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace;
  font-size:14px;
  line-height:1.55;
}

/* Remove sharing clutter on this page */
.page-id-163 .sharedaddy,
.page-id-163 .sd-sharing-enabled,
.page-id-163 .jp-relatedposts {
  display:none !important;
}

/* Mobile */
@media (max-width:700px) {

  .page-id-163 .entry-title,
  .page-id-163 .page-title {
    padding:65px 24px 10px;
    font-size:clamp(56px,16vw,78px) !important;
  }

  .page-id-163 .entry-content {
    padding:55px 24px 80px;
  }

  .page-id-163 .contact-form {
    padding:38px 25px 44px;
  }
}
/* =========================================
   CONTACT HERO — MORE EDITORIAL
   ========================================= */

.page-id-163 .mb-contact-heading {
  max-width:900px;
  margin:0 auto;
  padding:15px 40px 55px;
}

/* Main headline */
.page-id-163 .mb-contact-heading h2 {
  margin:0 !important;
  font-family:'DM Serif Display', Georgia, serif !important;
  font-weight:400 !important;
  line-height:.88 !important;
  letter-spacing:-.035em !important;
}

/* LET'S START A */
.page-id-163 .mb-contact-heading .contact-first-line {
  display:block;
  margin-bottom:5px;

  color:var(--ink) !important;

  font-family:'DM Serif Display', Georgia, serif !important;
  font-size:clamp(38px,4.5vw,62px);
  font-style:normal;
  letter-spacing:-.02em;
}

/* CONVERSATION */
.page-id-163 .mb-contact-heading h2 em {
  display:block;

  color:var(--sage) !important;

  font-family:'DM Serif Display', Georgia, serif !important;
  font-size:clamp(72px,9vw,125px);
  font-weight:400;
  font-style:italic;

  letter-spacing:-.045em;
  line-height:.9;
}

/* Gold accent */
.page-id-163 .mb-contact-heading:after {
  content:"";
  display:block;

  width:70px;
  height:2px;

  margin:35px 0 25px;

  background:var(--gold);
}

/* Curiosity line */
.page-id-163 .contact-curiosity {
  max-width:650px;
  margin:0 !important;

  color:var(--ink) !important;

  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace !important;
  font-size:13px !important;
  font-weight:400;
  line-height:1.7 !important;

  letter-spacing:.07em;
}


/* MOBILE */

@media (max-width:700px) {

  .page-id-163 .mb-contact-heading {
    padding:10px 24px 45px;
  }

  .page-id-163 .mb-contact-heading .contact-first-line {
    font-size:36px;
  }

  .page-id-163 .mb-contact-heading h2 em {
    font-size:clamp(62px,18vw,88px);
  }

}
/* CONTACT HERO FINAL SPACING + STRONGER TWOTONE OVERRIDES */

.page-id-163 .mb-contact-heading {
  max-width:900px !important;
  margin:0 auto !important;
  padding:45px 40px 38px !important;
}

.page-id-163 .mb-contact-heading h2 {
  margin:0 !important;
  padding:0 !important;
  font-family:'DM Serif Display', Georgia, serif !important;
  font-weight:400 !important;
  line-height:.9 !important;
  letter-spacing:-.035em !important;
  text-transform:none !important;
}

.page-id-163 .mb-contact-heading h2 .contact-first-line {
  display:block !important;
  color:#424242 !important;
  -webkit-text-fill-color:#424242 !important;
  font-family:'DM Serif Display', Georgia, serif !important;
  font-size:clamp(42px,4.8vw,68px) !important;
  font-style:normal !important;
  font-weight:400 !important;
  line-height:1 !important;
}

.page-id-163 .mb-contact-heading h2 em {
  display:block !important;
  margin-top:2px !important;

  color:#5e776d !important;
  -webkit-text-fill-color:#5e776d !important;

  font-family:'DM Serif Display', Georgia, serif !important;
  font-size:clamp(78px,9vw,128px) !important;
  font-weight:400 !important;
  font-style:italic !important;
  line-height:.9 !important;
  letter-spacing:-.045em !important;
}

.page-id-163 .contact-curiosity {
  margin:30px 0 0 !important;
  max-width:670px !important;

  color:#424242 !important;

  font-family:'Anonymous Pro', Menlo, Monaco, Consolas, monospace !important;
  font-size:13px !important;
  line-height:1.7 !important;
  letter-spacing:.06em !important;
}

.page-id-163 .mb-contact-heading:after {
  content:"" !important;
  display:block !important;
  width:72px !important;
  height:2px !important;
  margin:28px 0 0 !important;
  background:#d4b96c !important;
}

/* Pull the form closer to the hero */
.page-id-163 .contact-form {
  margin-top:25px !important;
}

@media (max-width:700px) {
  .page-id-163 .mb-contact-heading {
    padding:35px 24px 32px !important;
  }

  .page-id-163 .mb-contact-heading h2 .contact-first-line {
    font-size:38px !important;
  }

  .page-id-163 .mb-contact-heading h2 em {
    font-size:clamp(66px,18vw,90px) !important;
  }
}
/* CONTACT HERO — FINAL WIDTH & WORD FIX */

.page-id-163 .mb-contact-heading {
  max-width:1100px !important;
  width:calc(100% - 80px) !important;
  margin:0 auto !important;
  padding:25px 0 42px !important;
}

/* Keep "conversation." together */
.page-id-163 .mb-contact-heading h2 em {
  white-space:nowrap !important;
  font-size:clamp(72px,8vw,116px) !important;
  line-height:.88 !important;
}

/* First line */
.page-id-163 .mb-contact-heading h2 .contact-first-line {
  font-size:clamp(42px,4.5vw,64px) !important;
}

/* Curiosity line */
.page-id-163 .contact-curiosity {
  margin-top:32px !important;
}

/* Gold line */
.page-id-163 .mb-contact-heading:after {
  margin-top:27px !important;
}

/* MOBILE — allow sensible sizing */
@media (max-width:700px) {

  .page-id-163 .mb-contact-heading {
    width:calc(100% - 48px) !important;
  }

  .page-id-163 .mb-contact-heading h2 em {
    white-space:normal !important;
    font-size:clamp(58px,17vw,82px) !important;
  }
}
/* REMOVE GOLD LINE UNDER CONTACT INTRO */
.page-id-163 .mb-contact-heading:after {
  display:none !important;
}
/* VOICE LESSONS — TOP BANNER TITLE */
.page-id-10865 #masthead .intro-area .intro-title {
    font-family: 'Roboto Slab', Georgia, serif !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: .05em !important;
    font-size: clamp(34px, 3.2vw, 50px) !important;
    line-height: 1.1 !important;
    color: #424242 !important;
    -webkit-text-fill-color: #424242 !important;
}
/* VOICE LESSONS — CLOSE GAP BELOW TOP BANNER */
.page-id-10865 .mbvs-page .hero {
    min-height: auto !important;
    padding-top: 75px !important;
}
/* Move hero copy closer to the banner */
.page-id-10865 .mbvs-page .hero-copy {
    align-self: start !important;
}

/* Tablet */
@media (max-width: 980px) {
    .page-id-10865 .mbvs-page .hero {
        padding-top: 65px !important;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .page-id-10865 .mbvs-page .hero {
        padding-top: 55px !important;
    }
}
/* VOICE LESSONS — HIDE THEME BANNER TITLE */
.page-id-10865 #masthead .intro-area .intro-title {
    display: none !important;
}
/* VOICE LESSONS — COMPACT TOP BANNER */
.page-id-10865 #masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    background-position: 50% 30% !important;
}

.page-id-10865 #masthead .intro-area {
    height: 140px !important;
}

/* Much shorter on phones */
@media (max-width: 700px) {
    .page-id-10865 #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
        background-position: 50% 28% !important;
    }

    .page-id-10865 #masthead .intro-area {
        height: 90px !important;
    }
}
/* CONTACT PAGE — MATCH VOICE LESSONS BANNER HEIGHT */
.page-id-163 #masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    background-position: 50% 50% !important;
}

.page-id-163 #masthead .intro-area {
    height: 140px !important;
}

/* Compact banner on phones */
@media (max-width: 700px) {
    .page-id-163 #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
    }

    .page-id-163 #masthead .intro-area {
        height: 90px !important;
    }
}
/* CONTACT PAGE — HIDE BANNER TITLE */
.page-id-163 #masthead .intro-area .intro-title {
    display: none !important;
}
/* CONTACT PAGE — CLEARER NAVIGATION, NO BOX */
.page-id-163 #masthead .main-navigation {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
}

/* CONTACT PAGE — HIGH-CONTRAST NAV LINKS */
.page-id-163 #masthead .main-navigation a {
    color: #fffaf2 !important;
    -webkit-text-fill-color: #fffaf2 !important;
    font-weight: 700 !important;
    text-shadow:
        0 1px 3px rgba(36,55,71,.75),
        0 0 8px rgba(36,55,71,.40);
}
/* ABOUT PAGE — COMPACT TOP BANNER */
body:has(#masthead .main-navigation a[aria-current="page"][href*="/about-3/"])
#masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    background-position: 50% 50% !important;
}

body:has(#masthead .main-navigation a[aria-current="page"][href*="/about-3/"])
#masthead .intro-area {
    height: 140px !important;
}

/* Mobile */
@media (max-width: 700px) {
    body:has(#masthead .main-navigation a[aria-current="page"][href*="/about-3/"])
    #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
    }

    body:has(#masthead .main-navigation a[aria-current="page"][href*="/about-3/"])
    #masthead .intro-area {
        height: 90px !important;
    }
}
/* MATCH TOP BANNER HEIGHTS:
   ABOUT + CONTACT + VOICE LESSONS */

.page-id-156 #masthead.site-header,
.page-id-163 #masthead.site-header,
.page-id-10865 #masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    max-height: 290px !important;
    background-size: cover !important;
}

.page-id-156 #masthead .intro-area,
.page-id-163 #masthead .intro-area,
.page-id-10865 #masthead .intro-area {
    height: 140px !important;
    min-height: 0 !important;
}

/* PHONES */
@media (max-width: 700px) {
    .page-id-156 #masthead.site-header,
    .page-id-163 #masthead.site-header,
    .page-id-10865 #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
    }

    .page-id-156 #masthead .intro-area,
    .page-id-163 #masthead .intro-area,
    .page-id-10865 #masthead .intro-area {
        height: 90px !important;
        min-height: 0 !important;
    }
}
/* FINAL MATCHED BANNER HEIGHTS
   ABOUT + CONTACT + VOICE LESSONS */

html body.page-id-156 #masthead.site-header,
html body.page-id-163 #masthead.site-header,
html body.page-id-10865 #masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    max-height: 290px !important;
    overflow: hidden !important;
}

html body.page-id-156 #masthead .intro-area,
html body.page-id-163 #masthead .intro-area,
html body.page-id-10865 #masthead .intro-area {
    height: 140px !important;
    min-height: 0 !important;
    max-height: 140px !important;
}

/* PHONES */
@media (max-width: 700px) {
    html body.page-id-156 #masthead.site-header,
    html body.page-id-163 #masthead.site-header,
    html body.page-id-10865 #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
    }

    html body.page-id-156 #masthead .intro-area,
    html body.page-id-163 #masthead .intro-area,
    html body.page-id-10865 #masthead .intro-area {
        height: 90px !important;
        min-height: 0 !important;
        max-height: 90px !important;
    }
}
/* PAGE 899 — MATCH THE OTHER COMPACT BANNERS */

html body.page-id-899 #masthead.site-header {
    height: 290px !important;
    min-height: 290px !important;
    max-height: 290px !important;
    overflow: hidden !important;
    background-size: cover !important;
}

html body.page-id-899 #masthead .intro-area {
    height: 140px !important;
    min-height: 0 !important;
    max-height: 140px !important;
}

/* PHONES */
@media (max-width: 700px) {
    html body.page-id-899 #masthead.site-header {
        height: 190px !important;
        min-height: 190px !important;
        max-height: 190px !important;
    }

    html body.page-id-899 #masthead .intro-area {
        height: 90px !important;
        min-height: 0 !important;
        max-height: 90px !important;
    }
}
/* ABOUT PAGE — LIGHT VOICE LESSONS REFRESH */

.page-id-156 .site-content {
    background: #cadff6 !important;
}

.page-id-156 .entry-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 55px 7vw 90px;
    color: #424242;
}

/* Keep the existing Melissa Bagwell heading under control */
.page-id-156 .entry-content h3 {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-weight: 400 !important;
    font-size: clamp(30px, 3.2vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.01em !important;
    color: #424242 !important;
    -webkit-text-fill-color: #424242 !important;
    margin: 35px 0 25px !important;
}

/* Body copy */
.page-id-156 .entry-content p {
    line-height: 1.8;
}

/* Testimonials only */
.page-id-156 .entry-content blockquote {
    background: #f8fbff;
    border-left: 3px solid #d4b96c;
    padding: 24px 28px;
    margin: 25px 0;
}
/* ABOUT PAGE — EDITORIAL BIO IMAGE WRAP */
.page-id-156 .entry-content figure.alignleft,
.page-id-156 .entry-content .wp-block-image.alignleft {
    float: left !important;
    width: 42% !important;
    max-width: 430px !important;
    margin: 0 42px 28px 0 !important;
}

/* Stack naturally on phones */
@media (max-width: 700px) {
    .page-id-156 .entry-content figure.alignleft,
    .page-id-156 .entry-content .wp-block-image.alignleft {
        float: none !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 30px !important;
    }
}
/* ==========================================================
   VOICE LESSONS PAGE — MOBILE + TABLET OPTIMIZATION
   Page ID: 10865
   Desktop layout above 980px remains unchanged.
   ========================================================== */


/* Remove WordPress / Jetpack Share This + Like This
   from the Voice Lessons page only */

.page-id-10865 .entry-content > .sharedaddy,
.page-id-10865 #jp-post-flair,
.page-id-10865 .entry-content > p.wp-block-paragraph:empty {
    display: none !important;
}