:root {
  color-scheme: light;
  --ink: #21170f;
  --muted: #685646;
  --muted-strong: #4f4034;
  --paper: #f7efe6;
  --panel: rgba(255, 248, 239, 0.78);
  --panel-strong: rgba(255, 251, 245, 0.94);
  --panel-soft: rgba(250, 237, 223, 0.9);
  --line: #e4d1bb;
  --accent: #a24f22;
  --accent-deep: #7d3411;
  --accent-soft: #f5dfcd;
  --sage: #dfe8de;
  --shadow: 0 22px 50px rgba(98, 67, 39, 0.12);
  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Segoe UI", "Hiragino Sans", "Yu Gothic UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 198, 142, 0.56) 0, rgba(242, 198, 142, 0) 30%),
    radial-gradient(circle at right 12% top 22%, rgba(210, 151, 115, 0.28) 0, rgba(210, 151, 115, 0) 18%),
    radial-gradient(circle at bottom right, rgba(226, 208, 179, 0.72) 0, rgba(226, 208, 179, 0) 30%),
    linear-gradient(180deg, #fcf7f2 0%, #f3e7d9 52%, #f5ecdf 100%);
  font-family: var(--sans);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.88) 0%, rgba(252, 243, 233, 0.78) 100%);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(90, 57, 30, 0.14);
}

.brand-wordmark {
  display: block;
  height: 30px;
  width: auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 241, 229, 0.52) 0, rgba(255, 241, 229, 0) 50%),
    linear-gradient(135deg, #b55c2d 0%, #cf8a62 100%);
  color: #fffaf4;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a,
.lang-switch a,
.button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.lang-switch a:hover,
.button:hover,
.chip:hover {
  border-color: #d8b89b;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(123, 84, 49, 0.08);
}

.button.primary {
  color: #fffaf3;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero,
.section-card,
.legal-card,
.page-footer {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.82) 0%, rgba(255, 250, 244, 0.75) 100%);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  padding: 44px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(243, 214, 186, 0.52) 0%, rgba(243, 214, 186, 0) 34%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.98) 0%, rgba(247, 237, 225, 0.94) 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -90px -60px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 194, 162, 0.52) 0%, rgba(223, 194, 162, 0) 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-wordmark {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.86;
}

.hero-copy .eyebrow {
  margin-bottom: 12px;
}

.hero-tagline {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(189, 156, 126, 0.46);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.86);
  color: var(--muted-strong);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 10px;
}

.album-frame {
  position: absolute;
  inset: 10px 0 0 12px;
  border: 1px solid rgba(203, 172, 140, 0.54);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.78) 0%, rgba(250, 242, 232, 0.56) 100%);
}

.photo-card {
  position: absolute;
  width: 48%;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(219, 194, 170, 0.84);
  box-shadow: 0 20px 36px rgba(96, 64, 39, 0.12);
  overflow: hidden;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #efe5d8;
}

.photo-card figcaption {
  padding: 13px 16px 15px;
}

.photo-card .brand-lockup {
  padding: 22px 18px 10px;
}

.photo-card .brand-icon {
  width: 42px;
  height: 42px;
}

.photo-card .brand-wordmark {
  height: 26px;
}

.photo-card strong,
.detail-card strong,
.value-card strong,
.trust-card strong,
.cta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.photo-card span,
.detail-card p,
.value-card p,
.trust-card p,
.trust-card li,
.cta-card p {
  color: var(--muted);
  line-height: 1.8;
}

.photo-card.one {
  top: 34px;
  left: 0;
  transform: rotate(-4deg);
}

.photo-card.two {
  top: 0;
  right: 8px;
  transform: rotate(5deg);
}

.photo-card.three {
  bottom: 24px;
  left: 18%;
  width: 44%;
  transform: rotate(-1deg);
}

.detail-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  padding: 18px;
  border: 1px solid rgba(203, 172, 140, 0.64);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.96);
  box-shadow: 0 20px 34px rgba(96, 64, 39, 0.12);
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
}

.detail-card p {
  margin: 0;
  font-size: 15px;
}

.value-grid,
.step-grid,
.trust-grid,
.cta-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.trust-card,
.cta-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.92);
}

.value-card {
  min-height: 100%;
}

.value-card .value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(162, 79, 34, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
}

.value-card p,
.trust-card p {
  margin: 0;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.95) 0%, rgba(248, 238, 226, 0.94) 100%);
}

.step-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.trust-shell {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.trust-card li + li {
  margin-top: 10px;
}

.cta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-card {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cta-card:hover {
  transform: translateY(-2px);
  border-color: #d7b696;
  box-shadow: 0 16px 30px rgba(123, 84, 49, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  display: block;
  height: 24px;
  width: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  padding: 38px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 210, 183, 0.72) 0%, rgba(240, 210, 183, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px auto auto 48%;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(206, 170, 136, 0.26);
  transform: rotate(18deg);
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.94;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  max-width: 620px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.85;
}

.hero-note {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.82);
  color: var(--muted-strong);
  font-size: 14px;
}

.hero-actions,
.chip-list,
.card-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 26px;
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.mini-card,
.grid-card,
.link-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(253, 246, 238, 0.92) 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card strong,
.grid-card strong,
.link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.mini-card:hover,
.grid-card:hover,
.link-card:hover {
  transform: translateY(-2px);
  border-color: #d7b696;
  box-shadow: 0 18px 30px rgba(123, 84, 49, 0.08);
}

.mini-card p,
.grid-card p,
.link-card p,
.section-intro,
.legal-card p,
.legal-card li,
.page-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-card,
.legal-card {
  padding: 30px;
  margin-bottom: 24px;
}

.section-card h2,
.legal-card h1,
.legal-card h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: 17px;
}

.card-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-stack {
  display: grid;
  gap: 18px;
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.soft-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96) 0%, rgba(247, 238, 227, 0.92) 100%);
}

.soft-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.list-check,
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li,
.faq-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.list-check li + li,
.faq-list li + li {
  margin-top: 10px;
}

.list-check li::before,
.faq-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.cta-band {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(239, 208, 179, 0.48) 0%, rgba(239, 208, 179, 0) 38%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.94) 0%, rgba(248, 238, 225, 0.92) 100%);
}

.cta-band h2,
.cta-band h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-strip,
.process-grid {
  display: grid;
  gap: 16px;
}

.stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -4px 0 10px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.process-card {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95) 0%, rgba(246, 236, 223, 0.94) 100%);
}

.stat-card strong,
.process-card strong {
  display: block;
}

.stat-card strong {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.stat-card span,
.process-card p {
  color: var(--muted);
  line-height: 1.75;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
}

.quote-card {
  position: relative;
  padding: 24px 24px 22px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(245, 238, 228, 0.98) 0%, rgba(255, 252, 247, 0.92) 100%);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 18px;
  color: rgba(162, 79, 34, 0.18);
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
}

.quote-card p {
  position: relative;
  margin: 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.85;
}

.quote-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.grid-card ul,
.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card h1 {
  margin-bottom: 8px;
}

.meta {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.page-footer {
  padding: 24px 28px;
}

.page-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .hero,
  .card-grid,
  .link-grid,
  .footer-grid,
  .stat-strip,
  .process-grid,
  .value-grid,
  .step-grid,
  .trust-grid,
  .cta-grid,
  .home-hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .header-actions,
  .page-footer nav {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 640px;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100%, calc(100% - 24px));
    padding-top: 14px;
    padding-bottom: 48px;
  }

  .site-header,
  .hero,
  .section-card,
  .legal-card,
  .page-footer,
  .home-hero {
    border-radius: 24px;
  }

  .hero,
  .section-card,
  .legal-card,
  .home-hero {
    padding: 22px;
  }

  .site-header {
    padding: 16px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .chip-list,
  .lang-switch {
    width: 100%;
  }

  .site-nav a,
  .header-actions .site-nav,
  .header-actions .lang-switch,
  .lang-switch a,
  .button {
    flex: 1 1 auto;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-wordmark,
  .hero-wordmark {
    height: 24px;
  }

  .hero-visual {
    min-height: 520px;
    padding: 0;
  }

  .photo-card {
    width: 56%;
  }

  .photo-card.two {
    right: 0;
  }

  .photo-card.three {
    left: 10%;
    width: 50%;
  }

  .detail-card {
    width: 66%;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
