@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/merriweather-700.ttf") format("truetype");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/merriweather-900.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans-400.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/open-sans-500.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/open-sans-600.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/open-sans-700.ttf") format("truetype");
}

:root {
  --tlg-background: #ffffff;
  --tlg-foreground: #142019;
  --tlg-primary: #3d9259;
  --tlg-primary-foreground: #ffffff;
  --tlg-secondary: #e0ece2;
  --tlg-secondary-foreground: #25553a;
  --tlg-muted: #eff2ef;
  --tlg-muted-foreground: #5d6f63;
  --tlg-accent: #7d5736;
  --tlg-accent-foreground: #ffffff;
  --tlg-border: #d1ddd3;
  --tlg-brand-green: #3e5543;
  --tlg-brand-green-dark: #2e4333;
  --tlg-brand-green-light: #5d715f;
  --tlg-brand-paprika: #d36d3a;
  --tlg-brand-paprika-dark: #ba5b2e;
  --tlg-brand-graphite: #292b28;
  --tlg-brand-graphite-light: #363835;
  --tlg-brand-teal: #88bca2;
  --tlg-brand-red: #a34b46;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--tlg-background);
  color: var(--tlg-foreground);
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Merriweather", serif;
}

p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tlg-page-shell {
  min-height: 100vh;
}

.tlg-container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 16px;
}

.tlg-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.tlg-site-header.is-scrolled {
  background: var(--tlg-brand-graphite);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.tlg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.tlg-brand {
  color: var(--tlg-primary-foreground);
  font-family: "Merriweather", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

.tlg-desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.tlg-nav-link,
.tlg-footer-nav a,
.tlg-footer-contact a,
.tlg-footer-social,
.tlg-mobile-link {
  transition: color 0.3s ease;
}

.tlg-nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tlg-nav-link:hover,
.tlg-footer-nav a:hover,
.tlg-footer-contact a:hover,
.tlg-footer-social:hover,
.tlg-mobile-link:hover {
  color: var(--tlg-brand-paprika);
}

.tlg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--tlg-brand-paprika);
  color: var(--tlg-accent-foreground);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tlg-button:hover {
  background: var(--tlg-brand-paprika-dark);
}

.tlg-button--header {
  min-height: 40px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.tlg-button--hero {
  min-height: 72px;
  padding: 18px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
}

.tlg-button--hero:hover,
.tlg-service-card:hover img,
.tlg-gallery-card:hover img {
  transform: scale(1.05);
}

.tlg-button--full {
  width: 100%;
}

.tlg-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--tlg-primary-foreground);
  cursor: pointer;
}

.tlg-icon-close {
  display: none;
}

.tlg-site-header.is-menu-open .tlg-icon-open {
  display: none;
}

.tlg-site-header.is-menu-open .tlg-icon-close {
  display: inline-flex;
}

.tlg-svg-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tlg-svg-icon svg {
  width: 24px;
  height: 24px;
}

.tlg-mobile-nav {
  display: none;
  background: var(--tlg-brand-graphite);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tlg-site-header.is-menu-open .tlg-mobile-nav {
  display: block;
}

.tlg-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.tlg-mobile-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
}

.tlg-book-link {
  display: inline-flex;
}

.tlg-book-link--mobile {
  margin-top: 8px;
}

.tlg-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.tlg-hero-video,
.tlg-hero-overlay {
  position: absolute;
  inset: 0;
}

.tlg-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.tlg-hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.tlg-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--tlg-primary-foreground);
}

.tlg-section-eyebrow {
  margin-bottom: 24px;
  color: var(--tlg-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.tlg-hero .tlg-section-eyebrow {
  margin-bottom: 24px;
}

.tlg-hero-title {
  margin: 0 auto 24px;
  max-width: 980px;
  color: var(--tlg-primary-foreground);
  font-size: clamp(3.125rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
}

.tlg-hero-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto 32px;
  background: var(--tlg-brand-paprika);
  transform-origin: center;
}

.tlg-hero-description {
  max-width: 550px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.tlg-animate {
  opacity: 0;
  animation: tlg-fade-up 0.65s ease forwards;
}

.tlg-animate-delay-1 {
  animation-delay: 0.2s;
}

.tlg-animate-delay-2 {
  animation-delay: 0.4s;
}

.tlg-animate-delay-3 {
  animation: tlg-scale-x 0.6s ease forwards;
  animation-delay: 0.8s;
}

.tlg-animate-delay-4 {
  animation-delay: 1s;
}

.tlg-animate-delay-5 {
  animation-delay: 1.2s;
}

@keyframes tlg-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tlg-scale-x {
  from {
    opacity: 1;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.tlg-section {
  padding: 80px 0;
}

.tlg-section--about {
  padding-top: 96px;
  padding-bottom: 96px;
}

.tlg-section--portfolio {
  background: rgba(239, 242, 239, 0.8);
}

/* Respect EXIF orientation so phone photos display upright (gallery, compare slider, lightbox). */
.tlg-section--portfolio img {
  image-orientation: from-image;
}

.tlg-section--testimonials {
  background: var(--tlg-brand-green);
}

.tlg-align-center {
  text-align: center;
}

.tlg-section-title {
  margin-bottom: 16px;
  color: var(--tlg-foreground);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
}

.tlg-section-title--light,
.tlg-section-description--light {
  color: var(--tlg-primary-foreground);
}

.tlg-section-description {
  color: var(--tlg-muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.tlg-section-description--narrow {
  max-width: 640px;
  margin: 0 auto 56px;
}

.tlg-section-eyebrow--testimonials {
  color: var(--tlg-brand-teal);
}

.tlg-grid {
  display: grid;
}

.tlg-services-grid,
.tlg-testimonials-grid {
  max-width: 1120px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.tlg-service-card,
.tlg-testimonial-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(27, 35, 29, 0.12);
}

.tlg-service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tlg-service-media img,
.tlg-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tlg-service-body {
  padding: 24px;
  text-align: center;
}

.tlg-service-title {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.tlg-service-description {
  color: var(--tlg-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.75;
}

.tlg-discount-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px auto 0;
  padding: 12px 24px;
  border: 1px solid rgba(61, 146, 89, 0.2);
  border-radius: 999px;
  background: rgba(61, 146, 89, 0.08);
}

.tlg-discount-pill p {
  font-size: 0.875rem;
  font-weight: 600;
}

.tlg-pill-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--tlg-brand-red);
}

.tlg-pill-icon svg {
  width: 24px;
  height: 24px;
}

.tlg-section--services .tlg-discount-pill {
  display: flex;
  width: fit-content;
}

.tlg-about-card {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--tlg-border);
  border-radius: 24px;
  background: var(--tlg-background);
  box-shadow: 0 18px 40px rgba(27, 35, 29, 0.12);
}

.tlg-about-media {
  position: relative;
  min-height: 288px;
  overflow: hidden;
}

.tlg-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.tlg-about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 32, 25, 0.3), rgba(20, 32, 25, 0));
}

.tlg-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.tlg-about-label {
  margin-bottom: 8px;
  color: var(--tlg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tlg-about-name {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

.tlg-about-bio {
  margin-bottom: 32px;
  color: var(--tlg-muted-foreground);
  line-height: 1.8;
}

.tlg-about-values {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tlg-about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(224, 236, 226, 0.6);
}

.tlg-about-value-icon {
  color: var(--tlg-primary);
  flex-shrink: 0;
}

.tlg-about-value-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.tlg-compare-grid {
  max-width: 1200px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto 64px;
}

.tlg-before-after {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 40px rgba(27, 35, 29, 0.12);
  cursor: col-resize;
  user-select: none;
}

.tlg-before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlg-before-clip {
  position: absolute;
  inset: 0;
}

.tlg-before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
  z-index: 10;
}

.tlg-before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  color: var(--tlg-foreground);
}

.tlg-before-label,
.tlg-after-label {
  position: absolute;
  top: 12px;
  z-index: 10;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tlg-before-label {
  left: 12px;
}

.tlg-after-label {
  right: 12px;
}

.tlg-compare-title {
  margin-top: 12px;
  font-size: 1.125rem;
  font-weight: 700;
}

.tlg-compare-description {
  color: var(--tlg-muted-foreground);
  font-size: 0.875rem;
}

.tlg-portfolio-subtitle {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.tlg-gallery-grid {
  max-width: 1200px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.tlg-gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 40px rgba(27, 35, 29, 0.12);
  cursor: pointer;
}

.tlg-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tlg-gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tlg-gallery-caption p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.tlg-gallery-card:hover .tlg-gallery-overlay,
.tlg-gallery-card:hover .tlg-gallery-caption {
  opacity: 1;
}

.tlg-gallery-card:hover .tlg-gallery-caption {
  transform: translateY(0);
}

.tlg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tlg-lightbox[hidden] {
  display: none;
}

.tlg-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.tlg-lightbox-close,
.tlg-lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.tlg-lightbox-close {
  top: 16px;
  right: 16px;
}

.tlg-lightbox-prev {
  left: 16px;
}

.tlg-lightbox-next {
  right: 16px;
}

.tlg-lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.tlg-lightbox-figure img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.tlg-lightbox-figure figcaption {
  margin-top: 16px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.tlg-testimonials-grid {
  max-width: 1120px;
}

.tlg-testimonial-card {
  padding: 32px;
}

.tlg-testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tlg-testimonial-head img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}

.tlg-testimonial-name {
  font-weight: 700;
}

.tlg-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.tlg-star-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--tlg-brand-paprika);
}

.tlg-star-icon svg {
  width: 24px;
  height: 24px;
}

.tlg-testimonial-text {
  color: var(--tlg-muted-foreground);
  font-style: italic;
  line-height: 1.75;
}

.tlg-contact-layout {
  display: grid;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.tlg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(224, 236, 226, 0.4);
}

.tlg-field-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--tlg-muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tlg-field-group input,
.tlg-field-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(209, 221, 211, 0.6);
  border-radius: 12px;
  background: var(--tlg-background);
  color: var(--tlg-foreground);
  outline: none;
}

.tlg-field-group textarea {
  resize: vertical;
  min-height: 128px;
}

.tlg-field-group input:focus,
.tlg-field-group textarea:focus {
  border-color: var(--tlg-primary);
}

.tlg-field-group input.tlg-error,
.tlg-field-group textarea.tlg-error {
  border-color: #dc2626;
}

.tlg-field-error {
  min-height: 20px;
  margin-top: 4px;
  color: #dc2626;
  font-size: 0.875rem;
}

.tlg-button--submit {
  min-height: 60px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.tlg-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 16px;
}

.tlg-contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.125rem;
  font-weight: 700;
}

.tlg-contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tlg-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tlg-contact-item span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tlg-contact-item strong {
  font-weight: 600;
}

.tlg-contact-item em {
  color: var(--tlg-muted-foreground);
  font-size: 0.875rem;
  font-style: normal;
}

.tlg-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(61, 146, 89, 0.1);
  color: var(--tlg-primary);
  flex-shrink: 0;
}

.tlg-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(360px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--tlg-brand-graphite);
  color: var(--tlg-primary-foreground);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.tlg-toast[hidden] {
  display: none;
}

.tlg-toast strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.tlg-toast p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

.tlg-site-footer {
  background: var(--tlg-brand-graphite);
  color: var(--tlg-primary-foreground);
}

.tlg-footer-top {
  display: grid;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.tlg-slot-empty {
  display: none !important;
}

.tlg-footer-brand h3 {
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
}

.tlg-footer-brand p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.tlg-footer-column h4 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tlg-footer-nav,
.tlg-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tlg-footer-nav a,
.tlg-footer-contact a,
.tlg-footer-social {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.tlg-footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tlg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tlg-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  line-height: 1.5;
  text-align: center;
}

.tlg-footer-bottom-inner a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .tlg-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tlg-desktop-nav {
    display: flex;
  }

  .tlg-mobile-toggle {
    display: none;
  }

  .tlg-section {
    padding: 80px 0;
  }

  .tlg-services-grid,
  .tlg-testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlg-about-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .tlg-about-media {
    min-height: 100%;
  }

  .tlg-about-overlay {
    background: linear-gradient(to right, rgba(20, 32, 25, 0), rgba(20, 32, 25, 0));
  }

  .tlg-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tlg-contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .tlg-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlg-footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .tlg-compare-grid,
  .tlg-gallery-grid,
  .tlg-footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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