/**
 * 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 {
  /* Map editorial tokens to CMS palette (:root --primary … --text) */
  --tc-ink: var(--text);
  --tc-ink-muted: color-mix(in srgb, var(--text) 72%, var(--light));
  --tc-paper: var(--light);
  --tc-paper-2: color-mix(in srgb, var(--light) 88%, var(--text));
  --tc-paper-highlight: color-mix(in srgb, var(--light) 97%, var(--secondary));
  --tc-rule: color-mix(in srgb, var(--text) 22%, var(--light));
  --tc-navy: var(--primary);
  --tc-navy-deep: var(--dark);
  --tc-accent: var(--primary);
  --tc-accent-soft: color-mix(in srgb, var(--primary) 85%, var(--dark));
  --tc-accent-mix: color-mix(in srgb, var(--primary) 45%, var(--text));
  --tc-primary-deep: color-mix(in srgb, var(--primary) 70%, var(--dark));
  --tc-surface: color-mix(in srgb, var(--secondary) 10%, var(--light));
  --tc-on-dark: var(--secondary);
  --tc-on-light: var(--text);
  --tc-shadow: color-mix(in srgb, var(--text) 6%, transparent);
  --tc-shadow-sm: color-mix(in srgb, var(--primary) 8%, transparent);
  --tc-shadow-md: color-mix(in srgb, var(--primary) 12%, transparent);
  --tc-border-primary: color-mix(in srgb, var(--primary) 35%, transparent);
  --tc-hero-scrim: var(--cms-image-overlay, rgba(0, 0, 0, 0.5));
  --tc-on-dark-muted: color-mix(in srgb, var(--secondary) 65%, transparent);
  --tc-on-dark-soft: color-mix(in srgb, var(--secondary) 82%, transparent);
  --tc-on-dark-faint: color-mix(in srgb, var(--secondary) 45%, transparent);
  --tc-on-dark-border: color-mix(in srgb, var(--secondary) 12%, transparent);
  --tc-overlay-heavy: var(--cms-image-overlay-heavy, rgba(0, 0, 0, 0.6));
  --tc-overlay-text: color-mix(in srgb, var(--text) 35%, transparent);

  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;
}

/* Mobile fixes: avoid horizontal scroll + center media */
body.cms-active-template-templateC,
body.cms-active-template-templateC #app {
  overflow-x: hidden;
}

.tc-about-img-wrap {
  min-height: 400px;
}

.template-c .tc-about-description {
  white-space: pre-line;
}

@media (max-width: 767.98px) {
  .tc-about-img-wrap {
    padding: 0 !important;
    min-height: 300px;
  }

  .tc-contact-map iframe,
  .tc-contact-map > * {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}

/* ─── 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(--primary) !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 .tc-hero-wrap,
.template-c .tc-hero-shell {
  max-width: 100%;
}

.template-c .tc-hero-stage {
  width: 100%;
  min-width: 0;
  min-height: 600px;
}

.template-c .tc-hero-shell--cms-synced {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tc-hero-sync-min-h, 600px);
}

.template-c .tc-hero-shell--cms-synced .tc-hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
}

.template-c .tc-hero-shell--has-bg.tc-hero-shell--cms-synced {
  background-position: center center;
  background-repeat: no-repeat;
}

.template-c .tc-hero-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 0 1 100%;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-hero-content-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-align: center;
}

.template-c .tc-hero-scrim {
  pointer-events: none;
}

.template-c .tc-hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: auto;
  touch-action: manipulation;
}

.template-c .tc-hero-nav-btn--prev {
  left: 1rem;
}

.template-c .tc-hero-nav-btn--next {
  right: 1rem;
}

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

@media (max-width: 767.98px) {
  .template-c .tc-hero-wrap,
  .template-c .tc-hero-shell {
    overflow-x: clip;
  }

  .template-c .tc-hero-stage {
    min-height: 480px;
    box-sizing: border-box;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .template-c .tc-hero-shell--cms-synced {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .template-c .tc-hero-shell--cms-synced .tc-hero-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    flex: 1 1 auto;
  }

  .template-c .tc-hero-shell--cms-synced.tc-hero-shell--has-bg,
  .template-c .tc-hero-shell--cms-synced.tc-hero-shell--has-bg[data-cms-bg="1"] {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--dark);
  }

  .template-c .tc-hero-row {
    margin-left: 0;
    margin-right: 0;
  }

  .template-c .tc-hero-slide {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .template-c .tc-hero-slide .display-2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .template-c .tc-hero-slide h5,
  .template-c .tc-hero-slide p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .template-c .tc-hero-cta-row {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .template-c .tc-hero-nav-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .template-c .tc-hero-nav-btn--prev {
    left: 0.35rem;
  }

  .template-c .tc-hero-nav-btn--next {
    right: 0.35rem;
  }
}

.template-c .container-fluid.p-0.mb-5 .position-absolute[style*='rgba(0,0,0'] {
  background: var(--tc-hero-scrim) !important;
}

.template-c .container-fluid.p-0.mb-5 .text-light {
  color: var(--tc-on-dark) !important;
}

.template-c .container-fluid.p-0.mb-5 .btn-primary {
  border-radius: 2px !important;
  background: var(--primary) !important;
  border: 1px solid var(--dark) !important;
  box-shadow: none !important;
  color: var(--secondary) !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%, var(--tc-paper-highlight) 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: var(--tc-surface);
  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: var(--tc-surface);
  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, var(--tc-surface) 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: var(--tc-surface);
  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: var(--tc-surface);
}

.template-c .tc-svc-v2-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--tc-surface);
  border: 1px solid var(--tc-rule);
  box-shadow: 8px 8px 0 var(--tc-shadow-sm);
  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: var(--tc-border-primary);
  box-shadow: 10px 12px 0 var(--tc-shadow-md);
}

.template-c .tc-svc-v2-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.template-c .tc-svc-v2-icon-img {
  width: 100%;
  height: 100%;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.template-c .tc-svc-v2-icon-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--tc-navy);
  font-size: 2rem;
}

.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;
}

.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: var(--tc-surface);
  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: var(--tc-surface);
}

.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 var(--tc-on-dark-border);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--secondary) 6%, transparent) inset,
    12px 16px 40px var(--tc-overlay-text);
}

.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 var(--tc-surface);
  outline-offset: 4px;
}

.template-c .tc-video-v2-screen {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid color-mix(in srgb, var(--secondary) 15%, transparent);
}

.template-c .tc-video-v2-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background-color: var(--tc-paper-2);
}

.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: var(--tc-on-dark-faint);
}

.template-c .tc-video-v2-scrim {
  position: absolute;
  inset: 0;
  background: var(--cms-image-overlay, rgba(0, 0, 0, 0.5));
  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: var(--tc-surface);
  border: 1px solid var(--tc-rule);
  box-shadow: 3px 3px 0 var(--tc-overlay-text);
}

.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: var(--tc-on-dark-soft);
}

/* ─── 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 var(--tc-shadow-sm) !important;
  overflow: hidden;
  background: var(--tc-surface);
}

/* ─── 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, color-mix(in srgb, var(--primary) 7%, transparent) 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%, var(--tc-accent-mix) 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: var(--tc-surface);
  border: 1px solid var(--tc-rule);
  border-radius: 0 !important;
  box-shadow: 0 10px 30px var(--tc-shadow);
  height: 100%;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.template-c .tc-team-v2-card:hover {
  border-color: var(--tc-border-primary);
  box-shadow: 0 14px 36px var(--tc-shadow-md);
}

.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%, var(--tc-accent-mix) 100%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 20%, transparent);
  overflow: hidden;
}

.template-c .tc-team-v2-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center center;
  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: var(--tc-surface);
  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: var(--tc-surface);
  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: var(--tc-surface);
}

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

.template-c .tc-facts-section__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.template-c .tc-facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-fact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  background: color-mix(in srgb, var(--light) 78%, var(--primary));
  border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--light));
  box-shadow: 0 8px 22px color-mix(in srgb, var(--tc-shadow-md) 45%, transparent);
  padding: 1.25rem 1.25rem 1rem;
  min-height: auto;
  align-items: stretch;
  overflow: hidden;
}

.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: color-mix(in srgb, var(--primary) 20%, transparent);
  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.85rem 0 0;
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--text) 14%, var(--light));
  overflow: hidden;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--text) 12%, var(--light));
}

.template-c .tc-fact-figure img {
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--text) 10%, var(--light));
  filter: saturate(0.9);
}

@media (min-width: 576px) {
  .template-c .tc-fact-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
    width: calc((100% - 1.25rem) / 2);
  }
}

@media (min-width: 992px) {
  .template-c .tc-fact-card {
    flex: 0 0 calc((100% - (1.25rem * 3)) / 4);
    max-width: calc((100% - (1.25rem * 3)) / 4);
    width: calc((100% - (1.25rem * 3)) / 4);
  }
}

@media (min-width: 1200px) {
  .template-c .tc-facts-grid {
    gap: 1.5rem;
  }

  .template-c .tc-fact-card {
    flex: 0 0 calc((100% - (1.5rem * 3)) / 4);
    max-width: calc((100% - (1.5rem * 3)) / 4);
    width: calc((100% - (1.5rem * 3)) / 4);
  }
}

@media (max-width: 767.98px) {
  .template-c .tc-facts-section {
    overflow: visible;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .template-c .tc-facts-section__content {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .template-c .tc-facts-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .template-c .tc-fact-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--tc-shadow-md) 40%, transparent);
  }

  .template-c .tc-fact-figure {
    min-height: 112px;
    padding: 0.85rem;
  }

  .template-c .tc-fact-figure img {
    max-width: 96px;
    max-height: 80px;
  }
}

/* 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: var(--tc-surface);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--primary) 6%, transparent);
}

.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: var(--tc-surface);
}

.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: var(--tc-surface);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--primary) 7%, transparent);
}

.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: 7.5rem;
  max-width: 32vw;
  aspect-ratio: 840 / 280;
  height: auto;
  border: 1px solid var(--tc-rule);
  overflow: hidden;
  background: var(--tc-paper-2);
}

.template-c .tc-menu-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  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: var(--tc-surface);
}

/* 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: var(--tc-surface) !important;
    color: var(--tc-navy-deep) !important;
    font-weight: 600 !important;
    box-shadow: 4px 4px 0 var(--tc-shadow-sm) !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: var(--tc-surface) !important;
    box-shadow: 4px 4px 0 var(--tc-shadow-sm) !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%, var(--tc-primary-deep) 100%);
  color: var(--tc-on-dark);
  border-top: 1px solid var(--tc-on-dark-border);
  border-bottom: 1px solid var(--tc-overlay-text);
}

.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: var(--tc-on-dark-muted);
  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: var(--tc-surface);
  margin: 0;
  line-height: 1.12;
}

.template-c .tc-testimonial-head-rule {
  width: 4rem;
  height: 2px;
  background: color-mix(in srgb, var(--secondary) 45%, transparent);
  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: var(--tc-on-dark-soft);
  margin: 1.25rem 0 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-testimonial-stage {
  background: var(--tc-surface);
  color: var(--tc-ink);
  border: 1px solid color-mix(in srgb, var(--secondary) 35%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--secondary) 8%, transparent) inset,
    12px 18px 40px var(--tc-overlay-text);
  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 var(--tc-shadow-md);
  overflow: hidden;
  background: var(--tc-paper-2);
}

.template-c .tc-testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--tc-paper-2);
  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: var(--tc-surface);
  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: var(--tc-surface);
  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: var(--tc-surface);
  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: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tc-rule);
  box-shadow: 4px 4px 0 var(--tc-shadow-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 8.25rem;
  background: var(--tc-paper-2);
}

.template-c .tc-blog-thumb-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  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: var(--tc-surface);
}

/* ─── Offer ─── */
.template-c .tc-offer-section {
  background: transparent;
}

.template-c .tc-offer-card {
  position: relative;
  overflow: hidden;
  background-color: var(--tc-navy-deep);
  border: 1px solid var(--tc-border-primary);
  box-shadow: inset 0 0 80px var(--tc-overlay-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-c .tc-offer-card--has-bg {
  min-height: var(--tc-offer-sync-min-h, auto);
}

.template-c .tc-offer-card--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--tc-offer-bg-image);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.48;
  z-index: 0;
  pointer-events: none;
}

.template-c .tc-offer-card--has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--tc-overlay-heavy);
  z-index: 1;
  pointer-events: none;
}

.template-c .tc-offer-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-c .tc-offer-inner {
  width: 100%;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-offer-heading {
  border-left: none;
  border-top: 4px solid var(--primary);
  padding-left: 0;
  padding-top: 1rem;
  background: transparent;
  box-shadow: none;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.template-c .tc-offer-kicker {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--tc-on-dark-muted) !important;
}

.template-c .tc-offer-title {
  color: var(--tc-on-dark) !important;
}

.template-c .tc-offer-desc {
  color: var(--tc-on-dark-soft) !important;
}

@media (max-width: 767.98px) {
  .template-c .tc-offer-section {
    overflow-x: clip;
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }

  .template-c .tc-offer-section .container {
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .template-c .tc-offer-card {
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
  }

  .template-c .tc-offer-card--has-bg.tc-offer-card--cms-synced::before {
    background-size: cover;
    background-position: center center;
  }

  .template-c .tc-offer-card__content {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.25rem 1rem 0.75rem !important;
  }

  .template-c .tc-offer-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .template-c .tc-offer-heading {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .template-c .tc-offer-kicker {
    letter-spacing: 0.06em;
    font-size: 0.62rem;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
  }

  .template-c .tc-offer-title {
    font-size: clamp(1.35rem, 6.5vw, 2rem);
    line-height: 1.25;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  .template-c .tc-offer-desc {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  .template-c .tc-offer-inner .btn {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* ─── Contact ─── */
.template-c .tc-contact-info-text {
  color: var(--text) !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: var(--tc-surface);
}

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

.template-c .btn-primary:hover,
.template-c .btn-primary:focus,
.template-c .btn-primary:active {
  background: var(--dark) !important;
  border-color: var(--dark) !important;
  color: var(--secondary) !important;
}

/* ─── Video / ratio embeds ─── */
.template-c .ratio {
  border-radius: 0;
  border: 1px solid var(--tc-rule);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--primary) 6%, transparent);
}

/* ─── 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;
}
