/*
Theme Name: ZAYASU
Theme URI: https://zayasu.co.jp
Author: 株式会社ZAYASU
Description: 株式会社ZAYASU コーポレートサイト用テーマ。お知らせ・インサイトはカスタム投稿タイプでCMS管理できます。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zayasu
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #f7f5ef; --text: #101010; --muted: #6f6a5c;
  --green: #48a842; --green-light: #83c94c; --green-lighter: #a7d864; --green-dark: #2f7a2b;
  --gold: #e3b735; --gold-soft: #f3d477;
  --dark: #182a16; --soft: #eef1e4; --line: #e1ddcb;
}
html { scroll-behavior: smooth; }
body { width: 100%; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* ==================== NAV — floating pill card ==================== */
.header { position: fixed; top: 24px; right: 24px; left: 24px; z-index: 100; display: flex; justify-content: flex-end; height: 68px; filter: drop-shadow(0 12px 26px rgba(16,16,16,.08)); }
.header__nav { display: flex; align-items: stretch; overflow: hidden; border-radius: 15px 0 0 15px; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); }
.header__nav a { display: grid; min-width: 108px; padding: 0 18px; place-items: center; font-size: 13.5px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; text-decoration: none; color: var(--text); transition: background .25s ease, color .25s ease; }
.header__nav a:hover { background: rgba(72,168,66,.1); color: var(--green-dark); }
.nav-menu-btn { display: grid; width: 68px; padding: 0; place-content: center; gap: 7px; border: 0; border-radius: 0 9px 9px 0; background: linear-gradient(135deg, var(--green-lighter), var(--green-light)); cursor: pointer; flex-shrink: 0; transition: filter 0.2s; }
.nav-menu-btn:hover { filter: brightness(1.05); }
.nav-menu-btn span { display: block; width: 26px; height: 3px; border-radius: 999px; background: #fff; transition: transform 0.25s, opacity 0.2s; }
.nav-menu-btn.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ==================== DRAWER ==================== */
#drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(10,15,8,0.45); z-index: 200; opacity: 0; transition: opacity 0.3s; }
#drawer-overlay.open { display: block; opacity: 1; }
#mobile-drawer { position: fixed; top: 0; right: 0; width: 300px; max-width: 84vw; height: 100%; background: var(--dark); z-index: 300; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; padding: 28px 36px 40px; }
#mobile-drawer.open { transform: translateX(0); }
.drawer-close { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: none; cursor: pointer; position: relative; margin-bottom: 44px; margin-left: auto; transition: background 0.2s, border-color 0.2s; flex-shrink: 0; }
.drawer-close:hover { background: var(--green); border-color: var(--green); }
.drawer-close span { display: block; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; border-radius: 999px; background: #fff; }
.drawer-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.drawer-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.drawer-nav { display: flex; flex-direction: column; gap: 26px; }
.drawer-link { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: #fff; text-decoration: none; width: fit-content; }
.drawer-link span { display: block; margin-top: 2px; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--green-lighter); }

/* ==================== HERO (front page) ==================== */
.hero-wrap {
  position: relative; display: grid;
  grid-template-columns: 45% 55%; grid-template-rows: auto 1fr;
  grid-template-areas: "logo image" "copy image";
  width: 100%; min-height: 100svh; overflow: hidden;
  background: radial-gradient(circle at 14% 12%, rgba(255,255,255,.95), transparent 28%), linear-gradient(180deg, #faf9f4 0%, var(--bg) 100%);
}
.hero-logo { grid-area: logo; display: block; width: min(320px, 68%); padding: 40px 0 0 48px; }
.hero-copy { grid-area: copy; align-self: end; padding: 0 48px 96px; }
.hero-image { grid-area: image; position: relative; overflow: hidden; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-headline { margin: 0; font-size: clamp(40px, 4.6vw, 72px); font-weight: 800; line-height: 1.22; letter-spacing: -0.03em; }
.hero-headline span { display: block; }
.hero-headline em, .hero-headline strong { font-style: normal; font-weight: inherit; }
.hero-headline em { color: var(--gold); }
.hero-headline strong { color: var(--green); }
.hero-tagline { margin: 30px 0 0; font-size: clamp(15px, 1.2vw, 19px); font-weight: 700; letter-spacing: -0.01em; color: var(--muted); }

/* ==================== NEWS STRIP (front page) ==================== */
.news-strip { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 48px; display: flex; align-items: center; gap: 32px; }
.news-strip-label { flex-shrink: 0; font-size: 12px; font-weight: 800; letter-spacing: .12em; color: var(--green-dark); }
.news-strip-list { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.news-strip-row { display: flex; align-items: baseline; gap: 16px; text-decoration: none; color: var(--text); font-size: 14px; transition: opacity 0.2s; }
.news-strip-row:hover { opacity: 0.6; }
.news-strip-date { flex-shrink: 0; font-weight: 700; color: var(--muted); font-size: 12.5px; }
.news-strip-title { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.news-strip-more { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--green-dark); font-weight: 800; font-size: 13px; }

/* ==================== SECTIONS (generic) ==================== */
.section { padding: 120px 48px; position: relative; }
.section-dark { background: var(--dark); color: var(--bg); }
.section-light { background: var(--bg); }
.section-soft { background: var(--soft); }
.section-label { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--green-dark); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.section-label::before { content: ''; display: block; width: 28px; height: 3px; border-radius: 999px; background: var(--gold); }
.section-dark .section-label { color: var(--green-lighter); }
.section-title { font-size: clamp(32px, 4vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 44px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 16px 34px; text-decoration: none; background: var(--green); color: #fff; font-weight: 800; font-size: 14px; letter-spacing: -0.01em; box-shadow: 0 12px 26px rgba(72,168,66,.28); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(72,168,66,.34); }
.btn-ghost { background: transparent; color: #fff; box-shadow: none; border: 2px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: #fff; color: var(--dark); }

/* Shared illustration crop (fallback thumbnail for posts without a featured image) */
.illust { background-image: url('assets/images/hero-visual.png'); background-size: 300% 300%; background-repeat: no-repeat; }

/* ==================== ABOUT ==================== */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-lead { font-size: clamp(21px, 2.4vw, 30px); font-weight: 800; line-height: 1.6; letter-spacing: -0.01em; margin-bottom: 34px; }
.about-body { font-size: 15px; line-height: 2; color: var(--muted); margin-bottom: 36px; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; }
.about-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ==================== SERVICE — home cards ==================== */
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 56px; border-radius: 24px; overflow: hidden; }
.service-card { background: rgba(255,255,255,.04); padding: 44px 38px; position: relative; cursor: pointer; transition: background 0.35s; text-decoration: none; display: block; }
.service-card:hover { background: rgba(255,255,255,.09); }
.service-card-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--gold-soft); margin-bottom: 32px; }
.service-card-title { font-size: 23px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; color: #fff; }
.service-card-line { width: 30px; height: 3px; border-radius: 999px; background: var(--green); margin-bottom: 18px; }
.service-card-body { font-size: 13.5px; line-height: 1.9; color: rgba(247,245,239,.65); }
.service-card-arrow { position: absolute; bottom: 38px; right: 38px; font-size: 18px; color: var(--green-lighter); transition: transform 0.3s; }
.service-card:hover .service-card-arrow { transform: translate(4px,-4px); }

/* ==================== INSIGHTS — cards (home + archive grid) ==================== */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 56px; }
.insight-card { text-decoration: none; color: var(--text); display: block; }
.insight-thumb { aspect-ratio: 16/10; border-radius: 20px; margin-bottom: 18px; overflow: hidden; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.insight-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.insight-card:hover .insight-thumb { transform: translateY(-4px); }
.insight-cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--green-dark); margin-bottom: 10px; }
.insight-title { font-size: 15.5px; font-weight: 700; line-height: 1.6; letter-spacing: -0.01em; margin-bottom: 10px; transition: opacity 0.2s; }
.insight-card:hover .insight-title { opacity: 0.6; }
.insight-date { font-size: 12px; font-weight: 700; color: var(--muted); }

/* ==================== COMPANY ==================== */
.company-inner { max-width: 900px; margin: 56px auto 0; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--line); }
.company-table th { font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--green-dark); text-align: left; padding: 26px 0; width: 190px; vertical-align: top; }
.company-table td { font-size: 15px; line-height: 1.9; padding: 26px 0; }
.company-scope { max-width: 900px; margin: 52px auto 0; }
.company-scope-toggle { display: flex; align-items: center; gap: 14px; cursor: pointer; padding: 20px 24px; border-radius: 14px; background: #fff; font-size: 13.5px; font-weight: 800; color: var(--muted); user-select: none; }
.company-scope-toggle::after { content: '+'; margin-left: auto; font-size: 18px; color: var(--gold); }
.company-scope-toggle.open::after { content: '\2212'; }
.company-scope-list { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.company-scope-list.open { max-height: 2000px; margin-top: 8px; }
.company-scope-list li { display: flex; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.8; color: var(--muted); }
.company-scope-list li span.n { font-weight: 800; color: var(--green-dark); flex-shrink: 0; }

/* ==================== CONTACT ==================== */
#contact { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 130px 48px; }
.contact-title { font-size: clamp(44px, 6vw, 84px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin-bottom: 26px; }
.contact-title em { font-style: normal; color: var(--gold); }
.contact-sub { font-size: 15.5px; font-weight: 500; letter-spacing: -0.005em; color: rgba(247,245,239,.72); margin-bottom: 48px; line-height: 1.9; }

/* ==================== PAGE HEADER (service / archives / privacy) ==================== */
.page-header { padding: 150px 48px 72px; background: var(--soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-header-dark { background: var(--dark); color: var(--bg); border-bottom: none; padding-bottom: 80px; }
.page-header-geo { position: absolute; top: -120px; right: -100px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(131,201,76,.22), transparent 70%); }
.page-header-label { font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--green-dark); margin-bottom: 18px; display: flex; align-items: center; gap: 14px; position: relative; }
.page-header-dark .page-header-label { color: var(--green-lighter); }
.page-header-label::before { content: ''; display: block; width: 28px; height: 3px; border-radius: 999px; background: var(--gold); }
.page-header-title { font-size: clamp(38px, 5.8vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; position: relative; margin-bottom: 22px; }
.page-header-sub { font-size: 15px; line-height: 1.9; color: var(--muted); max-width: 620px; position: relative; }
.page-header-dark .page-header-sub { color: rgba(247,245,239,.75); }

/* ==================== SERVICE — detail layout (page-service.php) ==================== */
.service-item { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.service-item:nth-child(even) { direction: rtl; }
.service-item:nth-child(even) > * { direction: ltr; }
.service-visual { position: relative; overflow: hidden; }
.service-body { padding: 68px 76px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); }
.service-item:nth-child(even) .service-body { background: var(--soft); }
.service-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--gold); margin-bottom: 22px; }
.service-title { font-size: clamp(25px,3vw,38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1.15; color: var(--green-dark); }
.service-line { width: 36px; height: 3px; border-radius: 999px; background: var(--green); margin-bottom: 22px; }
.service-desc { font-size: 15px; line-height: 2; color: var(--muted); margin-bottom: 30px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .02em; border-radius: 999px; border: 1px solid var(--line); background: #fff; padding: 7px 16px; color: var(--muted); }

/* ==================== CTA (service page) ==================== */
.cta-section { background: var(--dark); color: var(--bg); padding: 110px 48px; text-align: center; }
.cta-title { font-size: clamp(36px,5vw,64px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 22px; }
.cta-sub { font-size: 15px; color: rgba(247,245,239,.72); margin-bottom: 44px; line-height: 1.8; }

/* ==================== FILTER BAR (news / insights archives) ==================== */
.filter-bar { display: flex; align-items: center; gap: 10px; padding: 28px 48px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.filter-btn { font-size: 12.5px; font-weight: 800; letter-spacing: .02em; padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--muted); transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ==================== NEWS LIST (archive-zy_news.php) ==================== */
.news-list { max-width: 960px; margin: 0 auto; padding: 0 48px 120px; }
.news-item { display: grid; grid-template-columns: 118px 88px 1fr 24px; align-items: center; gap: 28px; padding: 26px 4px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--text); transition: opacity 0.2s; }
.news-item:first-child { margin-top: 44px; }
.news-item:hover { opacity: 0.6; }
.news-item-date { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.news-item-cat { font-size: 10.5px; font-weight: 800; letter-spacing: .04em; border-radius: 999px; border: 1px solid var(--line); padding: 4px 12px; color: var(--green-dark); text-align: center; }
.news-item-title { font-size: 15px; font-weight: 500; line-height: 1.6; }
.news-item-arrow { font-size: 16px; color: var(--gold); transition: transform 0.2s; }
.news-item:hover .news-item-arrow { transform: translate(4px,-4px); }

/* ==================== INSIGHTS ARCHIVE — featured card ==================== */
.featured { padding: 60px 48px 0; }
.featured-label { font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--gold); margin-bottom: 22px; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 28px; overflow: hidden; text-decoration: none; color: var(--text); background: #fff; box-shadow: 0 20px 50px rgba(16,16,16,.06); transition: transform 0.3s; }
.featured-card:hover { transform: translateY(-4px); }
.featured-thumb { min-height: 280px; overflow: hidden; }
.featured-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.featured-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--green-dark); margin-bottom: 16px; }
.featured-title { font-size: clamp(20px,2.5vw,28px); font-weight: 800; line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 18px; }
.featured-excerpt { font-size: 14px; line-height: 1.9; color: var(--muted); margin-bottom: 22px; }
.featured-date { font-size: 12px; font-weight: 700; color: var(--muted); }
.insights-wrap { padding: 60px 48px 120px; }

/* ==================== BREADCRUMB (single news / single insight) ==================== */
.breadcrumb { padding: 108px 48px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: 12px; font-weight: 700; color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb-sep { color: var(--line); }

/* ==================== ARTICLE (shared: single news / single insight) ==================== */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 44px 48px 120px; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 72px; max-width: 1100px; margin: 0 auto; padding: 44px 48px 120px; align-items: start; }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.article-cat { font-size: 10.5px; font-weight: 800; letter-spacing: .04em; border-radius: 999px; border: 1px solid var(--line); padding: 4px 14px; color: var(--green-dark); }
.article-date { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.article-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 36px; }
.article-thumb { width: 100%; aspect-ratio: 16/9; border-radius: 24px; margin-bottom: 44px; overflow: hidden; }
.article-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 15.5px; line-height: 2.15; }
.article-body p { margin-bottom: 26px; color: var(--text); }
.article-body h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; margin: 50px 0 22px; padding-bottom: 14px; border-bottom: 2px solid var(--green); color: var(--green-dark); }
.article-body h3 { font-size: 17.5px; font-weight: 800; margin: 36px 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 22px; color: var(--text); }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 4px solid var(--gold); border-radius: 4px; padding: 16px 24px; margin: 30px 0; background: var(--soft); font-style: italic; color: var(--muted); }
.back-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); text-decoration: none; color: var(--green-dark); font-size: 13px; font-weight: 800; transition: opacity 0.2s; }
.back-link:hover { opacity: 0.6; }

/* ==================== SIDEBAR (single insight) ==================== */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-toc { margin-bottom: 44px; }
.sidebar-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.toc-list a { font-size: 12.5px; font-weight: 600; color: var(--muted); text-decoration: none; display: block; padding-left: 12px; border-left: 2px solid var(--line); transition: color 0.2s, border-color 0.2s; line-height: 1.5; }
.toc-list a:hover { color: var(--green-dark); border-color: var(--green); }
.sidebar-related { border-top: 1px solid var(--line); padding-top: 28px; }
.related-card { display: block; text-decoration: none; color: var(--text); margin-bottom: 22px; }
.related-thumb { aspect-ratio: 16/9; border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.related-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.related-cat { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--green-dark); margin-bottom: 6px; }
.related-title { font-size: 12.5px; font-weight: 700; line-height: 1.6; transition: opacity 0.2s; }
.related-card:hover .related-title { opacity: 0.6; }

/* ==================== PRIVACY POLICY ==================== */
.policy-wrap { max-width: 760px; margin: 0 auto; padding: 64px 48px 120px; }
.policy-updated { font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 40px; }
.policy-lead { font-size: 15px; line-height: 2; color: var(--text); margin-bottom: 48px; }
.policy-section { padding: 36px 0; border-top: 1px solid var(--line); }
.policy-section:last-of-type { border-bottom: 1px solid var(--line); }
.policy-section h2 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--green-dark); margin-bottom: 18px; display: flex; align-items: baseline; gap: 10px; }
.policy-section h2 .num { font-size: 13px; font-weight: 800; color: var(--gold); }
.policy-section p { font-size: 14.5px; line-height: 2; color: var(--text); margin-bottom: 16px; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { list-style: none; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.policy-section ul:last-child { margin-bottom: 0; }
.policy-section li { font-size: 14.5px; line-height: 1.9; color: var(--muted); padding-left: 20px; position: relative; }
.policy-section li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: var(--green); }
.policy-contact { margin-top: 40px; padding: 28px 32px; border-radius: 20px; background: var(--soft); }
.policy-contact p { font-size: 14.5px; line-height: 1.9; margin: 0; color: var(--text); }
.policy-contact p + p { margin-top: 4px; }

/* ==================== FOOTER ==================== */
footer { background: var(--dark); color: rgba(247,245,239,.6); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); }
.footer-logo { display: block; width: 168px; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: rgba(247,245,239,.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-lighter); }
.footer-copy { font-size: 11px; font-weight: 600; }

/* ==================================================================== */
/* MOBILE                                                                */
/* ==================================================================== */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 42% 58%; }
  .hero-logo { width: 240px; padding: 32px 0 0 32px; }
  .hero-copy { padding: 0 32px 64px; }
  .hero-headline { font-size: clamp(34px, 5vw, 56px); }
}
@media (max-width: 768px) {
  .header { top: 14px; right: 14px; left: auto; height: 60px; }
  .header__nav { display: none; }
  .nav-menu-btn { width: 60px; border-radius: 12px; }

  /* front page hero: logo → image → copy */
  .hero-wrap {
    grid-template-columns: 1fr; grid-template-rows: auto auto;
    grid-template-areas: "image" "copy";
    min-height: auto; padding: 88px 22px 56px; text-align: center;
  }
  .hero-logo { position: fixed; top: 27px; left: 18px; z-index: 100; width: auto; padding: 0; margin: 0; filter: drop-shadow(0 4px 10px rgba(16,16,16,.15)); }
  .hero-logo img { width: auto; height: 34px; display: block; }
  .hero-copy { padding: 0; align-self: auto; }
  .hero-image { border-radius: 24px; box-shadow: 0 24px 56px rgba(16,16,16,.14); margin-bottom: 32px; }
  .hero-image img { height: auto; object-fit: initial; }
  .hero-headline { text-align: center; font-size: clamp(30px, 8.5vw, 44px); }
  .hero-tagline { text-align: center; margin-top: 20px; font-size: 14px; }

  .news-strip { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
  .news-strip-title { white-space: normal; }

  .section { padding: 76px 22px; }
  .section-title { font-size: clamp(28px, 8vw, 42px); }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { aspect-ratio: 3/2; }
  .service-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; gap: 30px; }
  .company-table th { width: 108px; font-size: 11px; }
  .company-table td { font-size: 13.5px; }
  .company-scope-list li { flex-direction: column; gap: 4px; }
  #contact { padding: 92px 22px; }

  .page-header { padding: 108px 22px 44px; }
  .page-header-dark { padding-bottom: 56px; }

  .service-item { grid-template-columns: 1fr; direction: ltr; }
  .service-item:nth-child(even) { direction: ltr; }
  .service-visual { aspect-ratio: 4/3; }
  .service-body { padding: 40px 22px; }
  .cta-section { padding: 76px 22px; }

  .filter-bar { padding: 20px 22px; }
  .news-list { padding: 0 22px 80px; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .news-item-arrow { display: none; }

  .featured { padding: 40px 22px 0; }
  .featured-card { grid-template-columns: 1fr; border-radius: 22px; }
  .featured-thumb { min-height: 220px; }
  .featured-body { padding: 28px 22px; }
  .insights-wrap { padding: 40px 22px 80px; }

  .breadcrumb { padding: 88px 22px 0; }
  .article-wrap { padding: 30px 22px 80px; }
  .article-layout { grid-template-columns: 1fr; gap: 44px; padding: 28px 22px 80px; }
  .article-sidebar { position: static; }

  .policy-wrap { padding: 44px 22px 80px; }
  .policy-contact { padding: 22px 20px; }

  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 22px; }
  .footer-links { justify-content: center; }
}
