.tc-site {
  --tc-navy: #002e49;
  --tc-navy-deep: #001f32;
  --tc-sand: #f9bf8f;
  --tc-red: #d62828;
  --tc-white: #ffffff;
  --tc-ink: #183645;
  --tc-muted: #5a6f79;
  --tc-paper: #f7f4ee;
  --tc-line: rgba(0, 46, 73, 0.16);
  margin: 0;
  color: var(--tc-ink);
  background: var(--tc-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.tc-site a {
  color: inherit;
}

.tc-page {
  padding-top: 182px;
}

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

.tc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--tc-navy-deep);
}

.tc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 10, 14, 0.82) 0%, rgba(3, 10, 14, 0.54) 48%, rgba(3, 10, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 10, 14, 0.14), rgba(3, 10, 14, 0.46));
}

.tc-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-hero__content {
  width: min(760px, 100%);
  padding-block: 88px 72px;
  color: var(--tc-white);
}

.tc-eyebrow,
.tc-section__eyebrow,
.tc-card__label {
  margin: 0;
  color: var(--tc-sand);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tc-hero h1 {
  max-width: 720px;
  margin: 16px 0 20px;
  color: var(--tc-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.tc-hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.tc-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--tc-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.tc-hero__meta::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--tc-red);
}

.tc-switcher {
  border-bottom: 1px solid var(--tc-line);
  background: var(--tc-white);
}

.tc-switcher__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.tc-switcher__group {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.tc-switcher__label {
  margin-right: 6px;
  color: var(--tc-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tc-switcher a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 2px solid transparent;
  color: var(--tc-navy);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out;
}

.tc-switcher a:hover,
.tc-switcher a:focus-visible,
.tc-switcher a.is-active {
  border-bottom-color: var(--tc-red);
  background: rgba(249, 191, 143, 0.18);
  color: var(--tc-red);
}

.tc-switcher a:focus-visible,
.tc-card a:focus-visible,
.tc-final-cta a:focus-visible {
  outline: 3px solid rgba(214, 40, 40, 0.36);
  outline-offset: 3px;
}

.tc-section {
  padding-block: 88px 104px;
  background: var(--tc-paper);
}

.tc-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.tc-section__eyebrow {
  color: var(--tc-red);
}

.tc-section h2 {
  margin: 10px 0 0;
  color: var(--tc-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.tc-section__note {
  max-width: 350px;
  margin: 0;
  color: var(--tc-muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: right;
}

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

.tc-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--tc-white);
  border: 1px solid var(--tc-line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 46, 73, 0.07);
}

.tc-card--featured {
  grid-column: span 2;
}

.tc-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tc-navy);
}

.tc-card--featured .tc-card__media {
  aspect-ratio: 2 / 1;
}

.tc-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 200ms ease-out;
}

.tc-card:hover .tc-card__media img {
  transform: scale(1.025);
}

.tc-card__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.tc-card__label {
  color: #8a4e1c;
}

.tc-card h3 {
  margin: 10px 0 24px;
  color: var(--tc-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

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

.tc-card h3 a:hover {
  color: var(--tc-red);
}

.tc-card__action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--tc-line);
  color: var(--tc-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.tc-card__action:hover {
  color: var(--tc-red);
}

.tc-final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 78px;
  color: var(--tc-white);
  background: var(--tc-navy);
}

.tc-final-cta::after {
  content: "";
  position: absolute;
  inset: auto -8% -100px 38%;
  height: 190px;
  border: 1px solid rgba(249, 191, 143, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.tc-final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.tc-final-cta h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.tc-final-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.tc-final-cta__actions {
  display: flex;
  gap: 12px;
}

.tc-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.tc-button:hover {
  transform: translateY(-1px);
}

.tc-button--primary {
  color: var(--tc-white);
  background: var(--tc-red);
}

.tc-button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--tc-white);
  background: transparent;
}

.tc-button--secondary:hover {
  color: var(--tc-navy);
  background: var(--tc-sand);
}

@media (max-width: 1100px) {
  .tc-page {
    padding-top: 0;
  }

  .tc-switcher__inner {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .tc-switcher__group {
    flex: 0 0 auto;
  }
}

@media (max-width: 860px) {
  .tc-container {
    width: min(100% - 32px, 720px);
  }

  .tc-hero {
    min-height: 480px;
  }

  .tc-hero h1 {
    font-size: 54px;
  }

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

  .tc-card--featured {
    grid-column: span 2;
  }

  .tc-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .tc-container {
    width: min(100% - 24px, 520px);
  }

  .tc-hero {
    min-height: 455px;
  }

  .tc-hero__content {
    padding-block: 64px 52px;
  }

  .tc-hero h1 {
    margin-top: 12px;
    font-size: 42px;
    line-height: 1.02;
  }

  .tc-hero__lead {
    font-size: 17px;
  }

  .tc-switcher__inner {
    min-height: 66px;
  }

  .tc-switcher__label {
    display: none;
  }

  .tc-switcher a {
    padding-inline: 10px;
    font-size: 13px;
  }

  .tc-section {
    padding-block: 64px 76px;
  }

  .tc-section__head {
    display: block;
    margin-bottom: 28px;
  }

  .tc-section h2 {
    font-size: 38px;
  }

  .tc-section__note {
    margin-top: 14px;
    text-align: left;
  }

  .tc-grid {
    grid-template-columns: 1fr;
  }

  .tc-card--featured {
    grid-column: auto;
  }

  .tc-card--featured .tc-card__media,
  .tc-card__media {
    aspect-ratio: 4 / 3;
  }

  .tc-card__copy {
    padding: 20px;
  }

  .tc-card h3 {
    font-size: 25px;
  }

  .tc-final-cta {
    padding-block: 60px 92px;
  }

  .tc-final-cta h2 {
    font-size: 36px;
  }

  .tc-final-cta__actions {
    display: grid;
  }

  .tc-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-site *,
  .tc-site *::before,
  .tc-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
