:root {
  --paper: #ede7db;
  --paper-raised: #f5f0e6;
  --ink: #26221d;
  --ink-soft: #59524a;
  --teal: #1e5c53;
  --teal-deep: #12332e;
  --mustard: #c9862c;
  --mustard-soft: #e8c990;
  --rust: #ad4a2e;
  --line: #d8cfbd;
  --card-shadow: 0 1px 0 rgba(38,34,29,0.06), 0 10px 28px -14px rgba(38,34,29,0.28);
  --font-display: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --font-body: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  --font-tag: "Courier New", ui-monospace, monospace;
}
:root[data-theme="dark"] {
  --paper: #201c17; --paper-raised: #29241e; --ink: #ede4d6; --ink-soft: #b3a89a;
  --teal: #4fa89a; --teal-deep: #1c473f; --mustard: #e0a355; --mustard-soft: #5c451f;
  --rust: #d97a5c; --line: #3d362c;
  --card-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 10px 30px -14px rgba(0,0,0,0.6);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #201c17; --paper-raised: #29241e; --ink: #ede4d6; --ink-soft: #b3a89a;
    --teal: #4fa89a; --teal-deep: #1c473f; --mustard: #e0a355; --mustard-soft: #5c451f;
    --rust: #d97a5c; --line: #3d362c;
    --card-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 10px 30px -14px rgba(0,0,0,0.6);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.demo-flag { background: var(--teal-deep); color: #f5f0e6; text-align: center; font-size: 0.78rem; letter-spacing: 0.03em; padding: 0.55rem 1rem; }
.top-strip { background: var(--paper-raised); border-bottom: 1px solid var(--line); font-size: 0.72rem; color: var(--ink-soft); text-align: center; padding: 0.35rem; letter-spacing: 0.03em; }

header.site { max-width: 1120px; margin: 0 auto; padding: 1.3rem 1.5rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand .mark { width: 2.3rem; height: 2.3rem; border-radius: 8px; background: linear-gradient(145deg, var(--teal), var(--teal-deep)); display: flex; align-items: center; justify-content: center; color: var(--mustard-soft); }
.brand .word { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.brand .word small { display: block; font-family: var(--font-body); font-size: 0.68rem; color: var(--ink-soft); font-weight: 400; letter-spacing: 0.02em; }
.promo-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.promo-chips span { font-size: 0.72rem; border: 1px solid var(--line); border-radius: 5px; padding: 0.4rem 0.7rem; color: var(--ink-soft); background: var(--paper-raised); }
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-actions .tel { font-family: var(--font-tag); color: var(--teal); font-size: 0.95rem; display: flex; align-items: center; gap: 0.35rem; }
.btn-pill { border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.85rem; background: var(--paper-raised); }
.btn-pill.solid { background: var(--teal-deep); color: #f5f0e6; border-color: var(--teal-deep); }

nav.subnav { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
nav.subnav ul { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-soft); }
nav.subnav a { display: inline-block; padding: 0.7rem 0; }
nav.subnav a[aria-current="page"] { color: var(--teal); font-weight: 600; }

main { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem 3rem; }

.breadcrumb { font-size: 0.78rem; color: var(--ink-soft); margin: 1.4rem 0 0; }
.breadcrumb a { color: var(--teal); }

.page-banner { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; padding: 2rem; margin: 1.2rem 0 2rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; text-align: center; }
.page-banner .eyebrow { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.4rem; }
.page-banner h1 { font-family: var(--font-display); font-size: 1.7rem; margin: 0; }
.page-banner svg { width: 2.6rem; height: 2.6rem; color: var(--mustard); flex-shrink: 0; }

.layout-with-sidebar { display: grid; grid-template-columns: 220px 1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 760px) { .layout-with-sidebar { grid-template-columns: 1fr; } }
.side-nav h5 { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.05em; margin: 0 0 0.6rem; }
.side-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.side-nav a { display: flex; justify-content: space-between; padding: 0.55rem 0.8rem; border: 1px solid var(--line); border-radius: 6px; font-size: 0.83rem; background: var(--paper-raised); }
.side-nav a[aria-current="page"] { border-color: var(--teal); color: var(--teal); font-weight: 600; }

.section-head { display: flex; justify-content: space-between; align-items: baseline; margin: 3rem 0 1.4rem; flex-wrap: wrap; gap: 0.5rem; }
.section-head .eyebrow { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.3rem; }
.section-head h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.section-head .note { font-size: 0.8rem; color: var(--ink-soft); }

.reasons { display: grid; grid-template-columns: 1.3fr repeat(2, 1fr); gap: 1rem; }
@media (max-width: 800px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .reasons { grid-template-columns: 1fr; } }
.reason-hero { grid-row: span 2; background: var(--mustard-soft); border-radius: 10px; padding: 1.6rem; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.reason-hero .num { font-family: var(--font-tag); font-size: 0.85rem; color: var(--teal-deep); }
.reason-hero strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--teal-deep); }
.reason-tile { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.2rem; }
.reason-tile .stat { font-family: var(--font-tag); font-variant-numeric: tabular-nums; font-size: 1.3rem; color: var(--teal); display: block; }
.reason-tile .stat small { font-size: 0.7rem; color: var(--ink-soft); font-family: var(--font-body); }
.reason-tile p { margin: 0.3rem 0 0; font-size: 0.82rem; color: var(--ink-soft); }

.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; padding: 3rem 0; }
@media (max-width: 800px) { .hero { grid-template-columns: 1fr; } }
.hero .eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--teal); text-transform: uppercase; font-weight: 600; }
.hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.5; margin: 0.7rem 0 1rem; text-wrap: balance; }
.hero p.lead { color: var(--ink-soft); max-width: 46ch; }
.hero-tags { display: flex; gap: 0.6rem; margin-top: 1.4rem; flex-wrap: wrap; }
.hero-tags span { font-family: var(--font-tag); font-size: 0.76rem; border: 1px dashed var(--line); padding: 0.35rem 0.7rem; border-radius: 4px; color: var(--ink-soft); }
.area-line { margin-top: 1.3rem; font-size: 0.82rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: baseline; flex-wrap: wrap; }
.area-line .tag { background: var(--teal-deep); color: #f5f0e6; border-radius: 4px; padding: 0.2rem 0.55rem; font-size: 0.72rem; }
.hero-art { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 14px; padding: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; place-items: center; }
.hero-art .item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--teal); }
.hero-art .item svg { width: 2.6rem; height: 2.6rem; }
.hero-art .item span { font-size: 0.68rem; color: var(--ink-soft); }
.hero-art .item:nth-child(2), .hero-art .item:nth-child(4) { color: var(--mustard); }

section.sim { margin: 1rem 0 2rem; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--card-shadow); padding: 2rem; position: relative; }
section.sim::before { content: ""; position: absolute; top: -10px; left: 32px; width: 18px; height: 18px; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 50%; box-shadow: inset 0 0 0 3px var(--paper); }
.sim-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.sim-head h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.sim-head .tag-label { font-family: var(--font-tag); font-size: 0.75rem; color: var(--teal); letter-spacing: 0.06em; }
.sim-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .sim-grid { grid-template-columns: 1fr; } }
fieldset { border: none; padding: 0; margin: 0 0 1.6rem; }
fieldset legend { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.04em; margin-bottom: 0.7rem; padding: 0; }
.item-list { display: flex; flex-direction: column; gap: 0.55rem; }
.item-row { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 6px; padding: 0.6rem 0.9rem; background: var(--paper); }
.item-row:has(input:checked) { border-color: var(--teal); }
.item-row label { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; }
.item-row label svg { width: 1.5rem; height: 1.5rem; color: var(--teal); flex-shrink: 0; }
.item-row input[type="checkbox"] { accent-color: var(--teal); width: 1.05rem; height: 1.05rem; }
.item-row .price { font-family: var(--font-tag); font-variant-numeric: tabular-nums; color: var(--ink-soft); font-size: 0.86rem; }
.period-select { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.period-select button { font-family: var(--font-body); border: 1px solid var(--line); background: var(--paper); color: var(--ink); border-radius: 999px; padding: 0.45rem 1.05rem; font-size: 0.86rem; cursor: pointer; }
.period-select button[aria-pressed="true"] { background: var(--teal); border-color: var(--teal); color: #fbf7ee; }
.sim-result { background: var(--teal-deep); color: #f5f0e6; border-radius: 8px; padding: 1.6rem; display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; }
.sim-result .label { font-size: 0.82rem; letter-spacing: 0.05em; color: #cdbf9f; }
.sim-result .amount { font-family: var(--font-tag); font-variant-numeric: tabular-nums; font-size: 2.4rem; line-height: 1.1; }
.sim-result .amount span { font-size: 1.05rem; margin-left: 0.3rem; color: #cdbf9f; }
.sim-result .sub { font-size: 0.85rem; color: #d8ccae; margin-top: 0.6rem; border-top: 1px solid rgba(245,240,238,0.15); padding-top: 0.7rem; }
.sim-result .note { font-size: 0.72rem; color: #b8ab8d; margin-top: 0.8rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.product-card { border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem; background: var(--paper-raised); display: flex; flex-direction: column; gap: 0.5rem; }
.product-card .icon-badge { width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--mustard-soft); display: flex; align-items: center; justify-content: center; color: var(--teal-deep); }
.product-card .icon-badge svg { width: 1.5rem; height: 1.5rem; }
.product-card h3 { font-size: 0.98rem; margin: 0.2rem 0 0; font-weight: 600; }
.product-card .spec { font-size: 0.72rem; color: var(--ink-soft); }
.product-card .price { font-family: var(--font-tag); font-variant-numeric: tabular-nums; color: var(--teal); font-size: 1.05rem; margin-top: auto; }
.product-card .price small { color: var(--ink-soft); font-family: var(--font-body); font-size: 0.72rem; }
.product-card .view-link { font-size: 0.78rem; color: var(--teal); text-decoration: underline; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table.price-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 480px; }
table.price-table th, table.price-table td { padding: 0.7rem 1rem; text-align: right; border-bottom: 1px solid var(--line); }
table.price-table th:first-child, table.price-table td:first-child { text-align: left; }
table.price-table thead th { background: var(--teal-deep); color: #f5f0e6; font-weight: 600; font-size: 0.8rem; }
table.price-table td { font-family: var(--font-tag); font-variant-numeric: tabular-nums; }
table.price-table tbody tr:nth-child(even) { background: var(--paper-raised); }
table.price-table tbody tr.is-highlight { outline: 2px solid var(--teal); outline-offset: -2px; }

.flow-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 860px) { .flow-line { grid-template-columns: repeat(2, 1fr); } }
.flow-step { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; padding: 1.2rem 1rem; }
.flow-step .n { font-family: var(--font-tag); color: var(--teal); font-size: 0.8rem; }
.flow-step svg { width: 1.8rem; height: 1.8rem; color: var(--mustard); margin: 0.5rem 0; }
.flow-step h4 { margin: 0.2rem 0 0.35rem; font-size: 0.92rem; }
.flow-step p { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }

.flow-detail { display: flex; flex-direction: column; gap: 1rem; }
.flow-detail-row { display: grid; grid-template-columns: 100px 3rem 1fr; gap: 1.4rem; align-items: center; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; padding: 1.4rem; }
@media (max-width: 640px) { .flow-detail-row { grid-template-columns: 60px 2.4rem 1fr; } }
.flow-detail-row .n { font-family: var(--font-tag); color: var(--teal); font-size: 0.85rem; }
.flow-detail-row svg { width: 2.2rem; height: 2.2rem; color: var(--mustard); }
.flow-detail-row h3 { margin: 0 0 0.4rem; font-family: var(--font-display); font-size: 1.1rem; }
.flow-detail-row p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

.crosssell { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .crosssell { grid-template-columns: 1fr; } }
.crosssell-card { background: var(--paper-raised); border: 1px solid var(--line); border-left: 3px solid var(--rust); border-radius: 6px; padding: 1.2rem 1.3rem; }
.crosssell-card h4 { margin: 0 0 0.4rem; font-family: var(--font-display); font-size: 1.05rem; }
.crosssell-card p { margin: 0; font-size: 0.87rem; color: var(--ink-soft); }

.mypage { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mypage-bar { background: var(--teal-deep); color: #f5f0e6; font-size: 0.8rem; padding: 0.55rem 1rem; display: flex; justify-content: space-between; }
.mypage-body { padding: 1.4rem; background: var(--paper-raised); }
.mypage-row { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; gap: 1rem; flex-wrap: wrap; }
.mypage-row:last-child { border-bottom: none; }
.mypage-row .status { font-size: 0.72rem; padding: 0.15rem 0.6rem; border-radius: 999px; background: var(--mustard-soft); color: var(--teal-deep); white-space: nowrap; }
.mypage-row .line-tag { font-size: 0.7rem; padding: 0.15rem 0.55rem; border-radius: 4px; background: var(--teal); color: #f5f0e6; }

.voice-note { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 1rem; }
.voice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.voice-card { border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem; background: var(--paper-raised); }
.voice-card .who { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.voice-card .avatar { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--teal); color: #f5f0e6; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; flex-shrink: 0; }
.voice-card .meta { font-size: 0.75rem; color: var(--ink-soft); }
.voice-card .tag { display: inline-block; font-size: 0.68rem; background: var(--mustard-soft); color: var(--teal-deep); border-radius: 4px; padding: 0.1rem 0.45rem; margin-bottom: 0.4rem; }
.voice-card p { margin: 0; font-size: 0.85rem; }

.faq-group { margin-bottom: 2.2rem; }
.faq-group h3 { font-family: var(--font-display); font-size: 1.1rem; border-left: 3px solid var(--teal); padding-left: 0.7rem; margin-bottom: 0.8rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1rem 0; display: flex; gap: 0.9rem; }
.faq-item .q-badge { width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--teal-deep); color: #f5f0e6; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; font-family: var(--font-tag); }
.faq-item .body h4 { margin: 0 0 0.35rem; font-size: 0.92rem; }
.faq-item .body p { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }

.pay-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.pay-chip { border: 1px solid var(--line); border-radius: 6px; padding: 0.6rem 1rem; font-size: 0.82rem; background: var(--paper-raised); display: flex; align-items: center; gap: 0.5rem; }
.pay-chip svg { width: 1.2rem; height: 1.2rem; color: var(--teal); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-top: 1.5rem; }
@media (max-width: 800px) { .product-layout { grid-template-columns: 1fr; } }
.gallery-main { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.gallery-main svg { width: 40%; height: 40%; color: var(--teal); }
.thumb-strip { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.thumb { width: 3.2rem; height: 3.2rem; border: 1px solid var(--line); border-radius: 6px; background: var(--paper-raised); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.thumb svg { width: 1.4rem; height: 1.4rem; color: var(--ink-soft); }
.thumb.active { border-color: var(--teal); }
.product-info h1 { font-family: var(--font-display); font-size: 1.6rem; margin: 0 0 0.6rem; text-wrap: balance; }
.product-info .desc { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.spec-list { list-style: none; padding: 0; margin: 0 0 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1rem; }
.spec-list li { display: flex; justify-content: space-between; gap: 1rem; }
.spec-list strong { color: var(--ink); font-weight: 600; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.2rem; flex-wrap: wrap; }
.qty-row label { font-size: 0.85rem; color: var(--ink-soft); }
.qty-row input[type="number"] { width: 4.2rem; padding: 0.45rem 0.6rem; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); font-family: var(--font-tag); }
.btn-primary { background: var(--teal-deep); color: #f5f0e6; border: none; border-radius: 6px; padding: 0.85rem 1.7rem; font-size: 0.95rem; cursor: pointer; }
.btn-primary:hover { background: var(--teal); }
.note-line { font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.6rem; }
.related-nav { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.5rem; }
.related-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 1rem; font-size: 0.82rem; background: var(--paper-raised); }
.related-nav a[aria-current="page"] { background: var(--teal); border-color: var(--teal); color: #fbf7ee; }

.contact-columns { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.2rem; margin-top: 1.5rem; }
@media (max-width: 800px) { .contact-columns { grid-template-columns: 1fr; } }
.contact-panel { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 10px; padding: 1.6rem; }
.contact-panel h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 0.8rem; }
.contact-panel ol { padding-left: 1.2rem; font-size: 0.87rem; color: var(--ink-soft); display: flex; flex-direction: column; gap: 0.5rem; }
.form-grid { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row label { display: block; font-size: 0.85rem; margin-bottom: 0.4rem; }
.form-row .required { color: var(--rust); font-size: 0.7rem; border: 1px solid var(--rust); border-radius: 3px; padding: 0.05rem 0.35rem; margin-left: 0.4rem; }
.form-row input, .form-row textarea { width: 100%; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); font-family: var(--font-body); font-size: 0.9rem; }
.form-row textarea { min-height: 7rem; resize: vertical; }

footer.site { border-top: 1px solid var(--line); margin-top: 3rem; background: var(--teal-deep); color: #d8ccae; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 2.5rem 1.5rem 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-inner h5 { color: #f5f0e6; font-size: 0.8rem; letter-spacing: 0.05em; margin: 0 0 0.8rem; }
.footer-inner ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.82rem; }
.footer-inner a { color: #d8ccae; }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding: 1rem 1.5rem 2rem; font-size: 0.75rem; border-top: 1px solid rgba(245,240,238,0.15); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
