/* ============================================================
   TechSteady - Static CSS
   Fractional IT Director services for PE portfolio companies
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- CSS Variables --- */
:root {
  --ts-dark: #1a1a2e;
  --ts-dark-95: rgba(26, 26, 46, 0.97);
  --ts-gold: #f5a623;
  --ts-gold-hover: #dc9520;
  --ts-gold-10: rgba(245, 166, 35, 0.1);
  --ts-gold-20: rgba(245, 166, 35, 0.2);
  --ts-gold-40: rgba(245, 166, 35, 0.4);
  --ts-gold-70: rgba(245, 166, 35, 0.7);
  --ts-gold-80: rgba(245, 166, 35, 0.8);
  --ts-charcoal: #2d2d2d;
  --ts-off-white: #f5f3ef;
  --ts-off-white-50: rgba(245, 243, 239, 0.5);
  --max-w-6xl: 72rem;
  --max-w-5xl: 64rem;
  --max-w-4xl: 56rem;
  --max-w-3xl: 48rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #ffffff;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ts-charcoal);
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w-6xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--max-w-3xl);
}

.container--mid {
  max-width: var(--max-w-4xl);
}

.container--wide {
  max-width: var(--max-w-5xl);
}

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--ts-dark-95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: var(--max-w-6xl);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, background-color 0.2s;
}

.nav-links li a:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}

.nav-links li a.active {
  color: var(--ts-gold);
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: var(--ts-gold);
  color: var(--ts-dark);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s;
  margin-left: 0.75rem;
}

.nav-cta {
  color: var(--ts-dark) !important;
  font-weight: 700;
}

.nav-cta:hover {
  background-color: var(--ts-gold-hover);
  color: var(--ts-dark);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--ts-dark);
  z-index: 40;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 0.5rem;
  transition: color 0.2s, background-color 0.2s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--ts-gold);
  background-color: rgba(255,255,255,0.05);
}

.mobile-menu .nav-cta-mobile {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--ts-gold);
  color: var(--ts-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
}

.mobile-menu .nav-cta-mobile:hover {
  background-color: var(--ts-gold-hover);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-inner {
    padding: 0 1.5rem;
  }
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section--hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ts-dark);
  overflow: hidden;
}

.section--dark {
  background-color: var(--ts-dark);
  color: rgba(255,255,255,0.8);
}

.section--dark h2 {
  color: #ffffff;
}

.section--off-white {
  background-color: var(--ts-off-white);
}

.section--white {
  background-color: #ffffff;
}

/* Page hero (subpages) */
.section--page-hero {
  background-color: var(--ts-dark);
  padding: 4rem 0 6rem;
  text-align: center;
}

.section--page-hero .kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold-80);
  margin-bottom: 0.75rem;
}

.section--page-hero h1 {
  margin-bottom: 1rem;
}

.section--page-hero .subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
}

/* --- Hero --- */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w-4xl);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold-80);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
  color: var(--ts-gold);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--gold {
  background-color: var(--ts-gold);
  color: var(--ts-dark);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.btn--gold:hover {
  background-color: var(--ts-gold-hover);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.25);
  color: var(--ts-dark);
}

.btn--outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.3);
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
}

.btn--outline-gold {
  background: transparent;
  border: 1px solid var(--ts-gold-40);
  color: var(--ts-gold);
}

.btn--outline-gold:hover {
  border-color: var(--ts-gold);
  background-color: rgba(245,166,35,0.05);
  color: var(--ts-gold);
}

.btn--outline-charcoal {
  background: transparent;
  border: 1px solid rgba(45,45,45,0.2);
  color: var(--ts-charcoal);
}

.btn--outline-charcoal:hover {
  background-color: rgba(45,45,45,0.05);
  color: var(--ts-charcoal);
}

.btn svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn--full {
  width: 100%;
}

/* --- Cards --- */
.card {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid rgba(45,45,45,0.06);
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card--dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

.card--dark:hover {
  border-color: var(--ts-gold-20);
  background: rgba(255,255,255,0.05);
}

/* Numbered card (pain points) */
.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--ts-gold-10);
  color: var(--ts-gold);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.card__body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card__body h3 {
  color: var(--ts-charcoal);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.35;
}

.card__body p {
  font-size: 0.9375rem;
  color: rgba(45,45,45,0.6);
  line-height: 1.65;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Section headers --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ts-gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: rgba(45,45,45,0.6);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
}

.section--dark .section-header .kicker {
  color: var(--ts-gold-70);
}

.section--dark .section-header p {
  color: rgba(255,255,255,0.5);
}

/* --- Tiers (homepage) --- */
.tier {
  text-align: left;
  padding: 2rem;
}

.tier__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ts-gold-80);
  margin-bottom: 0.25rem;
}

.tier__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.tier__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.tier__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tier__price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-left: 0.25rem;
}

.tier__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* --- Pricing table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}

.pricing-table th {
  font-weight: 600;
  color: var(--ts-charcoal);
  background-color: var(--ts-off-white);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table td {
  color: rgba(45,45,45,0.8);
  line-height: 1.6;
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--ts-charcoal);
  white-space: nowrap;
}

.pricing-table td strong {
  color: var(--ts-charcoal);
  font-weight: 600;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Responsive table */
@media (max-width: 767px) {
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 600px;
  }
}

/* --- FAQ / Accordion --- */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(45,45,45,0.06);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ts-charcoal);
  line-height: 1.4;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 1rem;
  color: var(--ts-gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: rgba(45,45,45,0.7);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- Checklist --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checklist__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.checklist__icon--gold {
  background-color: var(--ts-gold);
}

.checklist__icon--gold svg {
  color: #ffffff;
  width: 1rem;
  height: 1rem;
}

.checklist__icon--muted {
  background-color: rgba(45,45,45,0.15);
}

.checklist__icon--muted svg {
  color: rgba(45,45,45,0.5);
  width: 1rem;
  height: 1rem;
}

.checklist__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(45,45,45,0.8);
}

.checklist__text--muted {
  color: rgba(45,45,45,0.65);
}

/* --- Bullet list (not-do section) --- */
.not-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.not-list li {
  font-size: 1rem;
  color: rgba(45,45,45,0.7);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.not-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: rgba(45,45,45,0.4);
}

/* --- Process steps (big numbers) --- */
.process-step {
  margin-bottom: 2rem;
}

.process-step__number {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--ts-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 1rem;
  color: rgba(45,45,45,0.7);
  line-height: 1.65;
}

/* --- Who-is-this-for audience cards --- */
.audience-card {
  padding: 2rem;
}

.audience-card h3 {
  color: var(--ts-charcoal);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.audience-card p {
  font-size: 0.9375rem;
  color: rgba(45,45,45,0.65);
  line-height: 1.65;
}

/* --- Contact cards --- */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-card__icon {
  flex-shrink: 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--ts-gold);
  transition: transform 0.2s;
}

.contact-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.05);
}

.contact-card h3 {
  font-weight: 700;
  color: var(--ts-charcoal);
  margin-bottom: 0.125rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: rgba(45,45,45,0.7);
}

/* --- Contact form --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ts-charcoal);
  margin-bottom: 0.375rem;
}

.form-group label .required {
  color: #e40014;
}

.form-group label .optional {
  color: rgba(45,45,45,0.4);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(45,45,45,0.1);
  background-color: var(--ts-off-white-50);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--ts-charcoal);
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ts-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--ts-gold-20);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

/* --- Service tier jump navigation --- */
.tier-jumpnav {
  background-color: var(--ts-off-white);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(45,45,45,0.06);
}

.tier-jumpnav__inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.tier-jumpnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 3rem;
  text-decoration: none;
  border: 2px solid rgba(45,45,45,0.12);
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  flex: 1;
  max-width: 280px;
}

.tier-jumpnav__item:hover {
  border-color: var(--ts-gold);
  box-shadow: 0 4px 20px rgba(45,45,45,0.08);
  transform: translateY(-2px);
}

.tier-jumpnav__heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ts-gold);
  line-height: 1;
}

.tier-jumpnav__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ts-charcoal);
  letter-spacing: -0.01em;
}

.tier-jumpnav__sub {
  text-align: center;
  color: rgba(45,45,45,0.5);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .tier-jumpnav__inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .tier-jumpnav__item {
    padding: 1rem 1.5rem;
  }
}

/* --- Service tier section navigation --- */
.tier-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ts-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tier-nav__link:hover {
  color: var(--ts-gold);
}

.tier-nav__link svg {
  flex-shrink: 0;
}

/* --- Service tier detail lists --- */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(45,45,45,0.8);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ts-gold);
}

/* --- Pricing callout --- */
.pricing-callout {
  background-color: var(--ts-off-white);
  border: 1px solid rgba(45,45,45,0.06);
  border-radius: 0.75rem;
  padding: 2rem;
  font-size: 1rem;
  color: rgba(45,45,45,0.8);
  line-height: 1.75;
  margin: 2rem 0;
}

/* --- About leadership --- */
.leader {
  margin-bottom: 2rem;
}

.leader h3 {
  color: var(--ts-charcoal);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.leader p {
  font-size: 0.9375rem;
  color: rgba(45,45,45,0.7);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.leader a {
  color: var(--ts-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.leader a:hover {
  color: var(--ts-gold-hover);
}

/* --- Sister brands --- */
.brand-card {
  display: flex;
  flex-direction: column;
}

.brand-card p {
  font-size: 0.9375rem;
  color: rgba(45,45,45,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--ts-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  max-width: var(--max-w-6xl);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 20rem;
  margin-top: 1.25rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--ts-gold);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  margin-bottom: 0.75rem;
}

.footer-contact a:hover {
  color: var(--ts-gold);
}

.footer-contact a svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.2s;
}

.footer-contact a:hover svg {
  color: var(--ts-gold);
}

.footer-company {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-company p {
  margin-bottom: 0.5rem;
}

.footer-also {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-also a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-also a:hover {
  color: var(--ts-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--ts-gold);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
}

/* --- Scroll reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }

.text-gold { color: var(--ts-gold); }
.text-white { color: #ffffff; }
.text-muted { color: rgba(45,45,45,0.6); }
.text-white-muted { color: rgba(255,255,255,0.5); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Responsive padding adjustments --- */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section--page-hero {
    padding: 5rem 0 7rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

/* Two-column layout (contact, about) */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .two-col--3-2 {
    grid-template-columns: 3fr 2fr;
    gap: 3.5rem;
  }
}
