*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #322825;
  background: #f5f1ec;
}

.site-body {
  min-height: 100vh;
}

.page-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid rgba(60, 44, 38, 0.08);
  background: #f8f4ee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background: #d9a08a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.8rem;
  color: rgba(50, 40, 37, 0.7);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  color: rgba(50, 40, 37, 0.85);
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav-link:hover {
  background: rgba(50, 40, 37, 0.05);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: #322825;
  color: #f8f4ee;
}

.frame-shell {
  flex: 1;
  background: #f5f1ec;
}

.frame-shell iframe {
  border: none;
  width: 100%;
  height: calc(100vh - 128px);
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .frame-shell iframe {
    height: calc(100vh - 176px);
  }
}

.site-footer {
  border-top: 1px solid rgba(60, 44, 38, 0.08);
  background: #f1ebe5;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 600;
}

.footer-line a {
  color: #8d5b48;
  text-decoration: none;
}

.footer-line a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.footer-legal-link {
  color: rgba(50, 40, 37, 0.75);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 999px;
}

.footer-legal-link:hover {
  background: rgba(50, 40, 37, 0.06);
}

.footer-legal-sep {
  color: rgba(50, 40, 37, 0.4);
}

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

/* inner pages */

.inner-body {
  margin: 0;
  background: #f5f1ec;
  color: #322825;
}

.home-hero {
  padding: 40px 0 32px;
  background: radial-gradient(circle at top left, #fbe9dd 0, #f5f1ec 45%);
}

.home-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.hero-text {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(50, 40, 37, 0.6);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-sub {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: rgba(50, 40, 37, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
}

.hero-btn-primary {
  background: #322825;
  color: #f7f2ec;
  box-shadow: 0 8px 18px rgba(50, 40, 37, 0.22);
}

.hero-btn-primary:hover {
  background: #241b18;
  transform: translateY(-1px);
}

.hero-btn-ghost {
  background: rgba(248, 244, 238, 0.85);
  color: #322825;
}

.hero-btn-ghost:hover {
  background: #f0e4d8;
  transform: translateY(-1px);
}

.hero-card {
  background: #fff8f4;
  border-radius: 20px;
  padding: 20px 18px;
  border: 1px solid rgba(50, 40, 37, 0.06);
  box-shadow: 0 10px 30px rgba(50, 40, 37, 0.06);
}

.hero-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(50, 40, 37, 0.65);
  margin-bottom: 12px;
}

.hero-list {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: rgba(50, 40, 37, 0.87);
}

.hero-list li + li {
  margin-top: 4px;
}

.hero-note {
  font-size: 0.85rem;
  color: #8d5b48;
}

@media (max-width: 880px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    padding: 28px 0 22px;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

.home-strip {
  padding: 10px 0 24px;
  background: #f5f1ec;
}

.home-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.strip-item {
  flex: 1 1 140px;
}

.strip-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.strip-text {
  font-size: 0.85rem;
  color: rgba(50, 40, 37, 0.7);
}

.home-services {
  padding: 26px 0 40px;
  background: #f7f3ee;
}

.home-services-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.3rem;
  margin: 0 0 18px;
}

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

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(50, 40, 37, 0.06);
}

.service-title {
  margin: 0 0 8px;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(50, 40, 37, 0.78);
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.inner-body {
  margin: 0;
  background: #f5f1ec;
  color: #322825;
}

.home-hero {
  padding: 40px 0 48px;
  background: radial-gradient(circle at top left, #fbe9dd 0, #f5f1ec 45%);
}

.home-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(50, 40, 37, 0.6);
  margin: 0 0 10px;
}

.hero-title {
  font-size: 2.9rem;
  line-height: 1.12;
  margin: 0 0 14px;
  color: #261c19;
}

.hero-lead {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(50, 40, 37, 0.9);
}

.hero-text {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease,
    box-shadow 0.1s ease, border-color 0.15s ease;
}

.hero-btn-primary {
  background: #322825;
  color: #f7f2ec;
  box-shadow: 0 8px 22px rgba(50, 40, 37, 0.25);
  border: 1px solid #322825;
}

.hero-btn-primary:hover {
  background: #241b18;
  transform: translateY(-1px);
}

.hero-btn-outline {
  background: rgba(248, 244, 238, 0.96);
  color: #322825;
  border: 1px solid rgba(50, 40, 37, 0.18);
}

.hero-btn-outline:hover {
  background: #f0e4d8;
  border-color: rgba(50, 40, 37, 0.3);
  transform: translateY(-1px);
}

.hero-note-main {
  margin: 2px 0 0;
  font-size: 0.98rem;
  color: #8d5b48;
}

.hero-slider-block {
  display: flex;
  justify-content: flex-end;
}

.hero-slider-block {
  display: flex;
  justify-content: flex-end;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background: #1f1714;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #f7f2ec;
  background: linear-gradient(to bottom, rgba(37, 25, 23, 0.1), #1b1310);
}

.hero-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 241, 236, 0.9);
  color: #261c19;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, transform 0.1s ease;
  z-index: 3;
}

.hero-slide-arrow-left {
  left: 10px;
}

.hero-slide-arrow-right {
  right: 10px;
}

.hero-slide-arrow:hover {
  background: #f0e4d8;
  transform: translateY(-50%) translateY(-1px);
}

.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(247, 242, 236, 0.5);
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.15s ease, width 0.15s ease;
}

.hero-dot.is-active {
  background: #f7f2ec;
  width: 16px;
}

@media (max-width: 960px) {
  .hero-slider-block {
    justify-content: flex-start;
  }

  .hero-slider {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    border-radius: 22px;
  }
}

.home-bands {
  padding: 40px 0 40px;
  background: #f7f3ee;
}

.home-band {
  max-width: 1120px;
  margin: 0 auto 32px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.home-band:last-child {
  margin-bottom: 0;
}

.home-band-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.home-band-text {
  max-width: 520px;
}

.band-title {
  margin: 0 0 12px;
  font-size: 1.6rem;
  color: #261c19;
}

.band-text {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.home-band-photo-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(50, 40, 37, 0.22);
}

.home-band-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.home-bottom-strip {
  padding: 26px 0 40px;
  background: #f5f1ec;
}

.home-bottom-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
}

.bottom-main {
  flex: 2 1 280px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #261c19;
}

.bottom-side {
  flex: 1 1 220px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

/* responsive */

@media (max-width: 960px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider-block {
    justify-content: flex-start;
  }

  .hero-slider {
    max-width: 480px;
  }

  .home-band,
  .home-band-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-band-reverse {
    grid-auto-flow: row;
  }

  .home-band-photo {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 28px 0 32px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-text,
  .band-text,
  .bottom-main,
  .bottom-side {
    font-size: 1rem;
  }

  .hero-slider {
    max-width: 100%;
  }

  .hero-slide-image {
    height: 220px;
  }

  .home-band-photo {
    height: 220px;
    border-radius: 22px;
  }
}

.services-hero {
  padding: 38px 0 28px;
  background: #f5f1ec;
}

.services-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-title {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #261c19;
}

.services-lead {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.services-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.88);
}

.services-main {
  padding: 10px 0 34px;
  background: #f7f3ee;
}

.services-main-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-column {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(50, 40, 37, 0.06);
  box-shadow: 0 10px 26px rgba(50, 40, 37, 0.06);
}

.service-heading {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #261c19;
}

.service-paragraph {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(50, 40, 37, 0.88);
}

.service-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(50, 40, 37, 0.9);
}

.service-list li + li {
  margin-top: 4px;
}

.service-list-tight {
  margin-top: 6px;
}

.services-band-section {
  padding: 30px 0 40px;
  background: #f5f1ec;
}

.services-band {
  max-width: 1120px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.services-band:last-child {
  margin-bottom: 0;
}

.services-band-image-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.services-band-image-right {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.services-band-text {
  max-width: 540px;
}

.services-band-photo-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(50, 40, 37, 0.22);
}

.services-band-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.services-bottom-strip {
  padding: 24px 0 40px;
  background: #f7f3ee;
}

.services-bottom-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.services-bottom-main {
  flex: 2 1 280px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #261c19;
}

.services-bottom-side {
  flex: 1 1 220px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-band,
  .services-band-image-left,
  .services-band-image-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-band-photo {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .services-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-band-photo {
    height: 220px;
    border-radius: 22px;
  }

  .services-bottom-inner {
    flex-direction: column;
  }
}

.contacts-hero {
  padding: 38px 0 28px;
  background: #f5f1ec;
}

.contacts-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-title {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #261c19;
}

.contacts-lead {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.contacts-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.88);
}

.contacts-main {
  padding: 12px 0 34px;
  background: #f7f3ee;
}

.contacts-main-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contacts-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(50, 40, 37, 0.06);
  box-shadow: 0 10px 26px rgba(50, 40, 37, 0.06);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contacts-heading {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #261c19;
}

.contacts-line {
  margin: 0 0 8px;
  color: rgba(50, 40, 37, 0.95);
}

.contacts-line a {
  color: #8d5b48;
  text-decoration: none;
}

.contacts-line a:hover {
  text-decoration: underline;
}

.contacts-note {
  margin: 0 0 6px;
  color: rgba(50, 40, 37, 0.85);
}

.contacts-meta {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(50, 40, 37, 0.7);
}

.contacts-band {
  padding: 30px 0 38px;
  background: #f5f1ec;
}

.contacts-band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.contacts-band-photo-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(50, 40, 37, 0.22);
}

.contacts-band-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.contacts-band-text {
  max-width: 540px;
}

.contacts-bottom-strip {
  padding: 24px 0 40px;
  background: #f7f3ee;
}

.contacts-bottom-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contacts-bottom-main {
  flex: 2 1 280px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #261c19;
}

.contacts-bottom-side {
  flex: 1 1 220px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

@media (max-width: 960px) {
  .contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacts-band-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts-band-photo {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .contacts-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts-band-photo {
    height: 220px;
    border-radius: 22px;
  }

  .contacts-bottom-inner {
    flex-direction: column;
  }
}

.legal-hero {
  padding: 38px 0 26px;
  background: #f5f1ec;
}

.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-title {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #261c19;
}

.legal-lead {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.legal-intro {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.88);
}

.legal-section {
  padding: 16px 0 40px;
  background: #f7f3ee;
}

.legal-section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-block {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(50, 40, 37, 0.06);
  box-shadow: 0 8px 22px rgba(50, 40, 37, 0.04);
}

.legal-heading {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #261c19;
}

.legal-text {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.legal-text:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 4px 0 0;
  padding-left: 20px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(50, 40, 37, 0.9);
}

.legal-list li + li {
  margin-top: 4px;
}

.legal-text a {
  color: #8d5b48;
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .legal-title {
    font-size: 2rem;
  }

  .legal-lead,
  .legal-intro,
  .legal-text,
  .legal-list {
    font-size: 1rem;
  }

  .legal-block {
    border-radius: 18px;
  }
}
