/* ==========================================================================
   T-Solutions Co., LTD
   Minimal modern stylesheet — one typeface, hairline rules, generous space.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --ts-navy: #0F3D91;
  --ts-navy-700: #0C3175;
  --ts-navy-900: #081F4D;
  --ts-gold: #D4AF37;

  /* Neutrals */
  --ts-ink: #0B0D12;
  --ts-ink-2: #23262F;
  --ts-body: #565B69;
  --ts-muted: #8B90A0;
  --ts-line: #E9EAEE;
  --ts-line-2: #D9DBE2;
  --ts-surface: #FFFFFF;
  --ts-surface-2: #FAFAF9;

  /* Geometry */
  --ts-r-sm: 8px;
  --ts-r: 12px;
  --ts-r-lg: 18px;

  --ts-ease: cubic-bezier(.22, .61, .36, 1);
  --ts-t: .28s var(--ts-ease);

  --ts-nav-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ts-nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ts-body);
  background: var(--ts-surface);
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ts-ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.028em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -.038em;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.032em;
}

h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: -.015em;
}

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--ts-navy);
  text-decoration: none;
  transition: color var(--ts-t), opacity var(--ts-t);
}

a:hover { color: var(--ts-navy-700); }

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

hr { border-color: var(--ts-line); opacity: 1; }

::selection { background: var(--ts-navy); color: #fff; }

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible,
.accordion-button:focus-visible {
  outline: 2px solid var(--ts-navy);
  outline-offset: 3px;
  box-shadow: none;
}

[tabindex="-1"]:focus { outline: none; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--ts-ink);
  color: #fff;
  padding: .65rem 1.15rem;
  font-size: .875rem;
  border-radius: 0 0 var(--ts-r-sm) var(--ts-r-sm);
  transition: top .2s var(--ts-ease);
}

.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container { max-width: 1180px; }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section-tight { padding-top: 0; }

.bg-soft { background: var(--ts-surface-2); }
.bg-navy { background: var(--ts-navy); }
.text-navy { color: var(--ts-navy) !important; }
.text-gold { color: var(--ts-gold) !important; }

/* Hairline dividers */
.hairline-top { border-top: 1px solid var(--ts-line); }
.hairline-bottom { border-bottom: 1px solid var(--ts-line); }

/* Small uppercase label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ts-muted);
  margin: 0 0 1.35rem;
  line-height: 1;
}

.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--ts-gold);
  flex: 0 0 auto;
}

.eyebrow-center { justify-content: center; }

.eyebrow-light { color: rgba(255, 255, 255, .62); }

.lead-soft {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ts-body);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --bs-btn-focus-box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
  padding: .8125rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--ts-r-sm);
  transition: background-color var(--ts-t), border-color var(--ts-t), color var(--ts-t);
}

.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-navy {
  background: var(--ts-navy);
  border-color: var(--ts-navy);
  color: #fff;
}

.btn-navy:hover,
.btn-navy:focus {
  background: var(--ts-navy-700);
  border-color: var(--ts-navy-700);
  color: #fff;
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--ts-line-2);
  color: var(--ts-ink);
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: transparent;
  border-color: var(--ts-ink);
  color: var(--ts-ink);
}

/* On dark surfaces */
.btn-gold {
  background: #fff;
  border-color: #fff;
  color: var(--ts-ink);
}

.btn-gold:hover,
.btn-gold:focus {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(255, 255, 255, .88);
  color: var(--ts-ink);
}

.btn-outline-light-gold {
  background: transparent;
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.btn-outline-light-gold:hover,
.btn-outline-light-gold:focus {
  background: transparent;
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ts-ink);
}

.link-arrow::after {
  content: "\F138";
  font-family: 'bootstrap-icons';
  font-size: .8rem;
  color: var(--ts-navy);
  transition: transform var(--ts-t);
}

.link-arrow:hover { color: var(--ts-navy); }
.link-arrow:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.navbar-ts {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  min-height: var(--ts-nav-h);
  padding: .875rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ts-t), background-color var(--ts-t);
}

.navbar-ts.is-stuck {
  border-bottom-color: var(--ts-line);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}

.brand-text { display: inline-flex; align-items: baseline; gap: .3rem; }

.brand-name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ts-ink);
  line-height: 1;
}

.brand-tagline {
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ts-muted);
  line-height: 1;
}

.navbar-ts .nav-link {
  position: relative;
  font-size: .9rem;
  font-weight: 450;
  color: var(--ts-body);
  padding: .35rem 0 !important;
  margin: 0 .95rem;
  transition: color var(--ts-t);
}

.navbar-ts .nav-link:hover { color: var(--ts-ink); }

.navbar-ts .nav-link.active { color: var(--ts-ink); font-weight: 500; }

.navbar-ts .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--ts-gold);
}

.navbar-ts .nav-cta { margin-left: 1.5rem; }

.navbar-toggler {
  border: none;
  padding: .25rem;
  color: var(--ts-ink);
  font-size: 1.35rem;
  line-height: 1;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B0D12' stroke-linecap='round' stroke-width='1.6' d='M4 9h22M4 20h22'/%3e%3c/svg%3e");
  width: 1.4em;
  height: 1.4em;
}

@media (max-width: 991.98px) {
  .navbar-ts { background: #fff; backdrop-filter: none; }

  .navbar-ts .navbar-collapse {
    padding: .75rem 0 .25rem;
    margin-top: .875rem;
    border-top: 1px solid var(--ts-line);
  }

  .navbar-ts .nav-link {
    margin: 0;
    padding: .8rem 0 !important;
    font-size: 1rem;
  }

  .navbar-ts .nav-link.active::after { display: none; }

  .navbar-ts .nav-cta { margin: 1rem 0 .5rem; }
  .navbar-ts .nav-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--ts-surface);
}

.hero h1 { max-width: 16ch; }

.hero .hero-sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ts-body);
  max-width: 44ch;
  margin: 1.75rem 0 0;
}

.hero-actions { margin-top: 2.25rem; }

.hero-media {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: var(--ts-r-lg);
  overflow: hidden;
  background: var(--ts-surface-2);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .hero-media img { aspect-ratio: 4 / 3; }
}

/* Facts strip */
.facts {
  border-top: 1px solid var(--ts-line);
  padding-top: 2.25rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.fact + .fact { border-left: 1px solid var(--ts-line); }

.fact-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 550;
  letter-spacing: -.02em;
  color: var(--ts-ink);
  margin: 0 0 .3rem;
}

.fact-label {
  display: block;
  font-size: .8125rem;
  color: var(--ts-muted);
  margin: 0;
}

@media (max-width: 767.98px) {
  .fact + .fact { border-left: none; padding-left: 0; }
}

/* Interior page header */
.page-banner {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--ts-line);
  background: var(--ts-surface);
}

.page-banner h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}

.page-banner p {
  color: var(--ts-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}

.breadcrumb-ts {
  font-size: .8125rem;
  color: var(--ts-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb-ts a { color: var(--ts-muted); }
.breadcrumb-ts a:hover { color: var(--ts-ink); }
.breadcrumb-ts .sep { margin: 0 .5rem; color: var(--ts-line-2); }
.breadcrumb-ts .current { color: var(--ts-ink); }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card-ts {
  height: 100%;
  padding: 1.85rem 1.75rem;
  background: var(--ts-surface);
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-r);
  transition: border-color var(--ts-t);
}

.card-ts:hover { border-color: var(--ts-line-2); }

.card-ts h3 { margin-bottom: .6rem; }

.card-ts p {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ts-body);
}

/* Icons sit as plain glyphs — no chips, no fills */
.card-icon {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ts-navy);
  margin-bottom: 1.5rem;
}

.card-icon-gold { color: var(--ts-gold); }

/* Feature rows */
.feature-item {
  height: 100%;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--ts-line);
}

.feature-item .feature-icon {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--ts-navy);
  margin-bottom: 1.1rem;
}

.feature-item h3 { margin-bottom: .45rem; }

.feature-item p {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ts-body);
  margin: 0;
}

/* Services */
.service-card {
  height: 100%;
  background: var(--ts-surface);
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-r);
  overflow: hidden;
  transition: border-color var(--ts-t);
}

.service-card:hover { border-color: var(--ts-line-2); }

.service-card .service-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--ts-line);
}

.service-card .service-head h3 {
  font-size: 1.25rem;
  letter-spacing: -.025em;
  margin-bottom: .5rem;
}

.service-card .service-head p {
  font-size: .9375rem;
  color: var(--ts-muted);
  margin: 0;
}

.service-card .service-body { padding: 1.85rem 2rem 2rem; }

.service-card .service-body p {
  font-size: .9375rem;
  line-height: 1.7;
}

/* Checklists */
.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .65rem;
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--ts-body);
}

.check-list li:last-child { margin-bottom: 0; }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ts-line-2);
}

/* Values */
.value-card {
  height: 100%;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--ts-line);
}

.value-card .value-index {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--ts-gold);
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.value-card h3 { margin-bottom: .5rem; }

.value-card p {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ts-body);
}

/* Media */
.img-frame {
  border-radius: var(--ts-r-lg);
  overflow: hidden;
  background: var(--ts-surface-2);
}

.img-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Full-width image band between sections */
.img-frame.is-wide img { aspect-ratio: 21 / 9; }

@media (max-width: 767.98px) {
  .img-frame.is-wide img { aspect-ratio: 3 / 2; }
}

.img-caption {
  margin: .9rem 0 0;
  font-size: .8125rem;
  color: var(--ts-muted);
}

/* --------------------------------------------------------------------------
   8. Process
   -------------------------------------------------------------------------- */
.timeline { list-style: none; padding: 0; margin: 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--ts-line);
}

.timeline-item:last-child { border-bottom: 1px solid var(--ts-line); }

.timeline-step { display: block; padding-top: .15rem; }

.timeline-step .step-word {
  display: block;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ts-muted);
  margin-bottom: .25rem;
}

.timeline-step .step-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 550;
  letter-spacing: -.03em;
  color: var(--ts-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timeline-card h3 {
  font-size: 1.25rem;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

.timeline-card p {
  font-size: .9375rem;
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
  .timeline-step { display: flex; align-items: baseline; gap: .6rem; }
  .timeline-step .step-word { margin-bottom: 0; }
}

/* Compact steps */
.step-mini {
  height: 100%;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--ts-line);
}

.step-mini .step-badge {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--ts-gold);
  margin-bottom: .9rem;
  font-variant-numeric: tabular-nums;
}

.step-mini h3 { margin-bottom: .4rem; }

.step-mini p {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--ts-body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Notices
   -------------------------------------------------------------------------- */
.notice {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.15rem 0 1.15rem 1.25rem;
  border-left: 1.5px solid var(--ts-gold);
}

.notice i {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ts-gold);
}

.notice p {
  margin: 0;
  font-size: .9063rem;
  line-height: 1.65;
  color: var(--ts-body);
}

.notice-navy { border-left-color: var(--ts-navy); }
.notice-navy i { color: var(--ts-navy); }

/* --------------------------------------------------------------------------
   10. Accordion
   -------------------------------------------------------------------------- */
.accordion-ts .accordion-item {
  border: none;
  border-top: 1px solid var(--ts-line);
  border-radius: 0 !important;
  background: transparent;
  margin: 0;
}

.accordion-ts .accordion-item:last-child { border-bottom: 1px solid var(--ts-line); }

.accordion-ts .accordion-button {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ts-ink);
  background: transparent;
  padding: 1.5rem 2.5rem 1.5rem 0;
  box-shadow: none;
}

.accordion-ts .accordion-button:not(.collapsed) {
  color: var(--ts-ink);
  background: transparent;
  padding-bottom: 1rem;
}

.accordion-ts .accordion-button::after {
  position: absolute;
  right: 0;
  background-image: none;
  content: "\F64D";
  font-family: 'bootstrap-icons';
  font-size: .875rem;
  color: var(--ts-muted);
  width: auto;
  height: auto;
  transition: transform var(--ts-t);
}

.accordion-ts .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  transform: none;
  color: var(--ts-ink);
}

.accordion-ts .accordion-body {
  padding: 0 3rem 1.75rem 0;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--ts-body);
  border: none;
}

.accordion-ts .accordion-body p:last-child,
.accordion-ts .accordion-body ul:last-child { margin-bottom: 0; }

@media (max-width: 575.98px) {
  .accordion-ts .accordion-body { padding-right: 0; }
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact-tile {
  height: 100%;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--ts-line);
}

.contact-tile .contact-icon {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ts-navy);
  margin-bottom: 1.1rem;
}

.contact-tile h3 {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ts-muted);
  margin-bottom: .6rem;
}

.contact-tile p,
.contact-tile address {
  font-style: normal;
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--ts-ink);
  margin: 0;
}

.contact-tile a { color: var(--ts-ink); }
.contact-tile a:hover { color: var(--ts-navy); }

/* Form */
.form-panel {
  padding: 0;
  background: transparent;
  border: none;
}

.form-label {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ts-ink);
  margin-bottom: .5rem;
}

.form-control,
.form-select {
  font-size: .9375rem;
  color: var(--ts-ink);
  background: var(--ts-surface);
  border: 1px solid var(--ts-line-2);
  border-radius: var(--ts-r-sm);
  padding: .75rem .9rem;
  transition: border-color var(--ts-t);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ts-ink);
  background: var(--ts-surface);
  box-shadow: none;
}

.form-control::placeholder { color: var(--ts-muted); }

.form-check-input {
  border-color: var(--ts-line-2);
  border-radius: 4px;
}

.form-check-input:checked {
  background-color: var(--ts-navy);
  border-color: var(--ts-navy);
}

.form-check-input:focus { box-shadow: none; }

.form-check-label { font-size: .875rem; line-height: 1.6; color: var(--ts-body); }

.invalid-feedback { font-size: .8125rem; }

.map-frame {
  border-radius: var(--ts-r);
  overflow: hidden;
  border: 1px solid var(--ts-line);
  line-height: 0;
  background: var(--ts-surface-2);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(.95);
  transition: filter .4s var(--ts-ease);
}

.map-frame:hover iframe { filter: none; }

@media (max-width: 767.98px) {
  .map-frame iframe { height: 300px; }
}

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1035;
  gap: .5rem;
  padding: .625rem .75rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--ts-line);
}

.mobile-call-bar .btn { flex: 1 1 0; padding: .7rem .5rem; font-size: .875rem; }

@media (max-width: 767.98px) {
  .mobile-call-bar { display: flex; }
  body.has-call-bar { padding-bottom: 72px; }
}

/* --------------------------------------------------------------------------
   12. CTA
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--ts-navy-900);
  color: rgba(255, 255, 255, .72);
  border-radius: var(--ts-r-lg);
  padding: clamp(2.75rem, 5vw, 4.25rem);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  margin-bottom: .85rem;
}

.cta-band p {
  color: rgba(255, 255, 255, .68);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 46ch;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ts-surface);
  border-top: 1px solid var(--ts-line);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
  font-size: .9375rem;
  color: var(--ts-body);
}

.footer h4 {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ts-muted);
  margin-bottom: 1.25rem;
}

.footer a { color: var(--ts-body); }
.footer a:hover { color: var(--ts-ink); }

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
}

.footer .footer-brand img { width: 30px; height: 30px; border-radius: 7px; }
.footer .footer-brand .brand-name { color: var(--ts-ink); }

.footer p { font-size: .9375rem; line-height: 1.7; }

.footer address {
  font-style: normal;
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--ts-body);
  margin: 1.25rem 0 0;
}

.footer-links,
.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: .7rem; }

.footer-contact li {
  display: flex;
  gap: .7rem;
  margin-bottom: .7rem;
  line-height: 1.6;
}

.footer-contact i {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ts-muted);
}

.footer-disclaimer {
  font-size: .8125rem;
  line-height: 1.65;
  color: var(--ts-muted);
  margin: 0;
  max-width: 70ch;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ts-line);
  font-size: .8125rem;
  color: var(--ts-muted);
}

.footer-bottom a { color: var(--ts-muted); }
.footer-bottom a:hover { color: var(--ts-ink); }

/* --------------------------------------------------------------------------
   14. Back to top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1030;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--ts-ink);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--ts-line-2);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--ts-t), transform var(--ts-t), visibility var(--ts-t), border-color var(--ts-t);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { border-color: var(--ts-ink); }

@media (max-width: 767.98px) {
  body.has-call-bar .back-to-top { bottom: 84px; }
}

/* --------------------------------------------------------------------------
   15. Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ts-ease), transform .6s var(--ts-ease);
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .reveal.is-visible { opacity: 1; transform: none; transition: none; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */
@media print {
  .navbar-ts,
  .back-to-top,
  .mobile-call-bar,
  .cta-band { display: none !important; }

  body { color: #000; }
  .reveal { opacity: 1; transform: none; }
}
