.elementor-10957 .elementor-element.elementor-element-67dd73b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}body.elementor-page-10957{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ═══════════════════════════════════════════════════════════════════════
   Tree House Living — Project Page CSS
   RipTight Marketing · ESCON GmbH · May 2026
   Last modified: 2026-05-06 | Initial build
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── 1. Design Tokens ──────────────────────────────────────────────── */
:root {
  --thl-forest:     #1C2B22;
  --thl-forest-mid: #2D4035;
  --thl-green:      #4A7C59;
  --thl-sage:       #8FAF6A;
  --thl-sky:        #7BA7BC;
  --thl-ivory:      #F4F7F2;
  --thl-ivory-dk:   #E8EDE4;
  --thl-white:      #FFFFFF;
  --thl-charcoal:   #1A2420;
  --thl-mid-dk:     rgba(244,247,242,0.65);
  --thl-mid-lt:     rgba(26,36,32,0.55);
  --thl-border-dk:  rgba(143,175,106,0.2);
  --thl-border-lt:  rgba(26,36,32,0.1);
  --thl-radius:     3px;
}

/* ─── 2. Base ───────────────────────────────────────────────────────── */
.thl-section *, .thl-hero *, .thl-stats * {
  box-sizing: border-box;
}

/* ─── 3. Reveal animation ───────────────────────────────────────────── */
.thl-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.thl-section--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 4. Hero ───────────────────────────────────────────────────────── */
.thl-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
}
.thl-hero__bg {
  position: absolute;
  top: -30%; left: 0; right: 0; bottom: -30%;
  background-image: url('https://escon-objekte.de/wp-content/uploads/2026/05/Baumschulenstrasse-27-29.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.thl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,34,0.6) 0%, rgba(28,43,34,0.88) 100%);
}
.thl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 40px 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.thl-hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--thl-sage);
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.thl-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  color: var(--thl-ivory);
  margin: 0 0 16px;
  line-height: 1.0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}
.thl-hero__title em {
  font-style: italic;
  color: var(--thl-sage);
}
.thl-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--thl-mid-dk);
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
.thl-hero__address {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(244,247,242,0.5);
  margin: 0 0 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.thl-hero--loaded .thl-hero__eyebrow,
.thl-hero--loaded .thl-hero__title,
.thl-hero--loaded .thl-hero__sub,
.thl-hero--loaded .thl-hero__address,
.thl-hero--loaded .thl-hero__btns {
  opacity: 1;
  transform: translateY(0);
}
.thl-hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
.thl-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: inline-block;
}
.thl-btn--primary {
  background: var(--thl-green);
  color: #fff !important;
  border: 1px solid var(--thl-green);
}
.thl-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,124,89,0.45);
}
.thl-btn--outline {
  background: transparent;
  color: var(--thl-ivory) !important;
  border: 1px solid rgba(244,247,242,0.4);
}
.thl-btn--outline:hover {
  border-color: var(--thl-ivory);
  transform: translateY(-2px);
}

/* ─── 5. Stats Bar ──────────────────────────────────────────────────── */
.thl-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--thl-forest);
  border-top: 1px solid var(--thl-border-dk);
  border-bottom: 1px solid var(--thl-border-dk);
  position: relative;
  z-index: 20;
}
.thl-stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(143,175,106,0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  min-height: 130px;
}
.thl-stat:last-child { border-right: none; }
.thl-stat__val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--thl-sage);
  line-height: 1;
  display: block;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
}
.thl-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(143,175,106,0.65);
}

/* ─── 6. Section wrapper ────────────────────────────────────────────── */
.thl-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
}

/* ─── 7. Section headers ────────────────────────────────────────────── */
.thl-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: block;
}
.thl-eyebrow--light { color: var(--thl-sage); }
.thl-eyebrow--dark  { color: var(--thl-green); }
.thl-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
}
.thl-heading--light { color: var(--thl-ivory); }
.thl-heading--dark  { color: var(--thl-charcoal); }
.thl-heading em { font-style: italic; color: var(--thl-green); }
.thl-heading--light em { color: var(--thl-sage); }
.thl-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.thl-section__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  color: var(--thl-mid-lt);
}

/* ─── 8. Beschreibung ───────────────────────────────────────────────── */
.thl-beschreibung {
  background: var(--thl-ivory);
  padding: 100px 0;
}
.thl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.thl-split__img {
  border-radius: var(--thl-radius);
  overflow: hidden;
  width: 100%;
  height: 520px;
}
.thl-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.thl-split__content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--thl-mid-lt);
  margin: 0 0 16px;
}
.thl-split__content p:last-child { margin-bottom: 0; }

/* Objektdaten */
.thl-objektdaten {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--thl-border-lt);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thl-objektdaten__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.thl-objektdaten__row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.thl-objektdaten__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--thl-green);
}
.thl-objektdaten__val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--thl-charcoal);
  font-weight: 400;
}

/* ─── 9. Gallery ────────────────────────────────────────────────────── */
.thl-galerie {
  background: var(--thl-forest);
  padding: 100px 0;
}
.thl-gallery {
  columns: 3;
  column-gap: 10px;
}
.thl-gallery__item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: var(--thl-radius);
  cursor: pointer;
}
.thl-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.thl-gallery__item:hover img { transform: scale(1.04); }
.thl-gallery__item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(28,43,34,0.8) 0%, transparent 100%);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(244,247,242,0.8);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s;
}
.thl-gallery__item:hover span { opacity: 1; }

/* ─── 10. Einheiten ─────────────────────────────────────────────────── */
.thl-einheiten {
  background: var(--thl-ivory);
  padding: 100px 0;
}
.thl-einheiten .elementor-widget-container br:last-child,
.thl-einheiten .elementor-widget-container > br { display: none !important; height: 0 !important; }
.thl-table-wrap {
  overflow: hidden;
  border-radius: var(--thl-radius);
  border: 1px solid var(--thl-border-lt);
  display: block;
  font-size: 0;
  line-height: 0;
}
.thl-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: table;
  vertical-align: top;
  margin-block-end: 0 !important;
  margin-bottom: 0 !important;
}
.thl-table tbody { vertical-align: top; }
.thl-table thead, .thl-table tbody, .thl-table tfoot { display: table-row-group; }
.thl-table thead tr {
  background: var(--thl-forest);
}
.thl-table thead th {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--thl-sage);
  padding: 14px 20px;
  text-align: left;
}
.thl-table tbody tr {
  border-bottom: 1px solid var(--thl-border-lt);
  transition: background 0.2s;
}
.thl-table tbody tr:last-child { border-bottom: none; }
.thl-table tbody tr:last-child td { border-bottom: none; }
.thl-table tbody tr:hover { background: var(--thl-ivory-dk); }
.thl-table tbody td {
  font-size: 14px;
  color: var(--thl-charcoal);
  padding: 14px 20px;
}
.thl-table tbody td:first-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--thl-green);
}
.thl-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.thl-table-wrap p:empty,
.thl-table-wrap br,
.thl-einheiten .elementor-widget-container > p:empty,
.thl-einheiten .elementor-widget-container > br { display: none !important; }
.thl-table tbody tr:empty { display: none !important; }
.thl-badge--active {
  background: rgba(74,124,89,0.12);
  color: var(--thl-green);
  border: 1px solid rgba(74,124,89,0.25);
}
.thl-badge--reserved {
  background: rgba(123,167,188,0.12);
  color: var(--thl-sky);
  border: 1px solid rgba(123,167,188,0.25);
}
.thl-badge--sold {
  background: rgba(26,36,32,0.06);
  color: rgba(26,36,32,0.4);
  border: 1px solid rgba(26,36,32,0.12);
}
.thl-badge--inactive {
  background: rgba(26,36,32,0.04);
  color: rgba(26,36,32,0.3);
  border: 1px solid rgba(26,36,32,0.08);
}
.thl-badge--notartermin {
  background: rgba(201,169,110,0.1);
  color: #A8843E;
  border: 1px solid rgba(201,169,110,0.25);
}

/* ─── 11. Ausstattung ───────────────────────────────────────────────── */
.thl-ausstattung {
  background: var(--thl-forest-mid);
  padding: 100px 0;
}
.thl-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.thl-feature {
  padding: 32px;
  background: rgba(28,43,34,0.6);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s;
}
.thl-feature:hover { background: rgba(74,124,89,0.12); }
.thl-feature__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--thl-sage);
  opacity: 0.85;
}
.thl-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--thl-ivory);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.thl-feature p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--thl-mid-dk);
  margin: 0;
}

/* ─── 12. Lage ──────────────────────────────────────────────────────── */
.thl-lage {
  background: var(--thl-ivory);
  padding: 100px 0;
}
.thl-split--lage { align-items: flex-start; }
.thl-map-wrap {
  border-radius: var(--thl-radius);
  overflow: hidden;
  border: 1px solid var(--thl-border-lt);
}
.thl-map-wrap iframe { display: block; }
.thl-lage-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--thl-mid-lt);
  margin: 0 0 16px;
}
.thl-lage-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thl-lage-highlight {
  display: flex;
  align-items: stretch;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--thl-mid-lt);
}
.thl-lage-highlight::before {
  content: '→';
  color: var(--thl-green);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── 13. Kontakt ───────────────────────────────────────────────────── */
.thl-kontakt {
  background: var(--thl-forest);
  padding: 100px 0;
}

/* ── kt-form styles (self-contained, no kt-styles.css dependency) ── */
.thl-kontakt .kt-form-wrap {
  background: rgba(244,247,242,0.04);
  border: 1px solid var(--thl-border-dk);
  border-radius: var(--thl-radius);
  padding: 48px;
}
.thl-kontakt .kt-form-wrap__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--thl-ivory);
  margin: 0 0 8px;
}
.thl-kontakt .kt-form-wrap__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--thl-mid-dk);
  margin: 0 0 24px;
}
.thl-kontakt .kt-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.thl-kontakt .kt-form__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(143,175,106,0.7);
}
.thl-kontakt .kt-form__req { color: var(--thl-sage) !important; }
.thl-kontakt .kt-form__row--two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin-bottom: 8px;
}
.thl-kontakt .kt-form__row--two .kt-form__field { margin-bottom: 0; }
.thl-kontakt .kt-form-wrap .wpcf7-form br { display: none; }
.thl-kontakt .kt-form-wrap .wpcf7 input[type="text"],
.thl-kontakt .kt-form-wrap .wpcf7 input[type="email"],
.thl-kontakt .kt-form-wrap .wpcf7 input[type="tel"],
.thl-kontakt .kt-form-wrap .wpcf7 select,
.thl-kontakt .kt-form-wrap .wpcf7 textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--thl-ivory);
  background: rgba(244,247,242,0.06);
  border: 1px solid var(--thl-border-dk);
  border-radius: var(--thl-radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  display: block;
  margin-bottom: 0;
}
.thl-kontakt .kt-form-wrap .wpcf7 input::placeholder,
.thl-kontakt .kt-form-wrap .wpcf7 textarea::placeholder { color: rgba(244,247,242,0.25); }
.thl-kontakt .kt-form-wrap .wpcf7 input[type="text"]:focus,
.thl-kontakt .kt-form-wrap .wpcf7 input[type="email"]:focus,
.thl-kontakt .kt-form-wrap .wpcf7 input[type="tel"]:focus,
.thl-kontakt .kt-form-wrap .wpcf7 select:focus,
.thl-kontakt .kt-form-wrap .wpcf7 textarea:focus { border-color: var(--thl-sage); }
.thl-kontakt .kt-form-wrap .wpcf7 textarea { min-height: 80px; resize: vertical; }
.thl-kontakt .kt-form-wrap .wpcf7 select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FAF6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-color: rgba(244,247,242,0.06) !important;
  padding-right: 40px;
  cursor: pointer;
}
.thl-kontakt .kt-form-wrap .wpcf7 select option { background: var(--thl-forest); color: var(--thl-ivory); }
.thl-kontakt .kt-form-wrap .wpcf7 input[type="submit"],
body .thl-kontakt .kt-form-wrap .wpcf7 input[type="submit"] {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  background: var(--thl-green) !important;
  color: #fff !important;
  border: 1px solid var(--thl-green) !important;
  border-radius: 999px !important;
  padding: 15px 36px !important;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  width: auto;
  margin-top: 8px;
}
.thl-kontakt .kt-form-wrap .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(74,124,89,0.4) !important;
}
.thl-kontakt .kt-form__legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(244,247,242,0.3) !important;
  line-height: 1.5;
  margin: 8px 0 0 !important;
}
.thl-kontakt .kt-form__legal a { color: var(--thl-sage) !important; text-decoration: none; }
.thl-kontakt .kt-form__legal a:hover { text-decoration: underline; }
.thl-kontakt .wpcf7 .wpcf7-not-valid-tip {
  font-size: 11px; color: #e74c3c; display: block; margin-top: 4px;
}
.thl-kontakt .wpcf7 .wpcf7-response-output {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  padding: 0; margin-top: 16px; border: none !important;
  background: transparent; color: var(--thl-ivory); box-shadow: none !important;
}

/* ─── 14. Lightbox ──────────────────────────────────────────────────── */
.thl-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28,43,34,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: stretch;
  justify-content: center;
}
.thl-lb.thl-lb--open { display: flex; }
.thl-lb__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.thl-lb__img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: var(--thl-radius);
}
.thl-lb__close,
.thl-lb__close:hover,
.thl-lb__close:focus,
.thl-lb__close:active,
body .thl-lb__close,
body .thl-lb__close:hover {
  position: fixed;
  top: 24px; right: 32px;
  background: none !important;
  border: none !important;
  color: var(--thl-sage) !important;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10000;
  outline: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.thl-lb__close:hover { opacity: 1; transform: scale(1.2); }
.thl-lb__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(143,175,106,0.3);
  color: var(--thl-sage);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
}
.thl-lb__nav:hover { border-color: var(--thl-sage); background: rgba(143,175,106,0.1); }
.thl-lb__prev { left: 24px; }
.thl-lb__next { right: 24px; }
.thl-lb__caption {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(244,247,242,0.6);
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 10000;
}
.thl-lb__counter {
  position: fixed;
  top: 28px; left: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(244,247,242,0.4);
  letter-spacing: 0.1em;
  z-index: 10000;
}

/* ─── 15. Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .thl-split { gap: 48px; }
  .thl-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .thl-split { grid-template-columns: 1fr; }
  .thl-gallery { columns: 2; }
  .thl-features { grid-template-columns: 1fr; }
  .thl-stats { grid-template-columns: repeat(2, 1fr); }
  .thl-hero__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .thl-gallery { columns: 1; }
  .thl-wrap { padding: 0 5%; }
}/* End custom CSS */