@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500;700&display=swap');

:root {
  --ed-bg: #f7f3ec;
  --ed-bg-alt: #efe9dc;
  --ed-bg-warm: #ede4cf;
  --ed-card: #ffffff;
  --ed-ink: #1a1f2c;
  --ed-ink-soft: #2c3243;
  --ed-ink-muted: #4a5063;
  --ed-rule: #d8d2c2;
  --ed-rule-soft: #e6e0cf;
  --ed-emerald: #2f7d52;
  --ed-emerald-deep: #245d3e;
  --ed-emerald-soft: #e3efe7;
  --ed-warm-gray: #cfc7b6;
  --ed-shadow-sm: 0 2px 6px rgba(26,31,44,.05);
  --ed-shadow: 0 6px 18px rgba(26,31,44,.06);
  --ed-shadow-lg: 0 18px 40px rgba(26,31,44,.10);
  --ed-radius-sm: 4px;
  --ed-radius: 6px;
  --ed-radius-lg: 12px;
  --ed-content-width: 1180px;
  --ed-gap: 32px;
  --ed-font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --ed-font-sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ed-font-sans); color: var(--ed-ink); background: var(--ed-bg); line-height: 1.75; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ed-ink); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ed-emerald); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--ed-font-serif); font-weight: 600; color: var(--ed-ink); line-height: 1.45; }
h1 { font-size: 2.4rem; letter-spacing: .01em; }
h2 { font-size: 1.85rem; letter-spacing: .01em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em 0; color: var(--ed-ink-soft); }
small { font-size: .82rem; color: var(--ed-ink-muted); }

.container { max-width: var(--ed-content-width); margin: 0 auto; padding: 0 28px; width: 100%; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: var(--ed-radius); font-weight: 500; font-size: .98rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.btn i { font-size: 1.05rem; }
.btn-primary { background: var(--ed-emerald); color: #fff; border: 1px solid var(--ed-emerald); }
.btn-primary:hover { background: var(--ed-emerald-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ed-ink); border: 1px solid var(--ed-ink); }
.btn-outline:hover { background: var(--ed-ink); color: #fff; }
.btn-ghost { background: var(--ed-bg-alt); color: var(--ed-ink); border: 1px solid var(--ed-rule); }
.btn-ghost:hover { background: var(--ed-bg-warm); color: var(--ed-ink); }
.btn-link { color: var(--ed-emerald); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.btn-link:hover { color: var(--ed-emerald-deep); }

.site-header { background: var(--ed-bg); border-bottom: 1px solid var(--ed-rule-soft); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; border-radius: var(--ed-radius-sm); background: var(--ed-ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ed-font-serif); font-weight: 700; font-size: 1.05rem; }
.brand-name { font-family: var(--ed-font-serif); font-size: 1.08rem; font-weight: 600; color: var(--ed-ink); line-height: 1.2; }
.brand-sub { font-size: .76rem; color: var(--ed-ink-muted); }

.nav-main { display: flex; align-items: center; gap: 28px; }
.nav-main > ul { display: flex; align-items: center; gap: 24px; }
.nav-main a { font-size: .94rem; color: var(--ed-ink-soft); position: relative; padding: 8px 0; }
.nav-main a:hover { color: var(--ed-emerald); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-menu { position: absolute; top: 100%; left: -16px; min-width: 320px; background: #fff; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius); box-shadow: var(--ed-shadow); padding: 14px 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 16px; border-radius: 4px; font-size: .92rem; color: var(--ed-ink-soft); }
.nav-dropdown-menu a:hover { background: var(--ed-bg-alt); color: var(--ed-emerald); }
.nav-cta { background: var(--ed-emerald); color: #fff; padding: 10px 20px; border-radius: var(--ed-radius); font-size: .92rem; font-weight: 500; transition: background .2s; }
.nav-cta:hover { background: var(--ed-emerald-deep); color: #fff; }
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-sm); }
.nav-toggle i { font-size: 1.4rem; color: var(--ed-ink); }

.hero { position: relative; min-height: 540px; display: flex; align-items: center; background-image: linear-gradient(115deg, rgba(26,31,44,.78) 0%, rgba(26,31,44,.45) 55%, rgba(26,31,44,.15) 100%), url('../media/hero-yuutai-desk.jpg'); background-size: cover; background-position: center; color: #fff; padding: 80px 0; }
.hero .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--ed-gap); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .82rem; letter-spacing: .04em; color: #fff; margin-bottom: 22px; }
.hero h1 { color: #fff; font-size: 2.7rem; line-height: 1.35; margin-bottom: 18px; max-width: 620px; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 580px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side { display: none; }
@media (min-width: 1024px) { .hero-side { display: block; } }

.section { padding: 84px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--ed-bg-alt); }
.section-warm { background: var(--ed-bg-warm); }
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; max-width: 720px; }
.section-eyebrow { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ed-emerald); font-weight: 500; }
.section-head h2 { font-size: 2rem; }
.section-head .lead { color: var(--ed-ink-muted); font-size: 1.05rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { font-size: 1.02rem; }
.about-figure { border-radius: var(--ed-radius-lg); overflow: hidden; border: 1px solid var(--ed-rule); box-shadow: var(--ed-shadow); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article-card { background: var(--ed-card); border: 1px solid var(--ed-rule-soft); border-radius: var(--ed-radius-lg); overflow: hidden; box-shadow: var(--ed-shadow-sm); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: var(--ed-shadow-lg); transform: translateY(-2px); }
.article-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-tag { font-size: .78rem; color: var(--ed-emerald); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.article-card h3 { font-size: 1.18rem; line-height: 1.5; }
.article-card h3 a { color: var(--ed-ink); }
.article-card h3 a:hover { color: var(--ed-emerald); }
.article-summary { color: var(--ed-ink-muted); font-size: .94rem; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: .82rem; color: var(--ed-ink-muted); padding-top: 8px; border-top: 1px dashed var(--ed-rule-soft); }
.article-cta { font-size: .9rem; color: var(--ed-emerald); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.article-cta:hover { color: var(--ed-emerald-deep); }

.mission { background: var(--ed-ink); color: #fff; }
.mission .section-head h2, .mission .section-head .section-eyebrow, .mission p { color: #fff; }
.mission .section-eyebrow { color: #9bd1b1; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mission-figure { border-radius: var(--ed-radius-lg); overflow: hidden; }
.mission-points { display: grid; gap: 18px; margin-top: 26px; }
.mission-point { display: flex; gap: 14px; align-items: flex-start; }
.mission-point i { color: #9bd1b1; font-size: 1.4rem; margin-top: 2px; }
.mission-point span { color: rgba(255,255,255,.86); font-size: .98rem; }

.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advantage-card { background: var(--ed-card); border: 1px solid var(--ed-rule-soft); border-radius: var(--ed-radius-lg); padding: 28px 24px; box-shadow: var(--ed-shadow-sm); }
.advantage-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--ed-emerald-soft); color: var(--ed-emerald); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.advantage-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.advantage-card p { font-size: .94rem; color: var(--ed-ink-muted); margin: 0; }

.newsletter { background: var(--ed-emerald-soft); border: 1px solid #cfe1d6; border-radius: var(--ed-radius-lg); padding: 48px 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.newsletter h2 { font-size: 1.7rem; margin-bottom: 12px; }
.newsletter p { color: var(--ed-ink-muted); margin: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form .field { display: flex; flex-direction: column; gap: 6px; }
.newsletter-form label { font-size: .85rem; color: var(--ed-ink-muted); font-weight: 500; }
.newsletter-form input[type="email"], .newsletter-form input[type="text"] { padding: 12px 14px; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius); background: #fff; font-size: .96rem; font-family: inherit; }
.newsletter-form input:focus { outline: 2px solid var(--ed-emerald); outline-offset: 1px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--ed-ink-muted); }
.consent-row input { margin-top: 4px; }

.closing-cta { background: var(--ed-bg-warm); padding: 80px 0; }
.closing-cta .container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.closing-cta h2 { font-size: 1.95rem; margin-bottom: 14px; }
.closing-cta p { color: var(--ed-ink-muted); }
.closing-cta-actions { display: flex; gap: 14px; justify-content: flex-end; }

.site-footer { background: #14182b; color: #cdd0db; padding: 64px 0 0; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand-mark { background: #fff; color: var(--ed-ink); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-contact { font-size: .92rem; color: rgba(255,255,255,.78); display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: #9bd1b1; font-size: 1.05rem; margin-top: 3px; flex-shrink: 0; }
.footer-col h5 { font-family: var(--ed-font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .94rem; }
.footer-col a:hover { color: #9bd1b1; }
.footer-newsletter form { display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter input { padding: 10px 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--ed-radius-sm); font-size: .9rem; font-family: inherit; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter .consent-row { color: rgba(255,255,255,.6); font-size: .76rem; }
.footer-newsletter button { background: var(--ed-emerald); color: #fff; padding: 10px 16px; border-radius: var(--ed-radius-sm); font-size: .9rem; font-weight: 500; }
.footer-newsletter button:hover { background: var(--ed-emerald-deep); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; color: rgba(255,255,255,.55); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.7); margin-left: 16px; font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

.contact-banner { background: var(--ed-bg-alt); padding: 80px 0 64px; }
.contact-banner h1 { font-size: 2.2rem; margin-bottom: 14px; }
.contact-banner p { max-width: 640px; color: var(--ed-ink-muted); }
.contact-section { padding: 64px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info { background: var(--ed-bg); border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-lg); padding: 36px 32px; }
.contact-info h3 { margin-bottom: 24px; font-size: 1.3rem; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px dashed var(--ed-rule); }
.info-item:last-child { border-bottom: none; }
.info-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--ed-emerald-soft); color: var(--ed-emerald); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-text h5 { font-size: .9rem; color: var(--ed-ink-muted); font-family: var(--ed-font-sans); font-weight: 500; margin-bottom: 4px; letter-spacing: .04em; }
.info-text p, .info-text address { color: var(--ed-ink); font-style: normal; margin: 0; font-size: .98rem; line-height: 1.55; }
.contact-form-card { background: #fff; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-lg); padding: 38px 36px; box-shadow: var(--ed-shadow-sm); }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card .lead { color: var(--ed-ink-muted); margin-bottom: 24px; }
.form-grid { display: grid; gap: 18px; }
.form-grid .field { display: flex; flex-direction: column; gap: 6px; }
.form-grid label { font-size: .9rem; color: var(--ed-ink); font-weight: 500; }
.form-grid input, .form-grid textarea { padding: 12px 14px; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius); font-size: .96rem; font-family: inherit; background: #fff; color: var(--ed-ink); }
.form-grid textarea { resize: vertical; min-height: 140px; }
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--ed-emerald); outline-offset: 1px; border-color: var(--ed-emerald); }
.form-actions { margin-top: 8px; }

.map-section { padding: 0 0 80px; }
.map-frame { width: 100%; height: 420px; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-lg); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--ed-emerald); font-size: .92rem; }

.page-header { background: var(--ed-bg-alt); padding: 64px 0 48px; border-bottom: 1px solid var(--ed-rule-soft); }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: var(--ed-ink-muted); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--ed-ink-muted); }
.breadcrumb a:hover { color: var(--ed-emerald); }
.breadcrumb span { color: var(--ed-ink); }
.page-header h1 { font-size: 2.1rem; margin-bottom: 12px; }
.page-header .lead { color: var(--ed-ink-muted); max-width: 720px; }

.list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 64px 0; }

.article-page { padding: 64px 0 80px; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 56px; }
.article-main h1 { font-size: 2.2rem; margin-bottom: 14px; line-height: 1.4; }
.article-main h2 { font-size: 1.55rem; margin-top: 40px; margin-bottom: 14px; }
.article-main h3 { font-size: 1.25rem; margin-top: 28px; margin-bottom: 10px; }
.article-main p { font-size: 1.02rem; color: var(--ed-ink-soft); margin-bottom: 18px; }
.article-byline { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--ed-rule-soft); border-bottom: 1px solid var(--ed-rule-soft); margin-bottom: 32px; font-size: .9rem; color: var(--ed-ink-muted); }
.article-byline i { color: var(--ed-emerald); }
.article-cover { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--ed-radius-lg); margin-bottom: 32px; }
.article-callout { background: var(--ed-emerald-soft); border-left: 3px solid var(--ed-emerald); border-radius: var(--ed-radius); padding: 18px 22px; margin: 26px 0; font-size: .96rem; color: var(--ed-ink); }
.article-aside { position: sticky; top: 100px; align-self: start; }
.aside-card { background: var(--ed-bg-alt); border: 1px solid var(--ed-rule-soft); border-radius: var(--ed-radius-lg); padding: 24px; margin-bottom: 24px; }
.aside-card h5 { font-family: var(--ed-font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ed-ink-muted); margin-bottom: 14px; font-weight: 600; }
.aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.aside-card a { font-size: .92rem; color: var(--ed-ink); }
.aside-card a:hover { color: var(--ed-emerald); }
.prev-next { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--ed-rule); }
.pn-card { padding: 22px 24px; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-lg); background: #fff; }
.pn-card small { display: block; color: var(--ed-emerald); font-size: .78rem; letter-spacing: .1em; margin-bottom: 8px; }
.pn-card a { font-family: var(--ed-font-serif); font-weight: 600; color: var(--ed-ink); }
.pn-card a:hover { color: var(--ed-emerald); }
.pn-card.next { text-align: right; }

.legal-content { padding: 64px 0; }
.legal-content h2 { font-size: 1.45rem; margin: 36px 0 14px; }
.legal-content h3 { font-size: 1.18rem; margin: 24px 0 10px; }
.legal-content p { font-size: 1rem; color: var(--ed-ink-soft); }
.legal-content ul { margin: 12px 0 18px 24px; }
.legal-content ul li { list-style: disc; color: var(--ed-ink-soft); margin-bottom: 6px; }
.legal-meta { padding: 18px 22px; background: var(--ed-bg-alt); border-radius: var(--ed-radius); font-size: .9rem; color: var(--ed-ink-muted); margin-bottom: 28px; }

.about-page-section { padding: 80px 0; }
.about-page-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-page-grid h2 { margin-bottom: 16px; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 64px 0; }
.pillar-card { background: var(--ed-card); border: 1px solid var(--ed-rule-soft); border-radius: var(--ed-radius-lg); padding: 28px; }
.pillar-card i { color: var(--ed-emerald); font-size: 1.6rem; margin-bottom: 12px; }
.pillar-card h4 { margin-bottom: 8px; }
.pillar-card p { color: var(--ed-ink-muted); font-size: .94rem; margin: 0; }

.cookie-modal { position: fixed; right: 24px; bottom: 24px; max-width: 380px; background: #fff; border: 1px solid var(--ed-rule); border-radius: var(--ed-radius-lg); box-shadow: var(--ed-shadow-lg); padding: 22px 24px; z-index: 100; transform: translateY(20px); opacity: 0; visibility: hidden; transition: transform .25s, opacity .25s, visibility .25s; }
.cookie-modal.active { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-modal h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cookie-modal p { font-size: .88rem; color: var(--ed-ink-muted); margin-bottom: 16px; }
.cookie-modal a { color: var(--ed-emerald); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { flex: 1; padding: 10px 14px; border-radius: var(--ed-radius-sm); font-size: .88rem; font-weight: 500; }
.cookie-accept { background: var(--ed-emerald); color: #fff; border: 1px solid var(--ed-emerald); }
.cookie-accept:hover { background: var(--ed-emerald-deep); }
.cookie-reject { background: #fff; color: var(--ed-ink); border: 1px solid var(--ed-ink); }
.cookie-reject:hover { background: var(--ed-bg-alt); }

.success-modal { position: fixed; inset: 0; background: rgba(20,24,43,.55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px; }
.success-modal.active { display: flex; }
.success-modal-card { background: #fff; border-radius: var(--ed-radius-lg); padding: 36px 40px; max-width: 460px; text-align: center; box-shadow: var(--ed-shadow-lg); }
.success-modal-card i { font-size: 3rem; color: var(--ed-emerald); margin-bottom: 14px; display: block; }
.success-modal-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.success-modal-card p { color: var(--ed-ink-muted); margin-bottom: 22px; }
.success-modal-card button { background: var(--ed-ink); color: #fff; padding: 10px 22px; border-radius: var(--ed-radius); font-size: .9rem; }

@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .hero { min-height: 480px; padding: 60px 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero .container { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .mission-grid, .closing-cta .container { grid-template-columns: 1fr; gap: 32px; }
  .closing-cta-actions { justify-content: flex-start; }
  .newsletter { grid-template-columns: 1fr; padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .about-page-grid, .about-pillars { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; border-top: 1px solid var(--ed-rule); box-shadow: var(--ed-shadow); }
  .nav-main.open { display: flex; align-items: stretch; }
  .nav-main > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-main > ul > li > a, .nav-cta { padding: 12px 8px; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: auto; }
  .hero { min-height: 460px; padding: 50px 0; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 56px 0; }
  .article-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .map-frame { height: 320px; }
  .list-grid { grid-template-columns: 1fr; }
  .prev-next { grid-template-columns: 1fr; }
  .pn-card.next { text-align: left; }
  .contact-form-card, .contact-info { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom div:last-child { display: flex; gap: 16px; flex-wrap: wrap; }
  .footer-bottom a { margin-left: 0; }
  .cookie-modal { right: 16px; left: 16px; bottom: 16px; max-width: none; }
}
