/* ============================================
   Lady Abacus – 2026 Homepage Stylesheet
   Based on Brand Guide Design System
   ============================================ */

:root {
    /* Brand Colors */
    --charcoal:    #74726E;
    --warm-taupe:  #C8B3AA;
    --blush:       #F6E8E0;
    --rose-white:  #FFF4F3;
    --pink:        #FFCDD4;
    --coral:       #EF8E80;

    /* Functional Colors */
    --text:        #3a3a3a;
    /* Supporting copy. A solid tone rather than --charcoal at a low
       opacity: charcoal only reaches 4.8:1 on white at full strength, so
       any knock-back pushed body text under the 4.5:1 readable floor */
    --text-muted:  #5A5854;
    --bg:          #ffffff;
    --card-bg:     #ffffff;
    --surface:     #fafafa;
    --border:      #e8e2de;
    --shadow:      0 2px 20px rgba(0,0,0,.06);
    --shadow-lg:   0 8px 40px rgba(0,0,0,.08);

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-logo:    'Times New Roman', 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs:  8px;
    --spacing-sm:  16px;
    --spacing-md:  24px;
    --spacing-lg:  40px;
    --spacing-xl:  80px;
    --spacing-xxl: 120px;

    /* Layout */
    --max-width:   1200px;
    --container-px: clamp(20px, 4vw, 60px);
    --section-py:  clamp(60px, 8vw, 120px);

    /* Borders */
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;

    --transition:  .3s ease;
}

/* ── Reset ──────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ── Typography ────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.3;
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
}

/* ── Buttons ───────────────────────────────── */

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.btn-primary:hover {
    background: #e07668;
    border-color: #e07668;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239,142,128,.35);
}

.btn-outline {
    background: transparent;
    border-color: var(--coral);
    color: var(--coral);
}

.btn-outline:hover {
    background: var(--coral);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Header ────────────────────────────────── */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Script-L brand mark. Coral is baked into the SVG, so it does not
   follow --coral; update the asset if the brand colour ever changes */
.logo-monogram {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    display: inline-block;
}

.logo-wordmark {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral);
    border-bottom-color: var(--coral);
}

/* ── Services Dropdown ─────────────────────── */

.nav-has-dropdown {
    position: relative;
}

.nav-has-dropdown > .nav-link {
    gap: 5px;
}

.nav-caret {
    display: block;
    flex-shrink: 0;
    position: relative;
    top: 0.5px;
    transition: transform .25s ease;
}

.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown:focus-within .nav-caret {
    transform: rotate(180deg);
}

/* Hidden with opacity rather than visibility/display so the sublinks stay
   in the tab order, tabbing into one trips :focus-within and reveals the
   panel. The top padding is a transparent bridge that keeps hover alive
   while the cursor crosses the gap between the nav item and the card. */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 540px;
    padding-top: 26px;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
}

.nav-dropdown-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    transform: translateY(8px);
    transition: transform .22s ease;
}

.nav-has-dropdown:hover .nav-dropdown-inner,
.nav-has-dropdown:focus-within .nav-dropdown-inner {
    transform: translateY(0);
}

.nav-dropdown-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 10px;
}

.nav-sublink {
    display: block;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--charcoal);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    transition: background .2s ease, color .2s ease;
}

.nav-sublink:hover,
.nav-sublink:focus-visible {
    background: var(--rose-white);
    color: var(--coral);
}

.nav-sublink.is-current {
    background: var(--rose-white);
    color: var(--coral);
}

.nav-dropdown-all {
    display: block;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--coral);
    transition: var(--transition);
}

.nav-dropdown-all:hover {
    color: #e07668;
}

.header-cta .btn {
    padding: 8px 20px;
    font-size: 11px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 1px;
}

/* ── Hero ──────────────────────────────────── */

.hero {
    margin-top: 80px;
    background: #fff;
    padding: clamp(60px, 8vw, 100px) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--coral);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--coral);
    opacity: .5;
    border-radius: 1px;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ── Partners Bar ──────────────────────────── */

.partners {
    padding: 36px 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
}

.label-line {
    width: 56px;
    height: 1px;
    background: var(--warm-taupe);
    opacity: .4;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: wrap;
}

.partner-logo {
    opacity: .92;
}

.logo-xero {
    height: 46px;
    width: auto;
}

.logo-tanda {
    height: 24px;
    width: auto;
}

.logo-dext {
    height: 28px;
    width: auto;
}

.logo-eh {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.eh-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: #23253A;
    letter-spacing: -0.5px;
}

.eh-text strong {
    font-weight: 700;
}

.partners-divider {
    width: 1px;
    height: 40px;
    background: var(--warm-taupe);
    opacity: .4;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.badge-icon {
    height: 34px;
    width: auto;
}

.badge-icon-svg {
    color: #23253A;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.badge-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--charcoal);
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
}

/* ── How We Work ───────────────────────────── */

.how-we-work {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.how-we-work .section-label,
.how-we-work .section-title {
    text-align: center;
}

.how-we-work .section-title {
    margin-bottom: 48px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 12.5%;
    right: 12.5%;
    border-top: 1px dashed var(--warm-taupe);
    opacity: .5;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blush);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    font-size: 20px;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px #fff;
}

.process-step:hover .process-icon {
    background: var(--coral);
    color: #fff;
    transform: scale(1.1);
}

.process-number {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Services Section ──────────────────────── */

.services {
    padding: 0;
    background: var(--rose-white);
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
}

.services-photo {
    background: linear-gradient(135deg, var(--blush), var(--pink));
    min-height: 560px;
}

.services-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-content {
    padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-content .section-label {
    text-align: center;
}

.services-content .section-title {
    text-align: center;
    font-size: clamp(24px, 2.8vw, 34px);
    margin-bottom: 12px;
}

.services-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 40px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    margin-bottom: 36px;
    max-width: 560px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.service-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.service-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(239,142,128,.45);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.service-item h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.45;
    margin-bottom: 6px;
}

.service-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.services-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--coral);
    transition: var(--transition);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--coral);
}

.services-link:hover {
    color: #e07668;
    border-bottom-color: #e07668;
}

/* ── Packages / Tailored Support Section ───── */

.packages {
    position: relative;
    padding: var(--section-py) 0;
    background: linear-gradient(150deg, var(--rose-white) 0%, var(--blush) 45%, #FBDDD8 100%);
    overflow: hidden;
}

.packages-wave-top {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 560px;
    height: 420px;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,205,212,.85) 0%, rgba(255,205,212,.35) 50%, transparent 72%);
    border-radius: 50%;
    transform: rotate(-12deg);
    pointer-events: none;
}

.packages::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 480px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.5) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.packages-text .section-title {
    font-size: clamp(28px, 3.2vw, 40px);
    margin-bottom: 24px;
    line-height: 1.25;
}

.packages-accent {
    color: var(--coral);
    font-style: italic;
}

.packages-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 420px;
}

.section-label-dashed {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 22px;
}

.section-label-dashed::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--coral);
    opacity: .6;
}

.packages-script {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--coral);
    line-height: 1.4;
    margin-top: 28px;
    position: relative;
    display: inline-block;
}

.packages-script::after {
    content: '';
    display: inline-block;
    width: .78em;
    height: .72em;
    margin-left: .06em;
    vertical-align: -.08em;
    background-color: currentColor;
    transform: rotate(5deg);
    pointer-events: none;
    -webkit-mask: url('assets/icons/script-heart.svg?v=ink') center / contain no-repeat;
    mask: url('assets/icons/script-heart.svg?v=ink') center / contain no-repeat;
}

.packages-photo {
    border-radius: 28px 28px 28px 96px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.packages-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.packages-offers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 56px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(28px, 3.5vw, 44px) clamp(24px, 4vw, 56px);
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    max-width: 420px;
}

.offer-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.offer-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 6px;
}

.offer-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.offer-divider {
    width: 1px;
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
}

a.offer-item .offer-icon {
    transition: all .3s ease;
}

a.offer-item:hover .offer-icon {
    background: var(--coral);
    color: #fff;
    transform: scale(1.08);
}

a.offer-item:hover .offer-body h3 {
    color: var(--coral);
}

a.offer-item .offer-body h3 {
    transition: color .25s ease;
}

/* ── Trust Section ─────────────────────────── */

.trust {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.trust-monogram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.monogram-l {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.monogram-line {
    width: 170px;
    max-width: 24vw;
    height: 1px;
    background: var(--border);
}

.trust .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.trust-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 56px;
    line-height: 1.8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
    margin: 0 auto;
}

.choose-item {
    text-align: center;
    padding: 0 32px;
}

.choose-item + .choose-item {
    border-left: 1px solid var(--border);
}

.choose-item h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: var(--coral);
    margin-bottom: 12px;
}

.choose-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 230px;
    margin: 0 auto;
}

/* ── Testimonials Section ──────────────────── */

.testimonials {
    padding: var(--section-py) 0;
    background: var(--rose-white);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 20px;
}

.testimonials-intro {
    text-align: left;
    padding-right: 24px;
}

.testimonials-intro .section-title {
    font-size: clamp(24px, 2.6vw, 32px);
    margin-bottom: 18px;
    line-height: 1.3;
}

.testimonials-intro p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    text-align: left;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--coral);
    line-height: .6;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 22px;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-top: auto;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.testimonial-role {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--warm-taupe);
    margin-top: 4px;
}

/* ── CTA Section ───────────────────────────── */

.cta-banner {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
    min-height: 300px;
    background: var(--blush);
}

.cta-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    z-index: 1;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, var(--blush) 0%, transparent 100%);
    z-index: 2;
}

.cta-banner .container {
    position: relative;
    z-index: 3;
}

.cta-content {
    max-width: 460px;
    text-align: left;
}

.cta-banner .section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 14px;
    line-height: 1.3;
}

.cta-accent {
    color: var(--coral);
    font-style: italic;
}

.cta-banner p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────── */

.footer {
    background: var(--rose-white);
    color: var(--charcoal);
    padding: 72px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1.1fr;
    gap: clamp(32px, 5vw, 72px);
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-monogram {
    height: 46px;
    width: auto;
    flex-shrink: 0;
}

.footer-wordmark {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #2b2b2b;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-services-strip {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 22px;
    white-space: nowrap;
}

.footer-services-strip span {
    color: var(--coral);
    margin: 0 8px;
}

.footer-contact {
    margin-bottom: 22px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Address wraps to two lines in this column, so pin the icon to the
   first line rather than centring it against the whole block */
.footer-contact svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--charcoal);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--coral);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(116,114,110,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2b2b2b;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 14px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--coral);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-cta-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 10px 0 22px;
    max-width: 300px;
}

.footer-cta-btn {
    font-size: 12px;
    padding: 14px 26px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-abn {
    padding-left: 14px;
    border-left: 1px solid var(--border);
    letter-spacing: .02em;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom a {
    color: var(--charcoal);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--coral);
}

/* ── Animations ────────────────────────────── */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ────────────────────────────── */

@media (max-width: 1024px) {
    .packages-offers {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    /* The six nav items plus the CTA run out of room before 768px,
       so collapse to the mobile menu here instead */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
        padding: 24px;
        border-top: 1px solid var(--border);
        /* The service submenu makes this panel tall enough to run past a
           short phone screen, so let it scroll */
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    /* Stretch rather than centre the rows: the services item is as wide as its
       submenu, so centring it would drag the Services label off to one side */
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    /* No hover on touch, so the submenu sits open inline instead */
    .nav-dropdown {
        position: static;
        width: 100%;
        padding-top: 12px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-dropdown-inner {
        background: transparent;
        border: none;
        border-left: 1px solid var(--border);
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-width: 260px;
        margin: 0 auto;
        text-align: left;
        transform: none;
    }

    .nav-dropdown-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-sublink {
        padding: 7px 0;
    }

    .nav-caret,
    .nav-dropdown-all {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }

    .process-grid::before {
        display: none;
    }

    .testimonials-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-list {
        gap: 0 24px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .hero {
        margin-top: 70px;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 360px;
    }

    .partners-row {
        gap: 24px;
    }

    .partners-divider {
        display: none;
    }

    .services-split {
        grid-template-columns: 1fr;
    }

    .services-photo {
        min-height: 300px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .packages-photo {
        order: -1;
        border-radius: 20px 20px 20px 56px;
    }

    .packages-text p {
        max-width: 100%;
    }

    .packages-offers {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .offer-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .offer-item {
        max-width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .choose-item + .choose-item {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 28px;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }

    .testimonials-intro {
        padding-right: 0;
        margin-bottom: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-services-strip {
        white-space: normal;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom-meta {
        flex-direction: column;
        gap: 6px;
    }

    .footer-abn {
        padding-left: 0;
        border-left: none;
    }

    .cta-bg-image {
        width: 100%;
    }

    .cta-bg-image::before {
        width: 100%;
        background: rgba(246,232,224,.85);
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 14px 0;
    }

    .service-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================
   Get Started Page
   ============================================ */

/* ── Page Hero ─────────────────────────────── */

.gs-hero {
    position: relative;
    margin-top: 80px;
    background: var(--rose-white);
    padding: clamp(48px, 6vw, 84px) 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.gs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.gs-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--rose-white) 25%, rgba(255,244,243,.55) 60%, rgba(255,244,243,.05) 100%);
}

.gs-hero .container {
    position: relative;
    z-index: 1;
}

.gs-hero .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.gs-hero .section-title {
    margin-bottom: 12px;
}

.gs-accent {
    color: var(--coral);
    font-style: italic;
}

.gs-hero p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Booking Section ───────────────────────── */

.gs-booking {
    padding: var(--section-py) 0;
    background: #fff;
}

.gs-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.gs-expect .section-title {
    font-size: clamp(24px, 2.8vw, 34px);
    margin-bottom: 18px;
    line-height: 1.3;
}

.gs-expect > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 420px;
}

.gs-expect-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.gs-expect-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.gs-expect-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.gs-expect-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.gs-expect-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.gs-expect-photo {
    margin-top: 36px;
    max-width: 460px;
    border-radius: 24px 24px 24px 72px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gs-expect-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.gs-expect .packages-script {
    margin-top: 28px;
}

/* ── Booking Card ──────────────────────────── */

.booking-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: clamp(28px, 4vw, 48px);
}

#booking-embed {
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.booking-card-head {
    text-align: center;
    margin-bottom: 30px;
}

.booking-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 0 auto 16px;
}

.booking-card-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.booking-card-head p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

/* ── Forms ─────────────────────────────────── */

.gs-form {
    display: grid;
    gap: 18px;
    text-align: left;
}

/* Feedback after an enquiry form is submitted. */
.gs-form-status {
    margin: 0;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.6;
    border-left: 3px solid transparent;
}

.gs-form-status[data-state="success"] {
    background: #F2F5F0;
    border-left-color: #9DB093;
    color: var(--text);
}

.gs-form-status[data-state="error"] {
    background: var(--blush);
    border-left-color: var(--coral);
    color: var(--text);
}

.gs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gs-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.gs-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.gs-label .gs-optional {
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--warm-taupe);
}

.gs-input,
.gs-select,
.gs-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.gs-input::placeholder,
.gs-textarea::placeholder {
    color: var(--warm-taupe);
}

.gs-input:focus,
.gs-select:focus,
.gs-textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(239,142,128,.15);
}

.gs-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%2374726E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.gs-textarea {
    resize: vertical;
    min-height: 120px;
}

.gs-form .btn {
    width: 100%;
    margin-top: 6px;
}

.gs-form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* ── Fallback Section ──────────────────────── */

.gs-fallback {
    position: relative;
    background: var(--blush);
    padding: clamp(48px, 6vw, 84px) 0;
    overflow: hidden;
}

.gs-fallback-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(300px, 32vw, 500px);
    pointer-events: none;
    opacity: .85;
}

.gs-fallback-accent img {
    width: 100%;
    display: block;
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 78% 78%, #000 35%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 90% at 78% 78%, #000 35%, transparent 75%);
}

.gs-fallback .container {
    position: relative;
    z-index: 1;
}

.gs-fallback-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.gs-fallback h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.gs-fallback-inner > p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto 32px;
}

.gs-fallback .gs-input,
.gs-fallback .gs-textarea {
    border-color: rgba(116,114,110,.18);
}

.gs-fallback .btn {
    width: auto;
    justify-self: center;
    padding: 12px 40px;
}

.gs-fallback .btn-outline {
    background: transparent;
}

.gs-fallback .btn-outline:hover {
    background: var(--coral);
}

/* ── Get Started Responsive ────────────────── */

@media (max-width: 900px) {
    .gs-booking-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 560px;
        margin: 0 auto;
    }

    .gs-booking-card-col {
        order: -1;
    }

    .gs-fallback-accent {
        display: none;
    }
}

@media (max-width: 768px) {
    .gs-hero {
        margin-top: 70px;
    }

    .gs-hero-bg::before {
        background: rgba(255,244,243,.82);
    }
}

@media (max-width: 480px) {
    .gs-form-row {
        grid-template-columns: 1fr;
    }

    .gs-fallback .btn {
        width: 100%;
    }
}

/* ============================================
   Services Page
   ============================================ */

/* ── What We Do Intro ──────────────────────── */

.sv-intro {
    padding: var(--section-py) 0;
    background: #fff;
}

.sv-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.sv-intro-text .section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 24px;
    line-height: 1.25;
}

.sv-intro-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 440px;
}

.sv-intro-photo {
    border-radius: 28px 28px 96px 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sv-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

/* ── Which Sounds Like You ─────────────────── */

.sv-helper {
    padding: var(--section-py) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.sv-helper .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sv-helper-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto 44px;
}

.sv-helper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1020px;
    margin: 0 auto;
}

.sv-helper-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    text-align: left;
    transition: all .3s ease;
}

.sv-helper-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.sv-helper-item p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.5;
    margin: 0;
}

.sv-helper-item span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
}

.sv-helper .packages-script {
    margin-top: 40px;
}

/* ── Service Cards ─────────────────────────── */

.sv-services {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.sv-services .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sv-services-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto 52px;
}

.sv-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

.sv-card {
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 40px);
    text-align: left;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
    transition: all .3s ease;
}

.sv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.sv-card-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.sv-card-number {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 30px;
    color: var(--coral);
    opacity: .55;
    line-height: 1.1;
    flex-shrink: 0;
}

.sv-card-heading h3 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 400;
    color: #2b2b2b;
    margin-bottom: 4px;
}

.sv-card-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.sv-card-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}

.sv-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.sv-card-list svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 3px;
}

.sv-card-best {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: auto;
    margin-bottom: 20px;
}

.sv-best-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 4px;
}

.sv-card-best p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.sv-card-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
    align-self: flex-start;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(239,142,128,.5);
    transition: var(--transition);
}

.sv-card-link:hover {
    color: #e07668;
    border-bottom-color: #e07668;
}

.sv-photo-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 280px;
}

.sv-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Ongoing Support Rhythm ────────────────── */

.sv-rhythm {
    scroll-margin-top: 100px;
}

.sv-rhythm-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.sv-rhythm-text .section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 18px;
    line-height: 1.25;
}

.sv-rhythm-text > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 440px;
}

.sv-rhythm-list {
    display: flex;
    flex-direction: column;
}

.sv-rhythm-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(200,179,170,.55);
}

.sv-rhythm-item:last-child {
    border-bottom: none;
}

.sv-rhythm-when {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--coral);
    flex-shrink: 0;
    width: 86px;
    padding-top: 3px;
}

.sv-rhythm-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.sv-rhythm-photo {
    border-radius: 28px 96px 28px 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sv-rhythm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

/* ── Who We Work With ──────────────────────── */

.sv-audiences {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.sv-audiences .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.sv-audiences-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 56px;
    line-height: 1.8;
}

.sv-audiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1080px;
    margin: 0 auto;
}

.sv-audience {
    text-align: center;
    padding: 0 28px;
}

.sv-audience + .sv-audience {
    border-left: 1px solid var(--border);
}

.sv-audience h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--coral);
    margin-bottom: 12px;
}

.sv-audience p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 220px;
    margin: 0 auto;
}

/* ── FAQ ───────────────────────────────────── */

.sv-faq {
    padding: var(--section-py) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    text-align: center;
}

.sv-faq .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sv-faq-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto 44px;
}

.sv-faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sv-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: box-shadow .3s ease;
}

.sv-faq-item[open] {
    box-shadow: var(--shadow);
}

.sv-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 17px;
    color: #2b2b2b;
    line-height: 1.4;
}

.sv-faq-item summary::-webkit-details-marker {
    display: none;
}

.sv-faq-item summary svg {
    color: var(--coral);
    flex-shrink: 0;
    transition: transform .3s ease;
}

.sv-faq-item[open] summary svg {
    transform: rotate(180deg);
}

.sv-faq-answer {
    padding: 0 24px 20px;
}

.sv-faq-answer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.sv-faq-answer a {
    color: var(--coral);
    border-bottom: 1px solid rgba(239,142,128,.5);
}

.sv-faq-answer a:hover {
    color: #e07668;
}

/* ── Areas We Serve ────────────────────────── */

.sv-areas {
    padding: 48px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    text-align: center;
}

.sv-areas-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.sv-areas-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sv-areas-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sv-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--charcoal);
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
}

.sv-area svg {
    color: var(--coral);
}

/* ── Services Responsive ───────────────────── */

@media (max-width: 900px) {
    .sv-helper-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-audiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .sv-audience:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 768px) {
    .sv-intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sv-intro-photo {
        order: -1;
        border-radius: 20px 20px 56px 20px;
    }

    .sv-intro-text p {
        max-width: 100%;
    }

    .sv-services-grid {
        grid-template-columns: 1fr;
    }

    .sv-photo-tile {
        min-height: 220px;
        max-height: 280px;
    }

    .sv-rhythm-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sv-rhythm-photo {
        order: -1;
        border-radius: 20px 56px 20px 20px;
    }

    .sv-rhythm-text > p {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .sv-helper-grid {
        grid-template-columns: 1fr;
    }

    .sv-audiences-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sv-audience + .sv-audience {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 28px;
    }

    .sv-rhythm-item {
        flex-direction: column;
        gap: 6px;
    }

    .sv-rhythm-when {
        width: auto;
    }
}

/* ============================================
   Contact Page
   ============================================ */

/* Hero image is uniformly bright, so use an even veil
   instead of the left-to-right gradient */
.contact-hero .gs-hero-bg::before {
    background: rgba(255,244,243,.6);
}

.contact-hero .gs-hero-bg img {
    object-position: center;
}

.gs-expect-body .contact-link {
    color: var(--coral);
    text-decoration: none;
    border-bottom: 1px solid rgba(239,142,128,.4);
    transition: border-color .2s ease;
}

.gs-expect-body .contact-link:hover {
    border-bottom-color: var(--coral);
}

/* ── Mini FAQ ──────────────────────────────── */

.contact-faq {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.contact-faq .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact-faq .section-title {
    margin-bottom: 56px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq-grid .choose-item p {
    max-width: 270px;
}

@media (max-width: 900px) {
    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 480px;
    }

    .contact-faq-grid .choose-item + .choose-item {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 36px;
    }
}

/* ============================================
   Under Construction Page
   ============================================ */

.uc-hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Image is uniformly bright, so use an even veil */
.uc-hero .gs-hero-bg::before {
    background: rgba(255,244,243,.72);
}

.uc-hero .gs-hero-bg img {
    object-position: center;
}

.uc-inner {
    max-width: 640px;
    margin: 0 auto;
}

.uc-hero .trust-monogram {
    margin-bottom: 28px;
}

.uc-hero .trust-monogram .monogram-line {
    width: 90px;
}

.uc-hero .section-title {
    font-size: clamp(30px, 4vw, 48px);
}

.uc-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.uc-hero .packages-script {
    margin-top: 44px;
}

@media (max-width: 768px) {
    .uc-hero {
        min-height: calc(100vh - 70px);
    }
}

/* ============================================
   BLOG PAGE
   ============================================ */

/* ── Blog Hero ─────────────────────────────── */

.blog-hero {
    margin-top: 80px;
    background: var(--blush);
    padding: clamp(40px, 5vw, 64px) 0;
    overflow: hidden;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.blog-hero-text .section-label {
    margin-bottom: 14px;
}

.blog-hero-text .section-title {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 22px;
}

.blog-hero-text .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 2px;
    background: var(--coral);
}

.blog-hero-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 420px;
}

.blog-hero-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-hero-photo img {
    width: 100%;
    height: clamp(260px, 32vw, 420px);
    object-fit: cover;
}

/* ── Featured Article ──────────────────────── */

.blog-featured-section {
    padding: clamp(48px, 6vw, 88px) 0 clamp(20px, 3vw, 40px);
    background: #fff;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow: var(--shadow);
}

.blog-featured-image {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: clamp(240px, 28vw, 340px);
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.04);
}

.blog-featured-body .section-label {
    margin-bottom: 14px;
}

.blog-featured-body h2 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
    margin-bottom: 16px;
}

.blog-featured-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 460px;
}

/* ── Read Link ─────────────────────────────── */

.blog-read-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
}

.blog-read-link:hover {
    color: var(--charcoal);
}

/* ── Latest Articles ───────────────────────── */

.blog-latest {
    padding: clamp(32px, 4vw, 56px) 0 var(--section-py);
    background: #fff;
}

.blog-latest-title {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: clamp(28px, 3vw, 44px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2.6vw, 36px);
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-taupe);
    margin-bottom: 12px;
}

/* Keep the date and category intact; wrap the row instead of breaking phrases */
.blog-card-meta > span {
    white-space: nowrap;
}

.blog-card-cat {
    color: var(--coral);
}

.blog-card-dot {
    opacity: .6;
}

.blog-card h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card h3 a:hover {
    color: var(--coral);
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-body .blog-read-link {
    margin-top: auto;
}

/* ── Blog Responsive ───────────────────────── */

@media (max-width: 900px) {
    .blog-hero {
        margin-top: 70px;
    }

    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-hero-photo {
        order: -1;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        order: -1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Pricing Page
   ============================================ */

/* ── Page Hero ─────────────────────────────── */

/* Hero subject sits centre-frame, so veil the middle band
   where the copy lands and let the photo breathe top and bottom */
.pricing-hero .gs-hero-bg::before {
    background: linear-gradient(
        to bottom,
        rgba(255,244,243,.58) 0%,
        rgba(255,244,243,.9) 34%,
        rgba(255,244,243,.9) 74%,
        rgba(255,244,243,.64) 100%
    );
}

.pricing-hero .gs-hero-bg img {
    object-position: center;
}


.pr-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ── Our Approach (mirrored services intro) ── */

.pr-intro .sv-intro-photo {
    order: -1;
    border-radius: 28px 28px 28px 96px;
}

/* ── What Shapes Your Quote ────────────────── */

.pr-factors {
    padding: var(--section-py) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    scroll-margin-top: 100px;
}

.pr-factors .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pr-factors-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 44px;
}

.pr-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1020px;
    margin: 0 auto;
}

.pr-factor {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    text-align: left;
    transition: all .3s ease;
}

.pr-factor:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.pr-factor-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 18px;
    transition: all .3s ease;
}

.pr-factor:hover .pr-factor-icon {
    background: var(--coral);
    color: #fff;
}

.pr-factor h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.35;
    margin-bottom: 10px;
}

.pr-factor p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.pr-factor span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
    margin-top: auto;
}

.pr-factors .packages-script {
    margin-top: 40px;
}

/* ── Ways To Work With Us ──────────────────── */

.pr-tiers {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.pr-tiers .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pr-tiers-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 52px;
}

.pr-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.pr-tier {
    position: relative;
}

.pr-tier-head {
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px dashed rgba(200,179,170,.55);
}

.pr-tier-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-taupe);
    margin-bottom: 10px;
}

.pr-tier h3 {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.25;
    margin-bottom: 6px;
}

.pr-tier-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pr-tier-featured {
    background: #fff;
    border-color: rgba(239,142,128,.55);
    box-shadow: var(--shadow);
}

/* The inner box is white by default, so tint it on the white card */
.pr-tier-featured .sv-card-best {
    background: var(--rose-white);
}

.pr-tier-flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coral);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pr-tiers-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 620px;
    margin: clamp(32px, 4vw, 44px) auto 0;
}

.pr-tiers-note a {
    color: var(--coral);
    font-weight: 600;
    border-bottom: 1px solid rgba(239,142,128,.5);
}

.pr-tiers-note a:hover {
    color: #e07668;
}

/* ── Included As Standard ──────────────────── */

.pr-included {
    text-align: center;
}

.pr-included .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.pr-included .section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 12px;
}

.pr-included-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto 44px;
}

.pr-included-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(28px, 3.5vw, 48px);
    max-width: 960px;
    margin: 0 auto clamp(32px, 4vw, 48px);
}

.pr-included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px clamp(28px, 4vw, 56px);
    text-align: left;
}

.pr-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pr-included-list svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 3px;
}

.pr-included-list h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 5px;
}

.pr-included-list p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── How Your Quote Comes Together ─────────── */

.pr-steps {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.pr-steps .section-title {
    margin-bottom: 10px;
}

.pr-steps-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 56px;
}

.pr-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 860px;
}

.pr-steps-grid::before {
    left: 16.6%;
    right: 16.6%;
}

.pr-steps-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: clamp(40px, 5vw, 56px);
}

/* ── Pricing Responsive ────────────────────── */

@media (max-width: 1024px) {
    .pr-tier h3 {
        font-size: 21px;
    }
}

@media (max-width: 900px) {
    .pr-factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-tiers-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .pr-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .pr-intro .sv-intro-photo {
        border-radius: 20px 20px 20px 56px;
    }

    .pr-included-list {
        grid-template-columns: 1fr;
    }

    .pr-steps-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

@media (max-width: 560px) {
    .pr-factors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pr-hero-buttons .btn,
    .pr-steps-cta .btn {
        width: 100%;
    }
}


/* ============================================
   About Page
   ============================================ */

/* ── Page Hero ─────────────────────────────── */

/* Hero photo is cooler and darker than the rest of the palette,
   so the veil runs heavier here to keep the copy legible and warm */
.about-hero .gs-hero-bg::before {
    background: linear-gradient(
        to bottom,
        rgba(255,244,243,.86) 0%,
        rgba(255,244,243,.94) 38%,
        rgba(255,244,243,.94) 72%,
        rgba(255,244,243,.78) 100%
    );
}

.about-hero .gs-hero-bg img {
    object-position: center 35%;
}

.about-hero p {
    max-width: 520px;
}

.ab-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ── Who We Are ────────────────────────────── */

.ab-intro .sv-intro-photo {
    border-radius: 28px 28px 28px 96px;
}

/* ── By The Numbers ────────────────────────── */

.ab-stats {
    padding: clamp(40px, 5vw, 60px) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 840px;
    margin: 0 auto;
}

.ab-stat {
    text-align: center;
    padding: 0 28px;
}

.ab-stat + .ab-stat {
    border-left: 1px solid var(--border);
}

.ab-stat-figure {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 46px);
    color: var(--coral);
    line-height: 1.1;
}

/* Rendered rather than typed so the figure itself stays plain text */
.ab-stat:first-child .ab-stat-figure::after {
    content: '+';
    font-size: .65em;
    vertical-align: super;
    opacity: .8;
}

.ab-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Our Story Timeline ────────────────────── */

.ab-story {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.ab-story-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 440px;
    margin: 0 auto 52px;
}

.ab-timeline {
    list-style: none;
    position: relative;
    max-width: 660px;
    margin: 0 auto;
    padding-left: 38px;
    text-align: left;
}

.ab-timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 10px;
    left: 5px;
    border-left: 1px dashed var(--warm-taupe);
    opacity: .55;
}

.ab-timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.ab-timeline-item:last-child {
    padding-bottom: 0;
}

.ab-timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -38px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--warm-taupe);
    box-shadow: 0 0 0 5px #fff;
}

.ab-timeline-now::before {
    background: var(--coral);
    border-color: var(--coral);
}

.ab-timeline-era {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
}

.ab-timeline-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.ab-timeline-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
}

.ab-timeline-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(239,142,128,.5);
}

.ab-timeline-link:hover {
    color: #e07668;
    border-bottom-color: #e07668;
}

/* ── Meet The Team ─────────────────────────── */

.ab-team {
    padding: var(--section-py) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    scroll-margin-top: 100px;
}

.ab-team .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ab-team-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 48px;
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
}

.ab-member {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3vw, 40px);
    transition: all .3s ease;
}

.ab-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.ab-member-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Soft watercolour disc holding the initial until a headshot is dropped in */
.ab-member-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, var(--pink) 0%, var(--blush) 62%, var(--rose-white) 100%);
    font-family: var(--font-logo);
    font-size: 34px;
    font-style: italic;
    color: var(--coral);
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(239,142,128,.22);
}

.ab-member-name {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 4px;
}

.ab-member-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--coral);
}

.ab-member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.ab-member-tags li {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    color: var(--text-muted);
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 13px;
}

.ab-member-bio p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.ab-member-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.55;
    border-left: 2px solid var(--coral);
    padding-left: 18px;
    margin: 6px 0 24px;
}

.ab-member-links {
    display: flex;
    margin-top: auto;
}

.ab-team .packages-script {
    margin-top: 44px;
}

/* ── Credentials ───────────────────────────── */

.ab-creds {
    text-align: center;
}

.ab-creds .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ab-creds-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 440px;
    margin: 0 auto 44px;
}

.ab-creds-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(28px, 4vw, 52px);
    max-width: 940px;
    margin: 0 auto;
}

.ab-creds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(26px, 3.5vw, 44px);
    text-align: left;
}

.ab-cred {
    display: flex;
    flex-direction: column;
}

.ab-cred-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 16px;
}

.ab-cred h3 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 8px;
}

.ab-cred p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.ab-cred-value {
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.ab-creds-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin: 34px auto 0;
}

.ab-creds-note a {
    color: var(--coral);
    font-weight: 600;
    border-bottom: 1px solid rgba(239,142,128,.4);
}

.ab-creds-note a:hover {
    color: #e07668;
}

/* ── What We Stand For ─────────────────────── */

.ab-values {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.ab-values-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto 48px;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1060px;
    margin: 0 auto;
}

.ab-value {
    text-align: left;
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    transition: all .3s ease;
}

.ab-value:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.ab-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.ab-value h3 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.35;
}

.ab-value p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.ab-values-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: clamp(40px, 5vw, 56px);
}

/* ── About Responsive ──────────────────────── */

@media (max-width: 1024px) {
    .ab-values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }

    .ab-member-name {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .ab-team-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .ab-intro .sv-intro-photo {
        border-radius: 20px 20px 20px 56px;
    }

    .ab-stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 320px;
    }

    .ab-stat {
        padding: 0;
    }

    /* Stacked stats need a horizontal rule between them, not a vertical one */
    .ab-stat + .ab-stat {
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 28px;
    }

    .ab-creds-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ab-values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ab-hero-buttons .btn,
    .ab-values-cta .btn {
        width: 100%;
    }

    .ab-timeline {
        padding-left: 30px;
    }

    .ab-timeline-item::before {
        left: -30px;
    }

    .ab-member-head {
        gap: 16px;
    }

    .ab-member-avatar {
        width: 62px;
        height: 62px;
        font-size: 28px;
    }
}

/* ============================================
   ARTICLE (single blog post) PAGE
   ============================================ */

/* ── Article Hero ──────────────────────────── */

.article-hero {
    margin-top: 80px;
    background: var(--blush);
    padding: clamp(36px, 4.5vw, 60px) 0 clamp(90px, 11vw, 150px);
}

.article-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.article-breadcrumb {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.article-breadcrumb a:hover {
    color: var(--coral);
}

.article-breadcrumb span {
    margin: 0 8px;
    opacity: .5;
}

.article-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 24px;
}

.article-standfirst {
    font-size: clamp(14px, 1.2vw, 15px);
    line-height: 1.7;
    color: var(--charcoal);
    max-width: 620px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-meta strong {
    font-weight: 600;
    opacity: 1;
}

.article-meta .dot {
    opacity: .45;
}

/* ── Hero image overlapping the hero band ──── */

.article-figure {
    max-width: 940px;
    margin: clamp(-80px, -9vw, -130px) auto 0;
    padding: 0 var(--container-px);
}

.article-figure img {
    width: 100%;
    height: clamp(220px, 30vw, 420px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.article-figure figcaption {
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    font-style: italic;
}

/* ── Body column ───────────────────────────── */

.article-wrap {
    padding: clamp(44px, 5vw, 72px) 0 clamp(20px, 3vw, 40px);
}

.article-body {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

.article-body > p {
    margin-bottom: 24px;
}

.article-body > p:first-of-type {
    font-size: 15px;
    line-height: 1.75;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 1.3;
    margin: 52px 0 18px;
    padding-bottom: 14px;
    position: relative;
}

.article-body h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--coral);
}

.article-body h3 {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.45;
    margin: 34px 0 12px;
    color: var(--text);
}

.article-body ul,
.article-body ol {
    margin: 0 0 26px;
    padding-left: 0;
}

.article-body ol {
    counter-reset: article-ol;
}

.article-body ul li,
.article-body ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    line-height: 1.8;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
}

.article-body ol li {
    counter-increment: article-ol;
}

.article-body ol li::before {
    content: counter(article-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: var(--coral);
}

.article-body strong {
    font-weight: 600;
    color: var(--text);
}

.article-body a:not(.btn):not(.blog-read-link) {
    color: var(--text);
    border-bottom: 1px solid var(--coral);
    padding-bottom: 1px;
}

.article-body a:not(.btn):not(.blog-read-link):hover {
    color: var(--coral);
}

.article-body blockquote {
    margin: 34px 0;
    padding: 4px 0 4px 26px;
    border-left: 2px solid var(--coral);
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
    color: var(--charcoal);
}

.article-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 46px 0;
}

/* ── Key points / answer summary box ───────── */

.article-keypoints {
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(22px, 3vw, 32px);
    margin: 0 0 38px;
}

.article-keypoints h2 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin: 0 0 16px;
    padding: 0;
}

.article-keypoints h2::after {
    display: none;
}

.article-keypoints ul {
    margin: 0;
}

.article-keypoints ul li {
    font-size: 13px;
    margin-bottom: 11px;
}

.article-keypoints ul li:last-child {
    margin-bottom: 0;
}

/* ── Callout ───────────────────────────────── */

.article-callout {
    background: var(--blush);
    border-radius: var(--radius-md);
    padding: clamp(20px, 2.6vw, 28px);
    margin: 34px 0;
}

.article-callout p:last-child {
    margin-bottom: 0;
}

.article-callout .callout-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.article-callout p {
    font-size: 13px;
    margin-bottom: 14px;
}

/* ── Data table ────────────────────────────── */

.article-table-wrap {
    margin: 30px 0 34px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 440px;
}

.article-table th,
.article-table td {
    text-align: left;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
}

.article-table thead th {
    background: var(--rose-white);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

/* ── Source / currency note ────────────────── */

.article-sourcenote {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 16px 20px;
    background: var(--surface);
    border-left: 2px solid var(--warm-taupe);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 30px 0;
}

/* Authored notes arrive wrapped in a paragraph; keep them looking like the
   bare text this block was originally written with. */
.article-sourcenote p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.article-sourcenote p + p {
    margin-top: 12px;
}

/* ── Client example ────────────────────────────
   Deliberately off-palette (sage rather than rose) so every illustrative
   client scenario is easy to pick out and review in one pass. */

.article-example {
    background: #F2F5F0;
    border-left: 3px solid #9DB093;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: clamp(20px, 2.6vw, 28px) clamp(20px, 2.6vw, 30px);
    margin: 34px 0;
}

.article-example .example-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6E8265;
    margin-bottom: 12px;
}

.article-example p {
    font-size: 13px;
    margin-bottom: 14px;
}

.article-example p:last-child {
    margin-bottom: 0;
}

.article-example ul,
.article-example ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.article-example li {
    font-size: 13px;
    margin-bottom: 8px;
}

.article-example li:last-child {
    margin-bottom: 0;
}

.article-example strong {
    color: var(--text);
}

/* ── FAQ ───────────────────────────────────── */

.article-faq {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(38px, 5vw, 60px) 0 0;
}

.article-faq > h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.8vw, 32px);
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
}

.article-faq > h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--coral);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid var(--border);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-item p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-item p + p {
    margin-top: 12px;
}

.faq-item a {
    color: var(--text);
    border-bottom: 1px solid var(--coral);
}

.faq-item a:hover {
    color: var(--coral);
}

/* ── Author box ────────────────────────────── */

.article-author {
    max-width: 640px;
    margin: clamp(44px, 5vw, 64px) auto 0;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(22px, 3vw, 30px);
}

.article-author-avatar {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 26px;
    color: #fff;
}

.article-author-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 7px;
}

.article-author h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
}

.article-author .author-role {
    font-size: 12.5px;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.article-author p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ── Next-step prompt inside the article ───── */

.article-nextstep {
    max-width: 640px;
    margin: clamp(38px, 4.5vw, 56px) auto 0;
    text-align: center;
    background: var(--blush);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 4vw, 46px) clamp(22px, 3vw, 40px);
}

.article-nextstep h2 {
    font-family: var(--font-heading);
    font-size: clamp(23px, 2.6vw, 30px);
    line-height: 1.3;
    margin-bottom: 14px;
}

.article-nextstep p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 14px;
}

.article-nextstep p:last-of-type {
    margin-bottom: 26px;
}

/* ── Related articles ──────────────────────── */

.article-related {
    padding: clamp(52px, 6vw, 84px) 0 clamp(10px, 2vw, 24px);
}

.article-related-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    text-align: center;
    margin-bottom: clamp(28px, 3.5vw, 44px);
}

.article-related .blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Responsive ────────────────────────────── */

@media (max-width: 900px) {
    .article-related .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-hero {
        margin-top: 70px;
        padding-bottom: clamp(70px, 14vw, 110px);
    }

    .article-author {
        flex-direction: column;
        gap: 16px;
    }

    .article-related .blog-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .article-nextstep .btn,
    .article-body .btn {
        width: 100%;
    }

    .article-meta {
        font-size: 12.5px;
    }
}


/* ============================================
   Service Detail Pages
   ============================================ */

/* ── Page Hero ─────────────────────────────── */

.sd-hero .gs-hero-bg::before {
    background: linear-gradient(
        to right,
        var(--rose-white) 20%,
        rgba(255,244,243,.9) 52%,
        rgba(255,244,243,.4) 100%
    );
}

.sd-hero p {
    max-width: 540px;
}

.sd-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.sd-breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.sd-breadcrumb a:hover {
    color: var(--coral);
}

.sd-breadcrumb-current {
    color: var(--coral);
}

.sd-breadcrumb-sep {
    opacity: .3;
}

.sd-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ── Signs You Need This ───────────────────── */

.sd-signs {
    padding: var(--section-py) 0;
    background: var(--rose-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.sd-signs .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sd-signs-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 44px;
}

.sd-signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1020px;
    margin: 0 auto;
}

.sd-sign {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    text-align: left;
    transition: all .3s ease;
}

.sd-sign:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.sd-sign-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 18px;
    transition: all .3s ease;
}

.sd-sign:hover .sd-sign-icon {
    background: var(--coral);
    color: #fff;
}

.sd-sign h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.35;
    margin-bottom: 10px;
}

.sd-sign p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ── What's Included ───────────────────────── */

.sd-included {
    text-align: center;
}

.sd-included .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sd-included .section-title {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 12px;
}

.sd-included-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 44px;
}

.sd-included-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(28px, 3.5vw, 48px);
    max-width: 960px;
    margin: 0 auto clamp(32px, 4vw, 48px);
}

.sd-included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px clamp(28px, 4vw, 56px);
    text-align: left;
}

.sd-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sd-included-list svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 3px;
}

.sd-included-list h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 5px;
}

.sd-included-list p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── How It Works ──────────────────────────── */

.sd-steps .section-title {
    margin-bottom: 10px;
}

.sd-steps-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 56px;
}

.sd-steps-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: clamp(40px, 5vw, 56px);
}

/* ── Related Services ──────────────────────── */

.sd-related {
    padding: var(--section-py) 0;
    background: #fff;
    text-align: center;
}

.sd-related .section-title {
    margin-bottom: 10px;
}

.sd-related-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 48px;
}

.sd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1020px;
    margin: 0 auto clamp(36px, 4vw, 48px);
}

.sd-related-card {
    display: flex;
    flex-direction: column;
    background: var(--rose-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    text-align: left;
    transition: all .3s ease;
}

.sd-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239,142,128,.45);
}

.sd-related-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.3;
    margin-bottom: 10px;
}

.sd-related-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.sd-related-card span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
    margin-top: auto;
}

.sd-related-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--coral);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(239,142,128,.5);
    transition: var(--transition);
}

.sd-related-all:hover {
    color: #e07668;
    border-bottom-color: #e07668;
}

/* ── Service Detail Responsive ─────────────── */

@media (max-width: 900px) {
    .sd-signs-grid,
    .sd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sd-included-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .sd-signs-grid,
    .sd-related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .sd-hero-buttons .btn,
    .sd-steps-cta .btn {
        width: 100%;
    }
}
