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

/* ==========================================================================
   Tokens
   ========================================================================== */

:root {
  --paper: #f5f2ec;
  --paper-soft: #efece4;
  --white: #ffffff;
  --ink: #1a1a18;
  --ink-soft: #55564d;
  --ink-faint: #8b8c81;
  --line: #e2ded3;
  --line-strong: #cfcabb;

  --accent: #e2521c;
  --accent-dark: #b53d13;
  --accent-tint: #fbece2;

  --dark: #17110c;
  --dark-raised: #241b13;
  --dark-line: #3a2d20;
  --dark-text: #f5f0e8;
  --dark-text-soft: #c9bfae;

  --radius-s: 4px;
  --radius-m: 8px;
  --shadow-card: 0 1px 2px rgba(26,26,24,0.05), 0 10px 24px rgba(26,26,24,0.06);

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --font: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; }

/* Japanese-aware line breaking for all running text */
h1, h2, h3, h4, p, .lead, .eyebrow, a, li, dd, dt, span, button {
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}

h1, h2, h3 { text-wrap: balance; }
p, .lead { text-wrap: pretty; }

.nowrap { white-space: nowrap; }

.tabular { font-variant-numeric: tabular-nums; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 14px;
}

.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h2.title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 46em;
  margin: 0 0 8px;
}

.section-pad { padding: clamp(56px, 9vw, 108px) 0; }

/* ==========================================================================
   Reveal-on-scroll (per-section, not per-item)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   Icons
   ========================================================================== */

.icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ==========================================================================
   Photo placeholders
   ========================================================================== */

.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  background:
    repeating-linear-gradient(135deg, rgba(26,26,24,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #e9e4d8, #dcd6c6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--ink-faint);
  isolation: isolate;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(26,26,24,0.08);
  border-radius: inherit;
}

.ph .icon {
  width: 34px;
  height: 34px;
  color: var(--ink-faint);
  opacity: 0.6;
}

.ph-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  padding: 0 14px;
  line-height: 1.5;
}

.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph.on-dark {
  background:
    repeating-linear-gradient(135deg, rgba(245,240,232,0.06) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #2c2117, #1c1510);
}
.ph.on-dark::before { border-color: rgba(245,240,232,0.1); }
.ph.on-dark .icon, .ph.on-dark .ph-label { color: var(--dark-text-soft); }

.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3  { aspect-ratio: 4 / 3; }
.ph-1x1  { aspect-ratio: 1 / 1; }
.ph-3x4  { aspect-ratio: 3 / 4; }
.ph-fill { width: 100%; height: 100%; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-s);
  padding: 18px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-call {
  background: var(--accent);
  color: var(--white);
  width: 100%;
  justify-content: space-between;
}
.btn-call:hover { background: var(--accent-dark); }

.btn-call .btn-call-left { display: inline-flex; align-items: center; gap: 10px; }
.btn-call .btn-call-number { font-size: 20px; letter-spacing: 0.02em; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 14px 22px;
}
.btn-outline:hover { background: var(--accent-tint); }

.link-caret {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}
.link-caret .icon { width: 15px; height: 15px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,242,236,0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}
.logo-jp { font-size: 19px; font-weight: 800; letter-spacing: 0.01em; }
.logo-en { font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; color: var(--accent); margin-top: 4px; }

.nav-desktop {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav-desktop a:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  z-index: 49;
  padding: 28px var(--gutter);
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.nav-mobile a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.nav-mobile .btn { margin-top: 28px; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-media {
  position: relative;
  min-height: clamp(460px, 72vh, 720px);
  display: flex;
  align-items: center;
  border-radius: 0;
}

.hero-media .ph {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(245,242,236,0.94) 32%, rgba(245,242,236,0.55) 56%, rgba(245,242,236,0.1) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 64px var(--gutter);
}

.hero-eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
}

.hero-content h1 {
  font-size: clamp(32px, 5.4vw, 54px);
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero-content .lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 30px;
  max-width: 40em;
}

.hero-cta { margin-bottom: 18px; max-width: 460px; }

.hero-meta {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.hero-photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  font-size: 11px;
  color: var(--ink-faint);
  background: rgba(245,242,236,0.85);
  padding: 4px 9px;
  border-radius: 999px;
}

.hero-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.hero-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 12px;
  font-weight: 800;
  font-size: 15px;
  border-left: 1px solid var(--line);
}
.hero-strip-item:first-child { border-left: none; }
.hero-strip-item .icon { color: var(--accent); }

@media (max-width: 760px) {
  .hero-strip .wrap { grid-template-columns: 1fr; }
  .hero-strip-item { border-left: none; border-top: 1px solid var(--line); justify-content: flex-start; }
  .hero-strip-item:first-child { border-top: none; }
}

/* ==========================================================================
   Service overview (cards)
   ========================================================================== */

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { display: none; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: transparent;
}

.service-card .ph { margin-bottom: 22px; }

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.service-card .divider {
  border: none;
  border-top: 1px solid var(--line-strong);
  margin: 0 0 16px;
}

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Two-column feature sections (fitting)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

.feature-list { margin: 24px 0; padding: 0; list-style: none; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  font-weight: 800;
  font-size: 16.5px;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line-strong); }
.feature-list .icon { color: var(--accent); width: 24px; height: 24px; }

.note-box {
  background: var(--paper-soft);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 22px;
}

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media, .split.reverse .split-text { order: initial; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
}
.price-table th {
  background: var(--ink);
  color: var(--white);
  text-align: left;
  font-weight: 700;
  padding: 12px 18px;
}
.price-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--white);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.amount { text-align: right; font-weight: 800; }
.table-caption { font-size: 12px; color: var(--ink-faint); margin-top: 10px; }
.table-source { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

.pricing-aside {
  background: var(--accent-tint);
  border-radius: var(--radius-m);
  padding: clamp(22px, 3vw, 32px);
}
.pricing-aside h3 {
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 18px;
}
.pricing-aside .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px dashed var(--line-strong);
  font-size: 14.5px;
  font-weight: 700;
}
.pricing-aside .row:first-of-type { border-top: none; }
.pricing-aside .row .amount { color: var(--accent-dark); font-weight: 800; }

.pricing-aside .fine {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.pricing-aside .fine strong { color: var(--accent-dark); }

.pricing-cta { margin-top: 32px; }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Sales (diagonal split)
   ========================================================================== */

.sales-section { background: var(--white); overflow: hidden; }
.sales-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
}
.sales-text {
  padding: clamp(48px, 6vw, 88px) var(--gutter) clamp(48px, 6vw, 88px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sales-media {
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.sales-media .ph { position: absolute; inset: 0; border-radius: 0; }

.sales-item { padding: 20px 0; border-top: 1px solid var(--line-strong); display: flex; gap: 18px; }
.sales-item:last-of-type { border-bottom: 1px solid var(--line-strong); }
.sales-item .icon { color: var(--accent); width: 30px; height: 30px; margin-top: 2px; }
.sales-item h3 { font-size: 18px; font-weight: 800; margin: 0 0 6px; }
.sales-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.sales-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .sales-layout { grid-template-columns: 1fr; min-height: auto; }
  .sales-media { clip-path: none; aspect-ratio: 16/9; }
}

/* ==========================================================================
   Buyback (dark)
   ========================================================================== */

.buyback-section { background: var(--dark); color: var(--dark-text); }
.buyback-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.buyback-media .ph { border-radius: var(--radius-m); }
.buyback-text h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
}
.buyback-text .lead { color: var(--dark-text-soft); font-size: 16px; }

.flow-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.flow-mini-step { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 118px; text-align: center; }
.flow-mini-step .icon-badge {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.flow-mini-step span { font-size: 13px; font-weight: 700; color: var(--dark-text); }
.flow-mini-arrow { color: var(--dark-text-soft); width: 22px; height: 22px; flex-shrink: 0; }

.buyback-note { color: var(--dark-text-soft); font-size: 14px; margin: 4px 0 26px; }
.buyback-fine { color: var(--dark-text-soft); font-size: 12.5px; margin-top: 16px; }

.btn-call.on-dark { background: var(--accent); }

@media (max-width: 860px) {
  .buyback-layout { grid-template-columns: 1fr; }
  .flow-mini { justify-content: space-between; }
  .flow-mini-arrow { transform: rotate(90deg); }
}

/* ==========================================================================
   Flow (steps)
   ========================================================================== */

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  position: relative;
}
.flow-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(12.5% - 6px);
  right: calc(12.5% - 6px);
  height: 1px;
  background: var(--line-strong);
}
.flow-step { position: relative; text-align: center; }
.flow-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.flow-step h3 { font-size: 16px; font-weight: 800; margin: 0 0 14px; }
.flow-step .ph { margin-bottom: 14px; }
.flow-step p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.flow-checklist {
  margin-top: 40px;
  background: var(--paper-soft);
  border-radius: var(--radius-m);
  padding: 18px clamp(18px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}
.flow-checklist .icon { color: var(--accent); }
.flow-checklist ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 0; padding: 0; }
.flow-checklist li::after { content: "/"; margin-left: 14px; color: var(--line-strong); }
.flow-checklist li:last-child::after { content: ""; }

@media (max-width: 860px) {
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-steps::before { display: none; }
}
@media (max-width: 480px) {
  .flow-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About shop
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 5vw, 56px);
}
.about-media-main .ph { height: 100%; min-height: 420px; }
.about-copy { display: flex; flex-direction: column; }
.about-copy h2 { font-size: clamp(26px, 3.2vw, 36px); }
.about-side-note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 26px;
}
.about-amenities {
  display: flex;
  gap: 0;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.about-amenities span {
  font-weight: 800;
  font-size: 14.5px;
  padding: 0 20px;
  border-left: 1px solid var(--line-strong);
}
.about-amenities span:first-child { border-left: none; padding-left: 0; }
.about-media-secondary .ph { aspect-ratio: 16/10; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media-main .ph { min-height: 260px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.faq-media .ph { height: 100%; min-height: 480px; }
.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item {
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
}
.faq-list li:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
}
.faq-row.a { margin-top: 12px; }
.faq-q, .faq-a-mark {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.3;
}
.faq-q { color: var(--accent); }
.faq-a-mark { color: var(--ink); }
.q-text { font-weight: 800; font-size: 16px; }
.faq-a-text { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-media .ph { min-height: 260px; }
}

/* ==========================================================================
   Access + footer
   ========================================================================== */

.access-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.access-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.access-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
}
.access-card h3 { color: var(--accent); font-size: 17px; margin: 0 0 18px; }
.access-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.access-row:first-of-type { border-top: none; }
.access-row .icon { color: var(--ink-faint); width: 20px; height: 20px; margin-top: 2px; }
.access-card .btn-outline { width: 100%; margin-top: 20px; gap: 8px; }
.access-card .btn-outline .icon { width: 16px; height: 16px; }

.access-map {
  margin-top: 20px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-s);
  overflow: hidden;
  border: 1px solid var(--line);
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.access-card .link-caret { justify-content: center; width: 100%; }

@media (max-width: 900px) {
  .access-top { grid-template-columns: 1fr; }
  .access-photos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .access-photos { grid-template-columns: 1fr; }
}

.footer-cta {
  background: var(--dark);
  color: var(--dark-text);
  margin-top: clamp(56px, 9vw, 108px);
  padding: clamp(40px, 6vw, 64px) 0 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(32px, 5vw, 48px);
}
.footer-cta-title { font-size: clamp(19px, 2.4vw, 24px); font-weight: 800; margin: 0 0 20px; }
.footer-phone-block { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-phone-block .btn-call { width: auto; padding: 16px 22px; }
.footer-phone-number { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: 0.02em; }
.footer-phone-sub { font-size: 13px; color: var(--dark-text-soft); margin-top: 6px; }

.footer-bottom {
  border-top: 1px solid var(--dark-line);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-weight: 900; font-size: 17px; }
.footer-nav { list-style: none; display: flex; gap: clamp(14px, 2.4vw, 30px); flex-wrap: wrap; margin: 0; padding: 0; }
.footer-nav a { text-decoration: none; color: var(--dark-text-soft); font-size: 13.5px; font-weight: 700; }
.footer-nav a:hover { color: var(--white); }
.footer-copy { text-align: center; padding: 20px 0 28px; font-size: 12px; color: var(--dark-text-soft); }

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
