@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playwrite+AU+QLD:wght@100..400&display=swap");

:root {
  --ink: #1d251f;
  --green: #087c3d;
  --green-deep: #075d2c;
  --lime: #80bc06;
  --orange: #ff4d11;
  --gold: #ffbc06;
  --purple: #7d38ad;
  --cream: #fffdf5;
  --paper: rgba(255, 253, 244, .84);
  --shadow: 0 18px 40px rgba(70, 91, 36, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: "DM Sans", Arial, sans-serif; line-height: 1.62; }
.page { min-width: 320px; background: #fffdf2 url("assets/vibrant-watercolor-wash.svg") center top / cover fixed; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { clip: rect(0, 0, 0, 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.image-heading { margin: 0; }

.site-header { width: min(1280px, calc(100% - 56px)); margin: 0 auto; min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; z-index: 10; }
.brand { display: inline-flex; align-items: center; text-decoration: none; white-space: nowrap; }
.brand img { display: block; height: 58px; width: 158px; }
.brand-mark { position: relative; width: 43px; height: 46px; display: inline-block; border-bottom: 3px solid var(--green); border-radius: 45%; transform: rotate(-8deg); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: var(--green); border-radius: 50% 50% 50% 4px; transform: rotate(-26deg); }
.brand-mark::before { width: 11px; height: 27px; left: 10px; top: 1px; }
.brand-mark::after { width: 9px; height: 21px; right: 5px; top: 13px; background: var(--orange); }
.brand-mark i { position: absolute; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; bottom: 3px; left: 4px; }
.brand-mark i:nth-child(2) { left: 21px; bottom: 10px; background: var(--purple); }
.brand-mark i:nth-child(3) { left: 31px; bottom: 3px; background: var(--lime); }
.brand-copy { display: grid; line-height: .9; letter-spacing: -.03em; }
.brand-copy b { font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: 1.06rem; font-weight: 350; }
.brand-copy em { color: var(--orange); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: .75rem; font-style: normal; text-align: right; }
.main-nav { display: flex; gap: clamp(18px, 3vw, 44px); align-items: center; }
.main-nav a { color: #171a18; font-size: .98rem; font-weight: 600; text-decoration: none; padding: 10px 0; position: relative; }
.main-nav a::after { content: ""; background: var(--orange); bottom: 3px; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; width: 100%; }
.main-nav a:hover::after, .main-nav .active::after { transform: scaleX(1); }
.main-nav .active { color: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; border-radius: 1px; background: var(--green-deep); }

.home-hero { min-height: 565px; position: relative; overflow: hidden; isolation: isolate; }
.hero-scene { position: absolute; inset: -68px 0 -18px; z-index: -1; background: url("assets/home-hero-vibrant.svg") center / cover no-repeat; }
.home-hero::after { content: ""; inset: 0; position: absolute; pointer-events: none; z-index: -1; background: linear-gradient(90deg, rgba(255, 253, 243, .72) 0%, rgba(255, 253, 243, .32) 46%, rgba(255, 255, 255, .04) 73%); }
.hero-copy { width: min(1180px, calc(100% - 48px)); padding-top: 64px; max-width: 1180px; }
.hero-copy > * { max-width: 455px; }
.eyebrow, .section-kicker { text-transform: uppercase; color: var(--green); font-size: .73rem; font-weight: 700; letter-spacing: .16em; margin: 0 0 7px; }
.hero-title-image { display: block; height: auto; margin: -13px 0 -3px -20px; max-width: 485px; width: min(100%, 485px); }
.hero-copy h2 { color: var(--green-deep); font-size: clamp(1.4rem, 2.4vw, 2.1rem); letter-spacing: -.04em; margin: 6px 0 0; }
.script-line { color: var(--ink); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(.98rem, 1.8vw, 1.35rem); letter-spacing: -.05em; line-height: 1.45; margin: 7px 0 20px; }
.hero-copy > p:not(.eyebrow):not(.script-line) { font-size: .96rem; margin: 0 0 14px; }
.button { background: linear-gradient(130deg, #297a39, #1f632b); border-radius: 9px; box-shadow: 0 9px 17px rgba(28, 104, 37, .2); color: #fff; display: inline-block; font-weight: 700; margin-top: 6px; padding: 12px 18px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(28, 104, 37, .3); }
.button span { font-size: 1.25em; margin-left: 4px; }

.intro-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: -4px; padding-bottom: 64px; }
.info-card { background: rgba(255,255,255,.78); border: 3px solid rgba(255,255,255,.91); box-shadow: var(--shadow); min-height: 478px; padding: 35px clamp(24px, 3vw, 38px) 29px; text-align: center; }
.info-card:first-child { border-radius: 30px 0 0 30px; }
.info-card:last-child { border-radius: 0 30px 30px 0; }
.about-card { background: rgba(249, 255, 242, .85); }
.support-card { background: rgba(255, 250, 235, .88); }
.approach-card { background: rgba(253, 248, 255, .87); }
.round-icon { align-items: center; background: #fff; border-radius: 50%; box-shadow: 0 4px 10px rgba(44, 70, 45, .09); color: var(--green); display: inline-flex; font-size: 2.35rem; height: 77px; justify-content: center; line-height: 1; margin-bottom: 13px; width: 77px; }
.round-icon.green { color: var(--green); }
.round-icon.orange { color: var(--orange); }
.round-icon.purple { color: var(--purple); }
.header-image { display: block; height: auto; margin: 0 auto -2px; max-width: 100%; }
.header-about-counselling { width: 100%; }
.header-support { width: min(100%, 290px); }
.header-approach { width: min(100%, 238px); }
.flourish { color: var(--green); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: 1.45rem; letter-spacing: .3em; line-height: 1.2; margin: 3px 0 20px; }
.orange-text { color: var(--orange); }.purple-text { color: var(--purple); }.green-text { color: var(--green); }
.info-card p { font-size: .91rem; margin: 0 0 16px; }
.heart-list { display: grid; gap: 5px; list-style: none; margin: 0; padding: 0; text-align: left; }
.heart-list li { font-size: .88rem; font-weight: 500; padding-left: 25px; position: relative; }
.heart-list li::before { color: var(--orange); content: "♡"; font-size: 1.22rem; font-weight: bold; left: 0; line-height: 1.1; position: absolute; top: 1px; }
.text-link { color: var(--green); display: inline-block; font-size: .85rem; font-weight: 700; margin-top: 8px; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.contact-section { background: linear-gradient(105deg, rgba(254, 235, 70, .79), rgba(255,255,250,.74) 47%, rgba(255, 177, 79, .78)); padding: 48px 0 43px; position: relative; }
.contact-section::before { background: url("assets/footer-tree-vibrant.svg") left bottom / 650px auto no-repeat; content: ""; inset: 0; opacity: .31; pointer-events: none; position: absolute; transform: scaleX(-1); }
.contact-grid { align-items: center; display: grid; gap: 42px; grid-template-columns: .9fr 1.4fr .55fr; position: relative; }
.touch-copy h2 { color: var(--green); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 400; letter-spacing: -.07em; line-height: 1.2; margin: 0 0 22px; }
.touch-copy p:last-child { font-size: .9rem; margin: 0; }
.contact-details { display: grid; font-style: normal; gap: 15px; }
.contact-details > * { align-items: center; color: var(--ink); display: flex; gap: 13px; text-decoration: none; }
.contact-details b { display: block; font-size: 1rem; }
.contact-details small { color: #5a6659; display: block; font-size: .77rem; }
.contact-icon { align-items: center; border-radius: 50%; color: #fff; display: inline-flex; flex: 0 0 41px; font-size: 1.3rem; height: 41px; justify-content: center; width: 41px; }
.phone { background: #74a619; }.mail { background: var(--orange); }.pin { background: var(--purple); }
.heart-note { align-items: center; aspect-ratio: 1; background: linear-gradient(135deg, #ffcebd, #ff9e9c); clip-path: polygon(50% 87%, 7% 47%, 5% 24%, 20% 8%, 38% 12%, 50% 27%, 62% 12%, 80% 8%, 95% 24%, 93% 47%); color: #53312e; display: flex; flex-direction: column; font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(.8rem, 1.7vw, 1.1rem); justify-content: center; line-height: 1.3; padding: 9px 19px 3px; text-align: center; transform: rotate(-5deg); }
.heart-note small { font-size: 1.5rem; }
.site-footer { background: linear-gradient(90deg, #176126, #166e34); color: white; font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(.78rem, 1.6vw, 1.1rem); letter-spacing: -.05em; padding: 18px 22px; text-align: center; }
.site-footer span { color: #fbdf77; margin: 0 8px; }

.about-main { padding-bottom: 55px; }
.about-heading { padding: 44px 0 28px 29%; position: relative; }

.about-me-image { display: block; height: auto; margin: -17px 0 -30px -25px; max-width: 610px; width: min(100%, 610px); }
.about-heading .script-line { margin-bottom: 0; }
.about-feature { align-items: center; display: grid; gap: clamp(28px, 4vw, 60px); grid-template-columns: 1.1fr .9fr; }
.bio-card { background: linear-gradient(135deg, rgba(235, 247, 203, .89), rgba(253, 255, 242, .8)); border-radius: 33px; box-shadow: var(--shadow); padding: clamp(28px, 4vw, 48px); }
.bio-title { align-items: center; display: flex; gap: 20px; margin-bottom: 21px; }
.bio-title .round-icon { background: #6da51a; color: white; flex: 0 0 76px; margin: 0; }
.bio-title h2 { color: #3f7e1f; font-size: clamp(1.55rem, 2.6vw, 2.3rem); letter-spacing: -.06em; line-height: 1.1; margin: 0; }
.bio-title p { color: #36372e; font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: .9rem; margin: 3px 0 0; }
.bio-card > p { font-size: .96rem; margin: 0 0 17px; }
.bio-card > p:last-child { margin-bottom: 0; }
.portrait-card { background: #fff; border: 8px solid rgba(255,255,255,.88); border-radius: 34px; box-shadow: 0 18px 32px rgba(90, 70, 45, .22); margin: 0; overflow: hidden; padding: 5px; position: relative; transform: rotate(1.2deg); }
.portrait-card img { border-radius: 24px; display: block; height: 530px; object-fit: cover; object-position: center 25%; width: 100%; }
.portrait-card figcaption { background: rgba(255,255,255,.92); border-radius: 20px; bottom: 12px; color: var(--green-deep); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: .75rem; left: 50%; padding: 6px 12px; position: absolute; text-align: center; transform: translateX(-50%) rotate(-1.2deg); width: max-content; max-width: 88%; }
.portrait-card figcaption span { color: var(--orange); font-size: 1.25rem; }

.what-i-do { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; padding-top: 62px; align-items: center; }
.section-title .section-kicker, .how-card .section-kicker { color: var(--green); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: 1.8rem; font-weight: 400; letter-spacing: -.08em; text-transform: none; }
.what-i-do-image { display: block; height: auto; margin: -17px 0 -13px -13px; max-width: 255px; width: min(100%, 255px); }
.section-title h2 { color: var(--green-deep); font-size: clamp(1.5rem, 2.8vw, 2.25rem); letter-spacing: -.05em; line-height: 1.18; margin: 0; }
.what-copy { align-items: center; display: flex; gap: 20px; }
.what-copy .round-icon { background: #75a820; color: white; flex: 0 0 76px; margin: 0; }
.what-copy p { font-size: 1rem; margin: 0; }
.service-layout { align-items: start; display: grid; gap: 28px; grid-template-columns: 1.45fr .55fr; margin-top: 38px; }
.people-card { background: linear-gradient(130deg, rgba(255,253,218,.9), rgba(255,246,218,.76)); border-radius: 29px; box-shadow: var(--shadow); padding: 24px 20px; }
.people-card > h2 { color: #478020; font-size: 1.1rem; margin: 0 0 19px; text-align: center; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.people-grid > div { padding: 0 18px; text-align: center; }
.people-grid > div + div { border-left: 1px solid #d3b06e; }
.people-grid .round-icon { background: #6fa81c; color: #fff; font-size: 1.7rem; height: 62px; margin-bottom: 5px; width: 62px; }
.people-grid > div:nth-child(2) .round-icon, .people-grid > div:nth-child(2) h3 { color: var(--orange); }
.people-grid > div:nth-child(2) .round-icon { background: #fff; }
.people-grid > div:nth-child(3) .round-icon, .people-grid > div:nth-child(3) h3 { color: var(--purple); }
.people-grid > div:nth-child(3) .round-icon { background: #fff; }
.people-grid h3 { color: var(--green); font-size: 1rem; margin: 0 0 4px; }
.people-grid p { font-size: .78rem; line-height: 1.45; margin: 0; }
.how-card { background: linear-gradient(150deg, rgba(255,239,221,.96), rgba(255,248,235,.82)); border-radius: 29px; box-shadow: var(--shadow); padding: 29px 26px; text-align: center; }
.how-card .round-icon { background: var(--orange); color: white; font-size: 1.9rem; height: 62px; margin-bottom: 8px; width: 62px; }
.how-i-work-image { display: block; height: auto; margin: -13px auto 2px; max-width: 100%; width: 250px; }
.how-card p:not(.section-kicker) { font-size: .9rem; margin: 0 0 17px; text-align: left; }
.how-card .flourish { margin: 2px 0 17px; }
.reassurance { align-items: center; background: linear-gradient(104deg, rgba(255,226,154,.75), rgba(255,248,223,.92)); border-radius: 28px; display: grid; grid-template-columns: .82fr 1.18fr; margin-top: 36px; min-height: 205px; overflow: hidden; }
.reassurance img { align-self: stretch; height: 100%; object-fit: cover; object-position: left center; width: 100%; }
.reassurance > div { padding: 25px 35px 25px 7px; }
.reassurance h2 { color: var(--green); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 400; letter-spacing: -.07em; line-height: 1.25; margin: 0 0 9px; }
.reassurance h2 span { color: var(--orange); }
.reassurance p { margin: 0 0 4px; }
.reassurance .script-line { margin: 9px 0 0; }
.about-footer { display: flex; font-family: "DM Sans", Arial, sans-serif; font-size: .91rem; font-weight: 700; gap: 30px; justify-content: center; letter-spacing: 0; padding: 17px 25px; }
.about-footer a, .about-footer span { color: white; margin: 0; text-decoration: none; }

.services-main { padding-bottom: 56px; }
.services-hero { align-items: center; display: grid; gap: clamp(24px, 4vw, 60px); grid-template-columns: 1.02fr .98fr; min-height: 480px; padding: 30px 0 38px; position: relative; }
.services-title-copy { padding: 10px 0 10px 10px; position: relative; z-index: 1; }
.services-title-image { display: block; height: auto; margin: -20px 0 -26px -30px; max-width: 690px; width: min(108%, 690px); }
.services-title-copy > p:not(.eyebrow):not(.script-line) { font-size: 1rem; max-width: 560px; }
.services-hero-art { align-self: stretch; background: url("assets/home-hero-vibrant.svg") 79% center / cover no-repeat; border: 7px solid rgba(255,255,255,.84); border-radius: 36px; box-shadow: var(--shadow); min-height: 350px; transform: rotate(1deg); }
.services-intro { align-items: center; background: linear-gradient(110deg, rgba(218,255,198,.82), rgba(255,253,225,.88) 48%, rgba(187,238,252,.78)); border-radius: 29px; display: grid; gap: 35px; grid-template-columns: 1fr .94fr; margin-bottom: 35px; padding: 28px clamp(25px, 4vw, 52px); }
.services-intro h2 { color: var(--green-deep); font-size: clamp(1.3rem, 2.4vw, 2rem); letter-spacing: -.05em; line-height: 1.28; margin: 0; }
.services-intro p:last-child { font-size: .96rem; margin: 0; }
.service-cards { display: grid; gap: 21px; grid-template-columns: repeat(3, 1fr); }
.service-card { background: rgba(255,255,255,.84); border: 3px solid rgba(255,255,255,.92); border-radius: 28px; box-shadow: var(--shadow); min-height: 350px; padding: 25px 25px 23px; position: relative; text-align: center; }
.service-card:nth-child(4) { grid-column: 1 / span 1; }
.service-card:nth-child(5) { grid-column: 2 / span 2; }
.service-card::after { border-radius: 28px; content: ""; inset: 0; opacity: .11; pointer-events: none; position: absolute; }
.individual-service::after { background: #8bd31e; }.young-service::after { background: #21b8d0; }.leavers-service::after { background: #ff7629; }.carers-service::after { background: #a353cf; }.remote-service::after { background: #20b8aa; }
.service-card > * { position: relative; z-index: 1; }
.service-card h2 img { display: block; height: auto; margin: 0 auto -6px; max-width: 100%; width: 100%; }
.young-service h2 img, .leavers-service h2 img, .carers-service h2 img { max-width: 250px; }
.remote-service h2 img { max-width: 290px; }
.service-icon { align-items: center; background: #fff; border-radius: 50%; box-shadow: 0 5px 11px rgba(26,66,54,.12); color: var(--green); display: inline-flex; font-size: 1.8rem; height: 58px; justify-content: center; margin-bottom: 5px; width: 58px; }
.young-service .service-icon { color: #048a9c; }.leavers-service .service-icon { color: var(--orange); }.carers-service .service-icon { color: var(--purple); }.remote-service .service-icon { color: #0b8a84; }
.service-card p { font-size: .89rem; margin: 5px 0 15px; text-align: left; }
.service-card ul { display: grid; gap: 6px; list-style: none; margin: 0; padding: 0; text-align: left; }
.service-card li { font-size: .81rem; line-height: 1.38; padding-left: 19px; position: relative; }
.service-card li::before { color: var(--orange); content: "♡"; font-size: 1rem; left: 0; position: absolute; top: 0; }
.pricing-panel { align-items: center; background: linear-gradient(125deg, rgba(255,231,126,.88), rgba(255,249,231,.93) 46%, rgba(255,198,211,.78)); border-radius: 31px; display: grid; gap: 34px; grid-template-columns: .73fr 1.27fr; margin-top: 37px; overflow: hidden; padding: 32px clamp(25px, 4vw, 51px); }
.pricing-heading h2 img { display: block; height: auto; margin: -20px 0 -12px -10px; max-width: 230px; width: 80%; }
.pricing-heading > p:last-child { font-size: .9rem; margin: 0; }
.price-options { display: grid; gap: 13px; grid-template-columns: repeat(3, 1fr); }
.price-options article { background: rgba(255,255,255,.78); border: 2px solid rgba(255,255,255,.9); border-radius: 20px; min-height: 180px; padding: 19px 13px 15px; text-align: center; }
.price-options .featured-price { background: rgba(255,255,255,.94); box-shadow: 0 8px 15px rgba(240,91,37,.16); transform: translateY(-6px); }
.price-accent { display: block; font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -.07em; }
.price-accent.gold { color: #b77900; }.price-accent.coral { color: #ea4a13; }.price-accent.teal { color: #087f79; }
.price-options h3 { font-size: .95rem; line-height: 1.22; margin: 5px 0; }
.price-options p { font-size: .78rem; line-height: 1.4; margin: 0; }
.services-cta { align-items: center; background: linear-gradient(104deg, rgba(255,223,142,.82), rgba(255,250,237,.95)); border-radius: 29px; display: grid; grid-template-columns: .68fr 1.32fr; margin-top: 36px; min-height: 212px; overflow: hidden; }
.services-cta > img { align-self: stretch; height: 100%; object-fit: cover; object-position: left center; width: 100%; }
.services-cta > div { padding: 25px 35px 25px 6px; }
.services-cta h2 { color: var(--green); font-family: "Playwrite AU QLD", "Segoe Print", cursive; font-size: clamp(1.35rem, 2.8vw, 2.1rem); font-weight: 400; letter-spacing: -.07em; line-height: 1.23; margin: 0 0 6px; }
.services-cta h2 span { color: var(--orange); }.services-cta p { margin: 0 0 11px; }.services-cta .button { font-size: .88rem; margin-top: 1px; }

@media (max-width: 920px) {
  .site-header { min-height: 88px; width: min(100% - 34px, 760px); }
  .menu-toggle { display: block; }
  .main-nav { background: rgba(255,254,247,.98); border-radius: 16px; box-shadow: 0 13px 28px rgba(53,66,35,.15); display: none; flex-direction: column; gap: 3px; padding: 12px 17px; position: absolute; right: 0; top: 72px; width: min(280px, 90vw); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; }
  .home-hero { min-height: 590px; }
  .hero-scene { background-position: 64% center; opacity: .88; }
  .home-hero::after { background: linear-gradient(90deg, rgba(255,253,243,.91), rgba(255,253,243,.58) 55%, rgba(255,253,243,.08)); }
  .intro-cards { grid-template-columns: 1fr; gap: 18px; margin-top: -20px; }
  .info-card { border-radius: 28px !important; min-height: 0; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .heart-note { display: none; }
  .about-heading { padding-left: 34%; }
  .about-heading::before { width: 260px; }
  .about-feature { grid-template-columns: 1fr 1fr; gap: 24px; }
  .portrait-card img { height: 485px; }
  .what-i-do { grid-template-columns: .75fr 1.25fr; gap: 25px; }
  .service-layout { grid-template-columns: 1fr .7fr; }
  .people-grid > div { padding: 0 10px; }
  .services-hero { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .pricing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 540px); }
  .site-header { width: calc(100% - 32px); }
  .brand img { height: 51px; width: 140px; }
  .home-hero { min-height: 630px; }
  .hero-scene { background-position: 64% 60%; }
  .hero-copy { width: min(100% - 32px, 540px); padding-top: 39px; }
  .hero-title-image { margin-left: -13px; max-width: 390px; width: calc(100% + 13px); }
  .hero-copy > p:not(.eyebrow):not(.script-line) { font-size: .9rem; max-width: 350px; }
  .button { font-size: .88rem; }
  .intro-cards { padding-bottom: 45px; }
  .info-card { padding: 30px 25px; }
  .contact-grid { gap: 24px; grid-template-columns: 1fr; }
  .contact-section { padding: 42px 0; }
  .contact-details b { font-size: .85rem; overflow-wrap: anywhere; }
  .site-footer { padding: 16px 18px; }
  .site-footer span { margin: 0 3px; }
  .about-heading { padding: 26px 0 18px; }
  .about-heading::before { display: none; }
  .about-me-image { margin: -12px 0 -18px -13px; max-width: 430px; width: calc(100% + 13px); }
  .about-feature { grid-template-columns: 1fr; }
  .bio-card { border-radius: 27px; padding: 25px; }
  .bio-title { align-items: flex-start; gap: 12px; }
  .bio-title .round-icon { flex-basis: 59px; font-size: 1.8rem; height: 59px; }
  .bio-title h2 { font-size: 1.6rem; }
  .portrait-card { max-width: 450px; margin: 0 auto; width: 92%; }
  .portrait-card img { height: min(118vw, 510px); }
  .what-i-do { display: block; padding-top: 43px; }
  .section-title { margin-bottom: 19px; }
  .what-copy { align-items: flex-start; }
  .what-copy .round-icon { flex-basis: 58px; font-size: 1.75rem; height: 58px; }
  .what-copy p { font-size: .92rem; }
  .service-layout { grid-template-columns: 1fr; margin-top: 29px; }
  .people-grid { grid-template-columns: 1fr; gap: 16px; }
  .people-grid > div { padding: 0 6px; }
  .people-grid > div + div { border-left: 0; border-top: 1px solid #d3b06e; padding-top: 16px; }
  .people-grid p { max-width: 260px; margin-left: auto; margin-right: auto; }
  .reassurance { display: block; margin-top: 28px; }
  .reassurance img { display: block; height: 160px; object-position: left bottom; }
  .reassurance > div { padding: 23px; }
  .about-footer { align-items: center; flex-direction: column; gap: 8px; text-align: center; }
  .services-hero { display: flex; flex-direction: column; min-height: 0; padding-top: 18px; }
  .services-title-copy { padding-left: 0; }
  .services-title-image { margin-left: -15px; max-width: 510px; width: calc(100% + 15px); }
  .services-title-copy > p:not(.eyebrow):not(.script-line) { font-size: .93rem; }
  .services-hero-art { min-height: 245px; transform: none; width: 100%; }
  .services-intro { display: block; margin-bottom: 26px; padding: 25px; }
  .services-intro > div { margin-bottom: 14px; }
  .services-intro p:last-child { font-size: .9rem; }
  .service-cards { grid-template-columns: 1fr; gap: 17px; }
  .service-card { min-height: 0; padding: 23px 22px; }
  .service-card h2 img { max-width: 360px; }
  .pricing-panel { display: block; margin-top: 28px; padding: 26px 21px; }
  .pricing-heading { text-align: center; }
  .pricing-heading h2 img { margin-left: auto; margin-right: auto; }
  .price-options { grid-template-columns: 1fr; margin-top: 20px; }
  .price-options article { min-height: 0; padding: 16px; }
  .price-options .featured-price { transform: none; }
  .services-cta { display: block; margin-top: 28px; }
  .services-cta > img { display: block; height: 150px; }
  .services-cta > div { padding: 23px; }
}
