/* ─── ROOT ─────────────────────────────────────────────── */
:root {
  /* --clr-primary: #640001; */
  --clr-primary:#7F9B76;
  --clr-secondary: #c4942f;
  --clr-dark: #333333;
  --clr-white: #ffffff;
  --clr-cream: #f8f5f0;
  --clr-muted: #9a9a7a;
    /* --clr-muted:#c4942f; */
  --clr-overlay: rgba(20, 10, 10, 0.55);
  --font-display: "Cormorant Garamond", serif;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --transition-base: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--clr-dark);
  background-color: var(--clr-white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.trl-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  /* background:rgba(255, 255, 255, .9); */
  transition:
    background var(--transition-base),
    padding var(--transition-base),
    box-shadow var(--transition-base);
}

.trl-navbar.scrolled {
  /* background: rgba(255, 255, 255, 0.97); */
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.trl-navbar.scrolled .trl-nav-logo {
  color: var(--clr-primary);
}

.trl-navbar.scrolled .trl-nav-link {
  color: var(--clr-dark);
}

.trl-navbar.scrolled .trl-nav-cta {
  color: #fff;
  border-color: rgba(51, 51, 51, 0.35);
}

.trl-navbar.scrolled .trl-nav-cta::before {
  background: var(--clr-primary);
}

.trl-navbar.scrolled .trl-nav-cta:hover {
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.trl-navbar.scrolled .trl-nav-hamburger:not(.open) span {
  /* background: var(--clr-dark); */
  background: var(--clr-cream);
}

.trl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trl-nav-logo img{
  width: auto;
  /* height: 70px; */
   height:100px;
  object-fit: cover;
  display: block;
}

.trl-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin-bottom:0px;
}

.trl-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

.trl-nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-primary);
  transition: width var(--transition-base);
}

.trl-nav-link:hover {
  color: #c4942f;
}
.trl-nav-link:hover::after {
  width: 100%;
}

.trl-nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background:#c4942f;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
}

.trl-nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-primary);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.trl-nav-cta:hover {
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.trl-nav-cta:hover::before {
  transform: scaleX(1);
}

.trl-nav-hamburger {
  /* display: none; */
  display:flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}


.trl-nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--clr-cream);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    background 0.25s ease;
  transform-origin: center;
}

.trl-nav-hamburger{
  background:#000;
  padding: 10px;
}

.trl-nav-hamburger.open{
  background:#000;
  padding:10px;
}

.trl-nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--clr-white);
}
.trl-nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.trl-nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--clr-white);
}

@media(min-width:992px){
  .trl-nav-hamburger{

  }

  /* .trl-nav-inner{
    flex-direction: row-reverse;
  } */

  .trl-navbar.scrolled .trl-nav-hamburger:not(.open) span{
    background:#fff;
  }

  .trl-nav-links{
    display:none;
  }

  .trl-nav-cta{
   display:none !important;
  }

}

.over-menu{
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.site-logo a img {
    background: #fff;
    padding: 10px;
}

.desk-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desk-menu span{
  color:#fff;
  font-size:24px;
  font-weight:800;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.trl-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 5, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.trl-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
  z-index:1;
  
}

.trl-mobile-link {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--clr-white);
  text-decoration: none;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.25s ease;
}

.trl-mobile-overlay.open .trl-mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.trl-mobile-overlay.open .trl-mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}
.trl-mobile-overlay.open .trl-mobile-link:nth-child(2) {
  transition-delay: 0.18s;
}
.trl-mobile-overlay.open .trl-mobile-link:nth-child(3) {
  transition-delay: 0.26s;
}
.trl-mobile-overlay.open .trl-mobile-link:nth-child(4) {
  transition-delay: 0.34s;
}
.trl-mobile-overlay.open .trl-mobile-link:nth-child(5) {
  transition-delay: 0.42s;
}

.trl-mobile-link:hover {
  color: var(--clr-muted);
}

/* ── HERO SLIDER ── */
  .trl-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    z-index:0;
  }

  /* Slides container */
  .trl-slides {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }

  .trl-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
  }

  /* Slide backgrounds using free Unsplash images */
  .trl-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s ease;
  }

   .trl-slide.is-active .trl-slide-bg {
    transform: scale(1);
  } 

  /* .trl-slide:nth-child(1) .trl-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80&fit=crop');
  }
  .trl-slide:nth-child(2) .trl-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1800&q=80&fit=crop');
  }
  .trl-slide:nth-child(3) .trl-slide-bg {
    background-image: url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=1800&q=80&fit=crop');
  } */

  .trl-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
      to top,
      rgba(20, 5, 5, 0.82) 0%,
      rgba(20, 5, 5, 0.65) 50%,
      rgba(20, 5, 5, 0.35) 100%
    ); */
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  /* Content layer */
  .trl-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 160px 0px 80px;
    max-width: 1280px;
    margin: 0 auto;
    left: 0; right: 0;
  }

  /* Slide text – fade in/out */
  .trl-slide-text {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease 0.55s, transform 0.65s ease 0.55s;
    pointer-events: none;
  }

  .trl-slide.is-active .trl-slide-text {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .trl-hero-eyebrow {
    font-family: 'Inter', sans-serif;;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .trl-hero-eyebrow::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #8b7355;
    flex-shrink: 0;
  }

  .trl-hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    /* font-size: clamp(2.6rem, 6.5vw, 6rem); */
    font-size: 94px;
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 760px;
  }

  .trl-hero-headline em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
  }

  .trl-hero-subtext {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .trl-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .trl-btn-primary {
    font-family: 'Inter', sans-serif;;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 2.3rem;
    background: var(--clr-secondary);
    color: #fff;
    border: 1px solid #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  }

  .trl-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background:  var(--clr-primary);
    transform: translateX(-101%);
    z-index: -1;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .trl-btn-primary:hover {
    color: #fff;
    border-color:  #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(20,5,5,0.45);
  }

  .trl-btn-primary:hover::before { transform: translateX(0); }
  .trl-btn-primary:hover .trl-btn-arrow { transform: translateX(4px); }
  .trl-btn-arrow { transition: transform var(--transition-base); }

  .trl-btn-ghost {
    font-family: 'Inter', sans-serif;;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 2.3rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: border-color var(--transition-base), transform var(--transition-base);
  }

  .trl-btn-ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: -1;
    transition: transform 0.4s ease;
  }

  .trl-btn-ghost:hover {
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
  }
  .trl-btn-ghost:hover::before { transform: scaleY(1); }

  /* ── CONTROLS ── */
  .trl-hero-accent-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25));
    z-index: 3;
    display:none;
  }

  /* Prev / Next arrows */
  .trl-slider-arrows {
    position: absolute;
    bottom: 3rem;
    right: 5vw;
    z-index: 4;
    display: flex;
    gap: 0.6rem;
  }

  .trl-arrow-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background 0.25s, border-color 0.25s;
  }

  .trl-arrow-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
  }

  /* Dots */
  .trl-slider-dots {
    position: absolute;
    bottom: 130px;
    right: 5vw;
    z-index: 4;
    display: flex;
    gap: 0.55rem;
    align-items: center;
  }

  .trl-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
  }

  .trl-dot.is-active {
    background: #8b7355;
    width: 44px;
  }

  /* Slide counter */
  .trl-slide-counter {
    position: absolute;
    bottom: 150px;
    right: 90px;
    z-index: 4;
    font-family: 'Inter', sans-serif;;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }

  /* Scroll hint */
  .trl-hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .trl-hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-drop 2s infinite;
  }

  @keyframes scroll-drop {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50%       { transform: scaleY(0.7); opacity: 1; }
  }

  /* Progress bar */
  .trl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #8b7355;
    z-index: 5;
    width: 0%;
    transition: width linear;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .trl-hero-content {
      padding: 120px 1.5rem 120px;
      align-items: flex-end;
    }

    .trl-hero-subtext { display: none; }

    .trl-hero-headline {
      font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .trl-slider-arrows {
      bottom: 1.8rem;
      right: 1.5rem;
    }

    .trl-arrow-btn {
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }

    .trl-slider-dots {
      bottom: 2.5rem;
      left: 1.5rem;
    }

    .trl-slide-counter { display: none; }

    .trl-hero-scroll-hint { display: none; }

    .trl-hero-actions { gap: 0.75rem; }

    .trl-btn-primary,
    .trl-btn-ghost { padding: 0.85rem 1.6rem; font-size: 0.68rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .trl-slides { transition: none; }
    .trl-slide-bg { transition: none; }
    .trl-slide-text { transition: none; }
  }


/* ─── ABOUT ─────────────────────────────────────────────────── */
.trl-about {
  padding: 7rem 0;
  background: var(--clr-white);
}

.trl-about-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trl-about-tag::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--clr-secondary);
}

.trl-about-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 1.75rem;
}

.trl-about-headline strong {
  font-weight: 600;
  color: var(--clr-primary);
}

.trl-about-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: #5a5a5a;
}

.trl-about-img-wrap {
  position: relative;
}

.trl-about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.trl-about-img-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 1.75rem;
  font-family: var(--font-display);
}

.trl-about-img-badge strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.trl-about-img-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.trl-about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trl-about-stat-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--clr-secondary);
  line-height: 1;
  display: block;
}

.trl-about-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-top: 0.25rem;
  display: block;
}

/* ─── SERVICES ─────────────────────────────────────────────── */
.trl-services {
  padding: 7rem 0;
  background: var(--clr-cream);
}

.trl-section-header {
  text-align: start;
  /* margin-bottom: 4rem; */
}

.service-btn {
    display: flex;
    justify-content: end;
    align-items: center;
}



.trl-section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 1.05rem;
}

.trl-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
  margin-bottom:40px;
}

.trl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e7e1d3;
}

.trl-service-card {
  position: relative;
  overflow: hidden;
  background: #170a0a;
  aspect-ratio: 1/1.05;
  cursor: pointer;
}

.trl-service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trl-service-card:hover .trl-service-card-img {
  transform: scale(1.02);
}

.trl-service-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 4, 4, 0.92) 0%,
    rgba(10, 4, 4, 0.18) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.trl-service-card:hover .trl-service-card-shade {
  opacity: 1;
}

/*.trl-service-gate {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  z-index: 2;*/
/*  display: flex;*/
/*}*/

/*.trl-service-gate-leaf {*/
/*  flex: 1;*/
  /* background: linear-gradient(155deg, var(--clr-primary) 0%, #34000a 100%); */ 
/*   background: linear-gradient(155deg, var(--clr-primary) 0%, #7F9B76 100%); */
/*  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1);*/
/*}*/

/*.trl-service-gate-leaf--left {*/
/*  border-right: 1px solid rgba(255, 255, 255, 0.14);*/
/*}*/
/*.trl-service-gate-leaf--right {*/
/*  border-left: 1px solid rgba(255, 255, 255, 0.14);*/
/*}*/

/*.trl-service-card:hover .trl-service-gate-leaf--left {*/
/*  transform: translateX(-100%);*/
/*}*/
/*.trl-service-card:hover .trl-service-gate-leaf--right {*/
/*  transform: translateX(100%);*/
/*}*/

/*.trl-service-card-badge {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  z-index: 3;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 1.1.05rem;*/
/*  text-align: center;*/
/*  padding: 1.5rem;*/
/*  transition:*/
/*    opacity 0.45s ease,*/
/*    transform 0.45s ease;*/
/*}*/

/*.trl-service-card:hover .trl-service-card-badge {*/
/*  opacity: 0;*/
/*  transform: scale(0.82);*/
/*  pointer-events: none;*/
/*}*/

.trl-service-icon-ring {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--clr-white);
  flex-shrink: 0;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease;
}

.trl-service-card:hover .trl-service-icon-ring {
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.7);
}

.trl-service-badge-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.trl-service-card-reveal {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.85rem 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease 0.12s,
    transform 0.5s ease 0.12s;
}

.trl-service-card:hover .trl-service-card-reveal {
  opacity: 1;
  transform: translateY(0);
}

.trl-service-index {
  font-family: var(--font-display);
  font-size: 0.88rem;
  fpont-weight:400;
  letter-spacing: 0.3em;
  color: var(--clr-cream);
  display: block;
  margin-bottom: 0.6rem;
}

.trl-service-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.trl-service-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.trl-service-card-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #170a0a;
}

.trl-service-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  text-align: center;
  padding: 2rem;
}

.trl-service-more-icon {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.trl-service-more-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.trl-service-more-btn {
  font-size: 0.68rem;
  padding: 0.8rem 1.7rem;
  margin-top: 0.4rem;
}

@media(max-width:767px){
  .trl-services .row{
  margin-bottom:30px;
}

.service-btn{
  justify-content: start;
}

.trl-section-header{
  margin-bottom:20px;
}
}
/* ─── PHILOSOPHY ─────────────────────────────────────────────── */
.trl-philosophy {
  padding: 7rem 0;
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}

.trl-philosophy-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.trl-philosophy-content {
  position: relative;
  z-index: 2;
}

.trl-philosophy-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 1.5rem;
}

.trl-philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.trl-philosophy-headline em {
  font-style: italic;
  color: var(--clr-secondary);
}

.trl-philosophy-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.trl-philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trl-philosophy-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.trl-pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.trl-pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 0.35rem;
}

.trl-pillar-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.trl-philosophy-img-col {
  position: relative;
}

.trl-philosophy-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.trl-philosophy-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 4px solid var(--clr-dark);
}

/* ─── PROJECTS ─────────────────────────────────────────────── */
.trl-projects {
  padding: 7rem 0;
  background: var(--clr-white);
}

.trl-projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.05rem;
}

.trl-proj-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.trl-proj-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.trl-proj-item:nth-child(2) {
  grid-column: span 5;
}
.trl-proj-item:nth-child(3) {
  grid-column: span 5;
}
.trl-proj-item:nth-child(4) {
  grid-column: span 4;
}
.trl-proj-item:nth-child(5) {
  grid-column: span 8;
}

.trl-proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition: transform 0.6s ease;
}

.trl-proj-item:nth-child(1) .trl-proj-img {
  min-height: 500px;
}

.trl-proj-item:hover .trl-proj-img {
  transform: scale(1.05);
}

.trl-proj-hover {
  position: absolute;
  inset: 0;
  /* background: rgba(100, 0, 1, 0.8); */
  /* background:rgba(127, 155, 118, 0.6); */
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trl-proj-item:hover .trl-proj-hover {
  opacity: 1;
}

.trl-proj-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: 0.4rem;
}

.trl-proj-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.25;
}

.trl-projects-footer {
  margin-top: 3rem;
  text-align: center;
}

.trl-btn-outline-dark {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  background: var(--clr-secondary);
  color: var(--clr-cream);
  border: 1px solid var(--clr-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.trl-btn-outline-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-primary);
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.trl-btn-outline-dark:hover {
  color: var(--clr-white);
  transform: translateY(-2px);
}

.trl-btn-outline-dark:hover::before {
  transform: scaleX(1);
}

.trl-btn-arrow {
  transition: transform var(--transition-base);
}

.trl-btn-outline-dark:hover .trl-btn-arrow {
  transform: translateX(4px);
}

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.trl-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
  background:var(--clr-dark);
}

.trl-cta-banner::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.trl-cta-banner-bg {
  position: absolute;
  inset: 0;
  /* background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=80&fit=crop");
  background-size: cover;
  background-position: center; */
}

.trl-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 5, 0.72);
}

.trl-cta-inner {
  position: relative;
  z-index: 2;
}

.trl-cta-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  font-weight: 500;
  display: block;
  margin-bottom: 1.25rem;
}

.trl-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.trl-cta-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.trl-cta-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.trl-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.trl-footer {
  position: relative;
  overflow: hidden;
  background: #170d0d;
  padding: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.trl-footer-bg-text {
  position: absolute;
  left: 50%;
  bottom: -4.5vw;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.trl-footer-newsletter {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 0;
}

.trl-footer-newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trl-footer-newsletter-heading {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--clr-white);
  max-width: 420px;
  line-height: 1.3;
}

.trl-footer-newsletter-heading em {
  font-style: italic;
  color: var(--clr-secondary);
}

.trl-footer-newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 320px;
  flex: 1;
  max-width: 440px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition-base);
}

.trl-footer-newsletter-form:focus-within {
  border-color: var(--clr-white);
}

.trl-footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--clr-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 0.25rem;
  outline: none;
}

.trl-footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.trl-footer-newsletter-submit {
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1.1.05rem;
  padding: 0 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.trl-footer-newsletter-submit:hover {
  color: var(--clr-secondary);
  transform: translateX(4px);
}

.trl-footer-main {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
}

.trl-footer-brand img {
 width: auto;
    height: 100px;
    object-fit: cover;
    background: #fff;
    padding: 10px;
}

.trl-footer-tagline {
  margin-top:30px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 340px;
}

.trl-footer-col-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.trl-footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: var(--clr-secondary);
}

.trl-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-left:0px;
}

.trl-footer-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-cream);
  text-decoration: none;
  position: relative;
  transition:
    color var(--transition-base),
    padding-left var(--transition-base);
}

.trl-footer-link::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--clr-secondary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.trl-footer-link:hover {
  color: var(--clr-secondary);
  padding-left: 14px;
}

.term-link {
    display: flex;
    gap: 20px;
}

.term-link a{
  font-size: 14px;
  color:var(--clr-cream);
  text-decoration: none;;
}

.term-link a:hover{
  color:var(--clr-secondary);
}

.trl-footer-link:hover::before {
  opacity: 1;
}

.trl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--clr-cream);
  line-height: 1.6;
  margin-bottom: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.trl-footer-contact-item:hover {
  color: var(--clr-secondary);
}

.trl-footer-contact-item i {
  color: var(--clr-secondary);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.trl-footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.trl-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.05rem;
}

.trl-footer-copyright {
  font-size:14px;
  color: rgba(255, 255, 255, 1);
}

.trl-footer-socials {
  display: flex;
  gap: 0.85rem;
}

.trl-footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-cream);
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
}

.trl-footer-social-link:hover {
  color: var(--clr-white);
  border-color: var(--clr-primary);
  background: var(--clr-primary);
  transform: translateY(-3px);
}

/* ─── BACK TO TOP ─────────────────────────────────────────── */
.trl-back-to-top {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1.05rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  box-shadow: 0 10px 24px -8px rgba(20, 5, 5, 0.5);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.3s ease;
}

.trl-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.trl-back-to-top:hover {
  background: var(--clr-secondary);
}

.trl-no-scroll {
  overflow: hidden;
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.trl-services-grid .trl-service-card:nth-child(1) {
  transition-delay: 0s;
}
.trl-services-grid .trl-service-card:nth-child(2) {
  transition-delay: 0.08s;
}
.trl-services-grid .trl-service-card:nth-child(3) {
  transition-delay: 0.16s;
}
.trl-services-grid .trl-service-card:nth-child(4) {
  transition-delay: 0.24s;
}
.trl-services-grid .trl-service-card:nth-child(5) {
  transition-delay: 0.32s;
}
.trl-services-grid .trl-service-card:nth-child(6) {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .trl-nav-links,
  .trl-nav-cta {
    display: none;
  }
  .trl-nav-hamburger {
    display: flex;
  }

  .trl-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trl-projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trl-proj-item:nth-child(1) {
    grid-column: span 2;
  }
  .trl-proj-item:nth-child(2) {
    grid-column: span 1;
  }
  .trl-proj-item:nth-child(3) {
    grid-column: span 1;
  }
  .trl-proj-item:nth-child(4) {
    grid-column: span 1;
  }
  .trl-proj-item:nth-child(5) {
    grid-column: span 1;
  }

  .trl-philosophy-img-col {
    margin-top: 3rem;
  }
  .trl-philosophy-img-main {
    height: 380px;
  }
  .trl-philosophy-img-accent {
    display: none;
  }

  .trl-about-img-badge {
    left: 0;
  }

  .trl-service-gate-leaf--left {
    transform: translateX(-100%);
  }
  .trl-service-gate-leaf--right {
    transform: translateX(100%);
  }
  .trl-service-card-badge {
    display: none;
  }
  .trl-service-card-shade {
    opacity: 1;
  }
  .trl-service-card-img {
    transform: scale(1.02);
  }
  .trl-service-card-reveal {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .trl-services-grid {
    grid-template-columns: 1fr;
  }
  .trl-projects-grid {
    grid-template-columns: 1fr;
  }
  .trl-proj-item {
    grid-column: span 1 !important;
  }
  .trl-about-stats {
    gap: 1.5rem;
  }
  .trl-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .trl-footer-newsletter-form {
    min-width: 0;
    width: 100%;
  }
  .trl-footer-newsletter-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .trl-hero{
    min-height:100vh;
  }

  .trl-about{
      padding: 80px 0px;
              overflow: hidden;
  }

  .trl-services{
    padding: 80px 0px;
  }

  .trl-philosophy{
    padding: 80px 0px;
  }

  .trl-projects{
    padding:80px 0px;
  }

  .trl-cta-banner{
    padding:80px 0px;
  }

  .trl-footer-divider{
    margin:0.5rem 0 2rem;
  }

  .site-logo {
    padding-top: 50px;
}
 
}

@media(min-width:1199px) and (max-width:1299px){
  .trl-hero-content{
    max-width:1140px;
  }
}

/*.trl-service-card:first-of-type .trl-service-card-reveal{*/
/*    opacity:1;*/
/*}*/

/*.trl-service-card:first-of-type .trl-service-card-shade{*/
/*  opacity:1;*/
/*}*/

.active-card .trl-service-card-shade{
    opacity:1;
}

.active-card .trl-service-card-reveal{
    opacity:1;
    transform:translateY(0);
}