  /* ============ BLOG POST HERO ============ */
  .post-hero {
    padding: 56px 0 0;
    position: relative;
    overflow: hidden;
  }
  .post-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,179,66,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .post-category {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy); background: var(--navy-light);
    padding: 8px 14px; border-radius: 100px;
    margin-bottom: 24px;
  }
  .post-category .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

  .post-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 880px;
  }
  .post-hero h1 em { font-style: italic; color: var(--green); font-weight: 600; }
  .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 18px;
    margin-bottom: 28px;
    color: var(--ink-mute);
    font-size: 13.5px;
  }
  .post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .post-meta-item svg { color: var(--green); }
  .post-meta-divider {
    width: 4px; height: 4px;
    background: var(--border-strong);
    border-radius: 50%;
  }
  .post-meta-author strong { color: var(--navy-deep); font-weight: 700; }
  .post-lead {
    font-size: 19px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 780px;
    font-weight: 500;
    margin-bottom: 36px;
  }

  /* Featured image */
  .post-featured {
    max-width: 1100px;
    margin: 0 auto 48px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .post-featured-slot {
    width: 100%;
    aspect-ratio: 21 / 9;
    background: repeating-linear-gradient(45deg, var(--navy-light), var(--navy-light) 14px, var(--cream-deep) 14px, var(--cream-deep) 28px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-featured-label {
    background: rgba(255,255,255,0.95);
    color: var(--navy-deep);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border);
  }

  /* ============ MAIN ARTICLE LAYOUT ============ */
  .post-layout {
    padding: 0 0 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 980px) {
    .post-layout { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  }

  /* ============ JUMP-TO TOC ============ */
  .post-toc {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 32px;
  }
  .post-toc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .post-toc-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .post-toc ol {
    list-style: none;
    columns: 2;
    column-gap: 24px;
    counter-reset: toc;
  }
  @media (max-width: 560px) { .post-toc ol { columns: 1; } }
  .post-toc li {
    counter-increment: toc;
    margin-bottom: 6px;
    break-inside: avoid;
  }
  .post-toc a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--navy-deep);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    transition: background 0.15s;
  }
  .post-toc a:hover { background: var(--navy-light); }
  .post-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: 'Fraunces', serif;
    font-size: 12px;
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    min-width: 22px;
  }

  /* ============ ARTICLE BODY ============ */
  .post-body { max-width: 740px; min-width: 0; }
  .post-body > * + * { margin-top: 22px; }
  .post-body h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--navy-deep);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-top: 56px !important;
    margin-bottom: 4px;
    scroll-margin-top: 100px;
  }
  .post-body h2 em { font-style: italic; color: var(--green); }
  .post-body h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 21px;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    margin-top: 36px !important;
    margin-bottom: 4px;
  }
  .post-body p {
    color: var(--ink-soft);
    font-size: 16.5px;
    line-height: 1.7;
  }
  .post-body p strong { color: var(--navy-deep); font-weight: 700; }
  .post-body a:not(.btn-primary):not(.btn-ghost) {
    color: var(--navy);
    border-bottom: 1px solid rgba(30,77,107,0.3);
    font-weight: 600;
    transition: border-color 0.15s;
  }
  .post-body a:hover { border-bottom-color: var(--navy); }
  .post-body ul, .post-body ol {
    list-style: none;
    padding-left: 0;
  }
  .post-body ul li, .post-body ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
  }
  .post-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 16px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
  }
  .post-body ol { counter-reset: list; }
  .post-body ol li { counter-increment: list; }
  .post-body ol li::before {
    content: counter(list);
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--green);
    font-size: 15px;
    line-height: 1.7;
  }
  .post-body ul li strong, .post-body ol li strong { color: var(--navy-deep); font-weight: 700; }

  /* Headline stat callout */
  .key-stat {
    background: var(--navy-deep);
    color: white;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .key-stat::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(124,179,66,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .key-stat-value {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
  }
  .key-stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.45;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
  }
  .key-stat-label strong { color: white; font-weight: 700; }

  /* Inline callout */
  .callout {
    background: var(--navy-light);
    border-left: 4px solid var(--navy);
    border-radius: 0 10px 10px 0;
    padding: 22px 26px;
    margin: 32px 0 !important;
  }
  .callout-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .callout p {
    font-size: 15.5px !important;
    line-height: 1.6;
    margin: 0 !important;
  }
  .callout.warn {
    background: #fdf5e8;
    border-left-color: var(--gold);
  }
  .callout.warn .callout-title { color: #876413; }

  /* ============ MID-ARTICLE CTA ============ */
  .mid-cta {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
    color: white;
    border-radius: 14px;
    padding: 32px 36px;
    margin: 48px 0 !important;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
  }
  .mid-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }
  @media (max-width: 640px) {
    .mid-cta { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  }
  .mid-cta-content { flex: 1; position: relative; }
  .mid-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
  }
  .mid-cta h3 {
    font-family: 'Fraunces', serif !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    color: white !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
    margin: 0 !important;
  }
  .mid-cta-btn {
    background: white;
    color: var(--green-hover) !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none !important;
    transition: all 0.15s;
    flex-shrink: 0;
    position: relative;
    white-space: nowrap;
  }
  .mid-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

  /* ============ END-OF-ARTICLE CTA ============ */
  .end-cta {
    background: var(--navy-deep);
    color: white;
    border-radius: 14px;
    padding: 40px 36px;
    margin: 56px 0 !important;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .end-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(124,179,66,0.18) 0%, transparent 70%);
  }
  .end-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    position: relative;
  }
  .end-cta h3 {
    font-family: 'Fraunces', serif !important;
    font-weight: 500 !important;
    font-size: 26px !important;
    color: white !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
    margin: 0 0 12px !important;
    position: relative;
  }
  .end-cta p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px !important;
    margin: 0 0 24px !important;
    position: relative;
    max-width: 500px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .end-cta-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }
  .btn-primary {
    background: var(--green);
    color: white !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none !important;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--green-hover); }
  .btn-ghost {
    color: white !important;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px;
    transition: all 0.15s;
  }
  .btn-ghost:hover { border-color: white !important; }

  /* ============ STICKY ENQUIRY FORM ============ */
  .sticky-form-wrap {
    position: sticky;
    top: 120px;
  }
  @media (max-width: 980px) { .sticky-form-wrap { position: static; } }
  .enquiry-form {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 8px 40px rgba(20,53,72,0.08);
  }
  .form-voucher {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, #fff8e7 0%, #fdf3d4 100%);
    border: 1px solid #e8d29a;
    padding: 14px; border-radius: 10px;
    margin-bottom: 20px;
  }
  .voucher-card {
    background: #1a1a1a; color: white;
    width: 56px; height: 38px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700; font-size: 14px;
    flex-shrink: 0; letter-spacing: 0.05em;
  }
  .voucher-text { font-size: 13px; line-height: 1.4; }
  .voucher-text strong { color: var(--navy-deep); display: block; font-size: 14.5px; margin-bottom: 1px; font-weight: 700; }
  .voucher-text small { color: var(--ink-mute); font-size: 11px; }
  .form-heading {
    font-family: 'Fraunces', serif;
    font-weight: 600; color: var(--navy-deep);
    font-size: 22px; letter-spacing: -0.01em;
    margin-bottom: 6px; line-height: 1.2;
  }
  .form-sub {
    color: var(--ink-soft); font-size: 13.5px;
    margin-bottom: 18px; line-height: 1.45;
  }
  .form-input {
    width: 100%; padding: 13px 14px;
    border: 1.5px solid var(--border-strong);
    border-radius: 8px; font-family: inherit;
    font-size: 15px; background: white;
    color: var(--ink); margin-bottom: 10px;
    transition: border-color 0.15s;
  }
  .form-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,77,107,0.1); }
  .form-submit {
    width: 100%; background: var(--green); color: white;
    border: none; padding: 15px; font-size: 14px;
    font-weight: 700; border-radius: 8px;
    cursor: pointer; text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 6px;
    transition: background 0.15s; font-family: inherit;
  }
  .form-submit:hover { background: var(--green-hover); }
  .form-promise {
    text-align: center; font-size: 11.5px;
    color: var(--ink-soft); margin-top: 12px;
    display: flex; justify-content: center;
    gap: 10px; flex-wrap: wrap;
  }
  .form-promise .check { color: var(--green); font-weight: 700; }

  .form-trust {
    margin-top: 16px; padding: 16px 20px;
    background: var(--navy-deep); border-radius: 12px;
    color: white; text-align: center;
  }
  .form-trust .stars {
    color: var(--star); font-size: 14px;
    letter-spacing: 2px; margin-bottom: 4px;
  }
  .form-trust-text {
    font-size: 12.5px; color: rgba(255,255,255,0.85); line-height: 1.4;
  }
  .form-trust-text strong { color: white; font-weight: 700; }

  .phone-card {
    margin-top: 14px; padding: 18px 20px;
    background: var(--cream-deep);
    border: 1px solid var(--border);
    border-radius: 12px; text-align: center;
  }
  .phone-card-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-mute); margin-bottom: 4px;
  }
  .phone-card a {
    font-family: 'Fraunces', serif;
    font-size: 22px; font-weight: 600;
    color: var(--navy-deep); letter-spacing: -0.01em;
  }
  .phone-card-hours {
    font-size: 11.5px; color: var(--ink-mute); margin-top: 2px;
  }

  /* ============ FAQ ACCORDION ============ */
  .faq-section {
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
  }
  @media (max-width: 760px) { .faq-section { padding: 60px 0; } }

  .faq-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
  }
  .section-eyebrow {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green); margin-bottom: 16px;
    display: inline-block;
  }
  .section-eyebrow::before,
  .section-eyebrow::after { content: '—'; margin: 0 10px; color: var(--border-strong); }
  .faq-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .faq-title em { font-style: italic; color: var(--green); }
  .faq-lead {
    font-size: 16.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.15s;
  }
  .faq-item[open] {
    background: var(--paper);
    border-color: var(--navy-light);
    box-shadow: 0 6px 18px rgba(20,53,72,0.05);
  }
  .faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 17.5px;
    letter-spacing: -0.005em;
    line-height: 1.3;
  }
  .faq-question::-webkit-details-marker { display: none; }
  .faq-question:hover { color: var(--navy); }
  .faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.25s ease;
  }
  .faq-item[open] .faq-icon {
    background: var(--green);
    color: white;
    transform: rotate(45deg);
  }
  .faq-answer {
    padding: 0 24px 24px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.65;
  }
  .faq-answer > * + * { margin-top: 12px; }
  .faq-answer p strong { color: var(--navy-deep); font-weight: 700; }
  .faq-answer a {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 1px solid rgba(30,77,107,0.3);
  }