/**
 * Template C — Classic Standard (editorial)
 * Distinct from Template A: serif headlines, cream paper, navy accent, square corners, thin rules.
 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

.template-c {
  --tc-ink: #1a1814;
  --tc-ink-muted: #4a443d;
  --tc-paper: #f7f4ee;
  --tc-paper-2: #efe9df;
  --tc-rule: #c9bfa8;
  --tc-navy: #1e3a5f;
  --tc-navy-deep: #0f172a;
  --tc-accent: #8b4513;
  --tc-accent-soft: #a16207;

  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--tc-ink);
  background: var(--tc-paper);
  letter-spacing: 0.01em;
}

/* ─── Typography (classic) ─── */
.template-c h1,
.template-c h2,
.template-c h3,
.template-c h4,
.template-c h5,
.template-c .display-1,
.template-c .display-2,
.template-c .display-4,
.template-c .display-6 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--tc-navy-deep);
  letter-spacing: 0.02em;
}

.template-c .text-primary {
  color: var(--tc-navy) !important;
}

.template-c .text-secondary,
.template-c .text-body {
  color: var(--tc-ink-muted) !important;
}

/* ─── Page title bar (inner pages) ─── */
.template-c .container-fluid.bg-dark.p-5.mb-5 {
  background: var(--tc-paper-2) !important;
  border-bottom: 3px double var(--tc-rule) !important;
  border-top: 1px solid var(--tc-rule);
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.template-c .container-fluid.bg-dark .display-4 {
  color: var(--tc-navy-deep) !important;
  text-transform: none;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.template-c .breadcrumb-item a {
  color: var(--tc-navy) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.template-c .breadcrumb-item.active {
  color: var(--tc-ink-muted) !important;
}

/* ─── Hero ─── */
.template-c .container-fluid.p-0.mb-5 > .position-relative {
  border-radius: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-shadow: inset 0 0 0 1px var(--tc-rule);
}

.template-c .container-fluid.p-0.mb-5 .position-absolute[style*='rgba(0,0,0'] {
  background: rgba(26, 24, 20, 0.45) !important;
}

.template-c .container-fluid.p-0.mb-5 .text-light {
  color: #fdfcfa !important;
}

.template-c .container-fluid.p-0.mb-5 .btn-primary {
  border-radius: 2px !important;
  background: var(--tc-navy) !important;
  border: 1px solid var(--tc-navy-deep) !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.85rem 2rem !important;
}

.template-c .container-fluid.p-0.mb-5 .btn-outline-light {
  border-radius: 2px !important;
  border-width: 1px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.template-c .container-fluid.p-0.mb-5 .btn-outline-light:hover {
  background: var(--tc-paper) !important;
  color: var(--tc-navy-deep) !important;
}

/* ─── Section rhythm ─── */
.template-c .dynamic-section-gap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid var(--tc-rule);
  background: linear-gradient(180deg, var(--tc-paper) 0%, #faf7f2 100%);
}

.template-c .dynamic-section-gap:first-of-type {
  border-top: none;
}

.template-c .container-xxl.py-5,
.template-c .container-fluid.py-5 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

/* ─── About ─── */
.template-c .border-start.border-5.border-primary {
  border-left: 4px solid var(--tc-navy) !important;
  border-radius: 0 !important;
  background: #fffef9;
  box-shadow: 0 1px 0 var(--tc-rule);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.template-c .border-start.border-5.border-primary h6 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--tc-accent) !important;
}

/* ─── Facts ─── */
.template-c .container-fluid.my-5 .container.py-5 {
  background: #fffef9;
  border-radius: 0 !important;
  border: 1px solid var(--tc-rule);
  box-shadow: 4px 4px 0 var(--tc-paper-2);
}

/* ─── Menu tabs ─── */
.template-c .nav-pills .nav-link {
  border-radius: 0 !important;
  border: 1px solid transparent;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 600;
}

.template-c .nav-pills .nav-link.active,
.template-c .nav-pills .show > .nav-link {
  background: var(--tc-navy) !important;
  border-color: var(--tc-navy-deep) !important;
}

/* ─── Services (Template C — offering tiles) ─── */
.template-c .tc-svc-v2-section {
  background: linear-gradient(180deg, #fffef9 0%, var(--tc-paper) 45%);
  border-top: 1px solid var(--tc-rule);
  border-bottom: 1px solid var(--tc-rule);
}

.template-c .tc-svc-v2-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px double var(--tc-navy);
}

@media (min-width: 768px) {
  .template-c .tc-svc-v2-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.template-c .tc-svc-v2-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin: 0 0 0.4rem;
}

.template-c .tc-svc-v2-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0;
  line-height: 1.1;
}

.template-c .tc-svc-v2-cta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fffef9;
  background: var(--tc-navy);
  border: 1px solid var(--tc-navy-deep);
  padding: 0.75rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.template-c .tc-svc-v2-cta:hover {
  background: var(--tc-navy-deep);
  color: #fffef9;
}

.template-c .tc-svc-v2-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fffef9;
  border: 1px solid var(--tc-rule);
  box-shadow: 8px 8px 0 rgba(30, 58, 95, 0.08);
  overflow: hidden;
  border-radius: 0 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.template-c .tc-svc-v2-card:hover {
  border-color: rgba(30, 58, 95, 0.35);
  box-shadow: 10px 12px 0 rgba(30, 58, 95, 0.12);
}

.template-c .tc-svc-v2-media {
  position: relative;
  height: 11.5rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--tc-navy-deep) 0%, var(--tc-navy) 100%);
}

.template-c .tc-svc-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.95;
}

.template-c .tc-svc-v2-icon-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 252, 250, 0.88);
  font-size: 2.75rem;
}

.template-c .tc-svc-v2-icon-fallback {
  font-size: 2rem;
  opacity: 0.65;
}

.template-c .tc-svc-v2-body {
  padding: 1.35rem 1.35rem 1.5rem;
  text-align: left;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--tc-rule);
}

.template-c .tc-svc-v2-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.template-c .tc-svc-v2-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--tc-ink-muted);
  margin: 0 0 1rem;
  flex: 1 1 auto;
}

.template-c .tc-svc-v2-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tc-navy);
  border-bottom: 1px solid var(--tc-rule);
  padding-bottom: 2px;
  align-self: flex-start;
}

.template-c .tc-svc-v2-link:hover {
  color: var(--tc-navy-deep);
  border-bottom-color: var(--tc-navy);
}

.template-c .tc-svc-v2-link-arrow {
  margin-left: 0.35rem;
}

.template-c .tc-svc-v2-pager {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.template-c .tc-svc-v2-pager-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 2px solid var(--tc-navy);
  background: #fffef9;
  color: var(--tc-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-c .tc-svc-v2-pager-btn:hover {
  background: var(--tc-navy);
  color: #fffef9;
}

.template-c .tc-svc-v2-footnote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
  color: var(--tc-ink-muted);
  margin: 2.25rem 0 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Video (Template C — cinema frame) ─── */
.template-c .tc-video-v2-section {
  background: var(--tc-paper);
  border-top: 1px solid var(--tc-rule);
}

.template-c .tc-video-v2-head {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.template-c .tc-video-v2-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin: 0 0 0.4rem;
}

.template-c .tc-video-v2-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0;
  line-height: 1.15;
}

.template-c .tc-video-v2-frame {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--tc-navy-deep);
  border: 1px solid rgba(255, 254, 249, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 254, 249, 0.06) inset,
    12px 16px 40px rgba(0, 0, 0, 0.35);
}

.template-c .tc-video-v2-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.template-c .tc-video-v2-trigger:focus-visible {
  outline: 2px solid #fffef9;
  outline-offset: 4px;
}

.template-c .tc-video-v2-screen {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 254, 249, 0.15);
}

.template-c .tc-video-v2-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template-c .tc-video-v2-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.45);
}

.template-c .tc-video-v2-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
}

.template-c .tc-video-v2-chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 0.15rem;
}

.template-c .tc-video-v2-play {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffef9;
  border: 1px solid var(--tc-rule);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

.template-c .tc-video-v2-play-shape {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent var(--tc-navy);
  margin-left: 0.2rem;
}

.template-c .tc-video-v2-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.88);
}

/* ─── Legacy blog card (if present in markup) ─── */
.template-c .blog-card-img-wrap {
  border-radius: 0 !important;
  border: 1px solid var(--tc-rule) !important;
  box-shadow: 6px 6px 0 rgba(30, 58, 95, 0.08) !important;
  overflow: hidden;
  background: #fffef9;
}

/* ─── Team (Template C — directory panels) ─── */
.template-c .tc-team-v2-section {
  position: relative;
  background: var(--tc-paper);
  border-top: 1px solid var(--tc-rule);
  border-bottom: 1px solid var(--tc-rule);
  overflow: hidden;
}

.template-c .tc-team-v2-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(30, 58, 95, 0.07) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.55;
}

.template-c .tc-team-v2-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--tc-navy-deep) 0%, var(--tc-navy) 55%, #8b7355 100%);
}

.template-c .tc-team-v2-section .container-xxl {
  position: relative;
  z-index: 1;
}

.template-c .tc-team-v2-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--tc-rule);
}

@media (min-width: 768px) {
  .template-c .tc-team-v2-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.template-c .tc-team-v2-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin: 0 0 0.4rem;
}

.template-c .tc-team-v2-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0;
  line-height: 1.1;
}

.template-c .tc-team-v2-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--tc-ink-muted);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .template-c .tc-team-v2-tagline {
    white-space: normal;
  }
}

.template-c .tc-team-v2-card {
  background: #fffef9;
  border: 1px solid var(--tc-rule);
  border-radius: 0 !important;
  box-shadow: 0 10px 30px rgba(26, 24, 20, 0.06);
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.template-c .tc-team-v2-card:hover {
  border-color: rgba(30, 58, 95, 0.35);
  box-shadow: 0 14px 36px rgba(30, 58, 95, 0.12);
}

.template-c .tc-team-v2-card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 1.2rem 1.3rem 1.1rem;
  min-height: 7.5rem;
}

.template-c .tc-team-v2-avatar-wrap {
  flex-shrink: 0;
}

.template-c .tc-team-v2-avatar-ring {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, var(--tc-navy) 0%, #8b7355 100%);
  box-shadow: 0 4px 14px rgba(30, 58, 95, 0.2);
  overflow: hidden;
}

.template-c .tc-team-v2-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--tc-paper-2);
}

.template-c .tc-team-v2-main {
  flex: 1 1 auto;
  min-width: 0;
  border-left: 3px solid var(--tc-navy);
  padding-left: 1rem;
}

.template-c .tc-team-v2-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0 0 0.2rem;
  line-height: 1.15;
}

.template-c .tc-team-v2-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.template-c .tc-team-v2-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.template-c .tc-team-v2-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.65rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--tc-navy);
  border: 1px solid var(--tc-rule);
  background: var(--tc-paper);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.template-c .tc-team-v2-social:hover {
  background: var(--tc-navy);
  color: #fffef9;
  border-color: var(--tc-navy-deep);
}

.template-c .tc-team-v2-social-txt {
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-c .tc-team-v2-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.template-c .tc-team-v2-pager-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 2px solid var(--tc-navy);
  background: #fffef9;
  color: var(--tc-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-c .tc-team-v2-pager-btn:hover {
  background: var(--tc-navy);
  color: #fffef9;
}

/* ─── Facts (Template C — registry plaques) ─── */
.template-c .tc-facts-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tc-paper-2) 0%, var(--tc-paper) 55%);
  border-top: 1px solid var(--tc-rule);
  border-bottom: 1px solid var(--tc-rule);
}

.template-c .tc-facts-section--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tc-facts-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
}

.template-c .tc-facts-section--has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tc-paper) 0%, rgba(247, 244, 238, 0.92) 40%, var(--tc-paper) 100%);
  pointer-events: none;
}

.template-c .tc-facts-section .container {
  position: relative;
  z-index: 1;
}

.template-c .tc-facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .template-c .tc-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .template-c .tc-facts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.template-c .tc-fact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  background: #fffef9;
  border: 1px solid var(--tc-rule);
  box-shadow: 6px 6px 0 rgba(30, 58, 95, 0.08);
  padding: 1.25rem 1.25rem 1.35rem;
  min-height: 100%;
  align-items: stretch;
}

.template-c .tc-fact-rail {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(30, 58, 95, 0.2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  border-right: 1px solid var(--tc-rule);
  padding-right: 0.75rem;
  margin-right: 0.15rem;
}

.template-c .tc-fact-core {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
}

.template-c .tc-fact-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.template-c .tc-fact-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tc-ink-muted);
  margin: 0 0 0.85rem;
}

.template-c .tc-fact-stat {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  padding-top: 0.65rem;
  border-top: 3px double var(--tc-navy);
}

.template-c .tc-fact-count {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--tc-navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.template-c .tc-fact-suffix {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--tc-ink-muted);
}

.template-c .tc-fact-figure {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0.75rem 0 0;
  padding: 0;
  border: 1px solid var(--tc-rule);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 160px;
}

.template-c .tc-fact-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}

/* Slide rows (menu / services / team / blog) — not in base template C style.css */
.template-c .slide-row {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.template-c .slide-row.slide-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Vertical slide for blog list (chronicle layout) */
.template-c .tc-blog-list.slide-row {
  opacity: 0;
  transform: translateY(18px);
}

.template-c .tc-blog-list.slide-row.slide-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services track slide */
.template-c .tc-svc-v2-track.slide-row {
  opacity: 0;
  transform: translateY(16px);
}

.template-c .tc-svc-v2-track.slide-row.slide-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menu list slide (carte layout) */
.template-c .tc-menu-slide.slide-row {
  opacity: 0;
  transform: translateY(14px);
}

.template-c .tc-menu-slide.slide-row.slide-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Menu (Template C — carte & leader lines) ─── */
.template-c .tc-menu-section {
  background: var(--tc-paper);
  border-top: 1px solid var(--tc-rule);
}

.template-c .tc-menu-head {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .template-c .tc-menu-head {
    text-align: left;
    max-width: 38rem;
  }
}

.template-c .tc-menu-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin-bottom: 0.45rem;
}

.template-c .tc-menu-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0;
  line-height: 1.12;
}

.template-c .tc-menu-head-rule {
  width: 5rem;
  height: 3px;
  background: var(--tc-navy);
  margin: 1rem auto 0;
}

@media (min-width: 768px) {
  .template-c .tc-menu-head-rule {
    margin-left: 0;
    margin-right: auto;
  }
}

.template-c .tc-menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.75rem;
  border: 1px solid var(--tc-rule);
  background: #fffef9;
  box-shadow: 4px 4px 0 rgba(30, 58, 95, 0.06);
}

.template-c .tc-menu-cat {
  font-family: 'Source Sans 3', sans-serif;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-right: 1px solid var(--tc-rule);
  background: transparent;
  color: var(--tc-ink-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-c .tc-menu-cat:last-child {
  border-right: none;
}

.template-c .tc-menu-cat:hover {
  color: var(--tc-navy);
  background: var(--tc-paper-2);
}

.template-c .tc-menu-cat.is-active {
  background: var(--tc-navy);
  color: #fffef9;
}

.template-c .tc-menu-panels {
  position: relative;
}

.template-c .tc-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--tc-rule);
  background: #fffef9;
  box-shadow: 6px 6px 0 rgba(30, 58, 95, 0.07);
}

.template-c .tc-menu-line {
  padding: 1.1rem 1.25rem 1.15rem;
  border-bottom: 1px solid var(--tc-rule);
}

.template-c .tc-menu-line:last-child {
  border-bottom: none;
}

.template-c .tc-menu-line-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.template-c .tc-menu-thumb-wrap {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--tc-rule);
  overflow: hidden;
  background: var(--tc-paper-2);
}

.template-c .tc-menu-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template-c .tc-menu-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--tc-navy-deep);
  flex-shrink: 0;
  max-width: 46%;
}

.template-c .tc-menu-leader {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 0;
  margin: 0 0.25rem;
  border-bottom: 1px dotted var(--tc-rule);
  transform: translateY(-0.15rem);
}

.template-c .tc-menu-price {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tc-navy);
  flex-shrink: 0;
}

.template-c .tc-menu-desc {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tc-ink-muted);
}

.template-c .tc-menu-line--has-thumb .tc-menu-desc {
  margin-left: 3.15rem;
}

.template-c .tc-menu-detail {
  display: inline-block;
  margin: 0.5rem 0 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.template-c .tc-menu-line--has-thumb .tc-menu-detail {
  margin-left: 3.15rem;
}

.template-c .tc-menu-detail:hover {
  border-bottom-color: var(--tc-rule);
}

.template-c .tc-menu-pager {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.template-c .tc-menu-pager-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 2px solid var(--tc-navy);
  background: transparent;
  color: var(--tc-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-c .tc-menu-pager-btn:hover {
  background: var(--tc-navy);
  color: #fffef9;
}

/* Mobile menu category select — align with Template C (scoped overrides live in Vue; these reinforce TC chrome) */
@media (max-width: 767.98px) {
  .template-c .menu-tab-select-wrap .menu-tab-select {
    border: 1px solid var(--tc-rule) !important;
    border-radius: 2px !important;
    background-color: #fffef9 !important;
    color: var(--tc-navy-deep) !important;
    font-weight: 600 !important;
    box-shadow: 4px 4px 0 rgba(30, 58, 95, 0.08) !important;
  }

  .template-c .menu-tab-select-wrap .select2-container .select2-selection--single {
    border: 1px solid var(--tc-rule) !important;
    border-radius: 2px !important;
    background-color: #fffef9 !important;
    box-shadow: 4px 4px 0 rgba(30, 58, 95, 0.08) !important;
  }

  .template-c .menu-tab-select-wrap .select2-container .select2-selection__rendered {
    color: var(--tc-navy-deep) !important;
  }
}

/* ─── Testimonials (Template C — journal pull-quote) ─── */
.template-c .tc-testimonial-section {
  background: linear-gradient(165deg, var(--tc-navy-deep) 0%, var(--tc-navy) 42%, #243d5c 100%);
  color: #fdfcfa;
  border-top: 1px solid rgba(255, 254, 249, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.template-c .tc-testimonial-shell {
  max-width: 52rem;
  margin: 0 auto;
}

.template-c .tc-testimonial-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.template-c .tc-testimonial-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.65);
  margin-bottom: 0.5rem;
}

.template-c .tc-testimonial-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #fffef9;
  margin: 0;
  line-height: 1.12;
}

.template-c .tc-testimonial-head-rule {
  width: 4rem;
  height: 2px;
  background: rgba(255, 254, 249, 0.45);
  margin: 1.1rem auto 0;
}

.template-c .tc-testimonial-lead {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(253, 252, 250, 0.82);
  margin: 1.25rem 0 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-testimonial-stage {
  background: #fffef9;
  color: var(--tc-ink);
  border: 1px solid rgba(255, 254, 249, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 254, 249, 0.08) inset,
    12px 18px 40px rgba(0, 0, 0, 0.35);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
}

@media (min-width: 768px) {
  .template-c .tc-testimonial-stage {
    padding: 2.5rem 2.75rem 2rem;
  }
}

.template-c .tc-testimonial-panel {
  position: relative;
  padding-left: 0.25rem;
}

@media (min-width: 576px) {
  .template-c .tc-testimonial-panel {
    padding-left: 2.5rem;
    min-height: 12rem;
  }
}

.template-c .tc-testimonial-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 14vw, 7rem);
  line-height: 0.85;
  color: var(--tc-navy);
  opacity: 0.2;
  position: absolute;
  left: -0.15rem;
  top: -0.5rem;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 576px) {
  .template-c .tc-testimonial-quote-mark {
    left: 0.25rem;
    top: -0.25rem;
  }
}

.template-c .tc-testimonial-blockquote {
  margin: 0 0 1.75rem;
  padding: 0;
  border: none;
}

.template-c .tc-testimonial-message {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--tc-navy-deep);
  margin: 0 0 1rem;
}

.template-c .tc-testimonial-read {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--tc-rule);
  padding-bottom: 2px;
}

.template-c .tc-testimonial-read:hover {
  color: var(--tc-navy-deep);
  border-bottom-color: var(--tc-navy);
}

.template-c .tc-testimonial-read-arrow {
  margin-left: 0.35rem;
}

.template-c .tc-testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 3px double var(--tc-rule);
}

.template-c .tc-testimonial-photo-wrap {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--tc-rule);
  box-shadow: 3px 3px 0 rgba(30, 58, 95, 0.12);
  overflow: hidden;
  background: var(--tc-paper-2);
}

.template-c .tc-testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
}

.template-c .tc-testimonial-byline {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.template-c .tc-testimonial-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  font-style: normal;
  color: var(--tc-navy-deep);
}

.template-c .tc-testimonial-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
}

.template-c .tc-testimonial-controls {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tc-rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .template-c .tc-testimonial-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.template-c .tc-testimonial-arrows {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.template-c .tc-testimonial-arrow {
  font-family: 'Source Sans 3', sans-serif;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--tc-rule);
  background: var(--tc-paper);
  color: var(--tc-navy);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.template-c .tc-testimonial-arrow:hover {
  background: var(--tc-navy);
  color: #fffef9;
  border-color: var(--tc-navy-deep);
}

.template-c .tc-testimonial-counter {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--tc-ink-muted);
}

.template-c .tc-testimonial-counter-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.template-c .tc-testimonial-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.template-c .tc-testimonial-index-btn {
  font-family: 'Source Sans 3', sans-serif;
  min-width: 2.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--tc-rule);
  background: #fffef9;
  color: var(--tc-ink-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.template-c .tc-testimonial-index-btn:hover,
.template-c .tc-testimonial-index-btn.is-active {
  background: var(--tc-navy);
  color: #fffef9;
  border-color: var(--tc-navy-deep);
}

/* ─── Blog (Template C — chronicle index) ─── */
.template-c .tc-blog-section {
  background: var(--tc-paper);
  border-top: 1px solid var(--tc-rule);
  border-bottom: 1px solid var(--tc-rule);
}

.template-c .tc-blog-head {
  border-bottom: 3px double var(--tc-navy);
  padding-bottom: 1.75rem;
  margin-bottom: 2rem;
}

.template-c .tc-blog-head-inner {
  max-width: 40rem;
}

.template-c .tc-blog-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
  margin-bottom: 0.45rem;
}

.template-c .tc-blog-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--tc-navy-deep);
  margin: 0 0 0.5rem;
  line-height: 1.12;
}

.template-c .tc-blog-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--tc-ink-muted);
  margin: 0;
  line-height: 1.4;
}

.template-c .tc-blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.template-c .tc-blog-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--tc-rule);
  align-items: start;
}

@media (min-width: 768px) {
  .template-c .tc-blog-row:not(.tc-blog-row--no-image) {
    grid-template-columns: 11rem 1fr;
  }
}

.template-c .tc-blog-row:first-child {
  padding-top: 0;
}

.template-c .tc-blog-thumb {
  position: relative;
}

.template-c .tc-blog-thumb-link {
  display: block;
  border: 1px solid var(--tc-rule);
  box-shadow: 4px 4px 0 rgba(30, 58, 95, 0.08);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--tc-paper-2);
}

.template-c .tc-blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.template-c .tc-blog-thumb-link:hover .tc-blog-thumb-img {
  transform: scale(1.04);
}

.template-c .tc-blog-main {
  padding-top: 0.25rem;
}

.template-c .tc-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc-ink-muted);
}

.template-c .tc-blog-category {
  color: var(--tc-navy);
  border-bottom: 2px solid var(--tc-navy);
  padding-bottom: 1px;
}

.template-c .tc-blog-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.template-c .tc-blog-heading a {
  color: var(--tc-navy-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.template-c .tc-blog-heading a:hover {
  color: var(--tc-navy);
  border-bottom-color: var(--tc-rule);
}

.template-c .tc-blog-excerpt {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--tc-ink-muted);
  margin: 0 0 1rem;
  max-width: 42rem;
}

.template-c .tc-blog-continue {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tc-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.template-c .tc-blog-continue:hover {
  color: var(--tc-navy-deep);
}

.template-c .tc-blog-continue-line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--tc-navy);
  opacity: 0.5;
}

.template-c .tc-blog-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.template-c .tc-blog-pager-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.35rem;
  border: 2px solid var(--tc-navy);
  background: transparent;
  color: var(--tc-navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-c .tc-blog-pager-btn:hover {
  background: var(--tc-navy);
  color: #fffef9;
}

/* ─── Offer ─── */
.template-c .container-fluid.bg-offer.my-5 {
  border-radius: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-top: 1px solid var(--tc-rule);
  border-bottom: 1px solid var(--tc-rule);
  box-shadow: inset 0 0 80px rgba(26, 24, 20, 0.35);
}

/* ─── Contact ─── */
.template-c .tc-contact-info-text {
  color: var(--light) !important;
}

.template-c .container-fluid.py-5 .border-inner {
  border-radius: 0 !important;
  border: 1px solid var(--tc-rule) !important;
  box-shadow: none !important;
}

.template-c .form-control {
  border-radius: 2px;
  border-color: var(--tc-rule);
  background: #fffef9;
}

.template-c .btn-primary {
  border-radius: 2px !important;
  background: var(--tc-navy) !important;
  border-color: var(--tc-navy-deep) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── Video / ratio embeds ─── */
.template-c .ratio {
  border-radius: 0;
  border: 1px solid var(--tc-rule);
  box-shadow: 6px 6px 0 rgba(30, 58, 95, 0.06);
}

/* ─── Carousels & misc buttons ─── */
.template-c .btn:not(.btn-primary):not(.btn-outline-light) {
  border-radius: 2px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 600;
}

.template-c .btn-primary.py-2,
.template-c .btn-primary.py-3 {
  box-shadow: none !important;
}
