@charset "utf-8";
/* =========================================================
   berry-2026 renewal — 下層ページ用CSS（DESIGN.md 準拠）
   renewal.css（共通トークン/ヘッダー/フッター）読込後に適用
   対象：物件一覧 / 物件詳細 / 汎用ページ / ニュース / 404
   ========================================================= */

/* 固定ヘッダー分のオフセット（ヒーローが無いページ用） */
body { padding-top: 68px; }

/* ---------------------------------------------------------
   ページタイトル帯（#sec_ttl）
   --------------------------------------------------------- */
#sec_ttl {
  position: relative;
  padding: clamp(40px, 7vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(12, 123, 117, .92), rgba(16, 47, 67, .98)),
    var(--navy);
}
#sec_ttl h1 {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}
#sec_ttl p {
  margin: 8px 0 0;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
}

/* ---------------------------------------------------------
   パンくず
   --------------------------------------------------------- */
#breadcrumbs {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 0 clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
#breadcrumbs a { color: var(--accent-2); }
#breadcrumbs a:hover { text-decoration: underline; }

/* ---------------------------------------------------------
   コンテンツ共通コンテナ
   --------------------------------------------------------- */
#page_conts {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
}
#page_conts.wrap { width: min(1120px, 100%); }

/* 汎用本文タイポグラフィ */
#page_conts p { color: var(--ink); }
#page_conts a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
#page_conts img { border-radius: 8px; }
#page_conts h2 {
  margin: 40px 0 16px;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.3;
}
#page_conts h3 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 900;
}

/* ---------------------------------------------------------
   物件一覧グリッド（.item_bukken .item_list）
   --------------------------------------------------------- */
.item_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.item_list li {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.item_list li:hover { transform: translateY(-3px); }
.item_list li > a { display: block; }
.item_list li .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.item_list li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item_list li > *:not(a) {
  padding-left: 18px;
  padding-right: 18px;
}
.item_list li .ttl {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--ink);
}
.item_list li .price {
  margin: 8px 0 0;
  color: var(--accent);
  font-weight: 900;
}
/* CFSステータス（空き/満室バッジ等の簡易整形） */
.item_list li .price + * { margin-top: 8px; font-weight: 800; color: var(--accent-2); }

/* ---------------------------------------------------------
   物件詳細（.item_bukken_single）
   --------------------------------------------------------- */
.item_bukken_single { display: grid; gap: clamp(36px, 6vw, 56px); }

.item_bukken_single .slider .bg_img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.item_bukken_single #bukken_slider { position: relative; margin: 0; padding: 0; list-style: none; }
.item_bukken_single #bukken_slider > li { margin: 0; }
/* JS未実行時：最初の1枚のみ表示（フォールバック） */
.item_bukken_single #bukken_slider:not(.js-ready) > li { display: none; }
.item_bukken_single #bukken_slider:not(.js-ready) > li:first-child { display: block; }
/* JS実行時：is-active のみ表示 */
.item_bukken_single #bukken_slider.js-ready > li { display: none; }
.item_bukken_single #bukken_slider.js-ready > li.is-active { display: block; }
.item_bukken_single #bukken_slider > li img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* 前へ／次へ矢印（JSで生成） */
.item_bukken_single .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(16, 47, 67, .72);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease;
}
.item_bukken_single .slider-arrow:hover { background: rgba(16, 47, 67, .92); }
.item_bukken_single .slider-arrow.prev { left: 12px; }
.item_bukken_single .slider-arrow.next { right: 12px; }

.item_bukken_single .bx-pager { margin-top: 14px; }
.item_bukken_single .bx-pager ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.item_bukken_single .bx-pager a {
  display: block;
  width: 96px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}
.item_bukken_single .bx-pager a.active { border-color: var(--accent-2); }
.item_bukken_single .bx-pager img { width: 100%; height: 100%; object-fit: cover; }

/* 情報テーブル */
.item_bukken_single .info table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.item_bukken_single .info th,
.item_bukken_single .info td {
  text-align: left;
  padding: 16px clamp(16px, 3vw, 26px);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.item_bukken_single .info tr:last-child th,
.item_bukken_single .info tr:last-child td { border-bottom: 0; }
.item_bukken_single .info th {
  width: 160px;
  background: var(--soft);
  font-weight: 900;
  white-space: nowrap;
}
.item_bukken_single .info td { color: var(--muted); font-weight: 700; }

/* セクション小見出し（map/contact/other） */
.item_bukken_single .map h3,
.item_bukken_single .contact h3,
.item_bukken_single .other h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 900;
  padding-left: 14px;
  border-left: 4px solid var(--accent-2);
}
.item_bukken_single .map p { margin: 0 0 10px; color: var(--muted); font-weight: 700; }
.item_bukken_single .gmap_wrap iframe,
.item_bukken_single .gmap_wrap img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* 電話CTA */
.item_bukken_single .contact { }
.item_bukken_single .contact > p { color: var(--muted); font-weight: 700; }
.item_bukken_single .btn_tel { margin: 16px 0 26px; }
#page_conts .item_bukken_single .btn_tel a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent-2);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.item_bukken_single .contact_ttl {
  margin: 0 0 14px;
  font-weight: 900;
  font-size: 18px;
}

/* お問い合わせフォーム
   ※ フォーム本体（.contact_form＝CF7出力の枠）のカード・入力欄・
     プラポリ枠固定スクロール・同意チェックは renewal.css の
     .contact_form ルールで共通整形（トップと物件詳細で共通）。
     ここでは外側コンテナ .contact_inner は素のままにして二重カードを防ぐ。 */
.item_bukken_single .contact_inner { }

/* プラポリ枠内の見出しは #page_conts h2/h3（大見出し用）に負けるので、
   詳細ページ側で優先度を上げてトップと同じ小さめサイズに揃える。 */
#page_conts .contact_form .privacy_area h2 {
  margin: 18px 0 6px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--ink);
}
#page_conts .contact_form .privacy_area h3 {
  margin: 14px 0 4px;
  font-size: 15px;
  font-weight: 900;
}

/* その他物件（小さめグリッド） */
.item_bukken_single .other .item_list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.item_bukken_single .other .item_list .ttl { font-size: 15px; }

/* 一覧に戻る */
.btn_back { text-align: center; }
#page_conts .btn_back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 8px;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease;
}
#page_conts .btn_back a:hover { transform: translateY(-2px); }

/* ---------------------------------------------------------
   ニュース詳細（single.php / .page_news）
   --------------------------------------------------------- */
.page_news .ttl_area { margin-bottom: 24px; }
.page_news .date { margin: 0 0 8px; color: var(--accent-2); font-weight: 900; letter-spacing: .04em; }
.page_news .single_tit {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.3;
}
.page_news .cont_area { color: var(--ink); }

/* ---------------------------------------------------------
   404
   --------------------------------------------------------- */
.page_404 { text-align: center; }
.page_404 p { color: var(--muted); font-weight: 700; }
.page_404 .btn { margin-top: 26px; }
#page_conts.page_404 .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(233, 66, 53, .34);
}

/* ---------------------------------------------------------
   レスポンシブ
   --------------------------------------------------------- */
@media (max-width: 880px) {
  .item_list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .item_bukken_single .other .item_list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .item_bukken_single .info th { width: 120px; font-size: 14px; }
}

@media (max-width: 620px) {
  body { padding-top: 60px; }
  .item_list { grid-template-columns: 1fr; }
  .item_bukken_single .other .item_list { grid-template-columns: 1fr; }
  .item_bukken_single .info th { display: block; width: 100%; border-bottom: 0; }
  .item_bukken_single .info td { display: block; width: 100%; }
}

/* =========================================================
   トランクルーム紹介ページ（page-trunkroom.php）
   .trunkroom でスコープし、テーマ既存の .hero/.button 等と競合させない
   ========================================================= */
.trunkroom { --tr-header: 68px; }
/* 固定ヘッダー分のbody余白を打ち消してヒーローを全面に */
.trunkroom .hero { margin-top: calc(var(--tr-header) * -1); }

.trunkroom .hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8,29,43,.94) 0%, rgba(8,29,43,.84) 40%, rgba(8,29,43,.18) 74%, rgba(8,29,43,.62) 100%),
    url("../img/trunk-room-hero.png");
  background-size: cover;
  background-position: center;
}
.trunkroom .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(255,253,248,0), var(--paper));
  pointer-events: none;
}
.trunkroom .hero-inner { position: relative; z-index: 1; max-width: 760px; }
.trunkroom .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 38px; padding: 0 14px; border-radius: 999px;
  color: var(--navy); background: var(--gold); font-weight: 900; line-height: 1;
}
.trunkroom .hero h1 { margin: 24px 0 16px; font-size: clamp(32px, 4.8vw, 72px); line-height: 1.06; font-weight: 900; }
.trunkroom .hero-lead { max-width: 640px; margin: 0 0 26px; color: rgba(255,255,255,.9); font-size: clamp(16px, 2.1vw, 22px); font-weight: 700; }
.trunkroom .hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.trunkroom .hero-points span {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px); font-weight: 800; font-size: 14px;
}
.trunkroom .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trunkroom .note { color: rgba(255,255,255,.76); font-size: 13px; }
.trunkroom .photo-note { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }

.trunkroom .button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; padding: 0 24px; border-radius: 8px; font-weight: 900; line-height: 1.2;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease;
}
.trunkroom .button:hover { transform: translateY(-2px); }
.trunkroom .button-primary { color: var(--white); background: var(--accent); box-shadow: 0 16px 34px rgba(233,66,53,.34); }
.trunkroom .button-secondary { color: var(--white); border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); }

.trunkroom section { padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.trunkroom .section-inner { max-width: 1120px; margin: 0 auto; }
.trunkroom .section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.trunkroom .eyebrow { margin: 0 0 8px; color: var(--accent-2); font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.trunkroom h2 { margin: 0; font-size: clamp(28px, 4.3vw, 48px); line-height: 1.18; font-weight: 900; }
.trunkroom .support { max-width: 420px; margin: 0; color: var(--muted); font-weight: 600; }

.trunkroom .features { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.trunkroom .feature { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.trunkroom .feature .ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px; border-radius: 10px; color: var(--white); background: var(--accent-2); font-size: 22px; font-weight: 900; }
.trunkroom .feature h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.35; }
.trunkroom .feature p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }

.trunkroom .use-cases { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.trunkroom .case { min-height: 188px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.trunkroom .case-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border-radius: 8px; color: var(--white); background: var(--accent-2); font-size: 24px; font-weight: 900; }
.trunkroom .case h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.35; }
.trunkroom .case p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }

.trunkroom .price-band { color: var(--white); background: var(--navy); }
.trunkroom .price-band .eyebrow { color: var(--gold); }
.trunkroom .price-band h2 { color: var(--white); }
.trunkroom .price-band .support { color: rgba(255,255,255,.78); }
.trunkroom .plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 26px; }
.trunkroom .plan-card { position: relative; display: flex; flex-direction: column; min-height: 320px; padding: clamp(22px,4vw,32px); border-radius: 8px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.trunkroom .plan-badge { display: inline-flex; min-height: 32px; align-items: center; padding: 0 12px; border-radius: 999px; background: #eaf6f5; color: var(--accent-2); font-size: 13px; font-weight: 900; }
.trunkroom .plan-title { margin: 16px 0 4px; font-size: clamp(28px,4vw,40px); line-height: 1.08; font-weight: 900; }
.trunkroom .plan-price { display: flex; align-items: baseline; gap: 4px; margin: 10px 0 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--accent); font-weight: 900; }
.trunkroom .plan-price .num { font-size: clamp(30px,4vw,50px); line-height: 1; }
.trunkroom .plan-price .unit { color: var(--ink); font-size: 16px; }
.trunkroom .feature-list { display: grid; gap: 10px; margin: 0 0 0; padding: 0; list-style: none; color: var(--muted); font-weight: 700; font-size: 14px; }
.trunkroom .feature-list li { display: flex; gap: 10px; align-items: start; }
.trunkroom .feature-list li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 9px; border-radius: 999px; background: var(--accent-2); }
.trunkroom .plan-detail-link { display: inline-flex; align-items: center; gap: 4px; margin-top: auto; padding-top: 20px; color: var(--accent-2); font-size: 14px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.trunkroom .plan-detail-link:hover { color: var(--ink); }

.trunkroom .plans-cta { margin-top: 28px; text-align: center; }
.trunkroom .plans-cta .button-secondary { border-color: rgba(255,255,255,.6); }

.trunkroom .steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; counter-reset: step; }
.trunkroom .step { min-height: 190px; padding: 24px; border-radius: 8px; background: var(--soft); counter-increment: step; }
.trunkroom .step::before { content: "0" counter(step); color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.trunkroom .step h3 { margin: 10px 0 8px; font-size: 20px; line-height: 1.35; }
.trunkroom .step p { margin: 0; color: var(--muted); font-weight: 600; font-size: 15px; }

.trunkroom .access-addr { margin: 0 0 20px; color: var(--muted); font-weight: 700; }
.trunkroom .access-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }

.trunkroom .final-cta { color: var(--white); background: linear-gradient(135deg, rgba(12,123,117,.95), rgba(16,47,67,.98)), var(--navy); }
.trunkroom .final-cta .eyebrow { color: var(--gold); }
.trunkroom .final-cta h2 { color: var(--white); }
.trunkroom .final-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.trunkroom .final-card h2 { max-width: 760px; }
.trunkroom .final-card p { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.8); font-weight: 700; }

.trunkroom .sticky-cta { position: fixed; z-index: 30; left: 50%; bottom: 16px; display: none; width: min(94vw, 620px); transform: translateX(-50%); border-radius: 10px; background: rgba(16,47,67,.94); box-shadow: 0 16px 44px rgba(0,0,0,.24); backdrop-filter: blur(12px); padding: 8px; }
.trunkroom .sticky-cta a { display: flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 8px; color: var(--white); background: var(--accent); font-weight: 900; }

@media (max-width: 880px) {
  .trunkroom .hero { min-height: auto; padding-top: 104px; background: linear-gradient(180deg, rgba(8,29,43,.96) 0%, rgba(8,29,43,.88) 52%, rgba(8,29,43,.68) 100%), url("../img/trunk-room-hero.png"); background-size: cover; background-position: 58% center; }
  .trunkroom .section-head, .trunkroom .final-card { display: block; }
  .trunkroom .support, .trunkroom .final-card p { margin-top: 12px; }
  .trunkroom .features, .trunkroom .use-cases, .trunkroom .plans, .trunkroom .steps { grid-template-columns: 1fr; }
  .trunkroom .sticky-cta { display: block; }
  .trunkroom .final-cta { padding-bottom: 132px; }
}
@media (max-width: 620px) {
  .trunkroom { --tr-header: 60px; }
  .trunkroom .button { width: 100%; }
}

/* =========================================================
   印刷物制作 紹介ページ（page-print.php）
   .printlp でスコープ（トークンは renewal.css を共有）
   ========================================================= */
.printlp { --tr-header: 68px; }
.printlp .hero { margin-top: calc(var(--tr-header) * -1); }

.printlp .hero {
  position: relative; min-height: 90svh; display: grid; align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 54px; color: var(--white);
  background:
    linear-gradient(90deg, rgba(8,29,43,.94) 0%, rgba(8,29,43,.84) 40%, rgba(8,29,43,.2) 74%, rgba(8,29,43,.62) 100%),
    url("../img/print-service.png");
  background-size: cover; background-position: center;
}
.printlp .hero::after { content: ""; position: absolute; inset: auto 0 0; height: 130px; background: linear-gradient(180deg, rgba(255,253,248,0), var(--paper)); pointer-events: none; }
.printlp .hero-inner { position: relative; z-index: 1; max-width: 780px; }
.printlp .kicker { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 14px; border-radius: 999px; color: var(--navy); background: var(--gold); font-weight: 900; line-height: 1; }
.printlp .hero h1 { margin: 24px 0 16px; font-size: clamp(32px, 4.8vw, 72px); line-height: 1.06; font-weight: 900; }
.printlp .hero-lead { max-width: 640px; margin: 0 0 26px; color: rgba(255,255,255,.9); font-size: clamp(16px, 2.1vw, 22px); font-weight: 700; }
.printlp .hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.printlp .hero-points span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); backdrop-filter: blur(8px); font-weight: 800; font-size: 14px; }
.printlp .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.printlp .note { color: rgba(255,255,255,.76); font-size: 13px; }
.printlp .photo-note { margin: 12px 0 0; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }

.printlp .button { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 24px; border-radius: 8px; font-weight: 900; line-height: 1.2; border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.printlp .button:hover { transform: translateY(-2px); }
.printlp .button-primary { color: var(--white); background: var(--accent); box-shadow: 0 16px 34px rgba(233,66,53,.34); }
.printlp .button-secondary { color: var(--white); border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); }

.printlp section { padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.printlp .section-inner { max-width: 1120px; margin: 0 auto; }
.printlp .section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.printlp .eyebrow { margin: 0 0 8px; color: var(--accent-2); font-size: 14px; font-weight: 900; letter-spacing: .08em; }
.printlp h2 { margin: 0; font-size: clamp(28px, 4.3vw, 48px); line-height: 1.18; font-weight: 900; }
.printlp .support { max-width: 420px; margin: 0; color: var(--muted); font-weight: 600; }

.printlp .features { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.printlp .feature { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.printlp .feature .ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px; border-radius: 10px; color: var(--white); background: var(--accent-2); font-size: 20px; font-weight: 900; }
.printlp .feature h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.35; }
.printlp .feature p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }

.printlp .lineup-band { color: var(--white); background: var(--navy); }
.printlp .lineup-band .eyebrow { color: var(--gold); }
.printlp .lineup-band h2 { color: var(--white); }
.printlp .lineup-band .support { color: rgba(255,255,255,.78); }
.printlp .lineup { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 26px; }
.printlp .item { display: flex; flex-direction: column; gap: 8px; min-height: 150px; padding: 24px; border-radius: 8px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.printlp .item .tag { align-self: flex-start; min-height: 28px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 999px; background: #eaf6f5; color: var(--accent-2); font-size: 12px; font-weight: 900; }
.printlp .item h3 { margin: 6px 0 0; font-size: 22px; font-weight: 900; line-height: 1.2; }
.printlp .item p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }
.printlp .lineup-note { margin: 22px 0 0; color: rgba(255,255,255,.82); font-weight: 700; text-align: center; }

.printlp .steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; counter-reset: step; }
.printlp .step { min-height: 190px; padding: 24px; border-radius: 8px; background: var(--soft); counter-increment: step; }
.printlp .step::before { content: "0" counter(step); color: var(--accent); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.printlp .step h3 { margin: 10px 0 8px; font-size: 20px; line-height: 1.35; }
.printlp .step p { margin: 0; color: var(--muted); font-weight: 600; font-size: 15px; }

.printlp .final-cta { color: var(--white); background: linear-gradient(135deg, rgba(12,123,117,.95), rgba(16,47,67,.98)), var(--navy); }
.printlp .final-cta .eyebrow { color: var(--gold); }
.printlp .final-cta h2 { color: var(--white); }
.printlp .final-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.printlp .final-card h2 { max-width: 760px; }
.printlp .final-card p { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.8); font-weight: 700; }

.printlp .sticky-cta { position: fixed; z-index: 30; left: 50%; bottom: 16px; display: none; width: min(94vw, 620px); transform: translateX(-50%); border-radius: 10px; background: rgba(16,47,67,.94); box-shadow: 0 16px 44px rgba(0,0,0,.24); backdrop-filter: blur(12px); padding: 8px; }
.printlp .sticky-cta a { display: flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 8px; color: var(--white); background: var(--accent); font-weight: 900; }

@media (max-width: 880px) {
  .printlp .hero { min-height: auto; padding-top: 104px; background: linear-gradient(180deg, rgba(8,29,43,.96) 0%, rgba(8,29,43,.88) 52%, rgba(8,29,43,.68) 100%), url("../img/print-service.png"); background-size: cover; background-position: 58% center; }
  .printlp .section-head, .printlp .final-card { display: block; }
  .printlp .support, .printlp .final-card p { margin-top: 12px; }
  .printlp .features, .printlp .lineup, .printlp .steps { grid-template-columns: 1fr; }
  .printlp .sticky-cta { display: block; }
  .printlp .final-cta { padding-bottom: 132px; }
}
@media (max-width: 620px) {
  .printlp { --tr-header: 60px; }
  .printlp .button { width: 100%; }
}
