     :root {
         --orange: #E85D2A;
         --orange-hover: #CC4F22;
         --orange-soft: #FFF5F0;
         --orange-border: rgba(232, 93, 42, 0.22);
         --ink: #1a1f24;
         --ink-muted: #4a5560;
         --ink-faint: #6b7280;
         --surface: #ffffff;
         --surface-2: #f6f7f9;
         --surface-3: #eef1f4;
         --border: #e2e6eb;
         --border-strong: #d0d5dd;
         --shadow-sm: 0 1px 2px rgba(26, 31, 36, 0.05);
         --shadow-md: 0 4px 12px rgba(26, 31, 36, 0.07), 0 2px 4px rgba(26, 31, 36, 0.04);
         --shadow-lg: 0 12px 32px rgba(26, 31, 36, 0.09), 0 4px 8px rgba(26, 31, 36, 0.04);
         --radius-sm: 8px;
         --radius-md: 12px;
         --radius-lg: 18px;
         --radius-xl: 24px;
         --max: 1160px;
         --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
         --font-serif: "Source Serif 4", Georgia, serif;
         --ease: cubic-bezier(0.4, 0, 0.2, 1);
     }

     *,
     *::before,
     *::after {
         box-sizing: border-box;
         margin: 0;
         padding: 0;
     }

     html {
         scroll-behavior: smooth;
     }

     body {
         font-family: var(--font-sans);
         color: var(--ink);
         background: var(--surface-2);
         line-height: 1.6;
         font-size: 1rem;
         -webkit-font-smoothing: antialiased;
     }

     img {
         max-width: 100%;
         height: auto;
         display: block;
     }

     a {
         color: inherit;
         text-decoration-thickness: 1px;
         text-underline-offset: 3px;
     }

     a:hover {
         color: var(--orange-hover);
     }

     .wrap {
         width: min(100% - 2.5rem, var(--max));
         margin-inline: auto;
     }

     @media (max-width: 640px) {
         .wrap {
             width: min(100% - 1.5rem, var(--max));
         }
     }

     /* —— Top bar —— */
     .topbar {
         background: var(--ink);
         color: rgba(255, 255, 255, 0.88);
         font-size: 0.8125rem;
         padding: 0.5rem 0;
     }

     .topbar .wrap {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         justify-content: flex-end;
         gap: 0.75rem 1.5rem;
     }

     .topbar a {
         color: rgba(255, 255, 255, 0.9);
         text-decoration: none;
         font-weight: 500;
     }

     .topbar a:hover {
         color: #fff;
         text-decoration: underline;
     }

     .topbar .sep {
         opacity: 0.35;
         user-select: none;
     }

     /* —— Header / Nav —— */
     header.site-header {
         position: sticky;
         top: 0;
         z-index: 50;
         background: rgba(255, 255, 255, 0.94);
         backdrop-filter: blur(12px);
         border-bottom: 1px solid var(--border);
         box-shadow: var(--shadow-sm);
     }

     .header-inner {
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 1.5rem;
         padding: 0.85rem 0;
         min-height: 72px;
     }

     .brand {
         display: flex;
         align-items: center;
         gap: 0.65rem;
         text-decoration: none;
         color: var(--ink);
     }

     .brand-mark {
         width: 40px;
         height: 40px;
         border-radius: var(--radius-sm);
         background: var(--orange-soft);
         border: 1px solid var(--orange-border);
         display: grid;
         place-items: center;
     }

     .brand-mark svg {
         width: 22px;
         height: 22px;
         color: var(--orange);
     }

     .brand-text {
         font-weight: 700;
         font-size: 1.125rem;
         letter-spacing: -0.02em;
     }

     .brand-text span {
         color: var(--orange);
         font-weight: 700;
     }

     nav.primary-nav {
         display: flex;
         align-items: center;
         gap: 0.25rem;
     }

     nav.primary-nav a {
         padding: 0.5rem 0.75rem;
         font-size: 0.875rem;
         font-weight: 500;
         color: var(--ink-muted);
         text-decoration: none;
         border-radius: var(--radius-sm);
         transition: background 0.2s var(--ease), color 0.2s var(--ease);
     }

     nav.primary-nav a:hover {
         background: var(--surface-2);
         color: var(--ink);
     }

     .header-actions {
         display: flex;
         align-items: center;
         gap: 0.5rem;
         flex-shrink: 0;
     }

     .btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         gap: 0.5rem;
         font-family: var(--font-sans);
         font-weight: 600;
         font-size: 0.875rem;
         padding: 0.65rem 1.25rem;
         border-radius: var(--radius-sm);
         border: none;
         cursor: pointer;
         text-decoration: none;
         transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
     }

     .btn:focus-visible {
         outline: 2px solid var(--orange);
         outline-offset: 2px;
     }

     .btn-primary {
         background: var(--orange);
         color: #fff;
         box-shadow: 0 1px 2px rgba(232, 93, 42, 0.25);
     }

     .btn-primary:hover {
         background: var(--orange-hover);
         box-shadow: 0 4px 14px rgba(232, 93, 42, 0.28);
         transform: translateY(-1px);
     }

     .btn-secondary {
         background: var(--surface);
         color: var(--ink);
         border: 1px solid var(--border-strong);
         box-shadow: var(--shadow-sm);
     }

     .btn-secondary:hover {
         border-color: var(--ink-muted);
         background: var(--surface-2);
     }

     .btn-ghost {
         background: transparent;
         color: var(--ink-muted);
         border: 1px solid transparent;
     }

     .btn-ghost:hover {
         background: var(--surface-2);
         color: var(--ink);
     }

     .menu-toggle {
         display: none;
         width: 44px;
         height: 44px;
         border: 1px solid var(--border);
         border-radius: var(--radius-sm);
         background: var(--surface);
         align-items: center;
         justify-content: center;
         cursor: pointer;
     }

     .menu-toggle svg {
         width: 22px;
         height: 22px;
     }

     @media (max-width: 1024px) {
         .menu-toggle {
             display: flex;
         }

         .header-actions .show-sm {
             display: inline !important;
         }

         nav.primary-nav {
             position: fixed;
             inset: 0;
             top: 72px;
             background: var(--surface);
             flex-direction: column;
             align-items: stretch;
             padding: 1rem;
             gap: 0;
             border-top: 1px solid var(--border);
             transform: translateY(-120%);
             opacity: 0;
             pointer-events: none;
             transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
         }

         nav.primary-nav.is-open {
             transform: translateY(0);
             opacity: 1;
             pointer-events: auto;
         }

         nav.primary-nav a {
             padding: 0.85rem 1rem;
             border-radius: var(--radius-md);
         }

         .header-actions .btn span.hide-sm {
             display: none;
         }
     }

     /* —— Hero —— */
     .hero {
         background: var(--surface);
         padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
         border-bottom: 1px solid var(--border);
     }

     .hero-grid {
         display: grid;
         grid-template-columns: 1fr 1.05fr;
         gap: clamp(2rem, 4vw, 3.5rem);
         align-items: center;
     }

     @media (max-width: 900px) {
         .hero-grid {
             grid-template-columns: 1fr;
         }

         .hero-visual {
             order: -1;
         }
     }

     .hero-kicker {
         font-size: 0.75rem;
         font-weight: 700;
         letter-spacing: 0.12em;
         text-transform: uppercase;
         color: var(--orange);
         margin-bottom: 1rem;
     }

     .hero h1 {
         font-family: var(--font-serif);
         font-size: clamp(2rem, 4.2vw, 2.85rem);
         font-weight: 600;
         line-height: 1.15;
         letter-spacing: -0.02em;
         color: var(--ink);
         margin-bottom: 1.25rem;
     }

     .hero-lead {
         font-size: 1.0625rem;
         color: var(--ink-muted);
         max-width: 34rem;
         margin-bottom: 1.75rem;
         line-height: 1.65;
     }

     .hero-ctas {
         display: flex;
         flex-wrap: wrap;
         gap: 0.75rem;
         margin-bottom: 2rem;
     }

     .trust-row {
         display: flex;
         flex-wrap: wrap;
         gap: 1.25rem 2rem;
         padding-top: 1.75rem;
         border-top: 1px solid var(--border);
     }

     .trust-item {
         display: flex;
         align-items: flex-start;
         gap: 0.65rem;
         max-width: 200px;
     }

     .trust-item svg {
         flex-shrink: 0;
         width: 22px;
         height: 22px;
         color: var(--orange);
         margin-top: 2px;
     }

     .trust-item strong {
         display: block;
         font-size: 0.875rem;
         font-weight: 600;
         color: var(--ink);
     }

     .trust-item span {
         font-size: 0.8125rem;
         color: var(--ink-faint);
         line-height: 1.45;
         word-break: break-word;
         overflow-wrap: anywhere;
     }

     .hero-visual figure {
         margin: 0;
         border-radius: var(--radius-xl);
         overflow: hidden;
         box-shadow: var(--shadow-lg);
         border: 1px solid var(--border);
     }

     .hero-visual img {
         width: 100%;
         aspect-ratio: 4/3;
         object-fit: cover;
     }

     .hero-visual figcaption {
         padding: 0.75rem 1rem;
         font-size: 0.8125rem;
         color: var(--ink-faint);
         background: var(--surface-2);
         border-top: 1px solid var(--border);
     }

     /* —— Announcements —— */
     .announcements {
         padding: 1.25rem 0;
         background: var(--surface-2);
     }

     .announce-grid {
         display: grid;
         gap: 0.75rem;
     }

     @media (min-width: 768px) {
         .announce-grid {
             grid-template-columns: repeat(3, 1fr);
         }
     }

     .announce-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1rem 1.15rem;
         display: flex;
         gap: 0.75rem;
         align-items: flex-start;
         box-shadow: var(--shadow-sm);
     }

     .announce-card svg {
         flex-shrink: 0;
         width: 20px;
         height: 20px;
         color: var(--orange);
         margin-top: 2px;
     }

     .announce-card p {
         font-size: 0.875rem;
         color: var(--ink-muted);
         line-height: 1.5;
     }

     .announce-card a {
         font-size: 0.8125rem;
         font-weight: 600;
         color: var(--orange);
         text-decoration: none;
         margin-top: 0.35rem;
         display: inline-block;
     }

     .announce-card a:hover {
         text-decoration: underline;
     }

     /* —— Alerts / notices —— */
     section.notices {
         padding: 2.5rem 0;
     }

     .notice {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-lg);
         padding: 1.5rem 1.75rem;
         margin-bottom: 1rem;
         box-shadow: var(--shadow-md);
     }

     .notice h2 {
         font-family: var(--font-serif);
         font-size: 1.25rem;
         font-weight: 600;
         margin-bottom: 0.5rem;
     }

     .notice p {
         color: var(--ink-muted);
         font-size: 0.9375rem;
         margin-bottom: 0.75rem;
     }

     .notice .link-accent {
         font-weight: 600;
         color: var(--orange);
         text-decoration: none;
     }

     .notice .link-accent:hover {
         text-decoration: underline;
     }

     /* —— Section common —— */
     section.block {
         padding: clamp(3rem, 5vw, 4.5rem) 0;
     }

     section.block.alt {
         background: var(--surface);
     }

     .section-label {
         font-size: 0.6875rem;
         font-weight: 700;
         letter-spacing: 0.14em;
         text-transform: uppercase;
         color: var(--orange);
         margin-bottom: 0.65rem;
     }

     .section-title {
         font-family: var(--font-serif);
         font-size: clamp(1.65rem, 2.8vw, 2.15rem);
         font-weight: 600;
         letter-spacing: -0.02em;
         line-height: 1.2;
         margin-bottom: 0.75rem;
         color: var(--ink);
     }

     .section-desc {
         color: var(--ink-muted);
         font-size: 1rem;
         max-width: 38rem;
         line-height: 1.65;
         margin-bottom: 2rem;
     }

     /* —— Stats —— */
     .stats-bar {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 1rem;
         margin-top: 1rem;
     }

     @media (max-width: 640px) {
         .stats-bar {
             grid-template-columns: 1fr;
         }
     }

     .stat-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1.35rem 1.25rem;
         text-align: center;
         box-shadow: var(--shadow-sm);
     }

     .stat-card svg {
         width: 28px;
         height: 28px;
         color: var(--orange);
         margin: 0 auto 0.65rem;
     }

     .stat-card strong {
         display: block;
         font-size: 1rem;
         font-weight: 700;
     }

     .stat-card span {
         font-size: 0.8125rem;
         color: var(--ink-faint);
         word-break: break-word;
         overflow-wrap: anywhere;
     }

     /* —— Offers —— */
     .offers-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 1.25rem;
     }

     @media (max-width: 720px) {
         .offers-grid {
             grid-template-columns: 1fr;
         }
     }

     .offer-card {
         background: linear-gradient(145deg, var(--surface) 0%, var(--orange-soft) 100%);
         border: 1px solid var(--orange-border);
         border-radius: var(--radius-lg);
         padding: 1.75rem;
         box-shadow: var(--shadow-md);
     }

     .offer-card .tag {
         display: inline-block;
         font-size: 0.6875rem;
         font-weight: 700;
         letter-spacing: 0.1em;
         text-transform: uppercase;
         color: var(--orange-hover);
         margin-bottom: 0.75rem;
     }

     .offer-card h3 {
         font-family: var(--font-serif);
         font-size: 1.35rem;
         font-weight: 600;
         margin-bottom: 0.65rem;
     }

     .offer-card p {
         font-size: 0.9375rem;
         color: var(--ink-muted);
         margin-bottom: 1.25rem;
         line-height: 1.6;
     }

     .offer-card .btn {
         margin-top: auto;
     }

     /* —— Program split sections —— */
     .split {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: clamp(2rem, 4vw, 3rem);
         align-items: center;
     }

     @media (max-width: 860px) {
         .split {
             grid-template-columns: 1fr;
         }
     }

     .split.reverse .split-text {
         order: 2;
     }

     .split.reverse .split-media {
         order: 1;
     }

     @media (max-width: 860px) {
         .split.reverse .split-text {
             order: 1;
         }

         .split.reverse .split-media {
             order: 0;
         }
     }

     .split-media {
         border-radius: var(--radius-lg);
         overflow: hidden;
         border: 1px solid var(--border);
         box-shadow: var(--shadow-md);
     }

     .split-media img {
         width: 100%;
         aspect-ratio: 5/4;
         object-fit: cover;
     }

     .split-media .caption {
         padding: 0.65rem 1rem;
         font-size: 0.8125rem;
         color: var(--ink-faint);
         background: var(--surface-2);
     }

     .split-text h2 {
         font-family: var(--font-serif);
         font-size: clamp(1.5rem, 2.5vw, 1.85rem);
         font-weight: 600;
         margin-bottom: 1rem;
     }

     .split-text p {
         color: var(--ink-muted);
         margin-bottom: 1.25rem;
         line-height: 1.65;
     }

     /* —— Why grid —— */
     .why-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 1.25rem;
     }

     .why-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1.5rem 1.35rem;
         box-shadow: var(--shadow-sm);
         transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
     }

     .why-card:hover {
         box-shadow: var(--shadow-md);
         border-color: var(--border-strong);
     }

     .why-icon {
         width: 44px;
         height: 44px;
         border-radius: var(--radius-sm);
         background: var(--orange-soft);
         border: 1px solid var(--orange-border);
         display: grid;
         place-items: center;
         margin-bottom: 1rem;
     }

     .why-icon svg {
         width: 22px;
         height: 22px;
         color: var(--orange);
     }

     .why-card h3 {
         font-size: 1.05rem;
         font-weight: 600;
         margin-bottom: 0.5rem;
     }

     .why-card p {
         font-size: 0.9rem;
         color: var(--ink-muted);
         line-height: 1.6;
     }

     /* —— Band CTA —— */
     .band-cta {
         position: relative;
         border-radius: var(--radius-xl);
         overflow: hidden;
         min-height: 280px;
         display: grid;
         align-items: end;
         border: 1px solid var(--border);
         box-shadow: var(--shadow-lg);
     }

     .band-cta img {
         position: absolute;
         inset: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .band-cta::after {
         content: "";
         position: absolute;
         inset: 0;
         background: linear-gradient(180deg, transparent 20%, rgba(26, 31, 36, 0.82) 100%);
     }

     .band-cta .inner {
         position: relative;
         z-index: 1;
         padding: 2rem;
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         justify-content: space-between;
         gap: 1rem;
     }

     .band-cta h2 {
         font-family: var(--font-serif);
         font-size: clamp(1.35rem, 2.5vw, 1.75rem);
         font-weight: 600;
         color: #fff;
         max-width: 420px;
     }

     /* —— Testimonials —— */
     .trustyou-bar {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         gap: 1.5rem;
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-lg);
         padding: 1.5rem 1.75rem;
         margin-bottom: 2rem;
         box-shadow: var(--shadow-sm);
     }

     .trustyou-score {
         font-family: var(--font-serif);
         font-size: 2rem;
         font-weight: 700;
         color: var(--ink);
     }

     .trustyou-score span {
         color: var(--orange);
         font-size: 1.25rem;
         font-weight: 600;
     }

     .trustyou-copy {
         flex: 1;
         min-width: 200px;
     }

     .trustyou-copy p {
         font-size: 0.9rem;
         color: var(--ink-muted);
         line-height: 1.55;
     }

     .reviews-toolbar {
         display: flex;
         flex-wrap: wrap;
         gap: 0.75rem;
         align-items: center;
         margin-bottom: 1.5rem;
     }

     .reviews-toolbar label {
         font-size: 0.8125rem;
         color: var(--ink-faint);
         font-weight: 500;
     }

     .reviews-toolbar input {
         flex: 1;
         min-width: 200px;
         max-width: 320px;
         padding: 0.6rem 0.85rem;
         border: 1px solid var(--border-strong);
         border-radius: var(--radius-sm);
         font-family: var(--font-sans);
         font-size: 0.875rem;
     }

     .reviews-toolbar input:focus {
         outline: none;
         border-color: var(--orange);
         box-shadow: 0 0 0 3px var(--orange-soft);
     }

     .reviews-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
         gap: 1rem;
     }

     .review-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1.35rem 1.25rem;
         box-shadow: var(--shadow-sm);
     }

     .review-card p {
         font-size: 0.9rem;
         color: var(--ink-muted);
         line-height: 1.55;
         margin-bottom: 1rem;
     }

     .review-meta {
         display: flex;
         justify-content: space-between;
         align-items: baseline;
         gap: 0.5rem;
         font-size: 0.8125rem;
         border-top: 1px solid var(--border);
         padding-top: 0.85rem;
     }

     .review-meta strong {
         color: var(--ink);
         font-weight: 600;
     }

     .review-meta time {
         color: var(--ink-faint);
         white-space: nowrap;
     }

     /* —— eHealth —— */
     .ehealth {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 2.5rem;
         align-items: center;
     }

     @media (max-width: 860px) {
         .ehealth {
             grid-template-columns: 1fr;
         }
     }

     .ehealth-list {
         list-style: none;
         display: flex;
         flex-direction: column;
         gap: 1.15rem;
     }

     .ehealth-list li {
         display: flex;
         gap: 0.85rem;
         align-items: flex-start;
         padding: 1rem 1.1rem;
         background: var(--surface-2);
         border-radius: var(--radius-md);
         border: 1px solid var(--border);
     }

     .ehealth-list svg {
         flex-shrink: 0;
         width: 22px;
         height: 22px;
         color: var(--orange);
         margin-top: 2px;
     }

     .ehealth-list p {
         font-size: 0.9375rem;
         color: var(--ink-muted);
         line-height: 1.55;
     }

     .ehealth figure {
         margin: 0;
         border-radius: var(--radius-lg);
         overflow: hidden;
         border: 1px solid var(--border);
         box-shadow: var(--shadow-md);
     }

     .ehealth img {
         width: 100%;
         aspect-ratio: 1;
         object-fit: cover;
     }

     .ehealth figcaption {
         padding: 0.65rem 1rem;
         font-size: 0.8125rem;
         color: var(--ink-faint);
         background: var(--surface-2);
     }

     /* —— Articles —— */
     .articles-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 1.25rem;
     }

     @media (max-width: 900px) {
         .articles-grid {
             grid-template-columns: 1fr;
         }
     }

     .article-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1.35rem;
         box-shadow: var(--shadow-sm);
         display: flex;
         flex-direction: column;
         height: 100%;
     }

     .article-card h3 {
         font-size: 1rem;
         font-weight: 600;
         line-height: 1.45;
         margin-bottom: 0.65rem;
         color: var(--ink);
     }

     .article-card p {
         font-size: 0.875rem;
         color: var(--ink-muted);
         flex: 1;
         line-height: 1.55;
     }

     /* —— Initiatives —— */
     .triple {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 1.25rem;
     }

     @media (max-width: 800px) {
         .triple {
             grid-template-columns: 1fr;
         }
     }

     .triple-card {
         background: var(--surface);
         border: 1px solid var(--border);
         border-radius: var(--radius-md);
         padding: 1.5rem;
         box-shadow: var(--shadow-sm);
     }

     .triple-card h3 {
         font-family: var(--font-serif);
         font-size: 1.15rem;
         font-weight: 600;
         margin-bottom: 0.65rem;
     }

     .triple-card p {
         font-size: 0.9rem;
         color: var(--ink-muted);
         line-height: 1.55;
         margin-bottom: 0.75rem;
     }

     .triple-card a {
         font-weight: 600;
         font-size: 0.875rem;
         color: var(--orange);
         text-decoration: none;
     }

     .triple-card a:hover {
         text-decoration: underline;
     }

     /* —— Projects carousel placeholder —— */
     .projects-strip {
         background: var(--surface-3);
         border: 1px dashed var(--border-strong);
         border-radius: var(--radius-lg);
         padding: 2.5rem 1.5rem;
         text-align: center;
         color: var(--ink-faint);
         font-size: 0.875rem;
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 1rem;
     }

     .projects-strip button {
         width: 40px;
         height: 40px;
         border-radius: 50%;
         border: 1px solid var(--border-strong);
         background: var(--surface);
         cursor: pointer;
         display: grid;
         place-items: center;
     }

     .projects-strip button:hover {
         border-color: var(--orange);
         color: var(--orange);
     }

     /* —— Inquiry + CTA —— */
     .inquiry-section {
         background: var(--surface);
         border-top: 1px solid var(--border);
         border-bottom: 1px solid var(--border);
     }

     .form-grid {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 1rem 1.25rem;
     }

     @media (max-width: 720px) {
         .form-grid {
             grid-template-columns: 1fr;
         }
     }

     .field-full {
         grid-column: 1 / -1;
     }

     label.form-label {
         display: block;
         font-size: 0.8125rem;
         font-weight: 600;
         color: var(--ink);
         margin-bottom: 0.35rem;
     }

     .form-hint {
         font-weight: 400;
         color: var(--ink-faint);
     }

     input[type="text"],
     input[type="email"],
     input[type="tel"],
     textarea,
     select {
         width: 100%;
         padding: 0.7rem 0.85rem;
         border: 1px solid var(--border-strong);
         border-radius: var(--radius-sm);
         font-family: var(--font-sans);
         font-size: 0.9375rem;
         background: var(--surface);
         transition: border-color 0.2s, box-shadow 0.2s;
     }

     input:focus,
     textarea:focus,
     select:focus {
         outline: none;
         border-color: var(--orange);
         box-shadow: 0 0 0 3px var(--orange-soft);
     }

     textarea {
         min-height: 120px;
         resize: vertical;
     }

     .radio-row {
         display: flex;
         gap: 1.25rem;
         flex-wrap: wrap;
         margin-top: 0.25rem;
     }

     .radio-row label {
         font-weight: 500;
         font-size: 0.875rem;
         display: flex;
         align-items: center;
         gap: 0.4rem;
         cursor: pointer;
     }

     .checkbox-row {
         display: flex;
         align-items: flex-start;
         gap: 0.5rem;
         margin-top: 0.5rem;
     }

     .checkbox-row input {
         width: auto;
         margin-top: 4px;
     }

     .checkbox-row label {
         font-size: 0.8125rem;
         color: var(--ink-muted);
         font-weight: 400;
     }

     .cta-final {
         text-align: center;
         padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
         background: linear-gradient(180deg, var(--orange-soft) 0%, var(--surface) 55%);
         border-top: 1px solid var(--orange-border);
     }

     .cta-final h2 {
         font-family: var(--font-serif);
         font-size: clamp(1.65rem, 3vw, 2.1rem);
         font-weight: 600;
         margin-bottom: 1rem;
     }

     .cta-final p {
         color: var(--ink-muted);
         margin-bottom: 1.5rem;
         max-width: 480px;
         margin-inline: auto;
     }

     /* —— Footer —— */
     footer.site-footer {
         background: var(--ink);
         color: rgba(255, 255, 255, 0.78);
         padding: 3rem 0 2rem;
         font-size: 0.875rem;
     }

     .footer-grid {
         display: grid;
         grid-template-columns: 1.4fr repeat(3, 1fr);
         gap: 2rem;
         margin-bottom: 2.5rem;
     }

     @media (max-width: 900px) {
         .footer-grid {
             grid-template-columns: 1fr 1fr;
         }
     }

     @media (max-width: 520px) {
         .footer-grid {
             grid-template-columns: 1fr;
         }
     }

     .footer-brand {
         max-width: 280px;
     }

     .footer-brand .brand-text {
         color: #fff;
     }

     .footer-brand p {
         margin-top: 0.75rem;
         line-height: 1.55;
         font-size: 0.8125rem;
     }

     .footer-col h4 {
         font-size: 0.6875rem;
         text-transform: uppercase;
         letter-spacing: 0.1em;
         color: rgba(255, 255, 255, 0.45);
         margin-bottom: 1rem;
         font-weight: 700;
     }

     .footer-col ul {
         list-style: none;
     }

     .footer-col li {
         margin-bottom: 0.5rem;
     }

     .footer-col a {
         color: rgba(255, 255, 255, 0.85);
         text-decoration: none;
     }

     .footer-col a:hover {
         color: #fff;
         text-decoration: underline;
     }

     .footer-bottom {
         padding-top: 1.5rem;
         border-top: 1px solid rgba(255, 255, 255, 0.12);
         display: flex;
         flex-wrap: wrap;
         gap: 1rem;
         justify-content: space-between;
         align-items: center;
         font-size: 0.8125rem;
     }

     .footer-bottom a {
         color: rgba(255, 255, 255, 0.65);
     }