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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.pv-site {
  margin: 0;
  background: var(--pv-cream);
  color: var(--pv-ink);
  font-family: var(--pv-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

.pv-site button,
.pv-site a,
.pv-site input,
.pv-site select,
.pv-site textarea {
  font: inherit;
}

.pv-site a {
  color: inherit;
  text-decoration: none;
}

.pv-site img {
  display: block;
  max-width: 100%;
}

.pv-site button {
  cursor: pointer;
}

.pv-skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--pv-green);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease;
}

.pv-skip-link:focus {
  transform: translateY(0);
}

.pv-container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.pv-serif {
  font-family: var(--pv-serif);
}

.pv-eyebrow {
  color: var(--pv-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pv-section {
  padding: 140px 0;
}

.pv-section-heading {
  font-family: var(--pv-sans);
  font-size: var(--pv-section-heading-size);
  font-weight: var(--pv-section-heading-weight);
  line-height: var(--pv-section-heading-line-height);
  letter-spacing: 0;
  margin: 0;
}

.pv-section-heading em {
  font-family: var(--pv-serif);
  color: var(--pv-green);
  font-style: italic;
  font-weight: var(--pv-section-heading-em-weight);
  font-size: var(--pv-section-heading-em-size);
  line-height: var(--pv-section-heading-em-line-height);
}

.pv-body-copy {
  color: var(--pv-muted);
  font-size: 15px;
  line-height: 1.8;
}

.pv-text-highlight {
  position: relative;
  display: inline;
  padding: 0 .08em;
  background: linear-gradient(180deg, transparent 54%, rgba(184, 138, 68, .18) 54%);
  color: var(--pv-green);
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 14px;
  padding: 15px 22px;
  font-size: 14px !important;
  line-height: 1;
  text-decoration: none !important;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease;
}

.pv-btn:hover {
  transform: translateY(-2px);
}

.pv-btn-primary {
  background: var(--pv-green);
  color: #fff !important;
}

.pv-btn-primary:hover {
  background: var(--pv-green-dark);
  color: #fff !important;
}

.pv-btn-primary:visited {
  color: #fff !important;
}

.pv-image-frame {
  overflow: hidden;
  border-radius: 18px;
}

.pv-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.pv-image-frame:hover img {
  transform: scale(1.03);
}

.pv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--pv-green);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
}

.pv-text-link span {
  color: var(--pv-gold);
  font-size: 20px;
}

.pv-page {
  min-height: 70vh;
  padding-top: 170px;
  background: var(--pv-paper);
}

.pv-entry-content {
  color: var(--pv-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 28px;
}

.pv-footer {
  padding: 76px 0 28px;
  background: var(--pv-paper);
}

.pv-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 65px;
}

.pv-footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv-footer-group strong {
  color: var(--pv-gold);
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: 7px;
}

.pv-footer-group a {
  color: var(--pv-muted);
  font-size: 12px;
}

.pv-footer-bottom {
  border-top: 1px solid var(--pv-line);
  padding-top: 22px;
  color: var(--pv-soft);
  font-size: 10px;
}

.pv-site :focus-visible {
  outline: 2px solid var(--pv-green);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .pv-footer-grid {
    grid-template-columns: 1.6fr repeat(2, 1fr);
  }

  .pv-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .pv-container {
    width: min(100% - 40px, 520px);
  }

  .pv-section {
    padding: 88px 0;
  }

  .pv-footer {
    padding-top: 60px;
  }

  .pv-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .pv-footer-brand {
    grid-column: 1 / -1;
  }

  .pv-footer-bottom {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pv-site *,
  .pv-site *::before,
  .pv-site *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
