

@import url('./style.css');

.page-hero {
  background-color: var(--color-navy);
  padding: 64px 24px;
  text-align: center;
}

.page-hero .page-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  max-width: 600px;
  margin: 0 auto 16px;
}

.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-body {
  padding: 72px 24px;
  background-color: var(--color-cream);
}

.page-body-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-block {
  padding: 64px 24px;
  background-color: var(--color-white);
}

.about-block:nth-child(odd) {
  background-color: var(--color-cream);
}

.about-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-block:first-of-type .about-block-inner {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: center;
}

.about-block:first-of-type .section-desc {
  margin: 0 auto;
}

.about-block-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-block-text p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-block-image .img-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
}

.values-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.values-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.legal-empty {
  padding: 80px 24px;
  background-color: var(--color-cream);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-empty-inner {
  max-width: 480px;
  text-align: center;
}

.legal-empty-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.legal-empty-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gray);
}

.legal-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.legal-empty p {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-block-image {
    order: -1;
  }
}

.legal-content {
  padding: 72px 24px;
  background-color: var(--color-cream);
}

.legal-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-section {
  background-color: var(--color-white);
  padding: 32px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.legal-section p {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section p:last-of-type {
  margin-bottom: 0;
}

.legal-list {
  margin-top: 12px;
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0;
}

.legal-list li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 10px;
  align-items: flex-start;
}

.legal-list li::before {
  content: '→';
  color: var(--color-red);
  font-weight: 700;
  min-width: 16px;
  margin-top: -2px;
}

.legal-section a {
  color: var(--color-red);
  text-decoration: underline;
}

.legal-section a:hover {
  text-decoration: none;
}

.legal-section-last {
  border-top: 2px solid var(--color-light);
  text-align: center;
  margin-top: 40px;
}

.legal-section-last p {
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 48px 16px;
  }

  .legal-section {
    padding: 24px;
    margin-bottom: 16px;
  }

  .legal-section h2 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .legal-section p {
    font-size: 0.8rem;
  }

  .legal-list li {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
}
