/* Policy / info pages */
.policy-page {
  padding: 40px 0 60px;
}

.policy-page__inner {
  max-width: 860px;
}

.policy-breadcrumb {
  font-size: 13px;
  margin-bottom: 24px;
  color: rgba(18, 18, 18, 0.6);
}

.policy-breadcrumb a:hover {
  text-decoration: underline;
}

.policy-page__content.page-card {
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.policy-page__content h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.policy-page__content h2 {
  font-size: 18px;
  margin: 28px 0 12px;
}

.policy-page__content p,
.policy-page__content li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-page__content ul,
.policy-page__content ol {
  margin: 0 0 16px 20px;
}

.policy-page__content .highlight {
  background: #f8f4ec;
  border-left: 4px solid #c7a254;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.policy-page__content .contact-info {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.policy-page__content .contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

.policy-page__content .contact-item .icon {
  font-size: 24px;
  line-height: 1;
}

.policy-page__content .contact-item .label {
  font-weight: 700;
  margin-bottom: 4px;
}

.policy-page__content .contact-item .value {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(18, 18, 18, 0.75);
}

@media (max-width: 699px) {
  .policy-page__content.page-card {
    padding: 24px 20px;
  }
}

/* About Us page */
.policy-page--about {
  background: #f7f6f4;
}

.policy-page__inner--about {
  max-width: 920px;
}

.about-page {
  padding: 0;
  overflow: hidden;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  text-transform: none;
  letter-spacing: -.02em;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(18, 18, 18, .08);
}

.about-hero__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

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

.about-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, .08) 0%, rgba(18, 18, 18, 0) 55%);
}

.about-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.about-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c7a254;
}

.about-hero__body h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #121212;
}

.about-hero__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(18, 18, 18, .72);
}

.about-section {
  padding: 32px 40px 0;
}

.about-section h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: #1f4a2e;
}

.about-section p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(18, 18, 18, .72);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.about-tags li {
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 74, 46, .08);
  color: #1f4a2e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.about-highlight {
  margin: 32px 40px 0;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #faf8f4 0%, #fff 100%);
  border: 1px solid rgba(199, 162, 84, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.about-highlight__title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c7a254;
}

.about-highlight p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(18, 18, 18, .72);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 40px 0;
}

.about-value {
  padding: 22px 20px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(18, 18, 18, .06);
}

.about-value__icon {
  display: inline-flex;
  margin-bottom: 10px;
  color: #c7a254;
  font-size: 14px;
  line-height: 1;
}

.about-value h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: #121212;
}

.about-value p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(18, 18, 18, .62);
}

.about-company {
  margin: 32px 40px 40px;
  padding: 24px 26px;
  border-radius: 14px;
  background: #121212;
  color: #fff;
}

.about-company__label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
}

.about-company h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.about-company p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
}

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

  .about-hero__media {
    min-height: 200px;
  }

  .about-hero__body {
    padding: 28px 24px;
  }

  .about-section,
  .about-values {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-highlight {
    margin-left: 24px;
    margin-right: 24px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-company {
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 28px;
  }
}
