/* Thermador Home Appliance Repair — static production stylesheet */
/* Design tokens match former Tailwind theme (visual parity). */

:root {
  --font-manrope: "Manrope", system-ui, sans-serif;
  --background: hsl(0 0% 7%);
  --foreground: hsl(0 0% 92%);
  --gold: #c9a46a;
  --dark-primary: #121212;
  --dark-secondary: #1b1b1b;
  --warm-white: #f5f2ed;
  --text-muted: #888888;
  --steel: #8a8a8a;
  --radius: 0.25rem;
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(0 0% 18%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-manrope);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

::selection {
  background: rgba(201, 164, 106, 0.3);
  color: var(--warm-white);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #121212;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

@keyframes th-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes th-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes th-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes th-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes th-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 164, 106, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 164, 106, 0.2);
  }
}

.th-animate-fade-in-up {
  animation: th-fade-in-up 0.8s ease-out forwards;
}

.th-animate-fade-in {
  animation: th-fade-in 1s ease-out forwards;
}

.th-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.th-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.th-site {
  min-height: 100vh;
  background: var(--dark-primary);
}

.th-main {
  display: block;
}

/* ---------- Layout ---------- */
.th-wrap {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .th-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.th-wrap-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .th-wrap-narrow {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.th-wrap-md {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .th-wrap-md {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.th-wrap-sm {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .th-wrap-sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ---------- Typography helpers ---------- */
.th-eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.th-eyebrow-sm {
  letter-spacing: 0.2em;
}

.th-h1-hero {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .th-h1-hero {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .th-h1-hero {
    font-size: 4.5rem;
  }
}

.th-h1-page {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0.75rem 0 1.5rem;
}
@media (min-width: 768px) {
  .th-h1-page {
    font-size: 3.75rem;
  }
}

.th-h1-legal {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0.75rem 0 2.5rem;
}
@media (min-width: 768px) {
  .th-h1-legal {
    font-size: 3rem;
  }
}

.th-h2-section {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0.75rem 0 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .th-h2-section {
    font-size: 3rem;
  }
}

.th-h2-cta {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .th-h2-cta {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .th-h2-cta {
    font-size: 3.75rem;
  }
}

.th-h2-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .th-h2-sub {
    font-size: 1.875rem;
  }
}

.th-h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 0.75rem;
}

.th-text-gold-gradient {
  background: linear-gradient(135deg, #c9a46a 0%, #e8d5a8 50%, #c9a46a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.th-lead {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .th-lead {
    font-size: 1.125rem;
  }
}

.th-lead-wide {
  max-width: 32rem;
}

.th-lead-xl {
  max-width: 36rem;
}

.th-body-muted {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.625;
}

.th-body-muted-sm {
  font-size: 0.875rem;
}

/* ---------- Gold line ---------- */
.th-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a46a, transparent);
}

.th-gold-line-left {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, #c9a46a, transparent);
}

/* ---------- Buttons ---------- */
.th-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--gold);
  color: var(--dark-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s, color 0.3s, gap 0.3s;
}
.th-btn-primary:focus {
  outline: none;
}
.th-btn-primary:focus-visible {
  outline: 2px solid rgba(201, 164, 106, 0.85);
  outline-offset: 2px;
}
.th-btn-primary:hover {
  background: var(--warm-white);
}
.th-btn-primary .th-icon {
  transition: transform 0.3s;
}
.th-btn-primary:hover .th-icon {
  transform: translateX(4px);
}

.th-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--warm-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.th-btn-outline:hover {
  border-color: rgba(201, 164, 106, 0.4);
  color: var(--gold);
}

.th-btn-primary-sm {
  padding: 0.625rem 1.25rem;
  gap: 0.5rem;
}

/* ---------- Header ---------- */
.th-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s, padding 0.5s;
  padding: 1rem 0;
}
@media (min-width: 640px) {
  .th-header {
    padding: 1.25rem 0;
  }
}
.th-header.is-scrolled,
.th-header.is-menu-open {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.th-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .th-header__inner {
    padding: 0 2rem;
  }
}

.th-header__logo img {
  height: 2rem;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .th-header__logo img {
    height: 2.5rem;
    max-width: none;
  }
}

.th-nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .th-nav-desktop {
    display: flex;
  }
}

.th-nav-desktop a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.7);
  transition: color 0.3s;
}
.th-nav-desktop a:hover {
  color: var(--gold);
}
.th-nav-desktop a[aria-current="page"] {
  color: var(--gold);
}

.th-header__cta {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .th-header__cta {
    display: flex;
  }
}

.th-header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.8);
  transition: color 0.3s;
}
.th-header__phone:hover {
  color: var(--gold);
}

.th-menu-toggle .th-icon-close {
  display: none;
}
.th-header.is-menu-open .th-menu-toggle .th-icon-menu {
  display: none;
}
.th-header.is-menu-open .th-menu-toggle .th-icon-close {
  display: block;
}

@media (min-width: 1024px) {
  .th-menu-toggle {
    display: none;
  }
}

.th-mobile-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.3s;
}
.th-header.is-menu-open .th-mobile-nav {
  max-height: 500px;
  opacity: 1;
}

.th-mobile-nav__inner {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.th-mobile-nav a {
  padding: 0.75rem 0;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(245, 242, 237, 0.7);
}
.th-mobile-nav a[aria-current="page"] {
  color: var(--gold);
}

.th-mobile-nav__tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: var(--gold);
  font-size: 0.875rem;
}

.th-mobile-nav__btn {
  margin-top: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--gold);
  color: var(--dark-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.th-footer {
  background: var(--dark-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.th-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  /* Use block padding only so .th-wrap horizontal padding is preserved */
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .th-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .th-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.th-footer__brand img {
  height: 2.5rem;
  width: auto;
}

.th-footer__brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 1.5rem 0;
}

.th-footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  transition: color 0.3s;
}
.th-footer__contact a:hover {
  color: var(--gold);
}

.th-footer__title {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.th-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.th-footer__list li {
  margin-bottom: 0.75rem;
}
.th-footer__list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.th-footer__list a:hover {
  color: var(--warm-white);
}

.th-footer__list a.th-footer__loc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.th-footer__book {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(201, 164, 106, 0.1);
  border: 1px solid rgba(201, 164, 106, 0.3);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.th-footer__book:hover {
  background: var(--gold);
  color: var(--dark-primary);
}

.th-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.th-footer__bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .th-footer__bar-inner {
    flex-direction: row;
    padding: 1.5rem 2rem;
  }
}

.th-footer__copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin: 0;
}

.th-footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.th-footer__legal a {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  transition: color 0.3s;
}
.th-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Icons ---------- */
.th-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.th-icon--gold-50 {
  color: rgba(201, 164, 106, 0.5);
}
.th-icon--gold-40 {
  color: rgba(201, 164, 106, 0.4);
}
.th-icon--gold-60 {
  color: rgba(201, 164, 106, 0.6);
}
.th-icon--gold {
  color: var(--gold);
}

/* ---------- Consultation popup ---------- */
.th-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.th-popup-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.th-popup {
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
@media (min-width: 640px) {
  .th-popup {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(0.97);
  }
}
.th-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (min-width: 640px) {
  .th-popup.is-open {
    transform: translate(-50%, -50%) scale(1);
  }
}

.th-popup__card {
  position: relative;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
@media (min-width: 640px) {
  .th-popup__card {
    border-radius: 0.125rem;
  }
}

.th-popup__accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.th-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
  padding: 0.25rem;
  transition: color 0.2s;
}
.th-popup__close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.th-popup__body {
  padding: 2rem 2rem 2.5rem;
}

.th-popup__h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
@media (min-width: 640px) {
  .th-popup__h2 {
    font-size: 1.875rem;
  }
}

.th-popup__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.th-popup__trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.th-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.th-popup__note {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  text-align: center;
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

/* ---------- Cookie consent banner ---------- */
.th-cookie-banner {
  position: fixed;
  z-index: 102;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
@media (min-width: 640px) {
  .th-cookie-banner {
    padding: 0 1.25rem 1.25rem;
  }
}
.th-cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.th-cookie-banner__panel {
  max-width: 52rem;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.th-cookie-banner__accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.th-cookie-banner__inner {
  padding: 1.25rem 1.25rem 1.35rem;
}
@media (min-width: 768px) {
  .th-cookie-banner__inner {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.th-cookie-banner__copy {
  min-width: 0;
}
@media (min-width: 768px) {
  .th-cookie-banner__copy {
    flex: 1 1 auto;
  }
}

.th-cookie-banner__title {
  margin: 0 0 0.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.th-cookie-banner__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  max-width: 36rem;
}
@media (min-width: 768px) {
  .th-cookie-banner__text {
    font-size: 0.875rem;
    max-width: none;
  }
}
.th-cookie-banner__text strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.th-cookie-banner__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s;
}
.th-cookie-banner__link:hover {
  color: var(--warm-white);
}

.th-cookie-banner__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .th-cookie-banner__actions {
    margin-top: 0;
    flex: 0 0 auto;
  }
}

/* ---------- Forms ---------- */
.th-field label {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.th-input,
.th-select,
.th-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--warm-white);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.th-input:focus,
.th-select:focus,
.th-textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 106, 0.4);
}

.th-textarea {
  resize: none;
}

.th-select {
  appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
}

.th-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .th-form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.th-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(201, 164, 106, 0.2);
  background: rgba(201, 164, 106, 0.05);
}
.th-form-success.is-visible {
  display: flex;
}

.th-form-panel {
  display: block;
}
.th-form-panel.is-hidden {
  display: none;
}

/* ---------- Breadcrumb ---------- */
.th-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.th-breadcrumb li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.th-breadcrumb li::marker {
  content: none;
}
.th-breadcrumb a {
  transition: color 0.2s;
}
.th-breadcrumb a:hover {
  color: var(--gold);
}
.th-breadcrumb span:last-child {
  color: rgba(201, 164, 106, 0.6);
}

/* ---------- Gradient radial (hero pages) ---------- */
.th-gradient-radial-gold {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Home hero ---------- */
.th-home-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.th-home-hero__bg {
  position: absolute;
  inset: 0;
}

.th-home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-home-hero__overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-primary),
    rgba(18, 18, 18, 0.6),
    rgba(18, 18, 18, 0.3)
  );
}

.th-home-hero__overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 18, 18, 0.8),
    transparent,
    transparent
  );
}

.th-home-hero__glow {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(201, 164, 106, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.th-home-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .th-home-hero__content {
    padding-bottom: 7rem;
  }
}

.th-home-hero__inner {
  max-width: 42rem;
}

.th-home-hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.th-home-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .th-home-hero__ctas {
    flex-direction: row;
  }
}

.th-home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .th-home-hero__trust {
    gap: 2rem;
  }
}

.th-home-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.th-home-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .th-home-hero__scroll {
    display: flex;
  }
}

.th-home-hero__scroll span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateY(2rem) rotate(90deg);
  transform-origin: center;
}

.th-home-hero__scroll-line {
  width: 1px;
  height: 3rem;
  margin-top: 3rem;
  background: linear-gradient(to bottom, rgba(201, 164, 106, 0.4), transparent);
}

/* ---------- Problems / services preview (home) ---------- */
.th-section-dark {
  position: relative;
  padding: 6rem 0;
  background: var(--dark-primary);
  overflow: hidden;
}
@media (min-width: 768px) {
  .th-section-dark {
    padding: 8rem 0;
  }
}

.th-section-dark__glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: rgba(201, 164, 106, 0.03);
  border-radius: 50%;
  filter: blur(120px);
  transform: translateY(-50%);
  pointer-events: none;
}

.th-section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .th-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.th-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(201, 164, 106, 0.7);
  transition: color 0.2s, gap 0.2s;
}
.th-link-gold:hover {
  color: var(--gold);
  gap: 0.65rem;
}

.th-problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .th-problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.th-problems-feature {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .th-problems-feature {
    height: 100%;
    min-height: 520px;
  }
}

.th-problems-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-problems-feature:hover img {
  transform: scale(1.05);
}

.th-problems-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-primary),
    rgba(18, 18, 18, 0.4),
    transparent
  );
}

.th-problems-feature__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.th-problems-feature__tag {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.th-problems-feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .th-problems-feature__title {
    font-size: 1.875rem;
  }
}

.th-problems-feature__desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
  margin: 0 0 1rem;
}

.th-problems-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.2s;
}
.th-problems-feature:hover .th-problems-feature__link {
  gap: 0.75rem;
}

.th-problems-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .th-problems-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.th-problems-card {
  position: relative;
  display: block;
  height: 14rem;
  overflow: hidden;
}

.th-problems-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-problems-card:hover img {
  transform: scale(1.1);
}

.th-problems-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.95),
    rgba(18, 18, 18, 0.5),
    transparent
  );
}

.th-problems-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.th-problems-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 0.25rem;
}

.th-problems-card__link {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(201, 164, 106, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.th-problems-card:hover .th-problems-card__link {
  color: var(--gold);
}

.th-problems-card__border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.5s;
}
.th-problems-card:hover .th-problems-card__border,
.th-problems-feature:hover .th-problems-card__border {
  border-color: rgba(201, 164, 106, 0.2);
}

/* ---------- How it works ---------- */
.th-section-how {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #0d0d0d;
}
@media (min-width: 768px) {
  .th-section-how {
    padding: 8rem 0;
  }
}

.th-section-how__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(201, 164, 106, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 106, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.th-section-head-center {
  text-align: center;
  margin-bottom: 5rem;
}

.th-how-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .th-how-steps {
    gap: 6rem;
  }
}

.th-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .th-how-step {
    flex-direction: row;
    gap: 4rem;
  }
  .th-how-step--reverse {
    flex-direction: row-reverse;
  }
}

.th-how-step__media {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .th-how-step__media {
    width: 50%;
  }
}

.th-how-step__aspect {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.th-how-step__aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-how-step__media:hover .th-how-step__aspect img {
  transform: scale(1.05);
}

.th-how-step__dim {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.2);
  pointer-events: none;
}

.th-how-step__num {
  position: absolute;
  bottom: -1rem;
  width: 5rem;
  height: 5rem;
  background: var(--dark-primary);
  border: 1px solid rgba(201, 164, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.th-how-step--reverse .th-how-step__num {
  left: -1rem;
}
@media (min-width: 768px) {
  .th-how-step--reverse .th-how-step__num {
    left: -1.5rem;
  }
}
.th-how-step:not(.th-how-step--reverse) .th-how-step__num {
  right: -1rem;
}
@media (min-width: 768px) {
  .th-how-step:not(.th-how-step--reverse) .th-how-step__num {
    right: -1.5rem;
  }
}

.th-how-step__num span {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.th-how-step__text {
  width: 100%;
}
@media (min-width: 768px) {
  .th-how-step__text {
    width: 50%;
  }
}

.th-how-step__icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.th-how-step__icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201, 164, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-how-step__line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(201, 164, 106, 0.2), transparent);
}

.th-how-step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .th-how-step__title {
    font-size: 1.875rem;
  }
}

.th-how-step__desc {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.625;
  font-size: 1rem;
  margin: 0;
}

/* ---------- Why choose us ---------- */
.th-why-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: none;
}
@media (min-width: 1024px) {
  .th-why-bg {
    display: block;
  }
}

.th-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.th-why-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--dark-primary),
    rgba(18, 18, 18, 0.9),
    rgba(18, 18, 18, 0.5)
  );
}

.th-why-glow {
  position: absolute;
  top: 33%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: rgba(201, 164, 106, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.th-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .th-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.th-stat-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(27, 27, 27, 0.5);
  backdrop-filter: blur(4px);
  transition: border-color 0.5s;
}
@media (min-width: 768px) {
  .th-stat-card {
    padding: 2rem;
  }
}
.th-stat-card:hover {
  border-color: rgba(201, 164, 106, 0.2);
}

.th-stat-card__glow {
  position: absolute;
  inset: 0;
  background: rgba(201, 164, 106, 0);
  transition: background 0.5s;
  pointer-events: none;
}
.th-stat-card:hover .th-stat-card__glow {
  background: rgba(201, 164, 106, 0.03);
}

.th-stat-card__value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.5rem 0 0.5rem;
}
@media (min-width: 768px) {
  .th-stat-card__value {
    font-size: 2.25rem;
  }
}

.th-stat-card__label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.th-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .th-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.th-feature-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.5s;
}
.th-feature-card:hover {
  border-color: rgba(201, 164, 106, 0.15);
}

.th-feature-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(201, 164, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}
.th-feature-card:hover .th-feature-card__icon-wrap {
  border-color: rgba(201, 164, 106, 0.4);
}

.th-feature-card p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

/* ---------- Home locations grid ---------- */
.th-loc-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .th-loc-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .th-loc-home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.th-loc-home-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 13rem;
  min-height: 200px;
}

.th-loc-home-card--hero {
  min-height: 400px;
}
@media (min-width: 1024px) {
  .th-loc-home-card--hero {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }
}

.th-loc-home-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-loc-home-card:hover img {
  transform: scale(1.1);
}

.th-loc-home-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.95),
    rgba(18, 18, 18, 0.4),
    transparent
  );
}

.th-loc-home-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.th-loc-home-card__state {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(201, 164, 106, 0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.th-loc-home-card__title {
  font-weight: 700;
  color: var(--warm-white);
  margin: 0;
  font-size: 1.25rem;
}

.th-loc-home-card--hero .th-loc-home-card__title {
  font-size: 1.875rem;
}

.th-loc-home-card__border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
}
.th-loc-home-card:hover .th-loc-home-card__border {
  border-color: rgba(201, 164, 106, 0.2);
}

/* ---------- Final CTA (shared) ---------- */
.th-final-cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: var(--dark-primary);
}
@media (min-width: 768px) {
  .th-final-cta {
    padding: 9rem 0;
  }
}

.th-final-cta__bg {
  position: absolute;
  inset: 0;
}

.th-final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.th-final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.8);
}

.th-final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: rgba(201, 164, 106, 0.05);
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
}

.th-final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.th-final-cta__line {
  margin: 0 auto 2rem;
  max-width: 20rem;
}

.th-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .th-final-cta__actions {
    flex-direction: row;
  }
}

.th-final-cta__footnote {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-top: 2rem;
}

/* ---------- Page hero (inner pages) ---------- */
.th-page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: var(--dark-primary);
  overflow: hidden;
}
@media (min-width: 768px) {
  .th-page-hero {
    padding: 10rem 0 7rem;
  }
}

.th-page-hero--tall {
  padding-bottom: 6rem;
}

.th-page-hero__bg-img {
  position: absolute;
  inset: 0;
}

.th-page-hero__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.th-page-hero__bg-img--15 {
  opacity: 1;
}
.th-page-hero__bg-img--15 img {
  opacity: 0.15;
}

.th-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-primary),
    rgba(18, 18, 18, 0.9),
    rgba(18, 18, 18, 0.7)
  );
}

.th-page-hero__overlay-soft {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-primary),
    rgba(18, 18, 18, 0.8),
    rgba(18, 18, 18, 0.5)
  );
}

.th-page-hero__content {
  position: relative;
}

/* ---------- Services listing rows ---------- */
.th-services-list {
  padding: 4rem 0;
  background: var(--dark-primary);
}
@media (min-width: 768px) {
  .th-services-list {
    padding: 6rem 0;
  }
}

.th-services-list-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.th-service-row {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.5s;
}
.th-service-row:hover {
  border-color: rgba(201, 164, 106, 0.15);
}
@media (min-width: 768px) {
  .th-service-row {
    flex-direction: row;
  }
  .th-service-row--reverse {
    flex-direction: row-reverse;
  }
}

.th-service-row__img {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .th-service-row__img {
    width: 40%;
    height: auto;
    min-height: 280px;
  }
}

.th-service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-service-row:hover .th-service-row__img img {
  transform: scale(1.1);
}

.th-service-row__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .th-service-row__body {
    width: 60%;
    padding: 3rem;
  }
}

.th-service-row__num {
  color: rgba(201, 164, 106, 0.4);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.th-service-row__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .th-service-row__title {
    font-size: 1.875rem;
  }
}

.th-service-row__desc {
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.625;
  margin: 0 0 1.5rem;
}

.th-service-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.2s;
}
.th-service-row:hover .th-service-row__link {
  gap: 0.75rem;
}

/* ---------- Service detail ---------- */
.th-sd-hero {
  position: relative;
  padding: 7rem 0 0;
  background: var(--dark-primary);
  overflow: hidden;
}
@media (min-width: 768px) {
  .th-sd-hero {
    padding: 8rem 0 0;
  }
}

.th-sd-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .th-sd-hero__grid {
    flex-direction: row;
    gap: 3rem;
  }
}

.th-sd-hero__text {
  width: 100%;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .th-sd-hero__text {
    width: 50%;
  }
}

.th-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(201, 164, 106, 0.6);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.th-back-link:hover {
  color: var(--gold);
}

.th-sd-hero__img {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .th-sd-hero__img {
    width: 50%;
  }
}

.th-sd-hero__img img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .th-sd-hero__img img {
    height: 500px;
  }
}

.th-sd-hero__h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .th-sd-hero__h1 {
    font-size: 3rem;
  }
}

.th-sd-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .th-sd-actions {
    flex-direction: row;
  }
}

.th-problems-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .th-problems-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.th-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s;
}
.th-problem-item:hover {
  border-color: rgba(201, 164, 106, 0.1);
}

.th-problem-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.th-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.th-faq-item:hover {
  border-color: rgba(201, 164, 106, 0.1);
}

.th-faq-item h3 {
  color: var(--warm-white);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.th-faq-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.th-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ---------- Locations listing ---------- */
.th-loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .th-loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .th-loc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.th-loc-card {
  position: relative;
  display: block;
  height: 18rem;
  overflow: hidden;
}

.th-loc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.th-loc-card:hover img {
  transform: scale(1.1);
}

.th-loc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 18, 0.95),
    rgba(18, 18, 18, 0.3),
    transparent
  );
}

.th-loc-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.th-loc-card__state {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(201, 164, 106, 0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.th-loc-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 0.75rem;
}

.th-loc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201, 164, 106, 0.6);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.th-loc-card:hover .th-loc-card__link {
  color: var(--gold);
}

.th-loc-card__border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.5s;
  pointer-events: none;
}
.th-loc-card:hover .th-loc-card__border {
  border-color: rgba(201, 164, 106, 0.2);
}

/* ---------- Location detail hero ---------- */
.th-ld-hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .th-ld-hero {
    padding: 8rem 0 5rem;
  }
}

.th-ld-hero__bg {
  position: absolute;
  inset: 0;
}

.th-ld-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.th-ld-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--dark-primary),
    rgba(18, 18, 18, 0.8),
    rgba(18, 18, 18, 0.6)
  );
}

.th-ld-hero__content {
  position: relative;
}

.th-ld-pin-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.th-ld-pin-row span {
  color: rgba(201, 164, 106, 0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.th-ld-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .th-ld-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .th-ld-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .th-ld-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.th-ld-service-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s;
}
.th-ld-service-cell:hover {
  border-color: rgba(201, 164, 106, 0.15);
}

.th-ld-service-cell span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.th-ld-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .th-ld-areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.th-ld-area-cell {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.th-ld-area-cell span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ---------- About ---------- */
.th-about-split {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .th-about-split {
    flex-direction: row;
    gap: 4rem;
  }
}

.th-about-split__media {
  width: 100%;
}
@media (min-width: 1024px) {
  .th-about-split__media {
    width: 50%;
  }
}

.th-about-split__media img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .th-about-split__media img {
    height: 450px;
  }
}

.th-about-split__text {
  width: 100%;
}
@media (min-width: 1024px) {
  .th-about-split__text {
    width: 50%;
  }
}

.th-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .th-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .th-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.th-value-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: border-color 0.2s;
}
.th-value-card:hover {
  border-color: rgba(201, 164, 106, 0.15);
}

.th-value-card__icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(201, 164, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.th-value-card p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

/* ---------- Contact ---------- */
.th-contact-split {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .th-contact-split {
    flex-direction: row;
    gap: 4rem;
  }
}

.th-contact-side {
  width: 100%;
}
@media (min-width: 1024px) {
  .th-contact-side--info {
    width: 40%;
  }
  .th-contact-side--form {
    width: 60%;
  }
}

.th-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.th-contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(201, 164, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.th-contact-item__label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.th-contact-item__value {
  color: var(--warm-white);
  font-weight: 600;
  transition: color 0.2s;
}
.th-contact-item a:hover .th-contact-item__value {
  color: var(--gold);
}

.th-hours-box {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 0;
}

.th-hours-box p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

.th-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- Legal ---------- */
.th-legal-meta {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-bottom: 2.5rem;
}

.th-legal-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.th-legal-stack h2 {
  color: var(--warm-white);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.th-legal-stack p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.th-legal-stack a {
  color: var(--gold);
  text-decoration: underline;
}

/* ---------- 404 ---------- */
.th-notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.25rem 4rem;
  text-align: center;
}

.th-notfound h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--warm-white);
  margin: 0 0 1rem;
}

.th-notfound a {
  color: var(--gold);
  text-decoration: underline;
}

/* ---------- Utilities ---------- */
.th-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;
}

.th-space-y-5 > * + * {
  margin-top: 1.25rem;
}

.th-space-y-6 > * + * {
  margin-top: 1.5rem;
}

.th-space-y-10 > * + * {
  margin-top: 2.5rem;
}

.th-mb-0 {
  margin-bottom: 0;
}
.th-mb-3 {
  margin-bottom: 0.75rem;
}
.th-mb-4 {
  margin-bottom: 1rem;
}
.th-mb-6 {
  margin-bottom: 1.5rem;
}
.th-mb-8 {
  margin-bottom: 2rem;
}
.th-mb-10 {
  margin-bottom: 2.5rem;
}
.th-mb-16 {
  margin-bottom: 4rem;
}
.th-mt-3 {
  margin-top: 0.75rem;
}
.th-mt-4 {
  margin-top: 1rem;
}
.th-mt-8 {
  margin-top: 2rem;
}

.th-text-center {
  text-align: center;
}
.th-text-xs-muted {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.th-link-inline {
  color: var(--gold);
  text-decoration: underline;
}

.th-pt-page {
  padding-top: 5rem;
}

