:root {
  color-scheme: light;
  --ink: #20262d;
  --muted: #5d6872;
  --line: #dce2e6;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --brand: #a42126;
  --brand-dark: #74151a;
  --brand-soft: #fbefef;
  --shadow: 0 18px 50px rgba(45, 36, 32, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #faf9f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

a:focus-visible {
  outline: 3px solid rgba(164, 33, 38, 0.3);
  outline-offset: 4px;
  border-radius: 3px;
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(116, 21, 26, 0.18);
}

.hero {
  color: var(--ink);
  border-bottom: 1px solid #eadcda;
  background:
    radial-gradient(circle at 88% 14%, rgba(164, 33, 38, 0.12), transparent 27%),
    radial-gradient(circle at 8% 88%, rgba(208, 157, 124, 0.13), transparent 25%),
    linear-gradient(135deg, #fdfbf9, #f4eeeb);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.75fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  padding-block: 84px 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(164, 33, 38, 0.10);
}

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 6.5vw, 72px);
  line-height: 1.04;
}

.intro {
  max-width: 670px;
  margin: 26px 0 0;
  color: #4e5962;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.55;
}

.updated {
  display: inline-block;
  margin: 26px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(112, 121, 128, 0.18);
  border-radius: 999px;
  color: #707980;
  background: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.hero-summary {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(76, 48, 39, 0.10);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.summary-label {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-summary li {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
}

.hero-summary li + li {
  margin-top: 16px;
}

.check {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 13px;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 48px;
  padding-block: 64px 90px;
  align-items: start;
}

.contents {
  position: sticky;
  top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(45, 36, 32, 0.05);
  font-size: 14px;
  line-height: 1.45;
}

.contents-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.contents ol {
  margin: 0;
  padding-left: 21px;
}

.contents li + li {
  margin-top: 8px;
}

.contents a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.contents a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.policy {
  max-width: 760px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(220, 226, 230, 0.9);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.policy section {
  scroll-margin-top: 28px;
}

.policy section + section {
  margin-top: 54px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(27px, 3vw, 34px);
}

h3 {
  margin: 30px 0 8px;
  font-size: 20px;
}

p,
ul {
  margin-top: 0;
}

p + p,
ul + p {
  margin-top: 18px;
}

li + li {
  margin-top: 8px;
}

.contact-card {
  padding: 32px !important;
  border: 1px solid #edcfd0 !important;
  border-radius: 18px;
  background: var(--brand-soft);
}

.contact-card h2 {
  margin-bottom: 12px;
}

address {
  font-style: normal;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--soft);
}

.footer-inner {
  min-height: 92px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-summary {
    max-width: 560px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 40px;
  }

  .contents {
    position: static;
  }

  .policy {
    max-width: none;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-content {
    padding-block: 56px 52px;
  }

  .hero-summary {
    padding: 23px;
    border-radius: 17px;
  }

  .policy {
    padding: 26px 21px;
    border-radius: 18px;
  }

  .contact-card {
    padding: 24px !important;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}

@media print {
  .site-header,
  .contents,
  footer {
    display: none;
  }

  .hero {
    color: #000;
    background: none;
  }

  .hero-content,
  .policy-layout {
    width: 100%;
    padding: 0;
  }

  .intro,
  .updated {
    color: #333;
  }

  .policy-layout {
    display: block;
  }

  .hero-summary {
    display: none;
  }

  .policy {
    max-width: none;
  }

  .policy section + section {
    margin-top: 28px;
    padding-top: 26px;
  }
}
