:root {
  --tpv-blue: #0F2A3D;
  --tpv-blue-soft: #1F5F7A;
  --tpv-white: #FFFFFF;
  --tpv-cream: #F5EFE6;
  --tpv-cream-soft: #FBF8F2;
  --tpv-orange: #F28C45;
  --tpv-text: #1F2933;
  --tpv-muted: #667382;
  --tpv-border: #E6DED3;
  --tpv-shadow: 0 18px 44px rgba(15, 42, 61, .10);
  --tpv-radius: 8px;
}

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

body {
  margin: 0;
  color: var(--tpv-text);
  background: var(--tpv-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tpv-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.tpv-narrow {
  max-width: 820px;
}

.tpv-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 42, 61, .08);
  backdrop-filter: blur(14px);
}

.tpv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.tpv-brand__name {
  display: inline-block;
  color: var(--tpv-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.tpv-brand__tagline {
  margin: 4px 0 0;
  color: var(--tpv-muted);
  font-size: .82rem;
}

.tpv-primary-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tpv-primary-nav a {
  color: var(--tpv-blue);
  font-size: .96rem;
  font-weight: 750;
  text-decoration: none;
}

.tpv-primary-nav a:hover {
  color: var(--tpv-orange);
}

.tpv-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--tpv-border);
  border-radius: var(--tpv-radius);
  background: var(--tpv-white);
}

.tpv-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--tpv-blue);
}

.tpv-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--tpv-white);
  background:
    linear-gradient(115deg, rgba(15, 42, 61, .95), rgba(15, 42, 61, .64)),
    radial-gradient(circle at 84% 24%, rgba(242, 140, 69, .55), transparent 32%),
    linear-gradient(135deg, #0F2A3D 0%, #1F5F7A 100%);
}

.tpv-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% 48%;
  height: 420px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(135deg, rgba(245, 239, 230, .24), rgba(255, 255, 255, .04));
  transform: rotate(-8deg);
}

.tpv-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
}

.tpv-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: 0;
}

.tpv-hero p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.tpv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tpv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.tpv-button:hover {
  transform: translateY(-2px);
}

.tpv-button--primary {
  background: var(--tpv-orange);
  color: var(--tpv-white);
  box-shadow: 0 12px 30px rgba(242, 140, 69, .28);
}

.tpv-button--secondary {
  color: var(--tpv-white);
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .10);
}

.tpv-hero__panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--tpv-radius);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.tpv-hero__panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--tpv-orange);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tpv-hero__panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.tpv-section {
  padding: 76px 0;
}

.tpv-section--soft {
  background: var(--tpv-cream-soft);
}

.tpv-section--dark {
  background: var(--tpv-blue);
  color: var(--tpv-white);
}

.tpv-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.tpv-section-heading h2,
.tpv-page-hero h1,
.tpv-single-hero h1 {
  margin: 0 0 12px;
  color: var(--tpv-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.tpv-section-heading p,
.tpv-page-hero p {
  margin: 0;
  color: var(--tpv-muted);
  font-size: 1.08rem;
}

.tpv-section-heading--light h2,
.tpv-section-heading--light p {
  color: var(--tpv-white);
}

.tpv-section-heading--light p {
  color: rgba(255, 255, 255, .78);
}

.tpv-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--tpv-orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}

.tpv-starter-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.tpv-feature-card {
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--tpv-radius);
  color: var(--tpv-white);
  text-decoration: none;
  background: var(--tpv-blue);
  box-shadow: var(--tpv-shadow);
}

.tpv-feature-card--large {
  grid-row: span 2;
  min-height: 580px;
}

.tpv-feature-card__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 42, 61, .10), rgba(15, 42, 61, .86)),
    linear-gradient(135deg, #1F5F7A, #F28C45);
}

.tpv-feature-card:nth-child(2) .tpv-feature-card__media,
.tpv-feature-card:nth-child(5) .tpv-feature-card__media {
  background:
    linear-gradient(180deg, rgba(15, 42, 61, .08), rgba(15, 42, 61, .86)),
    linear-gradient(135deg, #0F2A3D, #7AB3C6);
}

.tpv-feature-card__body {
  position: relative;
  z-index: 1;
  display: block;
  padding: 26px;
}

.tpv-feature-card strong {
  display: block;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.tpv-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--tpv-orange);
  font-weight: 900;
  text-decoration: none;
}

.tpv-category-grid,
.tpv-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tpv-icon-card,
.tpv-budget-card,
.tpv-month-card,
.tpv-post-card,
.tpv-trust-card,
.tpv-empty {
  border-radius: var(--tpv-radius);
}

.tpv-icon-card {
  display: block;
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--tpv-border);
  background: var(--tpv-white);
  color: var(--tpv-text);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tpv-icon-card:hover,
.tpv-budget-card:hover,
.tpv-month-card:hover,
.tpv-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 140, 69, .5);
  box-shadow: var(--tpv-shadow);
}

.tpv-icon-card__mark {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(242, 140, 69, .95), rgba(242, 140, 69, .45)),
    var(--tpv-orange);
}

.tpv-icon-card strong,
.tpv-budget-card strong,
.tpv-month-card strong {
  display: block;
  color: var(--tpv-blue);
  font-size: 1.18rem;
  line-height: 1.25;
}

.tpv-icon-card span:not(.tpv-icon-card__mark),
.tpv-budget-card span,
.tpv-month-card span {
  display: block;
  margin-top: 8px;
  color: var(--tpv-muted);
}

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

.tpv-budget-card {
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--tpv-border);
  background: var(--tpv-white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tpv-budget-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.tpv-budget-card em {
  display: inline-block;
  margin-top: 18px;
  color: var(--tpv-orange);
  font-style: normal;
  font-weight: 900;
}

.tpv-month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tpv-month-card {
  display: block;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--tpv-border);
  background: var(--tpv-white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.tpv-post-card {
  overflow: hidden;
  border: 1px solid var(--tpv-border);
  background: var(--tpv-white);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tpv-post-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tpv-blue-soft), var(--tpv-orange));
}

.tpv-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.tpv-post-card:hover img {
  transform: scale(1.04);
}

.tpv-post-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(15, 42, 61, .05), rgba(15, 42, 61, .52)),
    linear-gradient(135deg, #1F5F7A, #F28C45);
}

.tpv-post-card__body {
  padding: 24px;
}

.tpv-post-card h3 {
  margin: 0 0 10px;
  color: var(--tpv-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.tpv-post-card h3 a {
  text-decoration: none;
}

.tpv-post-card p {
  margin: 0;
  color: var(--tpv-muted);
}

.tpv-trust-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
}

.tpv-trust-card h3 {
  margin: 0 0 10px;
  color: var(--tpv-white);
  font-size: 1.32rem;
}

.tpv-trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.tpv-page-hero,
.tpv-single-hero {
  padding: 74px 0 46px;
  background: var(--tpv-cream-soft);
}

.tpv-single-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5.8vw, 5.2rem);
}

.tpv-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--tpv-muted);
  font-size: .95rem;
}

.tpv-featured-image {
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: var(--tpv-radius);
}

.tpv-featured-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.tpv-content-wrap {
  max-width: 820px;
  padding: 44px 0 70px;
}

.tpv-entry-content {
  font-size: 1.08rem;
}

.tpv-entry-content h2,
.tpv-entry-content h3,
.tpv-entry-content h4 {
  color: var(--tpv-blue);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

.tpv-entry-content h2 {
  margin-top: 2.2em;
  font-size: 2rem;
}

.tpv-entry-content h3 {
  margin-top: 1.8em;
  font-size: 1.5rem;
}

.tpv-entry-content p,
.tpv-entry-content ul,
.tpv-entry-content ol {
  margin-bottom: 1.35em;
}

.tpv-entry-content a {
  color: var(--tpv-blue-soft);
  font-weight: 800;
}

.tpv-entry-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--tpv-border);
  border-radius: var(--tpv-radius);
  font-size: .96rem;
}

.tpv-entry-content th,
.tpv-entry-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--tpv-border);
  text-align: left;
}

.tpv-entry-content th {
  background: var(--tpv-blue);
  color: var(--tpv-white);
}

.tpv-entry-content tr:nth-child(even) td {
  background: var(--tpv-cream-soft);
}

.tpv-entry-content blockquote,
.tpv-tip-box,
.tpv-budget-box {
  margin: 30px 0;
  padding: 24px;
  border-radius: var(--tpv-radius);
}

.tpv-entry-content blockquote,
.tpv-tip-box {
  border-left: 5px solid var(--tpv-orange);
  background: var(--tpv-cream-soft);
}

.tpv-budget-box {
  border: 1px solid var(--tpv-border);
  background: var(--tpv-white);
  box-shadow: var(--tpv-shadow);
}

.tpv-ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  margin: 0 0 36px;
  border: 1px dashed rgba(15, 42, 61, .22);
  border-radius: var(--tpv-radius);
  background: var(--tpv-cream-soft);
  color: var(--tpv-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tpv-ad-slot--after {
  margin-top: 38px;
  margin-bottom: 0;
}

.tpv-related {
  background: var(--tpv-cream-soft);
}

.tpv-pagination {
  margin-top: 36px;
}

.tpv-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tpv-pagination a,
.tpv-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--tpv-border);
  border-radius: var(--tpv-radius);
  text-decoration: none;
}

.tpv-pagination .current {
  background: var(--tpv-blue);
  color: var(--tpv-white);
}

.tpv-empty {
  padding: 34px;
  border: 1px solid var(--tpv-border);
  background: var(--tpv-cream-soft);
}

.tpv-site-footer {
  padding: 58px 0 22px;
  background: #0A2232;
  color: rgba(255, 255, 255, .78);
}

.tpv-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.tpv-footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--tpv-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 850;
  text-decoration: none;
}

.tpv-site-footer h2 {
  margin: 0 0 14px;
  color: var(--tpv-white);
  font-size: 1rem;
}

.tpv-site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tpv-site-footer li {
  margin-bottom: 9px;
}

.tpv-site-footer a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.tpv-site-footer a:hover {
  color: var(--tpv-orange);
}

.tpv-footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .tpv-hero__inner,
  .tpv-starter-grid,
  .tpv-category-grid,
  .tpv-post-grid,
  .tpv-trust-grid,
  .tpv-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tpv-hero__content {
    grid-column: 1 / -1;
  }

  .tpv-hero__panel {
    display: none;
  }

  .tpv-feature-card--large {
    grid-row: span 1;
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .tpv-budget-grid,
  .tpv-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tpv-container {
    width: min(100% - 28px, 1180px);
  }

  .tpv-header-inner {
    min-height: 68px;
  }

  .tpv-menu-toggle {
    display: inline-block;
  }

  .tpv-primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 16px;
    border: 1px solid var(--tpv-border);
    border-radius: var(--tpv-radius);
    background: var(--tpv-white);
    box-shadow: var(--tpv-shadow);
  }

  .tpv-primary-nav.is-open {
    display: block;
  }

  .tpv-primary-nav ul {
    display: block;
  }

  .tpv-primary-nav li + li {
    margin-top: 10px;
  }

  .tpv-hero {
    min-height: 560px;
  }

  .tpv-hero__inner,
  .tpv-starter-grid,
  .tpv-category-grid,
  .tpv-budget-grid,
  .tpv-post-grid,
  .tpv-trust-grid,
  .tpv-footer-grid {
    grid-template-columns: 1fr;
  }

  .tpv-section {
    padding: 52px 0;
  }

  .tpv-feature-card,
  .tpv-feature-card--large {
    min-height: 310px;
  }

  .tpv-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tpv-page-hero,
  .tpv-single-hero {
    padding: 52px 0 34px;
  }

  .tpv-content-wrap {
    padding: 34px 0 54px;
  }
}

@media (max-width: 460px) {
  .tpv-actions {
    display: grid;
  }

  .tpv-button {
    width: 100%;
  }

  .tpv-month-grid {
    grid-template-columns: 1fr;
  }

  .tpv-feature-card__body,
  .tpv-post-card__body,
  .tpv-icon-card,
  .tpv-budget-card,
  .tpv-month-card,
  .tpv-trust-card {
    padding: 20px;
  }
}

