:root {
  --ttx-accent: #ff8c42;
  --ttx-accent-hover: #e67333;
  --ttx-accent-soft: #f8c049;
  --ttx-dark: #4a4a4a;
  --ttx-ink: #1f1f1f;
  --ttx-muted: #6d6d6d;
  --ttx-surface: #ffffff;
  --ttx-surface-alt: #f5f5f5;
  --ttx-border: rgba(74, 74, 74, 0.14);
  --ttx-shadow: 0 18px 50px rgba(31, 31, 31, 0.12);
  --ttx-radius-lg: 28px;
  --ttx-radius-md: 18px;
  --ttx-radius-sm: 12px;
  --ttx-container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ttx-ink);
  background: linear-gradient(180deg, #fff 0%, #fff8f3 34%, #f5f5f5 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

.ttx-page {
  min-height: 100vh;
}

.ttx-container {
  width: min(var(--ttx-container), calc(100% - 32px));
  margin: 0 auto;
}

.ttx-topbar {
  background: var(--ttx-dark);
  color: #fff;
  font-size: 0.92rem;
}

.ttx-topbar-inner,
.ttx-header-inner,
.ttx-footer-bottom,
.ttx-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ttx-topbar-inner {
  min-height: 46px;
  flex-wrap: wrap;
  padding: 0.35rem 0;
}

.ttx-topbar-group,
.ttx-header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.ttx-topbar-link,
.ttx-topbar-note {
  color: rgba(255, 255, 255, 0.92);
}

.ttx-topbar-link:hover,
.ttx-topbar-link:focus-visible {
  color: #fff;
}

.ttx-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 140, 66, 0.16);
}

.ttx-header-inner {
  min-height: 82px;
  padding: 0.9rem 0;
}

.ttx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.ttx-brand img {
  width: 164px;
  height: auto;
}

.ttx-brand-copy {
  display: none;
  min-width: 0;
}

.ttx-brand-label {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ttx-muted);
}

.ttx-brand-title {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.ttx-phone-cta,
.ttx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ttx-phone-cta {
  background: var(--ttx-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 140, 66, 0.28);
}

.ttx-phone-cta:hover,
.ttx-phone-cta:focus-visible,
.ttx-btn-primary:hover,
.ttx-btn-primary:focus-visible {
  background: var(--ttx-accent-hover);
  transform: translateY(-1px);
}

.ttx-btn {
  border: 1px solid transparent;
}

.ttx-btn-primary {
  background: var(--ttx-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 140, 66, 0.22);
}

.ttx-btn-secondary {
  background: #fff;
  color: var(--ttx-ink);
  border-color: rgba(255, 140, 66, 0.34);
}

.ttx-btn-secondary:hover,
.ttx-btn-secondary:focus-visible {
  border-color: var(--ttx-accent);
  color: var(--ttx-accent-hover);
  transform: translateY(-1px);
}

.ttx-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--ttx-surface-alt);
  border: 1px solid rgba(255, 140, 66, 0.18);
  font-size: 0.95rem;
}

.ttx-lang-current {
  font-weight: 800;
  text-transform: uppercase;
}

.ttx-lang-divider {
  color: rgba(31, 31, 31, 0.28);
}

.ttx-lang-link {
  color: var(--ttx-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.ttx-lang-link:hover,
.ttx-lang-link:focus-visible {
  color: var(--ttx-accent-hover);
}

.ttx-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2d2d2d center/cover no-repeat;
}

.ttx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0.3) 0%, rgba(31, 31, 31, 0.74) 100%),
    linear-gradient(110deg, rgba(255, 140, 66, 0.18) 0%, rgba(31, 31, 31, 0) 45%);
}

.ttx-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 4.6rem 0 3.8rem;
}

.ttx-breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.ttx-breadcrumbs a:hover,
.ttx-breadcrumbs a:focus-visible {
  color: #fff;
}

.ttx-hero-panel {
  width: min(760px, 100%);
  padding: 1.45rem;
  border-radius: var(--ttx-radius-lg);
  background: rgba(31, 31, 31, 0.46);
  box-shadow: var(--ttx-shadow);
}

.ttx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(248, 192, 73, 0.18);
  color: #fff7e7;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ttx-hero h1,
.ttx-section h2,
.ttx-card h3,
.ttx-footer-column h4,
.ttx-content-card h2 {
  margin: 0;
  line-height: 1.16;
}

.ttx-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 16ch;
}

.ttx-hero p {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.ttx-main {
  padding: 2rem 0 4.2rem;
}

.ttx-detail-layout {
  display: grid;
  gap: 1.35rem;
}

.ttx-content-card,
.ttx-aside-card,
.ttx-card,
.ttx-gallery-card,
.ttx-footer-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--ttx-border);
  border-radius: var(--ttx-radius-lg);
  box-shadow: var(--ttx-shadow);
}

.ttx-content-card,
.ttx-aside-card,
.ttx-footer-panel {
  padding: 1.35rem;
}

.ttx-content-card + .ttx-content-card,
.ttx-aside-card + .ttx-aside-card {
  margin-top: 1.2rem;
}

.ttx-section-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.12);
  color: var(--ttx-accent-hover);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ttx-richtext {
  color: var(--ttx-ink);
}

.ttx-richtext > *:last-child,
.ttx-content-card > *:last-child,
.ttx-aside-card > *:last-child,
.ttx-footer-column > *:last-child {
  margin-bottom: 0;
}

.ttx-richtext h1,
.ttx-richtext h2,
.ttx-richtext h3,
.ttx-richtext h4 {
  margin: 1.6rem 0 0.8rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.ttx-richtext p,
.ttx-richtext li {
  font-size: 1rem;
  color: var(--ttx-ink);
}

.ttx-richtext ul,
.ttx-richtext ol {
  padding-left: 1.3rem;
}

.ttx-richtext a {
  color: var(--ttx-accent-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.ttx-richtext img {
  width: 100%;
  height: auto;
  border-radius: var(--ttx-radius-md);
  box-shadow: 0 18px 34px rgba(31, 31, 31, 0.12);
}

.ttx-richtext blockquote {
  margin: 0;
  padding: 0;
}

.ttx-richtext table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  background: #fff;
  border-radius: var(--ttx-radius-md);
  overflow: hidden;
}

.ttx-richtext td,
.ttx-richtext th {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(74, 74, 74, 0.12);
  vertical-align: top;
}

.ttx-richtext tr:first-child td,
.ttx-richtext tr:first-child th {
  background: var(--ttx-accent);
  color: #fff;
  font-weight: 700;
}

.ttx-highlight-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ttx-highlight-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3.1rem;
  background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
  border: 1px solid rgba(248, 192, 73, 0.4);
  border-radius: var(--ttx-radius-md);
}

.ttx-highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 1.15rem;
  top: 0.95rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--ttx-accent-hover);
  font-size: 1rem;
  font-weight: 800;
}

.ttx-meta-list {
  display: grid;
  gap: 0.9rem;
}

.ttx-meta-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  color: var(--ttx-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ttx-meta-item span,
.ttx-meta-item a {
  font-size: 1rem;
  font-weight: 600;
}

.ttx-button-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.ttx-gallery {
  display: grid;
  gap: 1rem;
}

.ttx-gallery-grid,
.ttx-card-grid {
  display: grid;
  gap: 1rem;
}

.ttx-gallery-card {
  overflow: hidden;
}

.ttx-gallery-card img,
.ttx-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ttx-gallery-card span {
  display: block;
  padding: 0.9rem 1rem 1rem;
  font-weight: 600;
}

.ttx-card {
  overflow: hidden;
}

.ttx-card-media {
  background: #ececec;
}

.ttx-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.ttx-card-body p {
  margin: 0;
  color: var(--ttx-muted);
}

.ttx-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ttx-cta {
  margin-top: 2rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 74, 74, 0.96) 0%, rgba(31, 31, 31, 0.92) 100%),
    linear-gradient(135deg, rgba(255, 140, 66, 0.24) 0%, rgba(248, 192, 73, 0.16) 100%);
}

.ttx-cta-inner {
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 0;
}

.ttx-cta-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.ttx-cta-copy p {
  margin: 0.9rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.84);
}

.ttx-footer {
  color: #fff;
  background: linear-gradient(180deg, #383838 0%, #262626 100%);
}

.ttx-footer-main {
  padding: 2.2rem 0 1.5rem;
}

.ttx-footer-grid {
  display: grid;
  gap: 1rem;
}

.ttx-footer-column h4 {
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 1.05rem;
}

.ttx-footer-column p,
.ttx-footer-column li,
.ttx-footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.ttx-footer-column ul {
  padding-left: 1.1rem;
  margin: 0;
}

.ttx-footer-column a:hover,
.ttx-footer-column a:focus-visible {
  color: #fff;
}

.ttx-footer-bottom {
  min-height: 62px;
  padding: 0.8rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.ttx-footer-mini-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ttx-muted {
  color: var(--ttx-muted);
}

@media (min-width: 600px) {
  .ttx-container {
    width: min(var(--ttx-container), calc(100% - 48px));
  }

  .ttx-content-card,
  .ttx-aside-card,
  .ttx-footer-panel {
    padding: 1.7rem;
  }

  .ttx-hero-inner {
    padding: 5.5rem 0 4.4rem;
  }

  .ttx-gallery-grid,
  .ttx-card-grid,
  .ttx-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttx-highlight-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttx-brand-copy {
    display: block;
  }

  .ttx-cta-inner {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .ttx-main {
    padding: 2.5rem 0 5rem;
  }

  .ttx-detail-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(290px, 0.8fr);
    align-items: start;
  }

  .ttx-detail-main {
    min-width: 0;
  }

  .ttx-detail-aside {
    position: sticky;
    top: 108px;
  }

  .ttx-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttx-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ttx-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}