/* ============================================================
   TCMCC skin — "Tree of Life"
   Warm bark brown + heart red + leaf green on cream.
   Loaded AFTER the engine's site.css, and deliberately overrides
   its accessibility-hostile defaults (smooth scroll without a
   reduced-motion guard, stripped link underlines).

   WCAG 2.2 AA invariants encoded here — do not regress:
   - every ratio used for text is >= 4.5:1, verified pairs only
     (see the palette table below)
   - :focus-visible is a 3px high-contrast outline everywhere
   - all interactive targets are at least 24x24 CSS px
   - layout reflows to 320px wide with no horizontal scrolling
   - no animation; transitions are gated by prefers-reduced-motion
   ============================================================ */

:root {
  --cream:      #faf7f2;  /* page background */
  --cream-alt:  #f3ede3;  /* alternate section background */
  --white:      #ffffff;
  --ink:        #2e2418;  /* body text: 14.2:1 on cream */
  --ink-soft:   #4a3f31;  /* secondary text: 9.6:1 on cream */
  --bark:       #5b3a21;  /* headings: 9.4:1 on cream */
  --heart:      #9c2731;  /* links, primary buttons: 7.1:1 on cream */
  --heart-deep: #7c1f27;  /* hover */
  --leaf:       #39602c;  /* green accent text: 6.8:1 on cream */
  --gold:       #e8c188;  /* footer headings on dark: 8.9:1 */
  --dark:       #2e2418;  /* footer + CTA background */
  --dark-text:  #f5efe6;  /* text on dark: 13.3:1 */
  --dark-muted: #d9cfc0;  /* secondary on dark: 9.8:1 */
  --line:       #e0d6c6;  /* decorative borders */
  --line-strong:#6b5d4b;  /* input borders: 6.3:1 on white */
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---- Base -------------------------------------------------- */

html { scroll-padding-top: 1rem; }

/* The engine sets scroll-behavior:smooth unguarded; honor reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

.tcm-wrap { max-width: 74rem; margin-inline: auto; padding-inline: 1.25rem; }
.tcm-wrap--narrow { max-width: 52rem; }

/* Screen-reader-only text */
.tcm-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* ---- Focus: one loud, consistent indicator ------------------ */

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 2px;
}
.tcm-footer a:focus-visible, .tcm-cta a:focus-visible,
.tcm-footer button:focus-visible, .tcm-cta button:focus-visible {
  outline-color: var(--dark-text);
}
/* Fallback for browsers without :focus-visible */
a:focus, button:focus, input:focus, textarea:focus { outline-color: var(--ink); }

/* ---- Typography -------------------------------------------- */

.tcm-h1, .tcm-h2, .tcm-h3, .tcm-footer-h {
  font-family: var(--serif);
  color: var(--bark);
  line-height: 1.2;
  text-wrap: balance;
}
.tcm-h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: 0.35em 0 0.3em; }
.tcm-h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 0.55em; }
.tcm-h3 { font-size: 1.22rem; margin: 0 0 0.4em; color: var(--ink); }

.tcm-eyebrow {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--leaf); margin: 0;
}
.tcm-lead { font-size: 1.17rem; color: var(--ink-soft); max-width: 46rem; margin: 0 0 1rem; }
.tcm-sub { color: var(--ink-soft); max-width: 46rem; margin: 0 0 1.5rem; }
.tcm-center { text-align: center; }
.tcm-center.tcm-sub { margin-inline: auto; }
.tcm-mt { margin-top: 1.75rem; }

/* Links inside text: underlined (the engine removes underlines globally;
   color alone must never carry the meaning). */
.tcm-prose a, .tcm-doclist a, .tcm-plainlist a, .tcm-deflist a,
.tcm-footer a, .tcm-sitemap a, .tcm-cardlink, .tcm-newsitem a,
.tcm-table a, .tcm-form a, .tcm-addr a {
  color: var(--heart);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}
.tcm-prose a:hover, .tcm-doclist a:hover, .tcm-footer a:hover,
.tcm-cardlink:hover, .tcm-table a:hover {
  color: var(--heart-deep);
  text-decoration-thickness: 2px;
}
.tcm-footer a { color: var(--dark-text); }
.tcm-footer a:hover { color: var(--white); }

.tcm-prose p, .tcm-prose ul, .tcm-prose ol { margin: 0 0 1em; }
.tcm-prose ul, .tcm-prose ol { padding-left: 1.4em; }
.tcm-prose h2, .tcm-prose h3 { font-family: var(--serif); color: var(--bark); margin: 1.2em 0 0.4em; }

/* ---- Buttons (min target 44px tall) ------------------------- */

.tcm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.6rem 1.4rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.tcm-btn-primary { background: var(--heart); color: var(--white) !important; }
.tcm-btn-primary:hover { background: var(--heart-deep); }
.tcm-btn-outline { border-color: var(--bark); color: var(--bark) !important; background: transparent; }
.tcm-btn-outline:hover { background: var(--bark); color: var(--cream) !important; }
.tcm-btn-ghost { border-color: var(--dark-text); color: var(--dark-text) !important; background: transparent; }
.tcm-btn-ghost:hover { background: var(--dark-text); color: var(--dark) !important; }
.tcm-btn-onbrown { background: var(--white); color: var(--heart) !important; }
.tcm-btn-onbrown:hover { background: var(--cream); }
.tcm-btnrow { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

/* ---- Skip link --------------------------------------------- */

.tcm-skip {
  position: absolute; left: 0.5rem; top: -100px; z-index: 100;
  background: var(--dark); color: var(--dark-text);
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 8px;
  font-weight: 600; text-decoration: underline;
}
.tcm-skip:focus { top: 0; }

/* ---- Utility bar + header ---------------------------------- */

.tcm-utility { background: var(--dark); color: var(--dark-text); font-size: 0.92rem; }
.tcm-utility-in {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.25rem 1rem;
}
.tcm-utility a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--dark-text); text-decoration: underline; text-underline-offset: 0.15em;
  min-height: 44px; padding: 0.25rem 0.25rem;
}
.tcm-utility a:hover { color: var(--white); }

.tcm-header { background: var(--white); border-bottom: 1px solid var(--line); }
.tcm-header-in {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem 1.5rem; padding-block: 0.8rem;
}
.tcm-brand {
  display: inline-flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--ink); min-height: 44px;
}
.tcm-brand-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.tcm-brand-text { display: flex; flex-direction: column; }
.tcm-brand-name {
  font-family: var(--serif); font-weight: 700; color: var(--bark);
  font-size: 1.12rem; line-height: 1.25; max-width: 21rem;
}
.tcm-brand-tag { font-size: 0.82rem; color: var(--ink-soft); }

/* ---- Nav (disclosure submenu, click-only, ESC to close) ----- */

.tcm-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.1rem; }
.tcm-nav-item { position: relative; display: flex; align-items: center; }
.tcm-nav-link {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0.4rem 0.75rem; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 0.98rem; border-radius: 6px;
}
.tcm-nav-link:hover { color: var(--heart); text-decoration: underline; text-underline-offset: 0.2em; }
.tcm-nav-link[aria-current="page"] {
  color: var(--heart);
  box-shadow: inset 0 -3px 0 var(--heart);
  border-radius: 6px 6px 0 0;
}

.tcm-sub-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: -0.4rem;
  background: none; border: none; border-radius: 6px;
  color: var(--ink); cursor: pointer;
}
.tcm-sub-toggle:hover { color: var(--heart); background: var(--cream-alt); }
.tcm-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.tcm-sub {
  list-style: none; margin: 0; padding: 0.4rem;
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: 10px; box-shadow: 0 10px 24px rgba(46, 36, 24, 0.13);
  min-width: 15rem;
}
.tcm-sub-link {
  display: block; padding: 0.55rem 0.8rem; min-height: 24px;
  color: var(--ink); text-decoration: none; font-weight: 500; border-radius: 6px;
}
.tcm-sub-link:hover { background: var(--cream-alt); color: var(--heart); text-decoration: underline; }
.tcm-sub-link[aria-current="page"] { color: var(--heart); font-weight: 700; }

/* JS present: submenu closed until expanded; positioned as a dropdown. */
.js .tcm-sub { display: none; position: absolute; top: 100%; left: 0; z-index: 40; }
.js .tcm-nav-item.tcm-open .tcm-sub { display: block; }
/* No JS: hide the toggle, keep every submenu permanently visible in flow. */
.no-js .tcm-sub-toggle { display: none; }
.no-js .tcm-sub { position: static; box-shadow: none; }

/* Mobile menu toggle */
.tcm-menu-toggle {
  display: none; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.5rem 0.9rem;
  background: var(--white); color: var(--ink);
  border: 2px solid var(--line-strong); border-radius: 8px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
}
.tcm-menu-toggle:hover { border-color: var(--bark); color: var(--heart); }
.tcm-menu-toggle .tcm-mt-close { display: none; }
.tcm-menu-toggle[aria-expanded="true"] .tcm-mt-open { display: none; }
.tcm-menu-toggle[aria-expanded="true"] .tcm-mt-close { display: inline; }

@media (max-width: 61rem) {
  .js .tcm-menu-toggle { display: inline-flex; }
  .js .tcm-nav { display: none; flex-basis: 100%; }
  .js .tcm-nav.tcm-open { display: block; padding-bottom: 0.75rem; }
  .js .tcm-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .js .tcm-nav-item { flex-wrap: wrap; }
  .js .tcm-nav-link { width: 100%; min-height: 48px; }
  .js .tcm-nav-item .tcm-sub { position: static; box-shadow: none; border: none;
    border-left: 3px solid var(--line); border-radius: 0; margin-left: 0.75rem; }
  .js .tcm-sub-toggle { position: absolute; right: 0; top: 0; }
  .tcm-brand-name { font-size: 1rem; max-width: 16rem; }
}

/* ---- Page hero + sections ----------------------------------- */

.tcm-pagehero {
  background: var(--cream-alt);
  border-bottom: 1px solid var(--line);
  padding-block: 2.5rem 2.2rem;
}
.tcm-section { padding-block: 3rem; }
.tcm-section-alt { background: var(--cream-alt); }

.tcm-hero { padding-block: 3.25rem 2.5rem; }
.tcm-hero-in {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 56rem) {
  .tcm-hero-in { grid-template-columns: 1.5fr 1fr; }
}
.tcm-hero-tag {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--leaf); margin: 0.75rem 0 0;
}
.tcm-hero-art { text-align: center; }
.tcm-hero-logo { width: min(320px, 70%); height: auto; }

/* Hero brand animation + its pause/play control.
   The video is keyed onto the exact page cream, so it needs NO frame: no card
   background, no border-radius, no overflow clip. The tree simply sits on the
   page and the falling leaves read as part of the hero. */
.tcm-hero-media {
  position: relative; margin: 0 auto; max-width: 540px;
  background: transparent;
}
.tcm-hero-video {
  display: block; width: 100%; height: auto;
  background: transparent;
}
.tcm-hero-media img { display: block; width: 100%; height: auto; }
.tcm-motion-toggle {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  min-height: 40px; min-width: 40px; padding: 0.35rem 0.6rem;
  background: var(--dark); color: var(--dark-text);   /* 13.3:1 icon-on-dark */
  border: 2px solid var(--dark-text); border-radius: 999px;
  font: 600 0.85rem var(--sans); cursor: pointer;
}
.tcm-motion-toggle:hover { background: #423422; }
.tcm-motion-ic { width: 20px; height: 20px; flex-shrink: 0; }
.tcm-motion-pause { display: none; }
.tcm-motion-toggle.is-playing .tcm-motion-play { display: none; }
.tcm-motion-toggle.is-playing .tcm-motion-pause { display: inline; }
.tcm-motion-label { line-height: 1; }
/* Two-tone focus ring: the inherited dark outline reads on the cream matte,
   and this cream halo reads if a colored leaf drifts behind it. One of the two
   always meets 3:1, so focus stays visible on any frame (WCAG 2.4.11). */
.tcm-motion-toggle:focus-visible { box-shadow: 0 0 0 6px var(--dark-text); }
/* No JS: playback can never start (JS-gated), so the control would do nothing.
   Hide it; the poster simply shows as a static image. */
.no-js .tcm-motion-toggle { display: none; }

/* ---- Cards, grids ------------------------------------------- */

.tcm-grid { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 40rem)  { .tcm-grid-2, .tcm-grid-3, .tcm-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem)  { .tcm-grid-3 { grid-template-columns: repeat(3, 1fr); }
                             .tcm-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.tcm-grid-narrow { max-width: 46rem; }

.tcm-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.5rem;
}
.tcm-section-alt .tcm-card { border-color: #d8cbb6; }
.tcm-card-ic {
  display: inline-flex; width: 48px; height: 48px; border-radius: 10px;
  background: var(--cream-alt); color: var(--heart);
  align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.tcm-ic { width: 24px; height: 24px; }
.tcm-ic-sm { width: 18px; height: 18px; }
.tcm-card p { color: var(--ink-soft); margin: 0 0 0.6em; }
.tcm-card p:last-child { margin-bottom: 0; }

.tcm-person { text-align: center; }
.tcm-person-img {
  width: 100%; max-width: 240px; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 10px; margin-bottom: 1rem;
}
.tcm-person-role { color: var(--leaf); font-weight: 600; }

/* ---- Lists ------------------------------------------------- */

.tcm-checklist { list-style: none; margin: 1rem 0 0; padding: 0; }
.tcm-checklist li { display: flex; gap: 0.6rem; align-items: flex-start; padding-block: 0.35rem; }
.tcm-checklist .tcm-ic { color: var(--leaf); flex-shrink: 0; margin-top: 0.2rem; }

.tcm-deflist { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.tcm-deflist li { display: flex; gap: 0.8rem; padding-block: 0.55rem; }
.tcm-deflist-ic { color: var(--heart); flex-shrink: 0; margin-top: 0.15rem; }

.tcm-doclist { list-style: none; margin: 0; padding: 0; }
.tcm-doclist li { padding-block: 0.55rem; border-bottom: 1px solid var(--line); }
.tcm-doclist li:last-child { border-bottom: none; }
.tcm-doclink { font-weight: 600; }
.tcm-doclist-note { color: var(--ink-soft); font-size: 0.95rem; margin: 0.25rem 0 0; }

.tcm-plainlist { list-style: none; margin: 0.5rem 0 0; padding: 0; }
.tcm-plainlist li { padding-block: 0.3rem; }

.tcm-sitemap { list-style: disc; margin: 0.5rem 0 1rem; padding-left: 1.4em; }
.tcm-sitemap li { padding-block: 0.2rem; }

.tcm-addr { font-style: normal; color: var(--ink-soft); margin-bottom: 0.5rem; }

.tcm-callout {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--cream-alt); border-left: 4px solid var(--heart);
  border-radius: 0 10px 10px 0; padding: 1rem 1.2rem; margin-top: 1.5rem;
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
}
.tcm-callout .tcm-ic { color: var(--heart); flex-shrink: 0; margin-top: 0.25rem; }

/* ---- Awards, tour, quotes ----------------------------------- */

.tcm-award-list {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; justify-content: center;
}
.tcm-award-list img { width: auto; height: 84px; }

.tcm-tourgrid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.tcm-tourgrid img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--line);
}

.tcm-quote {
  margin: 0; background: var(--white); border: 1px solid #d8cbb6;
  border-radius: 12px; padding: 1.5rem;
}
.tcm-quote blockquote { margin: 0; font-family: var(--serif); font-size: 1.12rem; }
.tcm-quote blockquote p { margin: 0; quotes: '\201C' '\201D'; }
.tcm-quote blockquote p::before { content: open-quote; }
.tcm-quote blockquote p::after { content: close-quote; }
.tcm-quote figcaption { margin-top: 0.8rem; color: var(--leaf); font-weight: 600; }

.tcm-rowhead {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.tcm-rowhead .tcm-h2 { margin-bottom: 0; }

/* ---- Split layouts ------------------------------------------ */

.tcm-split { display: grid; gap: 2.25rem; align-items: start; }
@media (min-width: 56rem) {
  .tcm-split { grid-template-columns: 1fr 1fr; }
  .tcm-split-rev > :first-child { order: 2; }
  .tcm-split-rev > :last-child { order: 1; }
}
.tcm-imgstack { display: grid; gap: 1rem; }
.tcm-imgstack img { width: 100%; border-radius: 10px; border: 1px solid var(--line); }
.tcm-figure { margin: 0; }
.tcm-figure img { width: 100%; border-radius: 10px; border: 1px solid var(--line); }
.tcm-figure figcaption { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.5rem; }

/* ---- News -------------------------------------------------- */

.tcm-newsitem {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.75rem; margin-top: 1.25rem;
}
.tcm-newsmeta { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 0.9rem; }
.tcm-postlist { list-style: none; margin: 0; padding: 0; }

/* ---- Table (board meetings) --------------------------------- */

.tcm-tablewrap { overflow-x: auto; margin-top: 1.5rem; }
.tcm-table { border-collapse: collapse; width: 100%; background: var(--white);
  border: 1px solid var(--line-strong); border-radius: 10px; }
.tcm-table th, .tcm-table td {
  text-align: left; padding: 0.7rem 1rem; border-bottom: 1px solid var(--line);
}
.tcm-table thead th {
  font-family: var(--serif); color: var(--bark);
  border-bottom: 2px solid var(--line-strong);
}
.tcm-table tbody tr:last-child th, .tcm-table tbody tr:last-child td { border-bottom: none; }
.tcm-table tbody th { font-weight: 600; }

/* ---- Portals ------------------------------------------------ */

.tcm-portals { margin-top: 0.5rem; }
.tcm-portal-link { color: var(--heart); text-decoration: underline; text-underline-offset: 0.15em; }
.tcm-portal-link:hover { color: var(--heart-deep); }

/* ---- CTA band ----------------------------------------------- */

.tcm-cta { background: var(--dark); color: var(--dark-text); padding-block: 3rem; }
.tcm-cta .tcm-h2 { color: var(--gold); }
.tcm-cta .tcm-sub { color: var(--dark-muted); margin-bottom: 0; }
.tcm-cta-in {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem 2.5rem; flex-wrap: wrap;
}

/* ---- Form --------------------------------------------------- */

.tcm-form { max-width: 40rem; }
.tcm-form-row { display: grid; gap: 0 1.25rem; }
@media (min-width: 40rem) { .tcm-form-row { grid-template-columns: 1fr 1fr; } }
.tcm-field { margin-bottom: 1.1rem; }
.tcm-field label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.tcm-field input, .tcm-field textarea {
  width: 100%; min-height: 44px; padding: 0.6rem 0.8rem;
  font: inherit; color: var(--ink); background: var(--white);
  border: 2px solid var(--line-strong); border-radius: 8px;
}
.tcm-field textarea { min-height: 8rem; resize: vertical; }
.tcm-hint { color: var(--ink-soft); font-size: 0.92rem; margin: 0.3rem 0 0; }
.tcm-form-ok {
  background: var(--white); border: 2px solid var(--leaf);
  border-radius: 10px; padding: 1.25rem 1.5rem; font-size: 1.1rem;
}
.tcm-form-ok p { margin: 0; }

/* ---- Footer ------------------------------------------------- */

.tcm-footer { background: var(--dark); color: var(--dark-text); padding-block: 3rem 1.5rem; }
.tcm-footer-grid { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .tcm-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.tcm-footer-name { font-family: var(--serif); font-size: 1.15rem; color: var(--white); margin: 0 0 0.5rem; }
.tcm-footer-tag { color: var(--dark-muted); font-size: 0.95rem; margin: 0 0 1rem; max-width: 24rem; }
.tcm-footer-addr { font-style: normal; color: var(--dark-muted); margin-bottom: 0.75rem; }
.tcm-footer-contactlist { list-style: none; margin: 0 0 1rem; padding: 0; color: var(--dark-muted); }
.tcm-footer-contactlist li { padding-block: 0.22rem; }
.tcm-footer-h {
  font-size: 1rem; color: var(--gold); margin: 0 0 0.75rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tcm-footer-col ul { list-style: none; margin: 0; padding: 0; }
.tcm-footer-col li { padding-block: 0.28rem; }
.tcm-footer-col a { display: inline-block; padding-block: 0.1rem; }

.tcm-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.6rem; }
.tcm-social-link {
  display: inline-flex; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--dark-muted); color: var(--dark-text);
  align-items: center; justify-content: center;
}
.tcm-social-link:hover { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.08); }

.tcm-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem 1.5rem;
  border-top: 1px solid #4a3f31; margin-top: 2.25rem; padding-top: 1.25rem;
  color: var(--dark-muted); font-size: 0.92rem;
}
.tcm-footer-bottom p { margin: 0; }
.tcm-footer-bottomlinks { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 1.5rem; }

/* ---- Map image ---------------------------------------------- */

.tcm-map { width: 100%; border-radius: 10px; border: 1px solid var(--line); margin-bottom: 0.75rem; }

/* ---- Reflow safety ------------------------------------------ */

@media (max-width: 30rem) {
  .tcm-btnrow .tcm-btn { width: 100%; }
  .tcm-cta-in { flex-direction: column; align-items: flex-start; }
}
