/* ===== LICENSE（ライセンス） ===== */

/* =========================================================
   Why（選ばれる4つの理由）
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line);
}
.why__item {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.why__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .18em;
  margin-bottom: 16px;
}
.why__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
}
.why__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* =========================================================
   プラン詳細（plans-detail）
   ========================================================= */
.plans-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.pdetail {
  background: #fff;
  border: 1px solid var(--line);
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  position: relative;
}
.pdetail--featured { border-color: var(--ink); }
.pdetail__badge {
  display: none;
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 6px 12px;
  z-index: 1;
}
.pdetail--featured .pdetail__badge { display: inline-flex; }
/* カードの上部に全幅で抜くビジュアル（padding相殺で端まで出す） */
.pdetail__visual {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 7;
  overflow: hidden;
  background: var(--bg-alt);
  margin: -48px -48px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pdetail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.pdetail:hover .pdetail__visual img { transform: scale(1.03); }
/* PLAN C 用：ステッカーPNGを背景色込みで見せる時の調整クラス */
.pdetail__visual--contain {
  background: linear-gradient(135deg, #FFF3F4 0%, #FFE3E6 100%);
}
.pdetail__visual--contain img { object-fit: contain; padding: 24px; }
.pdetail__left {
  border-right: 1px solid var(--line);
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdetail__en {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.pdetail__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
}
.pdetail__desc {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.pdetail__usecase {
  font-size: 11px;
  line-height: 1.8;
  color: var(--ink-3);
  padding: 12px 14px;
  background: var(--bg-alt);
  border-left: 2px solid var(--red);
}
.pdetail__usecase strong {
  display: block;
  font-size: 10px;
  font-family: var(--font-en);
  letter-spacing: .15em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 4px;
}
.pdetail__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pdetail__block h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdetail__block h4 i {
  width: 14px; height: 14px;
  color: var(--red);
  stroke-width: 2;
}
.pdetail__block ul { font-size: 13px; line-height: 2; color: var(--ink-2); }
.pdetail__block li { display: flex; gap: 8px; align-items: baseline; }
.pdetail__block li::before {
  content: "";
  width: 10px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 13px;
}
.pdetail__meta {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--bg-alt);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.9;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.pdetail__meta strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}

/* =========================================================
   料率モデル（Rate Models）
   ========================================================= */
.rate__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.rate__table th,
.rate__table td {
  padding: 20px 24px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.9;
}
.rate__table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .12em;
  font-size: 12px;
}
.rate__table tbody th {
  width: 220px;
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.rate__table tbody td { color: var(--ink-2); }
.rate__table tbody td strong { color: var(--ink); font-weight: 600; }
.rate__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.9;
}

/* =========================================================
   フロー（4ステップ）
   ========================================================= */
.flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: flow;
}
.flow__step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
}
.flow__num {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .18em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.flow__num strong {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.flow__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.flow__text {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.flow__dur {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  color: var(--ink-3);
  font-family: var(--font-en);
  font-weight: 500;
}

/* =========================================================
   事例カード（Case Studies）
   ========================================================= */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s ease;
}
.case:hover { border-color: var(--red); }
.case__img {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
}
.case__img img { width: 100%; height: 100%; object-fit: cover; }
/* 撮影予定プレースホルダ：意図的な"準備中"トリートメント */
.case__img--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .22em;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.04) 0 8px,
      transparent 8px 16px
    ),
    linear-gradient(135deg, var(--ink) 0%, #2a2426 100%);
  position: relative;
}
.case__img--placeholder::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.case__img--placeholder i {
  width: 22px; height: 22px;
  color: rgba(255,255,255,.45);
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}
.case__img--placeholder span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.case__img--placeholder small {
  position: relative;
  z-index: 1;
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
}
.case__body { padding: 24px 24px 28px; }
.case__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 8px;
}
.case__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 12px;
}
.case__desc {
  font-size: 12px;
  line-height: 1.9;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.case__meta {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: var(--ink-3);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.case__meta span {
  padding: 2px 8px;
  border: 1px solid var(--line);
  font-family: var(--font-en);
  letter-spacing: .1em;
}

/* =========================================================
   使用許諾範囲マトリクス
   ========================================================= */
.scope__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}
.scope__table th,
.scope__table td {
  padding: 16px 20px;
  border: 1px solid var(--line);
  text-align: center;
  line-height: 1.8;
}
.scope__table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
}
.scope__table tbody th {
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  font-size: 14px;
}
.scope__table .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  font-family: var(--font-en);
  font-weight: 600;
}
.scope__table .mark--ok { color: var(--red); font-size: 20px; }
.scope__table .mark--limited { color: var(--ink-3); font-size: 14px; }
.scope__table .mark--ng { color: var(--ink-3); font-size: 20px; }

/* =========================================================
   FAQ（アコーディオン）
   ========================================================= */
.faq__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: background-color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--bg-alt); }
.faq__item summary::before {
  content: "Q";
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  padding-top: 1px;
  flex-shrink: 0;
}
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  color: var(--ink);
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.faq__item[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
}
.faq__body {
  padding: 0 24px 28px 48px;
  display: flex;
  gap: 16px;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-2);
}
.faq__body::before {
  content: "A";
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .05em;
  flex-shrink: 0;
}

/* =========================================================
   フルブリード写真バンド（セクション間のビジュアルフック）
   ========================================================= */
.bleed-band {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 8;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.bleed-band__img { position: absolute; inset: 0; z-index: 0; }
.bleed-band__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.bleed-band:hover .bleed-band__img img { transform: scale(1.06); }
.bleed-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.06) 100%);
}
.bleed-band__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.bleed-band__text { color: #fff; max-width: 640px; }
.bleed-band__en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  color: #fff;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.bleed-band__title {
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.bleed-band__sub {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255,255,255,.85);
}


/* ===== RECRUIT（採用情報） ===== */

/* =========================================================
   Message：代表メッセージ
   ========================================================= */
.message { padding: 96px 0; background: #fff; }
.message__inner { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }
.message__quote {
  position: relative; padding: 48px 56px 48px 96px;
  background: var(--bg-alt); border-left: 4px solid var(--red);
}
.message__quote::before {
  content: "\201C"; position: absolute; left: 32px; top: 24px;
  font-family: var(--font-en); font-size: 96px; font-weight: 800;
  color: var(--red); line-height: 1; opacity: .25;
}
.message__text { font-size: 16px; line-height: 2.1; color: var(--ink); margin-bottom: 20px; }
.message__text:last-child { margin-bottom: 0; }
.message__signature {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
}
.message__signature-role { font-size: 12px; color: var(--ink-3); letter-spacing: .1em; }
.message__signature-name { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: .04em; }

/* =========================================================
   Phase：事業フェーズ
   ========================================================= */
.phase { padding: 120px 0; background: var(--bg-alt); }
.phase__head { text-align: center; margin-bottom: 56px; }
.phase__head .sec-label::before { margin-right: 0; }
.phase__head .sec-label { justify-content: center; }
.phase__head .sec-title { font-size: 26px; }

.phase__timeline {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  position: relative;
}
.phase__timeline::before {
  content: ""; position: absolute; top: 88px; left: 10%; right: 10%;
  height: 2px; background: var(--line); z-index: 0;
}
.phase-card {
  position: relative; z-index: 1; background: #fff; border: 1px solid var(--line);
  padding: 32px 24px; text-align: center;
}
.phase-card--current { border-color: var(--red); box-shadow: 0 8px 24px rgba(195,13,35,.08); }
.phase-card__year { font-family: var(--font-en); font-size: 13px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 12px; }
.phase-card--current .phase-card__year { color: var(--red); }
.phase-card__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-alt); color: var(--ink-3);
  border-radius: 50%;
}
.phase-card--current .phase-card__icon { background: var(--red-tint); color: var(--red); }
.phase-card__icon i { width: 24px; height: 24px; }
.phase-card__label { display: inline-block; font-size: 10px; font-family: var(--font-en); font-weight: 700; letter-spacing: .2em; color: var(--red); padding: 4px 10px; background: var(--red-tint); margin-bottom: 12px; }
.phase-card__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.phase-card__text { font-size: 12px; line-height: 1.9; color: var(--ink-2); }

/* =========================================================
   Values：求める人物像
   ========================================================= */
.values { padding: 120px 0; background: #fff; }
.values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 32px 24px; background: #fff; border: 1px solid var(--line);
  transition: all .25s ease;
}
.value-card:hover { border-color: var(--red); box-shadow: 0 6px 20px rgba(0,0,0,.05); transform: translateY(-2px); }
.value-card__num {
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; color: var(--red); margin-bottom: 16px;
}
.value-card__icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-tint); color: var(--red);
}
.value-card__icon i { width: 22px; height: 22px; }
.value-card__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.5; }
.value-card__text { font-size: 13px; line-height: 1.9; color: var(--ink-2); }

/* =========================================================
   Positions：募集職種
   ========================================================= */
.positions { padding: 120px 0; background: var(--bg-alt); }
.positions__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}
.position-card {
  padding: 36px 32px; background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: all .25s ease;
}
.position-card:hover { border-color: var(--red); box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.position-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.position-card__category {
  display: inline-block; font-family: var(--font-en); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; color: var(--red); padding: 4px 10px; background: var(--red-tint);
}
.position-card__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .08em; color: var(--ink-3);
}
.position-card__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
.position-card__status.is-open { color: #2E8B57; }
.position-card__status.is-open::before { background: #2E8B57; }
.position-card__title { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: .02em; line-height: 1.5; }
.position-card__text { font-size: 13px; line-height: 1.9; color: var(--ink-2); }
.position-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.position-card__meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; padding: 4px 10px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--ink-2);
}
.position-card__meta-item i { width: 12px; height: 12px; color: var(--ink-3); }

.positions__note {
  max-width: 720px; margin: 56px auto 0; padding: 24px 28px;
  background: #fff; border: 1px solid var(--line); text-align: center;
  font-size: 13px; line-height: 1.9; color: var(--ink-2);
}
.positions__note strong { color: var(--ink); }

/* =========================================================
   Flow：選考フロー
   ========================================================= */
.flow { padding: 120px 0; background: #fff; }
.flow__steps {
  max-width: 960px; margin: 48px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.flow-step {
  position: relative; padding: 28px 20px; background: #fff; border: 1px solid var(--line);
  text-align: center;
}
.flow-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border: 1px solid var(--red); color: var(--red); border-radius: 50%;
  font-family: var(--font-en); font-size: 15px; font-weight: 700;
}
.flow-step__title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: .02em; }
.flow-step__text { font-size: 12px; line-height: 1.8; color: var(--ink-2); }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent;
  border-left: 10px solid var(--line-2);
}

/* =========================================================
   Working：働き方・制度
   ========================================================= */
.working { padding: 120px 0; background: var(--bg-alt); }
.working__grid {
  max-width: 960px; margin: 48px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.working-card {
  padding: 28px 24px; background: #fff; border: 1px solid var(--line);
}
.working-card__icon {
  width: 44px; height: 44px; margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-tint); color: var(--red);
}
.working-card__icon i { width: 20px; height: 20px; }
.working-card__title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.working-card__text { font-size: 12px; line-height: 1.9; color: var(--ink-2); }

/* =========================================================
   Entry CTA
   ========================================================= */
.entry-cta {
  position: relative; padding: 100px 0; background: var(--ink); color: #fff; overflow: hidden;
}
.entry-cta::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.entry-cta::after {
  content: "JOIN US"; font-family: 'Cormorant Garamond', 'Georgia', serif; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-size: 160px; font-weight: 800;
  color: rgba(255,255,255,.04); letter-spacing: -.02em; line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.entry-cta__inner {
  max-width: 960px; margin: 0 auto; padding: 0 var(--gutter);
  position: relative; z-index: 1; text-align: center;
}
.entry-cta__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.entry-cta__label::before, .entry-cta__label::after { content: ""; width: 32px; height: 1px; background: var(--red); }
.entry-cta__title { font-size: 30px; font-weight: 700; line-height: 1.5; color: #fff; margin-bottom: 20px; }
.entry-cta__text { max-width: 640px; margin: 0 auto 40px; font-size: 14px; line-height: 2; color: rgba(255,255,255,.8); }
.entry-cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.entry-cta .btn--primary { background: var(--red); border-color: var(--red); min-height: 56px; padding: 0 40px; font-size: 15px; font-weight: 700; }
.entry-cta .btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.entry-cta .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); min-height: 56px; padding: 0 32px; }
.entry-cta .btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Footer */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 80px 0 32px; }
.footer__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.footer__top { display: grid; grid-template-columns: minmax(260px, 1fr) 2fr; gap: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand p { margin-top: 16px; font-size: 13px; line-height: 1.9; color: var(--ink-2); }
.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer__nav h4 { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--ink-3); margin-bottom: 16px; }
.footer__nav a { display: block; padding: 6px 0; font-size: 13px; color: var(--ink-2); }
.footer__nav a:hover { color: var(--red); }
.footer__social { display: flex; align-items: center; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.footer__social-label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--ink-3); }
.footer__social-icons { display: flex; align-items: center; gap: 12px; }
.footer__social-icons a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink-2); transition: all .2s; }
.footer__social-icons a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer__social-icons i { width: 14px; height: 14px; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-3); }
.footer__bottom a { margin-left: 20px; color: var(--ink-3); }
.footer__bottom a:hover { color: var(--red); }

