:root{
  --gold:#c9a12a;
  --gold-light:#e1c25c;
  --black:#08090a;
  --coal:#111315;
  --muted:#b8bbbe;
  --white:#ffffff;
  --line:rgba(255,255,255,.12);
}

/* ======================================================
   BASE
====================================================== */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter,Manrope,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

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

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

.tr-wrap{
  width:min(1240px,calc(100% - 64px));
  margin:auto;
}

/* ======================================================
   TOPBAR
====================================================== */

.tr-topbar{
  position:relative;
  z-index:70;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  background:linear-gradient(90deg,#b98e18,#dfbf53,#b98e18);
  color:#080808;
  font-size:10px;
  font-weight:900;
  letter-spacing:.36em;
  text-align:center;
  text-transform:uppercase;
}

/* ======================================================
   HEADER
====================================================== */

.tr-header{
  position:absolute;
  top:34px;
  left:0;
  right:0;
  z-index:60;
  background:linear-gradient(
    180deg,
    rgba(4,5,6,.72),
    rgba(4,5,6,.16) 75%,
    transparent
  );
  transition:.3s ease;
}

.tr-header.is-scrolled{
  position:fixed;
  top:0;
  background:rgba(8,9,10,.92);
  border-bottom:1px solid rgba(201,161,42,.25);
  box-shadow:0 12px 35px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.tr-header-inner{
  height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:42px;
}

.tr-brand{
  width:178px;
  display:flex;
  align-items:center;
}

.tr-brand img{
  width:auto;
  max-height:88px;
  filter:drop-shadow(0 9px 18px rgba(0,0,0,.38));
}

.tr-nav{
  display:flex;
  align-items:center;
  gap:42px;
  margin:0;
  padding:0;
  list-style:none;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.tr-nav a{
  position:relative;
  display:block;
  padding:17px 0;
  color:rgba(255,255,255,.94);
}

.tr-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:7px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:width .25s ease;
}

.tr-nav a:hover::after{
  width:100%;
}

.tr-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(201,161,42,.7);
  background:rgba(8,9,10,.66);
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

/* ======================================================
   HERO
====================================================== */

.tr-hero{
  position:relative;
  min-height:calc(100vh - 34px);
  height:auto;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  isolation:isolate;
  background-position:center 52%;
  background-size:cover;
}

.tr-hero video{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tr-hero-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.70) 0%,
      rgba(0,0,0,.48) 37%,
      rgba(0,0,0,.13) 72%,
      rgba(0,0,0,.08)
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.10),
      rgba(0,0,0,.08) 55%,
      rgba(0,0,0,.57)
    );
}

.tr-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:0;
  height:120px;
  background:linear-gradient(transparent,var(--black));
}

.tr-hero-content{
  position:relative;
  z-index:2;
  padding:210px 0 105px;
}

.tr-hero-rule{
  width:96px;
  height:4px;
  margin-bottom:34px;
  background:var(--gold);
}

.tr-hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(52px,5.2vw,82px);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.035em;
  text-transform:uppercase;
  text-shadow:0 12px 38px rgba(0,0,0,.42);
}

.tr-hero-subtitle{
  max-width:590px;
  margin:26px 0 0;
  color:#ececec;
  font-size:16px;
  line-height:1.65;
  letter-spacing:.035em;
}

/* ======================================================
   SECCIONES GENERALES
====================================================== */

.tr-section{
  position:relative;
  padding:112px 0;
}

.tr-section-dark{
  background:linear-gradient(135deg,#151719,#0e0f10);
}

.tr-kicker{
  margin-bottom:18px;
  color:var(--gold-light);
  font-size:11px;
  font-weight:900;
  letter-spacing:.30em;
  text-transform:uppercase;
}

.tr-title{
  max-width:820px;
  margin:0 0 28px;
  font-size:clamp(38px,4.2vw,62px);
  line-height:1.02;
  letter-spacing:-.025em;
  text-transform:uppercase;
}

.tr-copy{
  max-width:680px;
  color:#c2c5c7;
  font-size:17px;
  line-height:1.85;
}

.tr-copy p{
  margin:0 0 1.2em;
}

/* ======================================================
   NOSOTROS
====================================================== */

.tr-about-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:76px;
  align-items:center;
}

.tr-media{
  position:relative;
  min-height:550px;
  background-position:center;
  background-size:cover;
  box-shadow:0 24px 70px rgba(0,0,0,.38);
}

.tr-media::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:42%;
  height:7px;
  background:var(--gold);
}

/* ======================================================
   SERVICIOS
====================================================== */

#servicios{
  background:#0a0b0c;
}

#servicios .tr-title{
  margin-bottom:52px;
}

.tr-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.tr-service{
  overflow:hidden;
  background:#141618;
  box-shadow:0 14px 38px rgba(0,0,0,.2);
  transition:.35s;
}

.tr-service:hover{
  transform:translateY(-7px);
  box-shadow:0 26px 62px rgba(0,0,0,.38);
}

.tr-service-image{
  height:280px;
  background-position:center;
  background-size:cover;
  transition:transform .6s ease;
}

.tr-service:hover .tr-service-image{
  transform:scale(1.045);
}

.tr-service-body{
  position:relative;
  padding:26px 27px 29px;
  border-top:1px solid rgba(201,161,42,.35);
}

.tr-service-body::before{
  content:"";
  position:absolute;
  left:27px;
  top:-2px;
  width:58px;
  height:3px;
  background:var(--gold);
}

.tr-service h3{
  margin:0 0 12px;
  font-size:17px;
  letter-spacing:.07em;
}

.tr-service p{
  margin:0;
  color:#aeb2b5;
  font-size:14px;
  line-height:1.7;
}

/* ======================================================
   FLOTA
====================================================== */

.tr-fleet{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  min-height:650px;
  background:#151719;
}

.tr-fleet-image{
  position:relative;
  min-height:650px;
  background-position:center;
  background-size:cover;
}

.tr-fleet-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    transparent 58%,
    rgba(21,23,25,.96)
  );
}

.tr-fleet-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:100px 7vw 100px 6vw;
}

/* ======================================================
   BLOQUE FINAL CON VIDEO
====================================================== */

.tr-cta{
  position:relative;
  min-height:590px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
  background-position:center;
  background-size:cover;
  text-align:center;
}

.tr-cta-video,
.tr-cta > video{
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}

.tr-cta-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:rgba(0,0,0,.70) !important;
}

.tr-cta-inner{
  position:relative !important;
  z-index:2 !important;
  color:#fff !important;
}

.tr-cta h2{
  margin:0;
  font-size:clamp(44px,5.7vw,82px);
  line-height:.96;
  letter-spacing:.065em;
  text-transform:uppercase;
}

.tr-cta p{
  margin-top:22px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.30em;
  text-transform:uppercase;
}

/* ======================================================
   FOOTER CORPORATIVO
====================================================== */

.tr-footer{
  background:#08090a;
  border-top:1px solid rgba(201,161,42,.55);
  padding:40px 0 0;
}

.tr-footer-main{
  display:grid;
  grid-template-columns:1.15fr .8fr .85fr;
  gap:64px;
  align-items:start;
  padding-bottom:30px;
}

.tr-footer-brand{
  min-width:0;
}

.tr-footer-logo{
  width:210px;
  max-width:100%;
  height:auto;
  margin:0 0 16px;
}

.tr-footer-description{
  max-width:500px;
  margin:0;
  color:#b5b9bd;
  font-size:15px;
  line-height:1.65;
}

.tr-footer h4{
  margin:6px 0 18px;
  color:var(--gold-light);
  font-size:12px;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.tr-footer-contact-list{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.tr-footer-contact-list p,
.tr-footer-contact-list a{
  margin:0;
  color:#f2f2f2;
  font-size:15px;
  line-height:1.5;
}

.tr-footer-contact-list a{
  transition:color .2s ease;
}

.tr-footer-contact-list a:hover{
  color:var(--gold-light);
}

.tr-footer-action p{
  max-width:300px;
  margin:0 0 18px;
  color:#b5b9bd;
  font-size:14px;
  line-height:1.6;
}

.tr-footer-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:210px;
  min-height:52px;
  padding:13px 24px;
  border:1px solid var(--gold);
  background:transparent;
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.tr-footer-button:hover{
  background:var(--gold);
  color:#08090a;
  transform:translateY(-2px);
}

.tr-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:10px 16px;
  border-top:1px solid rgba(255,255,255,.10);
  color:#747a80;
  font-size:10px;
  line-height:1.5;
  letter-spacing:.09em;
  text-align:center;
  text-transform:uppercase;
}

/* ======================================================
   ANIMACIONES
====================================================== */

.tr-reveal{
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.tr-reveal.is-visible{
  opacity:1;
  transform:none;
}

/* ======================================================
   TABLET
====================================================== */

@media(max-width:1000px){

  .tr-wrap{
    width:min(100% - 40px,900px);
  }

  .tr-header-inner{
    height:96px;
  }

  .tr-brand{
    width:155px;
    padding-top:12px;
  }

  .tr-brand img{
    max-height:74px;
  }

  .tr-nav{
    gap:24px;
    font-size:11px;
    overflow:visible;
    white-space:nowrap;
  }

  .tr-about-grid{
    gap:44px;
  }

  .tr-services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .tr-fleet{
    grid-template-columns:1fr;
  }

  .tr-fleet-image{
    min-height:500px;
  }

  .tr-fleet-image::after{
    background:linear-gradient(
      180deg,
      transparent 58%,
      #151719
    );
  }

  .tr-fleet-copy{
    padding:72px 40px;
  }

  .tr-footer-main{
    grid-template-columns:1fr 1fr;
    gap:38px;
  }

  .tr-footer-action{
    grid-column:1 / -1;
  }
}

/* ======================================================
   MÓVIL
====================================================== */

@media(max-width:760px){

  .tr-topbar{
    height:30px;
    padding:0 12px;
    font-size:9px;
    letter-spacing:.20em;
  }

  .tr-header{
    top:30px;
  }

  .tr-header.is-scrolled{
    top:0;
  }

  .tr-header-inner{
    height:82px;
  }

  .tr-brand{
    width:140px;
    padding-top:10px;
  }

  .tr-brand img{
    max-height:64px;
  }

  .tr-menu-toggle{
    display:block;
  }

  .tr-nav{
    position:absolute;
    top:82px;
    left:15px;
    right:15px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:16px 22px;
    overflow:visible;
    background:rgba(9,10,11,.98);
    border:1px solid rgba(201,161,42,.4);
    box-shadow:0 24px 55px rgba(0,0,0,.45);
    white-space:normal;
  }

  .tr-nav.is-open{
    display:flex;
  }

  .tr-nav a{
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.09);
  }

  .tr-wrap{
    width:calc(100% - 30px);
  }

  .tr-hero{
    min-height:700px;
    background-position:62% center;
  }

  .tr-hero-content{
    padding:170px 0 74px;
  }

  .tr-hero-rule{
    width:72px;
    margin-bottom:26px;
  }

  .tr-hero h1{
    max-width:96%;
    font-size:clamp(42px,13vw,58px);
    line-height:1;
  }

  .tr-hero-subtitle{
    max-width:92%;
    margin-top:20px;
    font-size:14px;
  }

  .tr-section{
    padding:78px 0;
  }

  .tr-title{
    font-size:clamp(34px,10vw,46px);
  }

  .tr-about-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .tr-media{
    order:-1;
    min-height:380px;
  }

  .tr-services-grid{
    grid-template-columns:1fr;
  }

  .tr-service-image{
    height:255px;
  }

  .tr-fleet-image{
    min-height:390px;
  }

  .tr-fleet-copy{
    padding:62px 24px;
  }

  .tr-cta{
    min-height:490px;
  }

  .tr-cta-inner{
    padding-left:8px !important;
    padding-right:8px !important;
  }

  .tr-cta h2{
    font-size:clamp(36px,11vw,52px);
    letter-spacing:.035em;
  }

  .tr-cta p{
    font-size:9px;
    letter-spacing:.20em;
  }

  .tr-footer{
    padding-top:32px;
  }

  .tr-footer-main{
    grid-template-columns:1fr;
    gap:28px;
    padding-bottom:26px;
    text-align:center;
  }

  .tr-footer-logo{
    width:195px;
    margin:0 auto 14px;
  }

  .tr-footer-description{
    margin:0 auto;
    font-size:14px;
  }

  .tr-footer h4{
    margin:0 0 14px;
  }

  .tr-footer-contact-list{
    align-items:center;
  }

  .tr-footer-action{
    grid-column:auto;
  }

  .tr-footer-action p{
    margin:0 auto 16px;
  }

  .tr-footer-button{
    min-width:205px;
  }

  .tr-footer-bottom{
    min-height:60px;
    padding:12px 14px;
    font-size:9px;
  }
}

/* ======================================================
   AJUSTES FINALES DEL HEADER
====================================================== */

.tr-header-inner{
  overflow:visible;
}

.tr-brand{
  align-self:flex-start;
  padding-top:16px;
}

.tr-nav{
  overflow:visible;
  white-space:nowrap;
}

/* ======================================================
   ACCESIBILIDAD
====================================================== */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .tr-reveal,
  .tr-service,
  .tr-service-image,
  .tr-header,
  .tr-footer-button{
    transition:none !important;
  }

  .tr-reveal{
    opacity:1;
    transform:none;
  }
}
@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .tr-reveal,
  .tr-service,
  .tr-service-image,
  .tr-header,
  .tr-footer-button{
    transition:none !important;
  }

  .tr-reveal{
    opacity:1;
    transform:none;
  }
}
/* ======================================================
   PÁGINA CONTACTO
====================================================== */

.tr-contact-hero{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  isolation:isolate;
  background-position:center;
  background-size:cover;
}

.tr-contact-hero-video{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tr-contact-hero-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.70) 0%,rgba(0,0,0,.42) 48%,rgba(0,0,0,.18) 100%),
    linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.68));
}

.tr-contact-hero-content{
  position:relative;
  z-index:2;
  padding:230px 0 90px;
}

.tr-contact-hero-rule{
  width:90px;
  height:4px;
  margin-bottom:28px;
  background:var(--gold);
}

.tr-contact-hero h1{
  max-width:900px;
  margin:0;
  color:#fff;
  font-size:clamp(52px,6vw,88px);
  line-height:.98;
  font-weight:900;
  letter-spacing:-.035em;
  text-transform:uppercase;
  text-shadow:0 12px 38px rgba(0,0,0,.48);
}

.tr-contact-section{
  display:block;
  position:relative;
  padding:110px 0;
  background:#f2f1ed;
  color:#111315;
}

.tr-contact-heading{
  max-width:800px;
  margin-bottom:54px;
}

.tr-contact-heading .tr-kicker{
  color:#9d7917;
}

.tr-contact-heading .tr-title{
  color:#111315;
  margin-bottom:22px;
}

.tr-contact-heading p{
  max-width:720px;
  margin:0;
  color:#62676b;
  font-size:17px;
  line-height:1.8;
}

.tr-contact-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  min-height:720px;
  overflow:hidden;
  background:#111315;
  box-shadow:0 28px 75px rgba(0,0,0,.22);
}

.tr-contact-info-panel{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:#16181a;
}

.tr-contact-image{
  min-height:390px;
  background-position:center;
  background-size:cover;
}

.tr-contact-details{
  padding:42px;
  color:#fff;
}

.tr-contact-details h3{
  margin:0 0 28px;
  color:var(--gold-light);
  font-size:13px;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.tr-contact-detail{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-bottom:20px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.tr-contact-detail strong{
  color:#959a9e;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.tr-contact-detail span,
.tr-contact-detail a{
  color:#fff;
  font-size:16px;
  line-height:1.5;
}

.tr-contact-detail a:hover{
  color:var(--gold-light);
}

.tr-contact-whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  margin-top:10px;
  padding:13px 22px;
  border:1px solid var(--gold);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.13em;
  text-align:center;
  text-transform:uppercase;
  transition:.25s ease;
}

.tr-contact-whatsapp:hover{
  background:var(--gold);
  color:#08090a;
}

.tr-contact-form-panel{
  padding:58px;
  background:#0f1112;
  color:#fff;
}

.tr-contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.tr-contact-form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.tr-contact-field{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.tr-contact-field label{
  color:var(--gold-light);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.tr-contact-field input,
.tr-contact-field select,
.tr-contact-field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  border-radius:0;
  outline:none;
  background:rgba(255,255,255,.04);
  color:#fff;
  font-family:inherit;
  font-size:15px;
  transition:.2s ease;
}

.tr-contact-field input,
.tr-contact-field select{
  height:54px;
  padding:0 16px;
}

.tr-contact-field textarea{
  min-height:155px;
  padding:16px;
  resize:vertical;
}

.tr-contact-field select option{
  background:#111315;
  color:#fff;
}

.tr-contact-field input:focus,
.tr-contact-field select:focus,
.tr-contact-field textarea:focus{
  border-color:var(--gold);
  background:rgba(255,255,255,.07);
}

.tr-contact-submit{
  min-height:56px;
  margin-top:8px;
  border:1px solid var(--gold);
  background:var(--gold);
  color:#08090a;
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s ease;
}

.tr-contact-submit:hover{
  background:transparent;
  color:var(--gold-light);
}

.tr-contact-message{
  margin-bottom:24px;
  padding:16px 18px;
  font-size:14px;
  line-height:1.55;
}

.tr-contact-success{
  border:1px solid rgba(90,190,115,.55);
  background:rgba(90,190,115,.10);
  color:#d8f1de;
}

.tr-contact-error{
  border:1px solid rgba(220,90,90,.55);
  background:rgba(220,90,90,.10);
  color:#ffdcdc;
}

.tr-contact-team{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
  background-position:center;
  background-size:cover;
  text-align:center;
}

.tr-contact-team-video{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tr-contact-team-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(0,0,0,.70);
}

.tr-contact-team-content{
  position:relative;
  z-index:2;
  padding:80px 20px;
}

.tr-contact-team-content img{
  width:min(245px,65vw);
  height:auto;
  margin:0 auto 30px;
}

.tr-contact-team-content h2{
  margin:0;
  color:#fff;
  font-size:clamp(40px,5.5vw,76px);
  line-height:1;
  font-weight:900;
  letter-spacing:.035em;
  text-transform:uppercase;
  text-shadow:0 10px 28px rgba(0,0,0,.68);
}

.tr-contact-team-content h2 span{
  color:var(--gold-light);
}

@media(max-width:900px){
  .tr-contact-hero{min-height:520px;}
  .tr-contact-grid{grid-template-columns:1fr;}
  .tr-contact-image{min-height:420px;}
  .tr-contact-form-panel{padding:44px 32px;}
}

@media(max-width:600px){
  .tr-contact-hero{min-height:440px;}
  .tr-contact-hero-content{padding:180px 0 65px;}
  .tr-contact-hero h1{font-size:42px;}
  .tr-contact-section{padding:70px 0;}
  .tr-contact-heading{margin-bottom:38px;}
  .tr-contact-heading p{font-size:15px;}
  .tr-contact-image{min-height:300px;}
  .tr-contact-details{padding:30px 22px;}
  .tr-contact-form-panel{padding:34px 20px;}
  .tr-contact-form-row{grid-template-columns:1fr;}
  .tr-contact-team{min-height:440px;}
  .tr-contact-team-content h2{font-size:38px;}