:root {
    --brand: #e2231a;
    --brand-dark: #b71c13;
    --accent: #2faa3f;
    --accent-dark: #228a30;
    --charcoal: #3f3f3f;
    --text: #2d2d2d;
    --muted: #5b6270;
    --bg: #faf7f2;
    --card: #ffffff;
    --line: #e7e2d2;
    --border: #e5e1d8;
    --ok-bg: #e7f6ec;
    --ok-fg: #1e7e44;
    --err: #c0392b;
    --radius: 12px;
    --shadow: 0 6px 20px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 20px; }

.site-header { background: var(--card); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 20px; color: var(--brand); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 50px; width: auto; display: block; }
.brand-tag { color: var(--accent-dark); font-weight: 700; letter-spacing: .4px; margin: 0 0 6px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--text); font-weight: 600; }
.inline-form { display: inline; margin: 0; }
.link-button { background: none; border: none; color: var(--text); font: inherit; font-weight: 600; cursor: pointer; padding: 0; }
.link-button:hover { color: var(--brand); }

.main { padding: 32px 20px 56px; min-height: calc(100vh - 64px - 60px); }

.btn { display: inline-block; padding: 10px 18px; border-radius: var(--radius); font-weight: 700; cursor: pointer; border: 1px solid transparent; text-align: center; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-outline { background: #fff; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: #fff5f3; }
.btn-lg { padding: 14px 26px; font-size: 17px; }
.btn-block { width: 100%; }

.hero { text-align: center; padding: 48px 0 28px; }
.hero h1 { font-size: 34px; margin: 0 0 12px; }
.hero .lead { font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto 24px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.feature h3 { margin: 0 0 8px; color: var(--brand-dark); }

.form-wrap { max-width: 460px; margin: 0 auto; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-wrap h1 { margin-top: 0; }
.form label { display: block; font-weight: 600; margin-top: 14px; }
.form input, .form select, .form textarea { width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; margin-top: 16px; }
.checkbox input { width: auto; margin-top: 4px; }
.error { display: block; color: var(--err); font-size: 13px; margin-top: 4px; }
.form .btn-block { margin-top: 20px; }
.form-foot { text-align: center; margin-top: 16px; color: var(--muted); }
.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }

.page-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 20px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 4px; }
.empty { grid-column: 1 / -1; text-align: center; padding: 32px; background: var(--card); border: 1px dashed var(--border); border-radius: var(--radius); }

.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; background: #eef0f2; color: var(--muted); }
.badge-success { background: var(--ok-bg); color: var(--ok-fg); }
.badge-warn { background: #fff4e0; color: #b9770e; }

.plan-list { display: grid; gap: 12px; margin-top: 8px; }
.plan-option { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--border); border-radius: 10px; padding: 14px; cursor: pointer; background: #fff; }
.plan-option:hover { border-color: var(--accent); }
.plan-option input { margin-top: 4px; }
.plan-body { display: flex; flex-direction: column; gap: 2px; }
.plan-price { font-weight: 700; color: var(--brand-dark); }

.btn-sm { padding: 6px 12px; font-size: 14px; }
.mt-8 { margin-top: 8px; }

.admin-nav { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.admin-nav a { padding: 10px 14px; font-weight: 600; color: var(--muted); border-bottom: 3px solid transparent; }
.admin-nav a.active { color: var(--brand); border-bottom-color: var(--brand); }
.admin-nav a:hover { text-decoration: none; color: var(--brand); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 16px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--brand-dark); }
.stat-label { color: var(--muted); font-size: 14px; }
.filter-bar { margin: 12px 0 18px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.filter-bar select, .filter-bar input { padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; font: inherit; background: #fff; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.table th { background: #f5f1ea; font-weight: 700; }
.table tr:last-child td { border-bottom: none; }
.alert-warn { background: #fff4e0; color: #b9770e; border: 1px solid #f3d9a8; }
.badge-err { background: #fdecea; color: var(--err); }

.prose { max-width: 760px; }
.prose h2 { margin-top: 28px; color: var(--brand-dark); font-size: 20px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 4px; }
.footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; padding-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; }

.hero-img { position: relative; min-height: 420px; border-radius: 16px; overflow: hidden; display: flex; align-items: center; background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.35)), var(--hero); background-size: cover; background-position: center; margin-top: 8px; }
.hero-video { position: relative; min-height: 440px; border-radius: 16px; overflow: hidden; display: flex; align-items: center; margin-top: 8px; background: #1a1a1a; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.40)); z-index: 1; }
.hero-video .hero-overlay { position: relative; z-index: 2; }
.hero-overlay { color: #fff; padding: 36px; max-width: 640px; }
.hero-overlay h1 { font-size: 34px; margin: 0 0 12px; color: #fff; }
.hero-overlay .lead { color: #f1f1f1; font-size: 18px; margin-bottom: 22px; }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: #f3f3f3; }
.cta-band { margin-top: 36px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-band h2 { margin: 0 0 4px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-body { padding: 18px; }
.service-body h3 { margin: 0 0 8px; color: var(--brand-dark); }
@media (max-width: 720px) { .hero-overlay h1 { font-size: 26px; } }

.section-title { text-align: center; margin: 44px 0 6px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 18px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.value-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.value-body { padding: 16px; }
.value-body h3 { margin: 0 0 6px; color: var(--brand-dark); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 18px; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; display: block; }
.about-hero { width: 100%; max-height: 320px; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; }

.hero-badge { display: inline-block; background: rgba(255,255,255,.9); color: var(--brand-dark); font-weight: 800; font-size: 13px; letter-spacing: .4px; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0 8px; }
.stat-pill { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; box-shadow: var(--shadow); }
.stat-pill strong { display: block; font-size: 22px; color: var(--brand); }
.stat-pill span { color: var(--muted); font-size: 13px; }

.steps-section { margin-top: 8px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; box-shadow: var(--shadow); }
.step-no { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 10px; }
.step h3 { margin: 4px 0 6px; }
.center { text-align: center; margin-top: 22px; }

.menu-teaser { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: center; margin-top: 44px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.menu-teaser h2 { margin-top: 0; }
.menu-teaser-img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 18px; }
.menu-day { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.menu-day h3 { margin: 0 0 10px; color: var(--brand); border-bottom: 2px solid var(--accent); padding-bottom: 6px; }
.menu-day ul { margin: 0; padding-left: 18px; }
.menu-day li { margin-bottom: 5px; }

.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 4px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 12px 0; color: var(--text); }
.faq details[open] summary { color: var(--brand); }
.faq p { margin: 0 0 14px; color: #3a3a3a; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 16px; }
.contact-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.contact-label { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; }

@media (max-width: 720px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .menu-teaser { grid-template-columns: 1fr; }
}
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; }
.alert-success { background: var(--ok-bg); color: var(--ok-fg); border: 1px solid #bfe6cd; }

.muted { color: var(--muted); }
.small { font-size: 13px; }

.site-footer { border-top: 1px solid var(--border); background: var(--card); }
.site-footer p { color: var(--muted); font-size: 14px; text-align: center; padding: 18px 0; margin: 0; }

.site-footer .footer-credit {
    padding: 0 0 18px; font-size: 12.5px; opacity: .8; line-height: 1.55;
}
.site-footer .footer-credit a { color: var(--muted); text-decoration: underline; font-weight: 600; }
.site-footer .footer-credit a:hover { color: var(--brand); }

.footer-pay { display: flex; justify-content: center; padding: 2px 0 14px; }

.footer-pay .pay-band { max-height: 28px; max-width: 100%; height: auto; width: auto; display: block; }

.pay-with-iyzico { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 18px 0 4px; }
.pay-with-iyzico img { height: 46px; width: auto; display: block; }

@media (max-width: 720px) {
    .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 27px; }
}

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1100;
    background: var(--brand-dark); color: #fff; font-weight: 700;
    padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, .btn:focus-visible, button:focus-visible,
summary:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--accent-dark);
    outline-offset: 2px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.badge-warn { color: #8a5300; }
.alert-warn { color: #8a5300; }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 8px; background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--charcoal); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.wa-fab {
    position: fixed; right: 18px; bottom: 18px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.wa-fab:hover { background: #1ebe57; text-decoration: none; color: #fff; }

@media (max-width: 760px) {
    .header-inner { position: relative; }
    .nav-toggle { display: flex; }
    .nav {
        display: none; position: absolute; left: 0; right: 0; top: 64px;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--card); border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow); padding: 6px 16px 16px; z-index: 800;
    }
    .nav.open { display: flex; }
    .nav a, .nav .link-button {
        width: 100%; text-align: left; padding: 14px 4px;
        border-bottom: 1px solid var(--border);
    }
    .nav .inline-form { display: block; width: 100%; border-bottom: 1px solid var(--border); }
    .nav .inline-form .link-button { border-bottom: none; }
    .nav .btn-primary { margin-top: 12px; text-align: center; border-bottom: none; }

    .footer-links { flex-direction: column; gap: 2px; }
    .footer-links a { padding: 10px 0; display: inline-block; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .main { padding: 22px 14px 40px; }
    .hero-video { min-height: 360px; }
    .hero-overlay { padding: 22px 18px; }
    .hero-overlay h1 { font-size: 23px; }
    .hero-overlay .lead { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn, .center .btn, .cta-band .btn { width: 100%; }
    .cta-band { flex-direction: column; align-items: stretch; }
    .btn-lg { padding: 13px 18px; font-size: 16px; }
    .menu-teaser-img { height: 200px; }
    .form-wrap { padding: 22px 18px; }
    .form-actions { flex-direction: column-reverse; gap: 10px; }
    .form-actions .btn { width: 100%; }
    .page-head { align-items: stretch; }
    .page-head .btn { width: 100%; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-bar label, .filter-bar select, .filter-bar input { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg { display: none; }
    .hero-video {
        background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.40)), url('/images/hero_branded.webp');
        background-size: cover; background-position: center;
    }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.alert-error { background: #fdecea; color: #a02012; border: 1px solid #f5c6c0; }
.alert-error ul { margin: 8px 0 0; padding-left: 20px; }
.alert-error li { margin-bottom: 2px; }

.plan-summary { background: #f5f1ea; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; margin: 16px 0; }
.plan-summary ul { margin: 8px 0 6px; padding-left: 20px; }
.plan-summary li { margin-bottom: 3px; }

.plans-section { margin-top: 44px; }
.plans-intro { text-align: center; max-width: 620px; margin: 0 auto 18px; }
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; text-align: center; }
.plan-card h3 { margin: 0 0 6px; color: var(--brand-dark); font-size: 17px; }
.plan-card .small { flex: 1; }
.plan-card-price { font-size: 26px; font-weight: 800; color: var(--brand); margin: 12px 0 16px; }
.plan-card-price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.plans-foot { text-align: center; margin-top: 12px; }

.menu-day .meal-label { font-weight: 700; color: var(--accent-dark); font-size: 12px; letter-spacing: .3px; text-transform: uppercase; margin: 12px 0 2px; }
.menu-day .meal-label:first-of-type { margin-top: 4px; }

.form-row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.form-row-between .checkbox { margin-top: 0; }

.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 14px 0; box-shadow: var(--shadow); max-width: 520px; }

.acct-section { margin: 28px 0 4px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 18px; }
.acct-danger { color: var(--err); }
.acct-delete-btn { color: var(--err); border-color: var(--err); }
.acct-delete-btn:hover { background: #fdecea; }

.error-page { text-align: center; max-width: 560px; margin: 40px auto; padding: 20px 16px; }
.error-page .error-code { font-size: 64px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.error-page h1 { margin: 0 0 10px; }
.error-page .hero-actions { justify-content: center; margin-top: 22px; }

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 500 800;
    font-display: swap;
    src: url('/fonts/fraunces-latin-ext.woff2') format('woff2');

    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 500 800;
    font-display: swap;
    src: url('/fonts/fraunces-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {

    --ink: #1f1a17;
    --ink-2: #423a34;
    --muted: #6f6560;

    --brand: #d0271b;
    --brand-dark: #a71d13;
    --brand-wash: #fdf1ef;

    --accent: #2faa3f;
    --accent-dark: #1f7d2c;

    --bg: #fbf8f3;
    --bg-deep: #f4ece0;
    --card: #ffffff;

    --line: rgba(31,26,23,.10);
    --border: rgba(31,26,23,.10);

    --shadow: 0 1px 2px rgba(31,26,23,.05), 0 8px 24px -12px rgba(31,26,23,.18);
    --shadow-lift: 0 2px 4px rgba(31,26,23,.06), 0 18px 40px -18px rgba(31,26,23,.28);

    --radius: 14px;
    --radius-lg: 22px;

    --display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sp-section: clamp(52px, 7vw, 92px);
    --measure: 62ch;
}

body { color: var(--ink-2); background: var(--bg); line-height: 1.6; }

h1, h2, .section-title, .hero-overlay h1 {
    font-family: var(--display);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.12;
    font-optical-sizing: auto;
}
h3 { color: var(--ink); font-weight: 700; letter-spacing: -.005em; }
h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
h2, .section-title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }

.section-title { margin: var(--sp-section) 0 10px; }
.section-title::after {
    content: ''; display: block; width: 54px; height: 3px; border-radius: 2px;
    background: var(--brand); margin: 14px auto 0;
}
.plans-intro, .lead { max-width: var(--measure); }

.btn {
    border-radius: 999px; padding: 12px 22px; font-weight: 700; letter-spacing: .01em;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary { background: var(--brand); box-shadow: 0 6px 16px -6px rgba(208,39,27,.6); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(208,39,27,.65); }
.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); transform: translateY(-1px); }
.btn-light:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 17px; }

.hero-video {
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    width: 100vw; max-width: 100vw;
    border-radius: 0; min-height: min(76vh, 620px);
    margin-top: -32px; margin-bottom: var(--sp-section);
    align-items: flex-end;
}

.hero-video::after {
    background:
        linear-gradient(to top, rgba(20,14,11,.88) 0%, rgba(20,14,11,.55) 38%, rgba(20,14,11,.15) 70%, rgba(20,14,11,.30) 100%),
        linear-gradient(to right, rgba(20,14,11,.55) 0%, rgba(20,14,11,0) 60%);
}
.hero-overlay { padding: 0 20px clamp(34px, 5vw, 60px); max-width: 1040px; margin: 0 auto; width: 100%; }
.hero-overlay h1 { font-size: clamp(2.05rem, 5vw, 3.4rem); color: #fff; margin-bottom: 14px; max-width: 15ch; }
.hero-overlay .lead { color: rgba(255,255,255,.86); font-size: clamp(16px, 1.6vw, 19px); max-width: 56ch; }
.hero-badge {
    background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.28); font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; font-size: 11.5px; padding: 7px 14px;
}

.stats-band {
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    gap: 0; overflow: hidden; margin: 0 0 var(--sp-section);
    background: linear-gradient(180deg, #fff, var(--bg-deep));
    box-shadow: var(--shadow);
}
.stat-pill {
    background: transparent; border: 0; border-radius: 0; box-shadow: none;
    padding: 26px 18px; position: relative;
}
.stat-pill + .stat-pill::before {
    content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
    width: 1px; background: var(--line);
}
.stat-pill strong {
    font-family: var(--display); font-size: clamp(20px, 2.2vw, 27px);
    color: var(--ink); font-weight: 700; letter-spacing: -.01em;
}
.stat-pill span { color: var(--muted); font-size: 13px; }

.value-grid, .service-grid { margin-top: 30px; gap: 26px; }
.value-card, .service-card {
    border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover, .service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.value-card img, .service-card img { height: 210px; }
.value-body, .service-body { padding: 22px; }
.value-body h3, .service-body h3 { color: var(--ink); font-size: 18px; margin-bottom: 8px; }
.value-body p, .service-body p { color: var(--muted); margin: 0; }

.steps { margin-top: 34px; gap: 26px; position: relative; }
.step { background: transparent; border: 0; box-shadow: none; padding: 0 8px; }
.step-no {
    width: 52px; height: 52px; background: #fff; color: var(--brand);
    border: 2px solid var(--brand); font-family: var(--display); font-size: 21px;
    box-shadow: 0 0 0 6px var(--bg); margin-bottom: 14px;
}
.step h3 { font-size: 18px; }
.step p { color: var(--muted); margin: 0; }

@media (min-width: 721px) {
    .steps::before {
        content: ''; position: absolute; top: 26px; left: 16%; right: 16%;
        height: 2px; background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
        z-index: 0;
    }
    .step { position: relative; z-index: 1; }
}

.plan-cards { gap: 20px; margin-top: 34px; }
.plan-card {
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px;
    box-shadow: var(--shadow); position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(208,39,27,.35); }
.plan-card h3 { color: var(--ink); font-size: 16px; letter-spacing: .01em; }
.plan-card-price {
    font-family: var(--display); font-size: clamp(30px, 3.4vw, 40px); font-weight: 700;
    color: var(--ink); margin: 16px 0 20px; letter-spacing: -.02em;
}
.plan-card-price span { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: 0; }

.plan-card.is-featured {
    border-color: var(--brand);
    box-shadow: 0 2px 6px rgba(31,26,23,.06), 0 20px 44px -20px rgba(208,39,27,.5);
    background: linear-gradient(180deg, var(--brand-wash), #fff 42%);
}
.plan-card.is-featured .plan-card-price { color: var(--brand-dark); }
.plan-card.is-featured .btn-outline { background: var(--brand); color: #fff; border-color: var(--brand); }
.plan-card.is-featured .btn-outline:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.plan-flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff; font-size: 11.5px; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
    white-space: nowrap; box-shadow: 0 6px 14px -6px rgba(208,39,27,.7);
}

.menu-teaser {
    background: var(--bg-deep); border: 0; box-shadow: none; border-radius: 0;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    width: 100vw; max-width: 100vw;
    margin-top: var(--sp-section); margin-bottom: var(--sp-section);
    padding: clamp(36px, 5vw, 64px) max(20px, calc(50vw - 500px));
    gap: clamp(24px, 4vw, 52px);
}
.menu-teaser h2 { margin-bottom: 12px; }
.menu-teaser p { color: var(--ink-2); }
.menu-teaser-img { height: clamp(220px, 30vw, 320px); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }

.gallery { gap: 14px; margin-top: 30px; grid-template-columns: repeat(4, 1fr); }
.gallery img { height: 190px; border-radius: var(--radius); transition: transform .25s ease; }
.gallery img:hover { transform: scale(1.02); }
@media (min-width: 861px) {
    .gallery img:first-child { grid-column: span 2; grid-row: span 2; height: 394px; }
}
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.cta-band {
    background: linear-gradient(135deg, #241a15, #3a2a20);
    border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
    padding: clamp(30px, 4vw, 46px); margin-top: var(--sp-section);
    color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p, .cta-band .muted { color: rgba(255,255,255,.72); margin: 0; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: #ffe9e6; color: var(--brand-dark); }

.site-header {
    border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 850;
    background: rgba(255,255,255,.88); backdrop-filter: saturate(1.6) blur(10px);
}
.nav a { color: var(--ink-2); font-weight: 600; }
.nav a:hover { color: var(--brand); text-decoration: none; }
.nav .btn-primary { color: #fff; }
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer-links a:hover { color: var(--brand); }

.card, .feature, .form-wrap, .contact-form, .contact-item, .menu-day, .faq details, .stat {
    border-color: var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.feature h3, .menu-day h3, .prose h2, .plan-price { color: var(--ink); }
.menu-day h3 { border-bottom-color: var(--brand); }
.hero h1, .error-page .error-code { font-family: var(--display); }

.value-section, .steps-section, .plans-section, .gallery-section { margin-top: 0; }
.main { padding-top: 32px; }

@media (max-width: 720px) {
    .hero-video { min-height: 68vh; margin-top: -22px; }
    .stats-band { border-radius: var(--radius); }
    .stat-pill { padding: 20px 12px; }

    .stat-pill:nth-child(3)::before { display: none; }
    .stat-pill:nth-child(3), .stat-pill:nth-child(4) { border-top: 1px solid var(--line); }
    .steps { gap: 30px; }
    .menu-teaser { padding-left: 20px; padding-right: 20px; }
}

html, body { overflow-x: hidden; }
body { max-width: 100%; }

.hero-overlay .hero-actions { justify-content: flex-start; margin-top: 26px; }

@media (min-width: 861px) {
    .gallery img:last-child { grid-column: span 2; }
}

@media (max-width: 420px) {
    .stat-pill { padding: 18px 8px; }
    .stat-pill span { font-size: 12px; line-height: 1.35; display: block; }
    .stat-pill strong { font-size: 20px; }
}

.form input[type="radio"],
.form input[type="checkbox"] {
    width: auto;
    margin-top: 0;
    accent-color: var(--brand);
}

.form input[type="radio"],
.form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    cursor: pointer;
}

.checkbox {
    min-height: 44px;
    cursor: pointer;
    padding: 4px 0;
}

.checkbox input[type="checkbox"] { margin-top: 2px; }

.checkbox a { padding: 2px 0; }

.plan-list { gap: 10px; }
.plan-option {
    align-items: center; gap: 14px; padding: 16px 18px;
    border: 1.5px solid var(--line); border-radius: var(--radius);
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.plan-option:hover { border-color: rgba(208,39,27,.45); background: #fff; }
.plan-option:has(input:checked) {
    border-color: var(--brand); background: var(--brand-wash);
    box-shadow: 0 0 0 3px rgba(208,39,27,.10);
}
.plan-option input[type="radio"] { flex: 0 0 auto; width: 20px; height: 20px; }
.plan-body { flex: 1; gap: 3px; }
.plan-body strong { font-size: 16px; color: var(--ink); }
.plan-price { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.plan-option:has(input:checked) .plan-price { color: var(--brand-dark); }
.plan-meals { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.meal-tag {
    font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    background: rgba(31,26,23,.06); color: var(--ink-2); padding: 3px 9px; border-radius: 999px;
}
.plan-option:has(input:checked) .meal-tag { background: rgba(208,39,27,.12); color: var(--brand-dark); }

.form-wrap { padding: 30px 28px; border-radius: var(--radius-lg); }
.form-wrap h1 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: 4px; }
.form label { margin-top: 18px; font-weight: 600; color: var(--ink); font-size: 14.5px; }
.form input, .form select, .form textarea {
    padding: 12px 14px; border-radius: 11px; border-color: var(--line);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:hover, .form select:hover, .form textarea:hover { border-color: rgba(31,26,23,.22); }
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(208,39,27,.13);
}
.form .btn-block { margin-top: 24px; }
.field-hint { display: block; color: var(--muted); font-size: 12.5px; margin-top: 5px; }
.form-foot { color: var(--muted); }

.req { color: var(--brand); font-weight: 700; margin-left: 2px; }
.opt { color: var(--muted); font-weight: 500; font-size: 12.5px; margin-left: 4px; }

.page-head h1 { margin: 0; }
.card-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-top: 26px; }
.card { border-radius: var(--radius-lg); padding: 22px; border-color: var(--line); }
.student-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.student-head h3 { font-size: 19px; margin: 0; }
.student-school { color: var(--muted); font-size: 14px; margin: 4px 0 14px; }
.student-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; align-items: center; }

.sub-line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.sub-plan { font-weight: 700; color: var(--ink); }
.sub-price { font-family: var(--display); font-weight: 700; color: var(--ink); }
.sub-meta { color: var(--muted); font-size: 13.5px; margin-top: 6px; }

.badge { padding: 5px 12px; font-size: 12.5px; letter-spacing: .01em; }
.badge-success { background: #e6f5ec; color: #16653a; }
.badge-warn { background: #fdf0dc; color: #8a5300; }

.empty {
    border: 1px dashed rgba(31,26,23,.18); background: #fff; border-radius: var(--radius-lg);
    padding: 40px 26px;
}
.empty h2 { font-size: 1.35rem; margin: 0 0 8px; }
.empty p { color: var(--muted); max-width: 46ch; margin: 0 auto 6px; }

.onboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0 4px; text-align: left; }
.onboard-step { display: flex; gap: 12px; align-items: flex-start; }
.onboard-no {
    flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
    display: grid; place-items: center; font-family: var(--display); font-weight: 700;
    background: var(--brand-wash); color: var(--brand-dark); border: 1.5px solid rgba(208,39,27,.3);
    font-size: 15px;
}
.onboard-step strong { display: block; color: var(--ink); font-size: 15px; margin-bottom: 2px; }
.onboard-step span { color: var(--muted); font-size: 13.5px; line-height: 1.45; }
@media (max-width: 760px) { .onboard { grid-template-columns: 1fr; gap: 16px; } }

.meal-counts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin: 22px 0 20px; }
.meal-count {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 18px 16px; box-shadow: var(--shadow); text-align: center;
}
.meal-count-num { display: block; font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1.05; letter-spacing: -.02em; }
.meal-count-label { display: block; color: var(--muted); font-size: 13px; margin-top: 5px; }

.meal-count.is-zero .meal-count-num { color: rgba(31,26,23,.55); }
.meal-count.is-muted { background: var(--bg-deep); box-shadow: none; }

.meal-section { margin-top: 34px; }
.meal-heading {
    font-size: 1.4rem; margin: 0 0 4px; display: flex; align-items: baseline; gap: 12px;
    border-bottom: 2px solid var(--line); padding-bottom: 10px;
}
.meal-heading-count { font-family: system-ui, sans-serif; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.school-heading { font-size: 15px; margin: 20px 0 10px; color: var(--ink-2); font-weight: 700; }

.table { border-radius: var(--radius); }
.table th { background: var(--bg-deep); color: var(--ink); font-size: 13px; letter-spacing: .02em; }

.stat { border-radius: var(--radius); padding: 20px; }
.stat-num { font-family: var(--display); font-size: 30px; color: var(--ink); letter-spacing: -.02em; }
.stat-label { font-size: 13px; }
.admin-nav { border-bottom-color: var(--line); gap: 2px; }
.admin-nav a { color: var(--muted); border-bottom-width: 2px; padding: 12px 14px; }
.admin-nav a.active { color: var(--ink); border-bottom-color: var(--brand); }

a.stat { text-decoration: none; transition: border-color .15s, transform .15s; }
a.stat:hover { border-color: var(--brand); transform: translateY(-1px); text-decoration: none; }
a.stat:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
a.stat.is-current { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); }

.stat.is-warn .stat-num { color: #b9770e; }
.stat.is-ok .stat-num { color: #16653a; }
tr.is-warn-row { background: #fffaf0; }

tr.is-muted-row { background: var(--bg-deep); }
tr.is-muted-row td { color: var(--muted); }
tr.is-warn-row td { border-bottom-color: #f0e0c0; }

.alert { border-radius: 12px; padding: 14px 16px; }
.alert-success { background: #e9f6ee; border-color: #c3e6d1; color: #16653a; }

.pay-note {
    background: var(--bg-deep); border-radius: 12px; padding: 14px 16px; margin: 18px 0 0;
    color: var(--ink-2); font-size: 14px;
}
.pay-note strong { color: var(--ink); }

@media (max-width: 520px) {
    .form-wrap { padding: 24px 20px; }
    .card-grid { grid-template-columns: 1fr; }
    .student-actions .btn { width: 100%; }
    .student-actions .inline-form { width: 100%; }
    .student-actions .inline-form .btn { width: 100%; }
}

.admin-section-title {
    font-size: 1.05rem; font-family: system-ui, sans-serif; font-weight: 700;
    color: var(--ink); letter-spacing: .01em; text-transform: none;
    margin: 30px 0 12px;
}
.admin-section-title:first-of-type { margin-top: 22px; }

.stat-num.money { white-space: nowrap; font-size: clamp(20px, 2.2vw, 27px); }

.admin-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; margin-top: 6px; align-items: start; }
@media (max-width: 800px) { .admin-cols { grid-template-columns: 1fr; gap: 18px; } }

.todo-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 13px 16px; background: #fff; border: 1px solid var(--line);
    border-radius: 12px; margin-bottom: 8px; flex-wrap: wrap;
}
.todo-right { display: flex; align-items: center; gap: 12px; }
.todo-amount { font-family: var(--display); font-weight: 700; color: var(--ink); white-space: nowrap; }

.db { display: block; margin-top: 3px; }
.nowrap { white-space: nowrap; }
.table .plan-meals { margin-top: 5px; }
.page-head-figure { text-align: right; }
.page-head-figure .todo-amount { font-size: 24px; }
.filter-bar label { font-weight: 600; color: var(--ink-2); font-size: 14px; }

.nav a.is-current { color: var(--brand); }
.nav a.is-current::after {
    content: ''; display: block; height: 2px; border-radius: 2px;
    background: var(--brand); margin-top: 3px;
}
.nav-admin { color: var(--accent-dark) !important; font-weight: 700; }
.nav-sep { width: 1px; height: 20px; background: var(--line); margin: 0 2px; }
@media (max-width: 760px) {
    .nav-sep { width: 100%; height: 1px; margin: 6px 0; background: var(--line); }
    .nav a.is-current::after { display: none; }
    .nav a.is-current { font-weight: 700; }
}

.pw-field { position: relative; display: block; }
.pw-field input { padding-right: 76px; }
.pw-toggle {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    background: none; border: 0; color: var(--muted); font: inherit; font-size: 13px;
    font-weight: 600; cursor: pointer; padding: 8px 10px; border-radius: 8px;
}
.pw-toggle:hover { color: var(--brand); background: var(--brand-wash); }

.checkbox { gap: 11px; margin-top: 20px; line-height: 1.5; }
.checkbox input { width: 19px; height: 19px; margin-top: 1px; }

.msg-card {
    background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--line);
    border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.msg-card.is-open { border-left-color: var(--brand); }
.msg-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.msg-head strong { color: var(--ink); font-size: 16px; margin-right: 8px; }
.msg-body { margin: 12px 0 16px; color: var(--ink-2); white-space: pre-line; }
.msg-foot { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.minor-action { margin-top: 12px; }
.link-quiet { color: var(--muted); font-size: 13.5px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.link-quiet:hover { color: var(--brand); }

.split-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 32px;
    align-items: start;
}
.split-cols .card { padding: 22px; }
.split-cols .card > h2 {
    font-family: var(--display); font-size: 20px; color: var(--ink);
    margin: 0 0 12px;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 400px) { .form-grid-2 { grid-template-columns: 1fr; } }

.plain-list { margin: 0; padding-left: 20px; color: var(--ink-2); }
.plain-list li { margin-bottom: 10px; line-height: 1.55; }

.credit-note {
    margin: 12px 0 0;
    padding: 10px 14px;
    background: #eef8f0;
    border-left: 3px solid var(--accent-dark);
    border-radius: 8px;
    font-size: 14.5px;
    color: #1c5f2a;
}
.warn-text { color: #8a4b12; }

.absence { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 6px; }
.absence > summary {
    cursor: pointer;
    padding: 11px 2px;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink-2);
    list-style: none;
}
.absence > summary::-webkit-details-marker { display: none; }
.absence > summary::before {
    content: '+';
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; flex: 0 0 20px;
    border: 1px solid var(--line); border-radius: 6px;
    font-weight: 700; line-height: 1; color: var(--muted);
}
.absence[open] > summary::before { content: '−'; }
.absence > summary:hover { color: var(--brand); }
.absence > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

.absence-count {
    background: var(--brand-wash); color: var(--brand-dark);
    border-radius: 999px; padding: 1px 9px; font-size: 12.5px; font-weight: 700;
}

.absence-body { padding: 4px 2px 8px; }
.absence-body .form { margin-top: 14px; }
.absence-body .field-hint { margin-top: 12px; display: block; }

.absence-list { list-style: none; margin: 0 0 4px; padding: 0; }
.absence-list li {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.absence-list li:last-child { border-bottom: 0; }
.absence-list strong { display: block; color: var(--ink); font-weight: 650; }
.absence-list form { margin: 0; }
.absence-list .link-button { min-height: 32px; }

.school-row { margin-bottom: 14px; }
.school-row .form { margin: 0; }
.school-row .student-actions { margin-top: 14px; align-items: center; }

.table tr.is-past td { color: var(--muted); }

.plan-list { border: 0; margin: 0; padding: 0; min-width: 0; }
.plan-list > legend {
    padding: 0; margin: 0 0 12px; font-weight: 700; color: var(--ink);
    font-size: 15px;
}

.table .link-button,
.minor-action .link-button,
.absence-list .link-button,
.msg-foot .link-button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 2px;
}
details > summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
}
