@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Shippori+Mincho:wght@600;800&family=Yuji+Syuku&display=swap');

:root {
  --navy: #0e2a52;
  --navy-dark: #071a35;
  --navy-light: #1a4a86;
  --gold: #38bdf8;
  --gold-light: #7dd3fc;
  --gold-dark: #0284c7;
  --bg: #f4f8fd;
  --bg-soft: #e9f1fb;
  --white: #ffffff;
  --text: #1b2532;
  --text-soft: #5b6b81;
  --line: #d9e6f7;
  --danger: #b5452f;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(14, 42, 82, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 42, 82, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-right { opacity: 1; transform: none; transition: none; }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: "Shippori Mincho", "Noto Sans JP", serif; }
p { margin: 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top bar ===== */
.top-bar {
  background: var(--navy-dark);
  color: #cbd3de;
  font-size: 12.5px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #cbd3de; }
.top-bar .top-bar-hours { display: flex; align-items: center; gap: 6px; }
.top-bar .dot { color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.15em;
}
.brand-emblem {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Yuji Syuku', 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
  font-size: 13.5px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--navy);
  white-space: nowrap;
}
.main-nav a.active,
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-tel {
  text-align: right;
  line-height: 1.3;
}
.header-tel .tel-label {
  font-size: 11px;
  color: var(--text-soft);
}
.header-tel .tel-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(201,162,39,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(201,162,39,0.45); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-small { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

.header-btn-sm { padding: 10px 18px; font-size: 13px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #cdeaff 0%, #9ed7fb 45%, #6bbdf5 100%);
  color: #fff;
  overflow: hidden;
  padding: 76px 0 96px;
}
.hero-sky-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: -70px;
  right: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,252,230,0.95) 0%, rgba(255,248,210,0.55) 42%, rgba(255,248,210,0) 72%);
}
.hero-cloud { position: absolute; opacity: 0.9; }
.hero-cloud-1 { top: 32px; left: 4%; width: 150px; }
.hero-cloud-2 { top: 130px; right: 12%; width: 110px; opacity: 0.85; }
.hero-cloud-3 { bottom: 30px; right: 34%; width: 90px; opacity: 0.7; }
.hero-cloud-4 { top: 60px; left: 38%; width: 70px; opacity: 0.6; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(102deg, rgba(7,26,53,0.94) 0%, rgba(7,26,53,0.85) 30%, rgba(7,26,53,0.4) 60%, rgba(7,26,53,0.08) 85%);
}
.hero-banner-section {
  padding: 0 0 44px;
  background: linear-gradient(180deg, #eaf4ff 0%, #f4f8fd 100%);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(14,42,82,0.12);
}
.hero-banner-section .hero-actions {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 24px;
}
.hero-banner-section .hero-stats {
  justify-content: center;
  margin: 0 auto;
}
.hero-banner-section .hero-stats .stat-num {
  color: var(--gold-dark);
}
.hero-banner-section .hero-stats .stat-label {
  color: var(--text-soft);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p.lead {
  font-size: 16px;
  color: #cfd8e6;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 28px;
}
.hero-stats .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  font-family: "Shippori Mincho", serif;
}
.hero-stats .stat-label {
  font-size: 12.5px;
  color: #b8c2d2;
}

.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(7,26,53,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
}
.hero-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}
.hero-mini-list { display: flex; flex-direction: column; gap: 14px; }
.hero-mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 14px;
}
.hero-mini-item .icon-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.hero-mini-item .icon-circle svg { width: 20px; height: 20px; stroke: var(--navy-dark); }
.hero-mini-item span { color: #e8ecf3; font-size: 14.5px; font-weight: 500; }

/* ===== Section base ===== */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color: #fff; }
.section-white { background: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-navy .eyebrow, .section-navy .section-head p { color: var(--gold-light); }
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.section-navy .section-head h2 { color: #fff; }
.section-head p { color: var(--text-soft); font-size: 15px; }

/* ===== Item grid (買取品目) ===== */
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.item-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: all .25s ease;
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.item-card .icon-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcebfd, #aecdf5);
  display: flex; align-items: center; justify-content: center;
}
.item-card .icon-wrap svg { width: 28px; height: 28px; stroke: var(--gold-dark); }
.item-card h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family:"Noto Sans JP"; }
.item-card p { font-size: 12.5px; color: var(--text-soft); }

/* ===== Reasons (選ばれる理由) ===== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 22px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid var(--gold);
}
.reason-card .reason-num {
  position: absolute;
  top: -18px; right: 18px;
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--bg-soft);
  z-index: 0;
}
.reason-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.reason-card .icon-wrap svg { width: 28px; height: 28px; stroke: var(--gold-light); }
.reason-card h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 10px; font-weight: 700; position:relative; z-index:1; }
.reason-card p { font-size: 13.5px; color: var(--text-soft); position:relative; z-index:1; }

/* ===== Flow / Steps ===== */
.flow-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.flow-tab {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.flow-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-item .step-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-soft); }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
}

/* ===== Price table ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.price-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { color: var(--gold-dark); font-weight: 800; font-size: 15px; }
.price-note { font-size: 12px; color: var(--text-soft); margin-top: 14px; }

/* ===== Testimonials ===== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.voice-stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.voice-card p.voice-text { font-size: 13.5px; color: var(--text); margin-bottom: 16px; }
.voice-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-soft); }
.voice-meta .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold-dark);
}

/* ===== FAQ Accordion ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.faq-q .qa-mark { color: var(--gold); font-family:"Shippori Mincho",serif; font-size: 20px; }
.faq-q .toggle-icon { margin-left: auto; transition: transform .2s ease; color: var(--text-soft); }
.faq-item.is-open .toggle-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 24px;
  font-size: 13.5px;
  color: var(--text-soft);
  display: flex;
  gap: 14px;
}
.faq-item.is-open .faq-a { max-height: 320px; padding-bottom: 22px; }
.faq-a .qa-mark { color: var(--navy-light); font-family:"Shippori Mincho",serif; font-size: 18px; flex-shrink:0; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  border-radius: 18px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--navy-dark);
}
.cta-banner h3 { font-size: 24px; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; opacity: 0.85; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Shop cards ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shop-card .shop-media {
  height: 140px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items:center; justify-content:center;
  position: relative;
}
.shop-card .shop-media svg { width: 46px; height: 46px; stroke: var(--gold-light); }
.shop-card .shop-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px;
}
.shop-card .shop-body { padding: 22px; }
.shop-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.shop-info-row {
  display: flex; gap: 10px; font-size: 13px; color: var(--text-soft);
  margin-bottom: 8px; align-items: flex-start;
}
.shop-info-row svg { width: 16px; height: 16px; stroke: var(--gold-dark); flex-shrink:0; margin-top:2px; }
.shop-card .shop-actions { display:flex; gap: 10px; margin-top: 16px; }

/* ===== Breadcrumb / page header ===== */
.page-header {
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 56px 0 44px;
  text-align: center;
}
.page-header .eyebrow { color: var(--gold-light); }
.page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.page-header p { color: #cfd8e6; font-size: 14.5px; }
.breadcrumb {
  font-size: 12.5px;
  color: var(--text-soft);
  padding: 16px 0;
}
.breadcrumb a { color: var(--gold-dark); }

/* ===== Category detail blocks (items page) ===== */
.category-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.category-block:last-child { border-bottom: none; }
.category-block.reverse { direction: rtl; }
.category-block.reverse > * { direction: ltr; }
.category-visual {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-soft), #bcd8f7);
  display: flex; align-items: center; justify-content: center;
}
.category-visual svg { width: 150px; height: 150px; }
.category-visual { overflow: hidden; }
.category-visual img { width: 100%; height: 100%; object-fit: contain; background: #ffffff; padding: 14px; box-sizing: border-box; }
.item-card .icon-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.item-card .icon-wrap.icon-wrap-photo { width: 138px; height: 138px; }
.item-card .icon-wrap.icon-wrap-square { width: 180px; height: 180px; border-radius: 14px; }
.item-card .icon-wrap.icon-wrap-square img { border-radius: 14px; }
.category-tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.category-text h3 { font-size: 22px; color: var(--navy); margin-bottom: 14px; }
.category-text p { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text);
}

/* ===== Form ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
.form-grid .full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--danger); font-size: 11px; margin-left: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 12.5px; color: var(--text-soft); margin-top: 22px; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.info-strip-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-strip-item .icon-wrap {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink:0;
  background: var(--navy); display:flex; align-items:center; justify-content:center;
}
.info-strip-item .icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold-light); }
.info-strip-item h4 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.info-strip-item p { font-size: 12.5px; color: var(--text-soft); }

/* ===== About / Company table ===== */
.company-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.company-table tr { border-bottom: 1px solid var(--line); }
.company-table tr:last-child { border-bottom: none; }
.company-table th, .company-table td { padding: 18px 24px; text-align: left; font-size: 14px; }
.company-table th { width: 200px; background: var(--bg-soft); color: var(--navy); font-weight: 700; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: #b8c2d2; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display:flex; align-items:center; gap: 10px; color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 16px; }
.footer-grid p.desc { font-size: 13px; color: #8b96a8; margin-bottom: 18px; }
.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: #b8c2d2; }
.footer-col a:hover { color: var(--gold-light); }
.footer-tel { color: var(--gold-light); font-size: 22px; font-weight: 800; margin: 10px 0; display:block; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items:center; justify-content:center;
}
.social-row a svg { width: 16px; height:16px; stroke:#fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12px;
  color: #6f7a8c;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #8b96a8; }

/* ===== Utility ===== */
.mt-0{margin-top:0} .center{text-align:center}
.badge-note {
  background: #eaf2fd;
  border: 1px solid #bcd7f7;
  color: #1c5bc9;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  margin-bottom: 40px;
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  padding: 10px 16px;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-tel { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .item-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .step-list { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .voice-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .category-block { grid-template-columns: 1fr; }
  .category-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}
@media (max-width: 600px) {
  .item-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 26px; }
  .section { padding: 60px 0; }
}

/* mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 24px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--navy); }
.mobile-nav .btn { margin-top: 14px; }
