:root {
    --bg-base: #ffffff;
    --bg-elevated: rgba(255, 255, 255, 0.92);
    --bg-card: #ffffff;
    --bg-card-hover: #fffdf8;
    --bg-muted: #f8fafc;
    --bg-soft: #f1f5f9;

    --accent-teal: #0d9488;
    --accent-teal-soft: #ccfbf1;
    --accent-teal-strong: #0f766e;
    --accent-amber: #f59e0b;
    --accent-amber-soft: #fef3c7;
    --accent-coral: #ec4899;
    --accent-coral-soft: #fce7f3;
    --accent-violet: #8b5cf6;
    --accent-violet-soft: #ede9fe;
    --accent-sky: #0284c7;
    --accent-sky-soft: #e0f2fe;

    --text-primary: #0f172a;
    --text-secondary: #232933;
    --text-muted: #64748b;

    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
    --border-focus: rgba(13, 148, 136, 0.45);
    --border-teal: rgba(13, 148, 136, 0.22);
    --border-amber: rgba(243, 171, 47, 0.28);
    --border-black: rgb(0, 0, 0, 0.15);

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.1);
    --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 8px 32px rgba(245, 158, 11, 0.14);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition: 0.18s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    position: relative;
    isolation: isolate;
    margin: 0;
    min-height: 100dvh;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-base);
    display: flex;
    flex-direction: column;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #ffffff;
    pointer-events: none;
}

.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

.page-bg__blob {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
}

.page-bg__blob-shape {
    display: block;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    filter: blur(72px);
    -webkit-filter: blur(72px);
}

.page-bg__blob-shape--teal {
    background: var(--accent-teal);
    opacity: 0.4;
}

.page-bg__blob-shape--amber {
    background: var(--accent-amber);
    opacity: 0.38;
}

.page-bg__blob-shape--coral {
    background: var(--accent-coral);
    opacity: 0.36;
}

.page-bg__blob-shape--violet {
    background: var(--accent-violet);
    opacity: 0.34;
}

.page-bg__blob-shape--sky {
    background: var(--accent-sky);
    opacity: 0.36;
}

.page-bg__blob-shape--teal-soft {
    background: var(--accent-teal);
    opacity: 0.28;
}

.page-bg__blob--teal {
    width: min(340px, 52vw);
    height: min(340px, 52vw);
}

.page-bg__blob--amber {
    width: min(300px, 48vw);
    height: min(300px, 48vw);
}

.page-bg__blob--coral {
    width: min(280px, 44vw);
    height: min(280px, 44vw);
}

.page-bg__blob--violet {
    width: min(260px, 40vw);
    height: min(260px, 40vw);
}

.page-bg__blob--sky {
    width: min(320px, 50vw);
    height: min(320px, 50vw);
}

.page-bg__blob--teal-soft {
    width: min(220px, 36vw);
    height: min(220px, 36vw);
}

h1, h2, h3, p {
    margin: 0;
}

.container {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 16px 0;
    background: var(--bg-elevated);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-black);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md);
    padding: 6px 10px;
    margin: -6px -10px;
    transition: background var(--transition);
}

.brand:hover {
    background: var(--accent-amber-soft);
}

.brand__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.brand__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 55%, #c026d3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand__subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-amber);
    letter-spacing: 0.02em;
}

.site-main {
    flex: 1;
    padding: 28px 0 40px;
}

.site-footer {
    padding: 20px 0 28px;
    border-top: 1px solid var(--border-black);
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
}

.site-footer p {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.screen {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.28s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--border-black);
    border-radius: var(--radius-lg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -15%;
    width: 55%;
    height: 130%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 45%;
    height: 100%;
    pointer-events: none;
}

.hero__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b45309;
    background: #fef3c7;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.hero__title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 42%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 52ch;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border-black);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.menu-btn:hover:not(:disabled) {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.menu-btn:active:not(:disabled) {
    transform: translateY(0);
    background: var(--accent-amber-soft);
}

.menu-btn:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.menu-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.menu-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    border: 1px solid var(--border-teal);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.menu-btn__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.menu-btn__icon--soft {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-muted);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.menu-btn--accent .menu-btn__icon {
    color: #c2410c;
    background: var(--accent-amber-soft);
    border-color: var(--border-amber);
}

.menu-btn__content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.menu-btn__label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

.menu-btn__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: var(--text-muted);
    background: var(--bg-muted);
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.menu-btn__arrow svg {
    width: 16px;
    height: 16px;
    display: block;
}

.menu-btn--accent {
    background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.menu-btn--grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 118px;
    padding: 16px;
}

.menu-btn--grid .menu-btn__content {
    width: 100%;
    align-items: flex-start;
}

.menu-btn--grid .menu-btn__label {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.menu-btn--grid:hover:not(:disabled) .menu-btn__icon {
    border-color: var(--border-teal);
    transform: scale(1.05);
}

.menu-btn--grid:nth-child(8n+1) .menu-btn__icon {
    color: #0f766e;
    background: var(--accent-teal-soft);
    border-color: var(--border-teal);
}

.menu-btn--grid:nth-child(8n+2) .menu-btn__icon {
    color: #0369a1;
    background: var(--accent-sky-soft);
    border-color: rgba(2, 132, 199, 0.22);
}

.menu-btn--grid:nth-child(8n+3) .menu-btn__icon {
    color: #b45309;
    background: var(--accent-amber-soft);
    border-color: var(--border-amber);
}

.menu-btn--grid:nth-child(8n+4) .menu-btn__icon {
    color: #7c3aed;
    background: var(--accent-violet-soft);
    border-color: rgba(139, 92, 246, 0.22);
}

.menu-btn--grid:nth-child(8n+5) .menu-btn__icon,
.menu-btn--grid:nth-child(8n+6) .menu-btn__icon {
    color: #be185d;
    background: var(--accent-coral-soft);
    border-color: rgba(236, 72, 153, 0.22);
}

.menu-btn--grid:nth-child(8n+7) .menu-btn__icon {
    color: #0369a1;
    background: #dbeafe;
    border-color: rgba(59, 130, 246, 0.22);
}

.menu-btn--grid:nth-child(8n) .menu-btn__icon {
    color: #0f766e;
    background: #d1fae5;
    border-color: rgba(16, 185, 129, 0.22);
}

.menu-btn--list {
    padding: 14px 14px 14px 16px;
    gap: 12px;
}

.menu-btn--list .menu-btn__label {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
}

.menu-btn--list:hover:not(:disabled) .menu-btn__arrow {
    color: #ffffff;
    background: var(--accent-teal);
    transform: translateX(2px);
}

.screen-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.screen-title {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.35;
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.screen-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-item.is-open {
    border-color: var(--border-teal);
}

.faq-item__trigger {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 16px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-item__trigger:hover {
    background: var(--bg-muted);
}

.faq-item__trigger:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: -2px;
}

.faq-item__icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    border: 1px solid var(--border-teal);
    transform-origin: center center;
    transition:
        transform 0.28s ease,
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

.faq-item__icon::before {
    width: 14px;
    height: 2px;
}

.faq-item__icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    color: #b45309;
    background: var(--accent-amber-soft);
    border-color: var(--border-amber);
}

.faq-item__question {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
}

.faq-item.is-open .faq-item__panel {
    grid-template-rows: 1fr;
}

.faq-item__panel[hidden] {
    display: none;
}

.faq-item__answer {
    overflow: hidden;
    min-height: 0;
}

.faq-item__answer p {
    margin: 0;
    padding: 0 16px 16px 60px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.24s ease 0.04s,
        transform 0.28s ease;
}

.faq-item.is-open .faq-item__answer p {
    opacity: 1;
    transform: translateY(0);
}

.content-card {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-black);
    box-shadow: var(--shadow-md);
}

.content-card--rich {
    padding: 20px;
}

.docs-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.docs-card__title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.docs-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.docs-card__intro {
    margin: 0 0 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.docs-card--accent {
    background: linear-gradient(135deg, #ecfdf5, #fef3c7);
    border-color: var(--border-teal);
}

.docs-card--accent .docs-card__title {
    color: var(--accent-teal);
}

.docs-card--accent .docs-card__text {
    font-size: 1rem;
    font-weight: 600;
}

.icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon--inline,
.icon--section,
.icon--highlight,
.icon--callout,
.icon--lead,
.icon--spec,
.icon--check,
.icon--contact {
    display: block;
}

.rich-text__inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon--contact {
    color: var(--accent-teal);
}

.icon--check {
    width: 18px;
    height: 18px;
    color: var(--accent-teal);
}

.icon--spec {
    width: 22px;
    height: 22px;
    color: var(--accent-teal);
}

.icon--section {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.icon--highlight {
    width: 18px;
    height: 18px;
    color: var(--accent-amber);
}

.icon--callout {
    width: 18px;
    height: 18px;
    color: var(--accent-amber);
}

.icon--lead {
    width: 18px;
    height: 18px;
    color: var(--accent-teal);
}

.rich-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-primary);
}

.rich-text > * {
    margin: 0;
}

.rich-text__spec-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.rich-text__spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    border: 1px solid var(--border-teal);
}

.rich-text__spec-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.rich-text__spec-code {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    border: 1px solid var(--border-teal);
}

.rich-text__spec-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.rich-text__meta {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    border: 1px solid var(--border-black);
}

.rich-text__meta-row {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    gap: 10px 16px;
    align-items: start;
}

.rich-text__meta-row dt {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.rich-text__meta-row dd {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.rich-text__section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.rich-text__section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.rich-text__section-label--icon,
.rich-text__paragraph--icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rich-text__paragraph {
    margin: 0;
    color: var(--text-primary);
}

.rich-text__paragraph--lead {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.rich-text__highlight--icon,
.rich-text__callout--icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rich-text__highlight--icon::before {
    display: none;
}

.rich-text__highlight {
    position: relative;
    margin: 0;
    padding: 10px 12px 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-muted);
    border: 1px solid var(--border-subtle);
}

.rich-text__highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 999px;
    background: var(--accent-amber);
}

.rich-text__callout {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.rich-text__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rich-text__list--checks .rich-text__item--check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.rich-text__list--checks .rich-text__item--check::before {
    display: none;
}

.rich-text__check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1em;
}

.rich-text__item {
    position: relative;
    padding-left: 18px;
    color: var(--text-primary);
}

.rich-text__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-teal);
    opacity: 0.85;
}

.rich-text__list--checks .rich-text__item {
    padding-left: 0;
}

.rich-text__list--checks .rich-text__item::before {
    display: none;
}

.rich-text__address {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--bg-muted);
    border: 1px solid var(--border-subtle);
}

.rich-text__address-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-teal);
}

.rich-text__contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.rich-text__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    border: 1px solid var(--border-teal);
}

.rich-text__contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.rich-text__contact-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.rich-text__contact-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.rich-text__contact-value {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-primary);
}

.rich-text__link {
    color: var(--accent-teal);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.rich-text__link--phone {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.rich-text__link--email,
.rich-text__link--website {
    word-break: break-word;
}

.rich-text__link:hover {
    color: var(--accent-teal-strong);
}

@media (max-width: 600px) {
    .content-card--rich {
        padding: 16px;
    }

    .rich-text__meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.map-card {
    margin: 0;
}

.map-card__preview {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.map-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.back-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 10px;
    border: 1px solid var(--border-black);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-secondary);
    font: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.back-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--accent-teal);
    background: var(--accent-teal-soft);
    transition: color var(--transition), background var(--transition);
}

.back-btn__icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.back-btn__label {
    line-height: 1;
}

.back-btn:hover:not(:disabled) {
    color: var(--accent-teal);
    border-color: var(--border-teal);
    background: var(--accent-teal-soft);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.12);
}

.back-btn:hover:not(:disabled) .back-btn__icon {
    color: #ffffff;
    background: var(--accent-teal);
}

.back-btn:active:not(:disabled) {
    background: #99f6e4;
}

.back-btn:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.back-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .site-main {
        padding: 20px 0 32px;
    }

    .hero {
        padding: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .menu-btn--grid {
        flex-direction: row;
        align-items: center;
        min-height: auto;
        padding: 14px 16px;
    }

    .menu-btn--grid .menu-btn__content {
        align-items: center;
    }

    .menu-btn--grid .menu-btn__label {
        -webkit-line-clamp: 2;
    }

    .menu-btn--list {
        padding: 13px 12px 13px 14px;
        gap: 10px;
    }

    .menu-btn__icon--soft {
        width: 34px;
        height: 34px;
    }

    .brand__logo {
        width: 42px;
        height: 42px;
    }

    .brand__title {
        font-size: 1.125rem;
    }

    .faq-item__trigger {
        padding: 14px;
        gap: 10px;
    }

    .faq-item__answer p {
        padding: 0 14px 14px 52px;
    }
}

@media (min-width: 601px) {
    .menu-btn--grid .menu-btn__icon {
        width: 44px;
        height: 44px;
    }

    .menu-btn--grid .menu-btn__icon svg {
        width: 21px;
        height: 21px;
    }
}
