/* V.I.C — "The Honest Consulate" design system (see DESIGN.md). Direction-agnostic: logical properties only. */

:root {
    --green: #2A443B;
    --green-deep: #1E332C;
    --mint: #E7EFEA;
    --ground: #FAFAF7;
    --ink: #16221E;
    --ink-2: #52625C;
    --amber: #D9A441;
    --line: #DDE4E0;
    --shadow: 0 8px 30px rgba(22, 34, 30, 0.08);
    --shadow-lift: 0 12px 36px rgba(22, 34, 30, 0.12);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --font-display: "Alexandria", "Segoe UI", Tahoma, sans-serif;
    --font-body: "Almarai", "Segoe UI", Tahoma, sans-serif;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--ink);
    background: var(--ground);
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.4; }
img { max-width: 100%; }
a { color: var(--green); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid #7FA898;
    outline-offset: 2px;
}
.container { max-width: 1140px; margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 96px; }
.section.tint { background: var(--mint); }
.section.tint .kicker { background: #fff; }
.kicker {
    display: inline-block;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--green);
    background: var(--mint);
    border-radius: 999px;
    padding: 6px 16px;
    margin-block-end: 16px;
}
.section-head { max-width: 640px; margin-block-end: 48px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-block-end: 12px; }
.section-head p { color: var(--ink-2); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    border: 0;
    border-radius: var(--r-md);
    padding: 14px 28px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn-ghost:hover { background: var(--mint); }
.btn svg { flex: none; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-block-end: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding-block: 14px; }
.logo img { height: 48px; display: block; }
.main-nav { display: flex; gap: 24px; margin-inline-start: auto; }
.main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9375rem;
    padding-block: 6px;
    border-block-end: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current] { color: var(--green); border-block-end-color: var(--green); }
.lang-switch {
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--ink-2);
}
.lang-switch:hover { border-color: var(--green); color: var(--green); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin-block: 4px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Page hero (subpages) */
.page-hero { background: linear-gradient(180deg, #fff 0%, var(--ground) 100%); padding-block: 56px; border-block-end: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-block-end: 8px; }
.page-hero p { color: var(--ink-2); max-width: 44rem; }
.breadcrumb { font-size: 0.875rem; font-weight: 700; color: var(--ink-2); margin-block-end: 12px; }
.breadcrumb a { text-decoration: none; }
.updated-note { font-size: 0.8125rem; font-weight: 700; color: var(--ink-2); margin-block-start: 12px; }

/* Home hero */
.hero { background: linear-gradient(180deg, #fff 0%, var(--ground) 100%); padding-block: 72px 88px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.35; margin-block-end: 20px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { color: var(--ink-2); font-size: 1.125rem; max-width: 34rem; margin-block-end: 28px; }
.hero-points { list-style: none; padding: 0; display: grid; gap: 10px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; font-size: 0.9375rem; }
.hero-points svg { flex: none; margin-block-start: 5px; }

/* Qualifier */
.qualifier { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
.qualifier-head { display: flex; align-items: center; justify-content: space-between; margin-block-end: 6px; }
.qualifier-head h2 { font-size: 1.25rem; font-weight: 700; }
.q-dots { display: flex; gap: 6px; }
.q-dots span { width: 26px; height: 6px; border-radius: 999px; background: var(--mint); transition: background 0.3s; }
.q-dots span.on { background: var(--green); }
.q-lede { color: var(--ink-2); font-size: 0.9375rem; margin-block-end: 18px; }
.q-step h3 { font-size: 1.0625rem; font-weight: 600; margin-block-end: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--green); }
.chip[aria-pressed="true"] { background: var(--green); border-color: var(--green); color: #fff; }
.q-actions { display: flex; align-items: center; gap: 14px; margin-block-start: 22px; flex-wrap: wrap; }
.q-back { background: none; border: 0; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 0.875rem; color: var(--ink-2); padding: 8px; }
.q-back:hover { color: var(--green); }
.q-alt { font-size: 0.875rem; color: var(--ink-2); margin-block-start: 14px; }
.q-summary { background: var(--mint); border-radius: var(--r-md); padding: 14px 18px; font-size: 0.9375rem; margin-block-end: 4px; }
.q-step[hidden] { display: none; }

/* Trust strip */
.trust { border-block-start: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-block: 28px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; font-weight: 700; font-size: 0.9375rem; }
.trust-item svg { flex: none; margin-block-start: 4px; }

/* Honesty panel */
.honesty { background: var(--green); color: #fff; }
.honesty .kicker { background: rgba(255,255,255,0.12); color: #fff; }
.honesty h2 { color: #fff; }
.honesty .section-head p { color: rgba(255,255,255,0.75); }
.honesty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.honesty-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-lg); padding: 28px; }
.honesty-card h3 { font-size: 1.25rem; font-weight: 700; margin-block-end: 10px; color: var(--amber); }
.honesty-card p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; }
.honesty-promise {
    margin-block-start: 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-lg);
    padding: 24px 28px;
}
.honesty-promise p { font-weight: 700; font-size: 1.125rem; font-family: var(--font-display); }
.honesty-promise .btn-primary { background: var(--amber); color: var(--green-deep); }
.honesty-promise .btn-primary:hover { background: #C6933A; }

/* Cards */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.service-card .s-icon {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: var(--mint); color: var(--green);
    display: grid; place-items: center; margin-block-end: 18px;
}
.service-card .card-thumb {
    margin: -28px -28px 20px;
    border-start-start-radius: var(--r-lg);
    border-start-end-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--mint);
}
.service-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card .card-thumb.tinted img { filter: sepia(1) hue-rotate(100deg) saturate(0.35) brightness(1.05); }
.service-card h3 { font-size: 1.0625rem; font-weight: 600; margin-block-end: 8px; }
.service-card p { color: var(--ink-2); font-size: 0.9375rem; }
.service-card .card-link { display: inline-block; margin-block-start: 14px; font-weight: 700; font-size: 0.9375rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-block-start: 8px; }
@media (min-width: 993px) {
    .step:not(:first-child)::before {
        content: "";
        position: absolute;
        inset-inline-end: 100%;
        top: 29px;
        width: 24px;
        height: 2px;
        background: var(--line);
    }
}
.step .num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
    display: grid; place-items: center; margin-block-end: 16px;
}
.step h3 { font-size: 1.0625rem; font-weight: 600; margin-block-end: 8px; }
.step p { color: var(--ink-2); font-size: 0.9375rem; }

/* Destinations */
.dest-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; }
.dest {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding-block: 12px; padding-inline: 24px 20px;
    font-weight: 700; font-size: 0.9375rem;
    text-decoration: none; color: var(--ink);
    transition: border-color 0.2s, transform 0.2s;
}
.dest:hover { border-color: var(--green); transform: translateY(-2px); }
.dest img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.dest.more { background: var(--green); border-color: var(--green); color: #fff; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow);
    padding: 20px 24px; font-weight: 700;
    text-decoration: none; color: var(--ink);
    transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.dest-card img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.dest-card .hint { display: block; font-weight: 400; font-size: 0.8125rem; color: var(--ink-2); }

/* Consultant / team */
.consultant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.consultant-quote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 700; line-height: 1.6; margin-block-end: 24px; }
.consultant-quote em { font-style: normal; color: var(--green); }
.consultant-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 40px; text-align: center; }
.consultant-card .monogram {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--mint); color: var(--green);
    font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem);
    display: grid; place-items: center; margin: 0 auto 14px;
}
.consultant-card .photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; }
.consultant-card h3 { font-size: 1.25rem; font-weight: 700; }
.consultant-card p { color: var(--ink-2); font-size: 0.9375rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.team-card .monogram {
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--mint); color: var(--green);
    font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem);
    display: grid; place-items: center; margin: 32px auto 0;
}
.team-card .t-body { padding: 20px; }
.team-card h3 { font-size: 1.125rem; font-weight: 700; }
.team-card p { color: var(--ink-2); font-size: 0.9375rem; }

/* Partners */
.partners { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.partners img { max-height: 44px; max-width: 132px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: filter 0.2s, opacity 0.2s; }
.partners img:hover { filter: none; opacity: 1; }
.partners-label { text-align: center; color: var(--ink-2); font-size: 0.875rem; font-weight: 700; margin-block-end: 28px; }

/* FAQ */
.faq-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-block-end: 32px; }
.faq-item { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
.faq-item h3 { font-size: 1.0625rem; font-weight: 600; margin-block-end: 8px; }
.faq-item p { color: var(--ink-2); font-size: 0.9375rem; }
.faq-group { max-width: 800px; }
.faq-group h2 { font-size: 1.25rem; font-weight: 700; margin-block: 40px 16px; }
.faq-group h2:first-of-type { margin-block-start: 0; }
.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-block-end: 40px; }
.faq-nav a {
    display: inline-block;
    font-weight: 700; font-size: 0.9375rem;
    color: var(--ink); background: #fff;
    border: 1px solid var(--line); border-radius: 999px;
    padding: 12px 18px; text-decoration: none;
    transition: border-color 0.2s;
}
.faq-nav a:hover { border-color: var(--green); }
details.faq-q { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow); margin-block-end: 12px; }
details.faq-q summary {
    cursor: pointer; list-style: none;
    font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
    padding: 18px 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq-q summary::-webkit-details-marker { display: none; }
details.faq-q summary::after { content: "+"; font-size: 1.25rem; color: var(--green); flex: none; }
details.faq-q[open] summary::after { content: "–"; }
details.faq-q .a { padding: 0 24px 20px; color: var(--ink-2); font-size: 0.9375rem; }
details.faq-q .a ul { padding-inline-start: 1.25rem; margin-block: 0.75rem; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 0.875rem; margin-block-end: 6px; }
.field input, .field select, .field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 13px 16px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(122, 168, 152, 0.35); }
.website-field { position: absolute !important; inset-inline-start: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 32px; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list svg { flex: none; margin-block-start: 6px; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* CTA band */
.cta-band { background: var(--green); color: #fff; border-radius: var(--r-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-block-end: 6px; }
.cta-band p { color: rgba(255,255,255,0.75); }
.cta-band .btn-primary { background: #fff; color: var(--green); }
.cta-band .btn-primary:hover { background: var(--mint); }

/* Footer */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,0.8); padding-block: 64px 88px; font-size: 0.9375rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.site-footer h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-block-end: 16px; }
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-social { display: flex; gap: 14px; margin-block-start: 18px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-bottom { border-block-start: 1px solid rgba(255,255,255,0.15); margin-block-start: 48px; padding-block-start: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.footer-logo img { height: 44px; margin-block-end: 16px; }
.phone-ltr { direction: ltr; unicode-bidi: embed; }

/* Mobile sticky WhatsApp */
.sticky-wa { position: fixed; inset-inline: 16px; inset-block-end: 16px; z-index: 50; display: none; }
.sticky-wa .btn { width: 100%; justify-content: center; box-shadow: var(--shadow-lift); }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
    .hero-copy, .qualifier { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
    .qualifier { animation-delay: 0.12s; }
    @keyframes rise {
        from { transform: translateY(24px); opacity: 0.01; }
        to { transform: translateY(0); opacity: 1; }
    }
    .q-step.enter { animation: qstep-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both; }
    @keyframes qstep-in {
        from { transform: translateY(10px); opacity: 0.01; }
        to { transform: translateY(0); opacity: 1; }
    }
}

@media (max-width: 992px) {
    .section { padding-block: 56px; }
    .hero { padding-block: 40px 56px; }
    .hero-grid, .consultant-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { display: contents; }
    .hero-copy > .kicker { order: 1; justify-self: start; }
    .hero-copy > h1 { order: 2; }
    .hero-copy > .hero-sub { order: 3; }
    .hero-grid > .qualifier { order: 4; }
    .hero-copy > .hero-points { order: 5; }
    .cards-4, .steps, .honesty-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-3, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-grid { grid-template-columns: 1fr; }
    .main-nav {
        display: none;
        position: absolute; inset-inline: 0; top: 100%;
        background: #fff; border-block-end: 1px solid var(--line);
        flex-direction: column; padding: 16px 20px; gap: 4px; z-index: 40;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding-block: 12px; border-block-end: 0; }
    .nav-toggle { display: block; margin-inline-start: auto; }
    .lang-switch { margin-inline-start: 0; }
    .sticky-wa { display: block; }
    body { padding-block-end: 84px; }
}
@media (max-width: 560px) {
    .cards-4, .cards-3, .cards-2, .steps, .honesty-grid, .faq-teaser, .team-grid, .dest-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 32px 24px; }
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    inset-inline-start: 16px;
    top: -56px;
    z-index: 100;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 0 0 var(--r-md) var(--r-md);
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.sticky-wa.hidden-by-qualifier { opacity: 0; pointer-events: none; transition: opacity 0.2s; }

/* Guide pages (Read surfaces) */
.guide-body { max-width: 800px; margin-inline: auto; }
.guide-body h2 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; margin-block: 48px 16px; }
.guide-body h2:first-of-type { margin-block-start: 0; }
.guide-body ul, .guide-body ol { padding-inline-start: 1.5rem; display: grid; gap: 10px; margin-block: 16px; }
.quick-answer {
    background: var(--mint);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    margin-block-end: 40px;
    font-weight: 700;
}
.doc-table { width: 100%; border-collapse: collapse; margin-block: 16px; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow); }
.doc-table th, .doc-table td { padding: 14px 18px; text-align: start; border-block-end: 1px solid var(--line); font-size: 0.9375rem; }
.doc-table th { background: var(--mint); font-family: var(--font-display); font-weight: 600; }
.doc-table tr:last-child td { border-block-end: 0; }
.guide-sources { font-size: 0.875rem; color: var(--ink-2); border-block-start: 1px solid var(--line); padding-block-start: 20px; margin-block-start: 48px; }
